@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');

/*------------------------------------------
  Base Layout
------------------------------------------*/
:root {
	--color-main: #11243F;
}

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

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

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

.m-plus {
	font-family: 'Noto Serif JP', sans-serif;
}

.zen-maru {
	font-family: 'Zen Maru Gothic', sans-serif;
}

/*
.times {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
*/
* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: #11243F;
}

a.blue {
	color: #0000ff;
}

a.blue:not(:hover) {
	text-decoration: underline;
}

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

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

/* テンプレートによって追加・変更 */
.content.top {
	display: flex;
	flex-direction: column;
}

.disp-pc {
	display: block;
}

.disp-sp {
	display: none;
}

.u-c-blue {
	color: #11243F;
}

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

@media only screen and (max-width: 600px) {
	.content.top {
		gap: 10rem 0;
	}

	.disp-pc {
		display: none;
	}

	.disp-sp {
		display: block;
	}
}

/*------------------------------------------
  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: var(--color-main);
}

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

.pager .pagination li a:hover {
	color: #11243F;
	background: var(--color-main);
}

.pager .pagination li .active {
	color: #11243F;
	background: var(--color-main);
}

@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
------------------------------------------*/
/* Title Type01 */
.m-title01 {
	font-size: 24px;
	font-weight: 600;
}

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

/* Button Type01 */
.m-button01 {
	max-width: 218px;
	width: 100%;
}

.m-button01 a {
	font-size: 15px;
	display: block;
	height: 60px;
	line-height: 58px;
	border: 1px solid #11243F;
	border-radius: 30px;
	background: #11243F;
	text-align: center;
	transition: .3s;
	color: #FFF;
}

.m-button01 a:hover {
	background: #FFF;
	color: #11243F;
}

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

/* List Type01（会社概要等） */
.m-list01 dl {
	border-bottom: 1px solid #333;
	display: flex;
	flex-flow: wrap row;
	justify-content: space-between;
	align-items: baseline;
	padding: 2rem 1rem;
}

.m-list01 dt {
	font-size: 22px;
	width: 180px;
}

.m-list01 dd {
	font-size: 18px;
	width: calc(100% - 180px);
	line-height: 1.5;
}

@media only screen and (max-width: 600px) {
	.m-list01 dl {
		padding: 10px;
	}

	.m-list01 dt {
		font-size: 18px;
		width: 100%;
		margin-bottom: 1rem;
	}

	.m-list01 dd {
		font-size: 14px;
		width: 100%;
	}
}

/* List Type02（お知らせ等） */
.m-list02 {
	width: 100%;
	display: flex;
	flex-direction: column;
}

.m-list02 li {
	padding: 2rem 5rem 2rem 1.5rem;
	position: relative;
}

.m-list02 li:not(:first-of-type) {
	border-top: 1px solid #333;
}

.m-list02 .post-time {
	font-size: 14px;
}

.m-list02 .post-title {
	font-size: 22px;
	display: block;
	margin-top: 1.5rem;
}

.m-list02 svg {
	width: 45px;
	position: absolute;
	right: 0;
	bottom: 15px;
}

@media only screen and (max-width: 600px) {
	.m-list02 li {
		padding: 1.5rem 5rem 1.5rem 0.5rem;
	}

	.m-list02 .post-title {
		font-size: 18px;
		line-height: 1.5;
	}
}

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

.form-block .required {
	display: inline-block;
	height: 22px;
	line-height: 22px;
	border-radius: 50px;
	background: #D9A97C;
	font-size: 14px;
	font-weight: 300;
	padding: 0 10px;
	margin-right: 1rem
}

.form-block dl {
	display: flex;
	flex-flow: wrap column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px 0;
	padding-bottom: 10px;
}

.form-block input[type="text"],
.form-block textarea,
.form-block .zip input[type="tel"] {
	background: #fff;
	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: 185px;
	height: 60px;
	margin: auto;
	border: 1px solid #D9A97C;
}

.form-block .submit input {
	font-size: 15px;
	display: block;
	width: 175px;
	height: 50px;
	line-height: 58px;
	border: 1px solid #D9A97C;
	background: #fff;
	text-align: center;
	justify-content: center;
	transition: .3s;
	margin: auto;
	margin-top: 5px;
}

.form-block .submit input:hover {
	background: #D9A97C;
}

input[type="date"]{
  -webkit-appearance: auto;
  appearance: auto;
}
input[type="date"]::-webkit-calendar-picker-indicator{
  display: block;
  opacity: 1;
  pointer-events: auto;
}

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

/*------------------------------------------
  Header
------------------------------------------*/
.cmn-header {
	width: 100%;
	height: 80px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: .3s;
	background: #11243F;
}

.cmn-header .inner {
	/* max-width: 770px; */
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 80px;
	justify-content: space-between;
	align-items: center;
	height: 100%;
	margin: 0 auto 0 0;
	padding: 0 30px;
}

.cmn-header .logo {
	font-size: 0;
}

.cmn-header .gnav ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0 20px;
	font-size: 14px;
	font-weight: 500;
}

.cmn-header a{
	color: #FFF;
}

