@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200;300;400;500;600;700&display=swap');

/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
	font-size: 62.5%;
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "MS PGothic", sans-serif;
	font-size: 1.6em;
	background: #fff;
	color: #444;
	line-height: 1.8;
}

.mincho {
	font-family: 'Noto Serif JP', serif;
}

.oswald {
	font-family: 'Oswald', sans-serif;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #444;
}

a.blue {
	color: #0000ff;
	text-decoration: underline;
}

a.blue:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.wrapper {
	min-height: 100vh;
	position: relative;
	overflow: hidden;
	box-sizing: border-box;
}

/* テンプレートによって追加・変更 */
.content {
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	margin-top: 100px;
}

.disp-pc {
	display: block;
}

.disp-sp {
	display: none;
}

@media only screen and (max-width: 1024px) {
	.content {
		margin-top: 70px;
	}
}

@media only screen and (max-width: 600px) {
	.disp-pc {
		display: none;
	}

	.disp-sp {
		display: block;
	}
}

/*------------------------------------------
  Clearfix
------------------------------------------*/
.clearfix {
	*zoom: 1;
}

.clearfix:after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

/*------------------------------------------
  Pager
------------------------------------------*/
.pager {
	padding-top: 40px;
}

.pager .pagination {
	text-align: center;
	line-height: 0;
}

.pager .pagination li {
	margin: 0 2px;
	padding: 0;
	display: inline-block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	text-align: center;
	position: relative;
	border-radius: 2px;
}

.pager .pagination li a {
	vertical-align: middle;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	display: table;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	color: #000;
}

.pager .pagination li a span {
	display: table-cell;
	vertical-align: middle;
	transform: none;
}

.pager .pagination li a:hover {
	color: #fff;
	background: #000;
}

.pager .pagination li .active {
	color: #fff;
	background: #000;
}

@media only screen and (max-width: 600px) {
	.pager .pagination li {
		display: none;
	}

	.pager .pagination .pre,
	.pager .pagination .next {
		display: inline-block;
		width: 40%;
		height: 50px;
		text-align: center;
	}

	.pager .pagination .pre a,
	.pager .pagination .next a {
		width: 100%;
		text-align: center;
	}

	.pager .pagination .pre span:after {
		content: "　前の10件へ";
	}

	.pager .pagination .next span:before {
		content: " 次の10件へ　";
	}
}

/*------------------------------------------
  Parts
------------------------------------------*/
/* Button Type01 */
.btn-type01 {
	text-align: right;
	font-size: 22px;
	padding-right: 100px;
	position: relative;
	line-height: 1;
}

.btn-type01:after {
	content: "";
	width: 88px;
	height: 14px;
	display: block;
	background: url(../images/common/icon_arrow_large.png) no-repeat center / cover;
	position: absolute;
	right: 0;
	bottom: 0;
}

@media only screen and (max-width: 600px) {
	.btn-type01 {
		font-size: 16px;
		padding-right: 70px;
	}

	.btn-type01:after {
		width: 60px;
		height: 10px;
	}
}

/* Button Type02 */
.btn-type02 {
	width: 175px;
	height: 40px;
	line-height: 30px;
	display: block;
	text-align: center;
	border: 1px solid #FBC02D;
	margin: auto;
	padding: 3px;
}

.btn-type02 span {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #FBC02D;
	transition: .3s;
}

.btn-type02 span:hover {
	color: #fff;
	background: #FBC02D;
}

