@charset "utf-8";

/* common
-------------------------------------------------------*/
#wrapper {
	overflow: hidden;
}
.sp {
	display: none;
}
.area {
	padding: 60px 25px;
	box-sizing: border-box;
}
.serif {
	font-family: 'Noto Serif JP', serif;
}
.white {
	color: #fff;
}
.bold {
	font-weight: 700;
}
.txt_center {
	text-align: center;
}
.inner {
	width: 100%;
	max-width: 1230px;
	margin: 0 auto;
	box-sizing: border-box;
}
.row_box {
	display: flex;
	flex-flow: row nowrap;
	align-items: center;
	justify-content: space-between;
}
.row_box .img {
	width: 50%;
}
.row_box .txt {
	width: 50%;
	font-size: 1.8rem;
	line-height: 2;
	font-weight: 500;
}
.row_box .txt .bold {
	font-size: 3.2rem;
}
.ttl01 {
	font-size: 4.8rem;
	font-family: "Noto Serif JP", serif;
	color: #C7A166;
	text-align: center;
	font-weight: 700;
	position: relative;
	padding-top: 20px;
	margin-bottom: 40px;
}
.ttl01::before {
	position: absolute;
	display: block;
	content: "";
	width: 480px;
	height: 2px;
	background: #C7A166;
	top: 0;
	right: 50%;
	transform: translate(50%,0);
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
	.area {
		padding: 40px 20px;
	}
	.inner {
		max-width: 100%;
	}
	.row_box {
		flex-flow: column;
		align-items: flex-start;
		justify-content: flex-start;
	}
	.row_box .img {
		width: 100%;
		margin-bottom: 40px;
	}
	.row_box .txt {
		width: 100%;
		font-size: 1.6rem;
	}
	.row_box .txt .bold {
		font-size: 2.4rem;
	}
	.ttl01 {
		font-size: 3.2rem;
		margin-bottom: 30px;
	}
	.ttl01::before {
		width: 160px;
		height: 2px;
	}
}


/* header
-------------------------------------------------------*/
#header {
	background: #C7A166;
	color: #fff;
	padding: 20px;
}
#header a {
	color: #fff;
	font-size: 1.4rem;
	line-height: 1;
}
#header .logo img {
	max-width: 200px;
	margin-right: 15px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#header {
		padding: 15px;
	}
	#header a {
		font-size: 1.2rem;
	}
	#header .logo img {
		max-width: 180px;
		margin-right: 0;
	}
}


/* visual
-------------------------------------------------------*/
#visual {
	margin-bottom: 60px;
}
#visual .inner {
	width: 100%;
	max-width: 100%;
	padding: 60px 0;
}
#visual .visual_ttl {
	text-align: center;
	font-size: 8rem;
	color: #C7A166;
	letter-spacing: 0.4em;
	font-weight: 900;
	margin-bottom: 40px;
}
#visual .visual_txt {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 40px;
}
#visual .visual_txt span {
	display: block;
	margin: 10px 0;
}
#visual .visual_txt img {
	max-width: 240px;
}
.visual_slide {
	position: relative;
	width: 100%;
	height: 560px;
	overflow: hidden;
	border-radius: 50px 50px 0 0;
}
.visual_slide li {
	position: absolute;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 4s ease;
}
.visual_slide li img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 10s ease;
	border-radius: 50px 50px 0 0;
}
.visual_slide li.active {
	opacity: 1;
	z-index: 1;
}
.visual_slide li.active img {
	transform: scale(1.1);
}

@media screen and (max-width:1100px) {
	#visual .visual_ttl {
	font-size: 6rem;
}
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#visual {
		margin-bottom: 0px;
	}
	#visual .inner {
		padding: 40px 0px;
	}
	#visual .visual_ttl {
		font-size: 4.6rem;
	}
	#visual .visual_txt {
		font-size: 1.6rem;
	}
	#visual .visual_txt span {
		margin: 10px 0 5px;
	}

	.visual_slide {
		height: 240px;
	}

	
}


/* area01
-------------------------------------------------------*/
#area01 .txt {
	margin-left: 40px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#area01 .txt {
		margin-left: 0;
	}
}