.cmn-header .gnav ul .privacy {
	display: none;
}

/* Trigger, Modal */
.cmn-header .menu-trigger {
	width: 18px;
	height: 15px;
	display: none;
	position: absolute;
	right: 5%;
	top: 20px;
	z-index: 3;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
}

.cmn-header .menu-trigger:hover {
	cursor: pointer;
}

.cmn-header .menu-trigger span {
	width: 100%;
	height: 3px;
	background: #fff;
	border-radius: 3px;
	transition: .3s;
}

.cmn-header .menu-trigger.active span:nth-of-type(1) {
	transform: translateY(6px) rotate(225deg);
}

.cmn-header .menu-trigger.active span:nth-of-type(2) {
	opacity: 0;
}

.cmn-header .menu-trigger.active span:nth-of-type(3) {
	transform: translateY(-6px) rotate(-225deg);
}

@media only screen and (max-width: 1024px) {
	.cmn-header {
		height: 90px;
		background-color: #11243F;
	}

	.cmn-header a{
		color: #4A7B5B;
	}

	.cmn-header .inner {
		max-width: 100%;
		margin: auto;
		padding: 0;
	}

	.cmn-header .logo {
		order: 1;
		position: relative;
		z-index: 2;
		padding-block: 10px;
	}

	.cmn-header .gnav {
		order: 3;
		width: 100%;
		opacity: 0;
		visibility: hidden;
		z-index: -99;
		transition: .3s;
		position: fixed;
		top: 0;
		left: 0;
		display: none;
		overflow: scroll;
		background: url(../images/top/fv_about_bg.png) no-repeat right bottom 10px / contain, #F9F1E4;
		background-size: cover 50px;
		padding: 1rem 0;
		flex-direction: column;
		align-items: center;
		margin-top: 90px;
		padding-top: 3rem;
	}

	.cmn-header .gnav.active {
		height: 100vh;
		opacity: 1;
		z-index: 1;
		visibility: visible;
	}

	.cmn-header .gnav ul {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		gap: 15px 0;
		text-align: center;
		font-size: 20px;
	}

	.cmn-header .gnav ul a {
		font-size: 15px;
		background: #F9F1E4;
		display: block;
		height: 60px;
		line-height: 58px;
		text-align: center;
		transition: .3s;
	}

	.cmn-header .gnav ul .privacy {
		display: block;
		font-size: 12px;
	}

	.cmn-header .menu-trigger {
		display: flex;
		order: 2;
		margin-top: 30px;
	}
}

@media only screen and (max-width: 600px) {
	.cmn-header .logo {
		width: 126px;

	}

	.cmn-header .gnav {
		background-size: 246px 149px;
		justify-content: flex-start;

	}

	.cmn-header .gnav.active ul {
		position: relative;
		z-index: 10;
		margin-top: 16%;

	}

	.cmn-header .gnav ul {
		gap: 20px 0;
		color: #4A7B5B;
	}

}

@media only screen and (max-width: 374px) {
	.cmn-header .gnav {
		background-size: 180px 100px;
		justify-content: flex-start;

	}
}

/*------------------------------------------
  Footer
------------------------------------------*/
.cmn-footer {
	width: 100%;
	margin-top: 3rem;
}

.cmn-footer .bg {
	width: 100%;
	height: 380px;
	background: url(../images/common/footer_bg.png) repeat-x center right;
	display: block;
}

.cmn-footer .flex {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 3rem 0;
}

.cmn-footer .flex .logo {
	width: 40%;
	padding-left: 20px;

}

.cmn-footer .flex .logo p {
	margin: 1.5rem 0 0;
	line-height: 1.5;
}
.cmn-footer .flex .footer-sp-box{
	padding-right: 20px;
}

.cmn-footer .flex .menu {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 0 20px;
	font-size: 14px;
	font-weight: 500;
	margin-top: 80px;
	flex-wrap: wrap;
}

.cmn-footer .copy {
	text-align: center;
	font-size: 12px;
	margin-bottom: 18px;
}

@media only screen and (max-width: 1024px) {
	.cmn-footer .flex {
		flex-direction: column-reverse;
		justify-content: center;
		align-items: center;

	}

	.cmn-footer .flex .logo {
		text-align: center;
	}

	.cmn-footer .flex .menu {
		justify-content: center;
		margin-top: 5px;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 600px) {
	.cmn-footer .bg {
		height: 100px;
		background-size: cover;
	}

	.cmn-footer .flex {
		padding-bottom: 0;
		flex-direction: column;
	}

	.cmn-footer .flex .logo{
		width: 70%;
	}

	.cmn-footer .flex .menu {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 1rem 0;
		padding-top: 30px;
	}

	.cmn-footer .flex .footer-sp-box {
		width: 90%;
		margin-left: auto;
		padding-right: 10%;

	}

	.cmn-footer .logo{
		margin-top: 20px;
	}

	.cmn-footer .copy {
		width: 90%;
		margin-left: auto;
		padding-top: 60px;
		padding-bottom: 18px;

		padding-right: 10%;
	}
}

/*
.wow {
	will-change: transform;
}
*/