/* List Type01（お知らせ） */
.list-type01 {
	max-width: 745px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.list-type01 li {
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: .5rem;
}

.list-type01 a {
	display: block;
	position: relative;
}

.list-type01 a:after {
	content: "";
	width: 47px;
	height: 14px;
	display: block;
	background: url(../images/common/icon_arrow_small.png) no-repeat center / cover;
	position: absolute;
	right: 0;
	bottom: 10px;
}

.list-type01 .post-time {
	display: block;
	font-size: 18px;
}

.list-type01 .post-title {
	font-size: 22px;
	font-weight: bold;
	line-height: 1.5;
	display: block;
	padding-right: 5rem;
}

@media only screen and (max-width: 600px) {
	.list-type01 .post-time {
		font-size: 14px;
	}

	.list-type01 .post-title {
		font-size: 16px;
	}
}

/* List Type02（会社概要等） */
.list-type02 {
	max-width: 760px;
	width: 100%;
	margin: auto;
	display: flex;
	flex-direction: column;
	gap: 30px 0;
}

.list-type02 dl {
	border-bottom: 1px solid #D9D9D9;
	font-size: 18px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
}

.list-type02 dt {
	font-weight: 600;
	width: 120px;
	position: relative;
	padding: .5rem;
}

.list-type02 dt:after {
	content: "";
	width: 100%;
	height: 1px;
	background: #FBC02D;
	display: block;
	position: absolute;
	left: 0;
	bottom: -1px;
	z-index: 2;
}

.list-type02 dd {
	width: calc(100% - 120px);
	padding: .5rem 2rem;
}

@media only screen and (max-width: 600px) {
	.list-type02 {
		gap: 20px 0;
	}

	.list-type02 dl {
		font-size: 16px;
	}

	.list-type02 dt {
		font-size: 14px;
		width: 75px;
	}

	.list-type02 dd {
		width: calc(100% - 75px);
		padding: .5rem 0 .5rem 2rem;
	}
}

/*------------------------------------------
  Form
------------------------------------------*/
.form-block {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 25px;
	margin-top: 3rem;
}

.form-block .required {
	display: inline-block;
	height: 17px;
	line-height: 15px;
	border-radius: 8px;
	background: #444444;
	color: #fff;
	font-size: 12px;
	font-weight: 300;
	padding: 0 10px;
	margin-left: 1rem
}

.form-block dl {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.form-block dt {
	width: 100%;
}

.form-block dd {
	width: 100%;
}

.form-block input[type="text"],
.form-block textarea {
	background: #fff;
	border-radius: 2px;
	width: 100%;
	padding: 8px 10px;
	box-sizing: border-box;
	border: 1px solid #A6A6A6;
}

.form-block .privacy {
	text-align: center;
	margin: 3rem 0;
}

.form-block .submit {
	width: 175px;
	height: 40px;
	line-height: 30px;
	display: block;
	text-align: center;
	border: 1px solid #FBC02D;
	margin: auto;
	margin-bottom: 3rem;
	padding: 3px;
}

.form-block .submit input {
	display: block;
	width: 100%;
	height: 100%;
	border: 1px solid #FBC02D;
	transition: .3s;
}

.form-block .submit input:hover {
	color: #fff;
	background: #FBC02D;
}

@media only screen and (max-width: 600px) {}

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	background: rgba(255, 255, 255, .9);
	width: 100%;
	height: 100px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 99;
}

.cmn-header .inner {
	max-width: 1280px;
	width: 97%;
	margin: auto;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	height: 100%;
}

.cmn-header .gnav {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 15px;
}

.cmn-header .gnav a {
	font-size: 18px;
	color: #444;
}

.cmn-header .gnav .last {
	color: #fff;
	background: #444;
	display: block;
	width: 135px;
	height: 35px;
	line-height: 33px;
	text-align: center;
	border: 1px solid #444;
	transition: .3s;
}

.cmn-header .gnav .last:hover {
	color: #444;
	background: #fff;
	border: #444;
}

.cmn-header .gnav .non-pc {
	display: none;
}

/* Trigger, Modal */
.menu-trigger {
	display: none;
	font-size: 12px;
	color: #444;
	border-top: 1px solid #444;
	border-bottom: 1px solid #444;
}

@media only screen and (max-width: 1200px) {
	.cmn-header .gnav .last {
		width: 100px;
	}
}

@media only screen and (max-width: 1024px) {
	.cmn-header {
		height: 70px;
	}

	.cmn-header .inner {
		width: 95%;
	}

	.cmn-header .logo {
		width: 235px;
		order: 1;
	}

	.cmn-header .gnav {
		order: 3;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		z-index: -99;
		transition: .3s;
		position: fixed;
		background: url("../images/common/bg_sp.png");
		background-repeat: no-repeat;
		background-position: center;
		background-size: cover;
		top: 70px;
		left: 0;
		display: none;
		overflow: scroll;
	}

	.cmn-header .gnav.active {
		height: calc(100vh - 70px);
		opacity: 1;
		z-index: 1;
		visibility: visible;
	}

	.cmn-header .gnav li {
		border-top: 1px solid #D9D9D9;
	}

	.cmn-header .gnav a {
		display: block;
		font-size: 30px;
		line-height: 1;
		padding: 2rem;
		box-sizing: border-box;
		position: relative;
	}

	.cmn-header .gnav a:after {
		content: "";
		width: 74px;
		height: 12px;
		display: block;
		background: url(../images/common/icon_arrow_large.png) no-repeat center / cover;
		position: absolute;
		right: 2rem;
		top: 50%;
		transform: translateY(-50%);
	}

	.cmn-header .gnav .non-pc {
		display: block;
	}

	.cmn-header .gnav .non-pc a {
		font-size: 16px;
		color: #727272;
	}

	.cmn-header .gnav .non-pc a:after {
		content: none;
	}

	.cmn-header .gnav .non-sp {
		display: none;
	}

	.menu-trigger {
		display: block;
		order: 2;
	}
}

@media only screen and (max-width: 600px) {}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
	margin-top: 15rem;
}

.cmn-footer .info {
	background: #D7CCC8;
	padding: 3rem 0;
}

.cmn-footer .info .inner {
	max-width: 1080px;
	width: 95%;
	margin: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.cmn-footer .info .title {
	font-size: 44px;
	font-weight: 500;
	color: #fff;
	text-shadow:
		0 1px 0 #444,
		0 -1px 0 #444,
		1px 0 0 #444,
		-1px 0 0 #444,
		1px 1px 0 #444,
		-1px 1px 0 #444,
		1px -1px 0 #444,
		-1px -1px 0 #444;
	line-height: 1;
}

.cmn-footer .info .text {
	font-size: 18px;
	line-height: 1.5;
	color: #444;
}

.cmn-footer .info .flex {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 50px;
}

.cmn-footer .info .left {
	line-height: 1;
}

.cmn-footer .info .left span {
	font-size: 30px;
	color: #444;
}

.cmn-footer .info .left a {
	font-size: 44px;
	font-weight: bold;
}

.cmn-footer .info .right a {
	width: 320px;
	height: 75px;
	line-height: 75px;
	display: block;
	text-align: center;
	color: #fff;
	background: #444;
	border: 1px solid #444;
	font-size: 18px;
	font-weight: bold;
	transition: .3s;
}

.cmn-footer .info .right a:hover {
	background: #fff;
	color: #444;
}

.cmn-footer .copy {
	text-align: center;
	color: #fff;
	font-size: 14px;
	background: #444;
	padding: 5px 0;
}

@media only screen and (max-width: 1024px) {
	.cmn-footer .info .flex {
		flex-direction: column;
		gap: 30px 0;
	}
}

@media only screen and (max-width: 600px) {
	.cmn-footer .info {
		padding: 3rem 0 5rem;
	}

	.cmn-footer .info .text {
		font-size: 16px;
	}

	.cmn-footer .info .left span {
		font-size: 20px;
	}

	.cmn-footer .info .left a {
		font-size: 34px;
	}
}