/* area02
-------------------------------------------------------*/
#area02 .img {
	margin-bottom: 50px;
}
#area02 .txt {
	font-size: 1.8rem;
	line-height: 2;
	font-weight: 500;
}
.list_accident {
	margin: 40px auto;
	display: flex;
	flex-flow: row wrap;
	align-items: stretch;
	justify-content: space-between;
	max-width: 840px;
}
.list_accident li {
	width: 49%;
	background: #C7A166;
	color: #fff;
	padding: 15px;
	box-sizing: border-box;
	font-weight: 500;
	line-height: 1;
}
.list_accident li:nth-child(-n+2) {
	margin-bottom: 2%;
}
.list_accident li span {
	font-size: 2.4rem;
	display: block;
	margin: 10px 0;
}
#area02 .mid_txt {
	font-weight: 700;
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 40px;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#area02 .img {
		margin-bottom: 40px;
	}
	#area02 .txt {
		font-size: 1.6rem;
		text-align: left;
	}
	.list_accident {
		margin: 25px auto;
		flex-flow: column;
		align-items: flex-end;
		justify-content: flex-start;
		max-width: 100%;
	}
	.list_accident li {
		width: 100%;
		margin-bottom: 15px;
		line-height: 1.2;
	}
	.list_accident li:nth-child(-n+2) {
		margin-bottom: 15px;
	}
	.list_accident li:last-child {
		margin-bottom: 0;
	}
	#area02 .mid_txt {
		text-align: left;
		font-size: 2.4rem;
		margin-bottom: 25px;
	}

}


/* area03
-------------------------------------------------------*/
#area03 .txt {
	text-align: right;
	margin-right: 40px;
}
#area03 .txt span {
	margin-top: 10px;
	display: block;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#area03 .row_box {
		flex-flow: column-reverse;
	}
	#area03 .txt {
		text-align: left;
		margin-right: 0;
	}
}


/* area04
-------------------------------------------------------*/
#area04 {
	background: #C7A166 url(../img/dot02.png);
} 
#area04 .ttl01 {
	color: #fff;
	font-weight: 500;
}
#area04 .img {
	text-align: center;
	margin-bottom: 50px;
}
#area04 .img img {
	max-width: 640px;
}
#area04 .txt {
	font-size: 1.8rem;
	font-weight: 500;
	line-height: 2.4;
}
#area04 .txt .size_l {
	font-size: 2.4rem;
}
#area04 .mid_txt {
	margin: 50px 0;
	font-size: 4rem;
	font-weight: 700;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#area04 .txt {
		font-size: 1.6rem;
		line-height: 1.6;
		text-align: left;
	}
	#area04 .mid_txt {
		font-size: 3.2rem;
		text-align: left;
	}
}


/* area05
-------------------------------------------------------*/
#area05 .box {
	border: 1px solid #C7A166;
	padding: 80px 40px 40px;
}
#area05 .logo {
	text-align: center;
}
#area05 dl {
	max-width: 1104px;
	margin: 0 auto 50px;
}
#area05 .txt {
	text-align: right;
	color: #C7A166;
	font-size: 2rem;
	font-weight: 700;
}
.btn01 a {
	background: #C7A166;
	color: #fff;
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	max-width: 750px;
	margin: 0 auto;
	width: 100%;
	display: block;
	padding: 15px;
	border-radius: 100px;
}
#area05 .caution {
	font-size: 1.4rem;
	margin-top: 25px;
	color: #C7A166;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	
}
@media screen and (max-width:768px) {
	#area05 .box {
		padding: 40px 25px;
	}
	#area05 dl {
		max-width: 100%;
		margin: 0 auto 30px;
	}
	#area05 .logo {
		text-align: center;
		margin-bottom: 10px;
	}
	#area05 .logo img {
		max-width: 279px;
		margin: 0 auto;
	}
	#area05 .txt {
		text-align: center;
		font-size: 1.6rem;
	}
	.btn01 a {
		font-size: 1.6rem;
		max-width: 280px;
		padding: 15px;
		border-radius: 100px;
		box-sizing: border-box;
	}
	#area05 .caution {
		text-align: left;
	}

}


