@charset "UTF-8";


.index main {
	position: relative;
	width: 100%;
	z-index: 20;
	padding-top: 0 !important;
}

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



/* hero ---------------*/
.hero {
	position: relative;
	display: block;
	height: 732px;
}

.hero .photo {
	background-image: url(../img/01_pc.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 61vw;
	height: 732px;
	border-radius: 0 0 100px 0;
}


.hero .photo img {
	max-width: 100%;
}

.hero .txt {
	position: absolute;
	top: 120px;
	left: 65vw;
}

.hero .txt .i01 {
	display: block;
	margin-left: -150px;
}

.hero .txt .i01 img {
	width: 259px;
}

.hero .txt h1 {
	margin-top: 40px;
}

.hero .txt .i02 {
	display: block;
	margin-left: 150px;
}

.hero .txt .i02 img {
	width: 216px;
}


.hero .topics {
	position: absolute;
	left: calc(61vw - 300px);
	bottom: -30px;
	z-index: 10;
	background-color: #fff;
	border: 2px solid #bfd73d;
	border-radius: 15px;
	padding: 15px 20px;
	box-sizing: border-box;
	min-width: 470px;
	box-shadow: 2px 2px 6px rgba(0, 0, 0, .2);
}

.hero .topics .ttl {
	display: flex;
	justify-content: space-between;
}

.hero .topics .com_btn_more a {
	padding-right: 30px;
	text-decoration: none;
	font-size: 12px;
}

.hero .topics .com_btn_more a span::after {
	top: -2px;
	width: 24px;
	height: 24px;
}


.hero .topics h2 {
	letter-spacing: 2px;
	font-size: 18px;
}

.hero .topics .list {
	margin-top: 10px;
}

.hero .topics .list::before {
	content: "";
	display: block;
	height: 2px;
	/* 線の太さ */
	background-image: repeating-linear-gradient(to right,
			#22b8cb 0 5px,
			#fff 5px 10px,
			#fee429 10px 15px,
			#fff 15px 20px,
			#bfd73d 20px 25px,
			#fff 25px 30px);
}

.hero .topics ul {
	list-style: none;
	margin-top: 5px;
}

.hero .topics ul li {
	border-bottom: 1px dotted #ccc;
	padding: .5em .3em;
}

.hero .topics ul li:last-child {
	border: none;
}

.hero .topics ul li .data {
	color: #8d8d8d;
	display: inline-block;
	margin-right: .5em;
}

.hero .topics ul li .mrk {
	display: inline-block;
	background-color: #f77968;
	color: #fff;
	font-size: 80%;
	padding: .2em .5em;
	line-height: 1em;
	margin-right: .5em;
	border-radius: 2px;
}


@media screen and (max-width: 767px) {
	.hero {
		height: auto;
	}

	.hero .photo {
		background-image: url(../img/01_sp.jpg);
		width: 94vw;
		height: 101vw;
		border-radius: 0 0 27vw 0;
	}

	.hero .txt {
		position: relative;
		top: auto;
		left: auto;
		margin-left: 5vw;
		margin-top: -15vw;
	}

	.hero .txt .i01 {
		margin-left: 0;
	}

	.hero .txt .i01 img {
		width: 48vw;
	}

	.hero .txt h1 {
		margin-top: 7vw;
		margin-left: 5vw;
	}

	.hero .txt h1 img {
		width: 47vw;
	}

	.hero .txt .i02 {
		margin-left: 51vw;
		margin-top: -13vw;
	}

	.hero .txt .i02 img {
		width: 38vw;
	}


	.hero .topics {
		position: relative;
		left: auto;
		bottom: auto;
		border-radius: 10px;
		padding: 15px 20px;
		min-width: auto;
		width: 90%;
		margin: 0 auto;
		margin-top: 5vw;
	}

	.hero .topics .com_btn_more a {
		padding-right: 8vw;
		font-size: 3.2vw;
	}

	.hero .topics .com_btn_more a span::after {
		top: -2px;
		width: 6vw;
		height: 6vw;
	}

	.hero .topics h2 {
		font-size: 5vw;
	}

	.hero .topics .list {
		margin-top: 3vw;
	}

	.hero .topics ul {
		list-style: none;
		margin-top: 5px;
	}

	.hero .topics ul li {
		font-size: 3.5vw;
	}

	.hero .topics ul li a {
		display: block;
	}

	.hero .topics ul li .mrk {
		transform: translateY(-2px);
	}
}


.hero .photo.p01 {
	background-image: url(../img/slider/01_pc.jpg);
}

.hero .photo.p02 {
	background-image: url(../img/slider/02_pc.jpg?v3);
}



@media screen and (max-width: 767px) {
	.hero .photo.p01 {
		background-image: url(../img/slider/01_sp.jpg);
	}

	.hero .photo.p02 {
		background-image: url(../img/slider/02_sp.jpg?v3);
	}
}


.information {
	width: 900px;
	margin: 0 auto;
	border: 4px solid #eb0000;
	margin-top: 60px;
	box-sizing: border-box;
	margin-bottom: 70px;
	padding: 30px 25px;
}

.information.orange {
	border: 4px solid #e70;
}

.information dl {
	margin: 0;
	padding: 0;
}

.information dl dt {
	font-size: 20px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 1px;
}

.information dl dd {
	font-size: 14px;
	line-height: 1.8em;
	margin-top: 30px;
}

.information dl dd p {
	margin-top: 1em;
}


.information dl dd a {
	font-size: 14px;
	text-decoration: underline;
}

@media screen and (max-width: 767px) {
	.information {
		width: 90%;
		margin-top: 5vw;
		margin-bottom: 10vw;
		padding: 8vw 5vw;
	}

	.information dl dt {
		font-size: 4vw;
	}

	.information dl dd {
		font-size: 3.8vw;
		text-align: justify;
		text-justify: inter-ideograph;
		margin-top: 5vw;
	}

	.information dl dd ul {
		margin-top: 5vw;
	}

	.information dl dd a {
		font-size: 3.6vw;
	}
}




/* ページ内共通 ---------------*/
.copy {
	font-size: 14px;
	line-height: 1.8em;
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.copy {
		font-size: 3.8vw;
		text-align: justify;
		text-justify: inter-ideograph;
		margin-top: 7vw;
	}
}



/* sec001 ---------------*/
#sec001 {
	background-color: #f8f5ef;
	padding-top: 100px;
	padding-bottom: 90px;
	margin-top: 65px;
}

#sec001 .wrap {}

#sec001 .box {
	overflow-x: hidden;
	padding-bottom: 150px;
}

