@charset "utf-8";

/* デフォルトスタイル調整 */

#crumb {
	position: relative;
	z-index: 2;
}

#content {
	max-width: none;
	min-width: 960px;
	overflow: visible;
}
#container {
	/* margin-top: -38px; */
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 640px) {
	#container {
		margin-top: 0;
	}
	#content {
		min-width: 0;
		overflow: hidden;
	}
}

div#content > section.drec > div.drec-l-main > div.drec-l-inner {
	background-color: #fff;
}

@media all and (min-width: 641px) {
	.sp {
		display: none;
	}
}

.fadeUp {
	position: relative;
	bottom: -40px;
	opacity: 0;
	transition: all 0.8s;
}
.anime .fadeUp {
	bottom: 0;
	opacity: 1;
}
.fadeIn {
	opacity: 0;
	transition: opacity 0.8s;
}
.anime .fadeIn {
	opacity: 1;
}
.delay3 { transition-delay: 300ms; }
.delay6 { transition-delay: 600ms; }
.delay9 { transition-delay: 900ms; }

.mainvisual img {
	width: 100%;
}

.mainArea {
	margin-bottom: 90px;
	background-color: #d4ddd8;
	padding: 140px 20px 200px;
	color: #000;
}
.mainInner {
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 300;
}
@media screen and (max-width: 640px) {
	.mainArea {
		margin-bottom: 50px;
		padding: 40px 15px 50px;
	}
}

.topText {
	margin-bottom: 140px;
	text-align: center;
	font-size: 2.6rem;
	line-height: 2.3;
}
@media screen and (max-width: 640px) {
	.topText {
		margin-bottom: 60px;
		font-size: 1.8rem;
		line-height: 1.8;
	}
}

.imgCol {
	display: flex;
	justify-content: space-between;
	margin-bottom: 140px;
}
.imgCol.reverse {
	flex-direction: row-reverse;
}
.imgCol .textArea {
	width: 40%;
	padding-left: 8%;
	font-size: 2rem;
	line-height: 1.8;
}
.imgCol.reverse .textArea {
	padding: 0 8% 0 0;
}
.imgCol .lead {
	margin-bottom: 45px;
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1.6;
}
.imgCol .lead strong {
	color: #266342;
}
.imgCol .img {
	width: 48%;
}
@media screen and (max-width: 640px) {
	.imgCol {
		display: block;
		margin-bottom: 60px;
	}
	.imgCol .textArea {
		width: auto;
		margin-bottom: 30px;
		padding-left: 0;
		font-size: 1.6rem;
	}
	.imgCol.reverse .textArea {
		padding: 0;
	}
	.imgCol .lead {
		margin-bottom: 20px;
		font-size: 2.6rem;
	}
	.imgCol .img {
		width: auto;
		text-align: center;
	}
}

.detail h2 {
	margin-bottom: 50px;
	text-align: center;
	font-size: 5rem;
	font-weight: bold;
	line-height: 1.4;
}
.detail h2 strong {
	color: #266342;
}
.detail .colLayout {
	display: flex;
	justify-content: space-between;
	max-width: 1000px;
	margin: 0 auto;
}
.detail .col {
	width: 47.5%;
}
.detail .box {
	position: relative;
	margin-bottom: 60px;
	border-top: 4px solid #266342;
	background-color: #fff;
	padding: 20px 25px 95px;
	box-sizing: border-box;
	min-height: 553px;
}
.detail .logo {
	width: 60%;
	height: 135px;
	margin: 0 auto 15px;
	display: flex;
	align-items: center;
}
.detail .logo img {
	width: 100%;
}
.detail .lead {
	margin-bottom: 10px;
	color: #266342;
	font-size: 2.6rem;
	font-weight: bold;
	line-height: 1.6;
}
.detail .text {
	line-height: 2;
}
.detail sup {
	color: #d1b562;
	font-size: 1.2rem;
}
.detail .tip {
	position: absolute;
	right: 30px;
	bottom: 35px;
}
.detail .linkBtn {
	position: absolute;
	right: 30px;
	bottom: -35px;
	background-color: #fff;
}
.detail .linkBtn a {
	position: relative;
	display: block;
	width: 350px;
	background-color: #d1b562;
	padding: 15px 10px 15px 0;
	text-align: center;
	color: #fff;
	font-size: 1.6rem;
	line-height: 2;
}
.detail .linkBtn a.orange {
	background-color: #f08c45;
}
.detail .linkBtn a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 11px;
	height: 11px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform-origin: right top;
	transform: rotate(45deg);
}
.detail .noteList {
	font-size: 1.2rem;
}
.detail .noteList li {
	margin-bottom: 5px;
}
.detail .noteList li > span {
	float: left;
	margin-right: 5px;
	color: #d1b562;
}
.detail .noteList li > p {
	overflow: hidden;
	color: #999;
}
@media screen and (max-width: 640px) {
	.detail h2 {
		margin-bottom: 20px;
		font-size: 2.4rem;
	}
	.detail .colLayout {
		display: block;
	}
	.detail .col {
		width: auto;
	}
	.detail .col + .col {
		margin-top: 30px;
	}
	.detail .box {
		margin-bottom: 40px;
		padding: 15px 20px 85px;
		min-height: 0;
	}
	.detail .logo {
		width: 200px;
		height: 100px;
		margin: 0 auto 10px;
	}
	.detail .lead {
		font-size: 2rem;
	}
	.detail .text {
		line-height: 1.7;
	}
	.detail .tip {
		left: 0;
		right: 0;
		width: 260px;
		margin: 0 auto;
		bottom: 30px;
	}
	.detail .linkBtn {
		right: 0;
		left: 0;
		width: 290px;
		margin: 0 auto;
		bottom: -22px;
	}
	.detail .linkBtn a {
		width: auto;
		padding: 10px 20px 10px 0;
		font-size: 1.4rem;
		line-height: 1.6;
	}
	.detail .linkBtn a::after {
		right: 10px;
		width: 8px;
		height: 8px;
	}
}

.sectionTitle {
	margin-bottom: 20px;
	text-align: center;
	font-size: 3rem;
	font-weight: 300;
}
@media screen and (max-width: 640px) {
	.sectionTitle {
		margin-bottom: 0;
		font-size: 2.4rem;
	}
}

.bannerList {
	margin: 70px 0 50px;
	text-align: center;
}
.bannerList li + li {
	margin-top: 30px;
}
@media screen and (max-width: 640px) {
	.bannerList {
		margin: 40px 0;
	}
	.bannerList li + li {
		margin-top: 20px;
	}
}

.socialList {
	text-align: center;
}
.socialList li {
	display: inline-block;
	margin: 0 3px;
}