/* footer
-------------------------------------------------------*/
#footer.area {
	padding: 60px 20px 20px;
}
#footer .inner {
	display: flex;
	flex-flow: row nowrap;
	align-items: flex-end;
	justify-content: space-between;
}
#footer .footer_img {
	width: 23%;
	position: relative;
}
#footer .footer_img::before {
	position: absolute;
	display: block;
	content: "";
	width: 391px;
	height: 324px;
	bottom: -20px;
}
#footer .footer_img.left::before {
	background: url(../img/footer_left.png)no-repeat left center/391px 324px;
	right: 0;
}
#footer .footer_img.right::before {
	background: url(../img/footer_right.png)no-repeat left center/391px 324px;
	left: 0;
}
.footer_img {
	opacity: 0;
	transition: transform 1s ease-out, opacity 2s ease-out;
	position: absolute;
}
.footer_img.left {
	transform: translateX(-100%);
	right: 0;
}
.footer_img.right {
	transform: translateX(100%);
	left: 0;
}
.footer_img.show {
	opacity: 1;
	transform: translateX(0);
}
#footer .box {
	margin: 0 auto;
	max-width: 580px;
	text-align: center;
	width: 54%;
}
#footer .logo {
	margin-bottom: 15px;
}
#footer .logo img {
	max-width: 580px;
}
#footer .txt {
	font-size: 1.4rem;
	border-bottom: 1px solid #666;
	padding-bottom: 25px;
	margin-bottom: 25px;
}
.nav_footer {
	display: flex;
	flex-flow: row wrap;
	align-items: flex-start;
	justify-content: center;
	max-width: 450px;
	margin: 0 auto;
}
.nav_footer li {
	margin: 0 15px;
}
.nav_footer li:nth-child(-n+3) {
	margin-bottom: 15px;
}
.copy {
	font-size: 1.2rem;
	color: #666;
	margin-top: 40px;
	text-align: center;
}
@media screen and (min-width:768px) and ( max-width:1080px) {
	#footer .footer_img {
		width: 20%;
	}
	#footer .footer_img::before {
		width: 273px;
		height: 226px;
	}
	#footer .footer_img.left::before {
		background: url(../img/footer_left.png)no-repeat left center/273px 226px;
	}
	#footer .footer_img.right::before {
		background: url(../img/footer_right.png)no-repeat left center/273px 226px;
	}
}
@media screen and (max-width:768px) {
	#footer.area {
		padding: 60px 20px 20px;
	}
	#footer .box {
		margin: 0;
		width: 100%;
		max-width: 100%;
	}
	#footer dl {
		border-bottom: 1px solid #666;
		padding-bottom: 40px;
		margin-bottom: 40px;
		display: inline-block;
		flex-flow: column;
		justify-content: center;
		align-items: center;
		position: relative;
		padding-left: 120px;
	}
	#footer dl::before {
		position: absolute;
		display: block;
		content: "";
		background: url(../img/footer_img_sp.png)no-repeat left center/137px 113px;
		width: 137px;
		height: 113px;
		left: 0;
		z-index: 1;
	}
	#footer dl dt {
		padding-top: 40px;
		position: relative;
		z-index: 2;
	}
	#footer dl dd {
		padding-bottom: 40px;
		position: relative;
		z-index: 2;
	}
	#footer .logo {
		margin-bottom: 10px;
	}
	#footer .logo img {
		max-width: 210px;
	}
	#footer .txt {
		font-size: 1.2rem;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.nav_footer {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		max-width: 100%;
		margin: 0 auto;
		font-size: 1.6rem;
	}
	.nav_footer li {
		margin: 0;
	}
	.nav_footer li:nth-child(-n+3) {
		margin-bottom: 0;
	}
	.nav_footer li:not(:last-child) {
		margin-bottom: 25px;
	}
	.copy {
		margin-top: 60px;
	}

}


/* animation
-------------------------------------------------------*/
.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}
.fade-in.show {
	opacity: 1;
	transform: translateY(0);
}