#sec001 .box .txt {
	float: left;
	position: relative;
	width: 300px;
	margin-left: calc((100% - 1080px) / 2);
}

#sec001 .box .txt .com_btn_prev {
	margin-top: 50px;
}

#sec001 .box .txt .i01 {
	position: absolute;
	top: 315px;
	left: -360px;
}

#sec001 .box .txt .i01 img {
	width: 479px;
}

#sec001 .box .txt .i02 {
	position: absolute;
	top: 380px;
	right: 20px;
}

#sec001 .box .txt .i02 img {
	width: 172px;
}

#sec001 .box .photo {
	float: left;
	width: calc(100% - ((100% - 1080px) / 2) - 300px);
	overflow-x: hidden;
	white-space: nowrap;
}

#sec001 .box .photo .wrap_box {}

#sec001 .box .photo .wrap_box .com_report {
	vertical-align: top;
	display: inline-block;
	white-space: normal;
}

#sec001 .box .photo .wrap_box .com_report img {
	width: 300px;
	height: 300px;
}

#sec001 .com_btn_more {
	text-align: right;
	margin-top: -50px;
}

#sec001 .box .photo .com_last {
	display: none;
}

@media screen and (max-width: 767px) {
	#sec001 {
		margin-top: -5vw;
		padding-top: 15vw;
		padding-bottom: 7vw;
	}

	#sec001 .box {
		padding-bottom: 65vw;
		position: relative;
	}

	#sec001 .box .txt {
		position: static;
		float: none;
		width: 100%;
		margin-left: 0;
		margin-left: 5vw;
	}

	#sec001 .box .txt .com_btn_prev {
		display: none;
	}

	#sec001 .box .txt .i01 {
		position: absolute;
		top: auto;
		bottom: 35vw;
		left: 43vw;
	}

	#sec001 .box .txt .i01 img {
		max-width: 479px;
		width: 90vw;
	}

	#sec001 .box .txt .i02 {
		position: absolute;
		top: auto;
		bottom: 12vw;
		right: 0;
		left: 5vw;
		cursor: default;
	}

	#sec001 .box .txt .i02 img {
		max-width: 28vw;
	}

	#sec001 .box .photo {
		width: 100%;
		float: none;
		margin-left: 5vw;
		overflow-x: scroll;
		-ms-overflow-style: none;
		scrollbar-width: none;
		box-sizing: border-box;
	}


	#sec001 .box .photo::-webkit-scrollbar {
		display: none;
	}

	#sec001 .box .photo .wrap_box {
		margin-top: 8vw;
		margin-right: 5vw;
	}

	#sec001 .box .photo .com_report {
		width: 60vw;
		margin-right: 5vw;
	}

	#sec001 .box .photo .wrap_box .com_report img {
		width: 60vw;
		height: 60vw;
	}

	#sec001 .box .photo .com_last {
		display: inline-block;
		width: 1vw;
	}

	#sec001 .com_btn_more {
		margin-top: -20vw;
	}
}



/* sec002 ---------------*/
#sec002 {
	padding-top: 100px;
	padding-bottom: 90px;
}

#sec002 .box {
	display: flex;
	justify-content: space-between;
}

#sec002 .box .txt p {
	width: 460px;
	text-align: justify;
	text-justify: inter-ideograph;
}

#sec002 .box .txt .com_btn_more {
	margin-top: 30px;
}

#sec002 .box .photo {
	margin-top: -26px;
}

@media screen and (max-width: 767px) {
	#sec002 {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}

	#sec002 .box {
		flex-direction: column;
	}

	#sec002 .box .txt p {
		width: 100%;
	}

	#sec002 .box .txt .com_btn_more {
		margin-top: 8vw;
	}

	#sec002 .box .photo {
		margin-top: 15vw;
	}
}



/* sec003 ---------------*/
#sec003 {
	background-color: #f8f5ef;
	padding-top: 100px;
	padding-bottom: 120px;
}

@media screen and (max-width: 767px) {
	#sec003 {
		padding-top: 15vw;
		padding-bottom: 15vw;
	}
}