/*------------------------------------
.mv
------------------------------------*/
.mv {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	position: relative;
	background-color: #fabd00;
	height: calc(100vh - 100px);
	overflow: hidden;
}
.mv::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: url(../images/top/mv_pc.jpg) no-repeat center/cover;
	width: 68.958vw;
	height: 100%;
	z-index: 0;
}
.mv > * {
	position: relative;
	z-index: 1;
}
.mv__wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	background-color: #fabd00;
	width: calc(900 / 1920 * 100vw);
	margin-left: 0;
	padding: 7.407vh 3.646vw;
	z-index: 1;
}
.mv__flex {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-bottom: 20px;
}
.mv__flex li {
	align-items: center;
	background-color: #005970;
	height: 2.60vw;
	font-size: 1.56vw;
	font-weight: 800;
	line-height: 1;
	color: #fff;
	padding: 0 0.78vw;
}
.mv__catch {
	font-size: 4.6875vw;
	font-style: italic;
	font-weight: 900;
	line-height: 1.1;
	text-align: center;
	color: #005970;
}
.mv__catch span {
	display: block;
	font-size: 1.82vw;
	font-style: normal;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 10px;
}
.mv-list {
	width: 100%;
	padding-top: 30px;
}
.mv-list li {
	justify-content: center;
}
.link-big {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 8px;
	position: relative;
	background-color: #005970;
	border-radius: 45px;
	max-width: 430px;
	width: min(100%, 430px);
	height: 90px;
	font-size: 25px;
	font-weight: 800;
	line-height: 1;
	color: #fff;
}
.link-big::before,
.link-big::after {
	content: "";
	position: absolute;
}
.link-big::before {
	right: 1.30vw;
	background-color: #fff;
	border-radius: 50%;
	width: 2.08vw;
	height: 2.08vw;
}
.link-big::after {
	right: 1.93vw;
	background-image: url("../images/arrow_bl.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 0.78vw;
	height: 0.78vw;
}
.link-big small {
	font-size: 14px;
	font-weight: 400;
}
.mv-list .tel {
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}
.mv-list .num {
	align-items: baseline;
	gap: 8px;
	font-size: 30px;
	font-weight: 800;
	line-height: 1;
}
.mv-list .num::before {
	content: "";
	background-image: url("../images/icon_tel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 25px;
	height: 25px;
}
@media screen and (max-width: 768px) {
	.mv {
		height: calc(100vh - 60px);
	}
	.mv::before {
		top: auto;
		bottom: 0;
		width: 100%;
		height: 57%;
	}
	.mv__wrapper {
		width: calc(100% - 7.29vw);
		margin: 0 auto auto;
		padding: 40px 3.65vw 30px;
	}
	.mv__flex {
		margin-bottom: 2.6vw;
	}
	.mv__flex li {
		height: 6.51vw;
		font-size: 2.8646vw;
		padding: 0 8px;
	}
	.mv__catch {
		font-size: 10.42vw;
	}
	.mv__catch span {
		font-size: 3.91vw;
	}
	.mv-list {
		padding-top: 5.21vw;
	}
	.link-big {
		width: 80vw;
		height: 16vw;
		font-size: 3.91vw;
	}
	.link-big small {
		font-size: 12px;
	}
	.link-big::before {
		right: 3.26vw;
		width: 6.51vw;
		height: 6.51vw;
	}
	.link-big::after {
		right: 5.47vw;
		width: 1.95vw;
		height: 1.95vw;
	}
	.mv-list .tel {
		padding-top: 10px;
	}
	.mv-list .num {
		font-size: 20px;
	}
	.mv-list .num::before {
		width: 20px;
		height: 20px;
	}
}


/*------------------------------------
#intro
------------------------------------*/
#intro {
	background-color: #fabd00;
	padding: 40px 0 100px;
}
#intro .container {
	max-width: 900px;
}
.intro-list {
	counter-reset: intro-num;
	margin-bottom: 30px;
}
.intro-list li {
	display: flex;
	align-items: center;
	gap: 20px;
	counter-increment: intro-num;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.4;
	padding: 20px 0;
}
.intro-list li:not(:last-child) {
	border-bottom: 2px dashed #fff;
}
.intro-list li::before {
	content: counter(intro-num);
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: 60px;
	height: 60px;
	line-height: 1;
}
#intro strong {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #005970;
	width: 100%;
	height: 5.73vw;
	font-size: 1.56vw;
	font-weight: 800;
	line-height: 1.4;
	text-align: center;
	color: #fff;
}
@media screen and (max-width: 768px) {
	#intro {
		padding: 30px 0 50px;
	}
	.intro-list {
		margin-bottom: 5.21vw;
	}
	.intro-list li {
		font-size: 4.267vw;
		padding: 2.333vw 0;
	}
	.intro-list li::before {
		width: 11.2vw;
		height: 11.2vw;
	}
	#intro strong {
		height: auto;
		font-size: 3.91vw;
		padding: 2.333vw;
	}
}


/*------------------------------------
#reasons
------------------------------------*/
#reasons {
	counter-reset: reason;
	padding-top: 160px;
}
#reasons h2 {
	font-size: 2.60vw;
	text-align: center;
	margin-bottom: 80px;
}
.reasons__inner {
	position: relative;
}
.reasons__inner .container,
.reasons-list li {
	counter-increment: reason;
}
.reasons__inner .container {
	max-width: 1260px;
	width: calc(100% - 40px);
}
.reasons__inner .container > * {
	width: 50%;
}
.reasons__inner .img {
	position: absolute;
	inset: 0 auto 0 0;
	width: 50%;
}
.reasons__inner img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reasons__inner .txt {
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 700px;
	margin-left: auto;
	padding-left: 80px;
}
#reasons h3 {
	font-size: 35px;
	margin-bottom: 30px;
}
#reasons h3::before {
	content: "POINT " counter(reason, decimal-leading-zero);
	display: block;
	font-size: 20px;
	font-weight: 800;
	color: #8da8b2;
	margin-bottom: 5px;
}
#reasons p {
	text-align: justify;
}
.reasons__block:not(:last-child) {
	margin-bottom: 30px;
}
.reasons__block h4 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #005970;
	height: 50px;
	font-size: 30px;
	line-height: 1;
	color: #fff;
	margin-bottom: 20px;
	padding: 0 15px;
}
#reasons .container {
	max-width: 1260px;
}
.reasons-list li {
	justify-content: space-between;
	align-items: center;
	gap: clamp(24px, 4vw, 80px);
	padding-top: 80px;
}
.reasons-list li:nth-child(odd) {
	flex-direction: row-reverse;
}
.reasons-list .img {
	flex: 1 1 550px;
	max-width: 550px;
	min-width: 0;
}
.reasons-list .img img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}
.reasons-list .txt {
	flex: 1 1 630px;
	max-width: 630px;
	min-width: 0;
}
@media screen and (max-width: 768px) {
	#reasons {
		padding-top: 80px;
	}
	#reasons h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.reasons__inner .container {
		display: block;
		width: 100%;
		height: auto;
	}
	.reasons__inner .container > * {
		width: 100%;
	}
	.reasons__inner .img {
		position: static;
		height: auto;
		padding-right: 7.29vw;
	}
	.reasons__inner .txt {
		width: calc(100% - 7.29vw);
		min-height: 0;
		margin: auto;
		padding: 30px 0 0;
	}
	#reasons h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#reasons h3::before {
		font-size: 4.267vw;
	}
	.reasons__block h4 {
		height: 36px;
		font-size: 16px;
		margin-bottom: 20px;
		padding: 0 10px;
	}
	.reasons-list li {
		flex-wrap: wrap;
		padding-top: 40px;
	}
	.reasons-list .img {
		max-width: 100%;
	}
	.reasons-list .txt {
		max-width: 100%;
	}
}


/*------------------------------------
#area
------------------------------------*/
#area {
	position: relative;
	padding: 320px 0 120px;
	overflow: hidden;
	z-index: 0;
}
#area::after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: calc(495px - 4000px);
	transform: translateX(-50%);
	background-color: #fabd00;
	border-radius: 50%;
	width: 4000px;
	height: 4000px;
	z-index: -1;
}
#area .container {
	max-width: 1260px;
}
#area h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #fff;
	width: fit-content;
	height: 50px;
	font-size: 35px;
	line-height: 1;
	margin: auto;
	padding: 0 15px;
}
.area__flex {
	display: flex;
	gap: 50px;
	padding-top: 50px;
}
.area__flex li {
	display: flex;
	align-items: center;
	position: relative;
	background-color: #fff;
	border-radius: 5px;
	width: calc((100% - 50px) / 2);
	padding: 30px;
}
.area__flex h3 {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -25px;
	left: 30px;
	background-color: #005970;
	border-radius: 5px;
	height: 40px;
	font-size: 25px;
	line-height: 1;
	color: #fff;
	padding: 0 15px;
}
.area__flex strong {
	font-size: 20px;
	font-weight: 700;
}
.area__txt {
	text-align: center;
	padding-top: 30px;
}
@media screen and (max-width: 768px) {
	#area {
		padding: 160px 0 60px;
	}
	#area h2 {
		height: 40px;
		font-size: 20px;
		padding: 0 10px;
	}
	.area__flex {
		flex-wrap: wrap;
	}
	.area__flex li {
		width: 100%;
		padding: 20px;
	}
	.area__flex h3 {
		top: -25px;
		left: 20px;
		height: 36px;
		font-size: 16px;
		padding: 0 10px;
	}
	.area__flex strong {
		font-size: 4.267vw;
	}
	.area__txt {
		padding-top: 20px;
	}
}


/*------------------------------------
#lineup
------------------------------------*/
#lineup {
	padding: 120px 0;
}
#lineup .container {
	max-width: 1600px;
}
#lineup h2 {
	font-size: 2.60vw;
	text-align: center;
	margin-bottom: 50px;
}
.lineup-list {
	gap: 20px;
}
.lineup-list li {
	border-radius: 20px;
	width: calc((100% - 40px) / 3);
	box-shadow: 0 2px 7px 1px rgba(0,0,0,0.2);
	overflow: hidden;
}
.lineup-list .img {
	line-height: 0;
}

.lineup-list img {
	display: block;
	width: 100%;
	height: auto;
}
.lineup-list .txt {
	padding: 30px 40px 50px;
}
.lineup-list h3 {
	font-size: 1.56vw;
	text-align: center;
	margin-bottom: 20px;
}
.lineup-list small {
	display: block;
	font-size: 20px;
}
.lineup-list p:not([class]) {
	text-align: justify;
}
#lineup .link {
	padding-top: 60px;
}
@media screen and (max-width: 768px) {
	#lineup {
		padding: 60px 0;
	}
	#lineup h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.lineup-list {
		flex-wrap: wrap;
		gap: 30px;
	}
	.lineup-list li {
		width: 100%;
	}
	.lineup-list .txt {
		padding: 20px 20px 30px;
	}
	.lineup-list h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.lineup-list small {
		font-size: 4.267vw;
	}
	#lineup .link {
		padding-top: 40px;
	}
}


/*------------------------------------
#flow
------------------------------------*/
#flow {
	background-color: #ededeb;
	padding: 120px 0 90px;
}
#flow .container {
	max-width: 1600px;
}
#flow h2 {
	font-size: 2.60vw;
	text-align: center;
	margin-bottom: 60px;
}
.flow-list {
	counter-reset: flow;
	position: relative;
	gap: 40px;
}
.flow-list::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #b2cdd4;
	width: 100%;
	height: 4px;
	z-index: 0;
}
.flow-list li {
	counter-increment: flow;
	background-color: #fff;
	border: 4px solid #b2cdd4;
	width: calc((100% - 120px) / 4);
	padding: 3.13vw;
	z-index: 1;
}
.flow-list .num {
	flex-direction: column;
	align-items: center;
	gap: 5px;
}
.flow-list .step::before {
	content: "";
	display: block;
	background-image: url("../images/top/flow-step.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 60px;
	height: 18px;
}
.flow-list .digit {
	justify-content: center;
	align-items: center;
	background-color: #005970;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	font-size: 20px;
	font-weight: 800;
	color: #fff;
}
.flow-list .digit::before{
	content: counter(flow, decimal-leading-zero);
}
.flow__txt {
	padding-top: 20px;
}
.flow__txt h3 {
	font-size: 1.56vw;
	text-align: center;
	margin-bottom: 10px;
}
.flow__txt p:not([class]) {
	text-align: justify;
}
@media screen and (max-width: 768px) {
	#flow {
		padding: 60px 0;
	}
	#flow h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.flow-list {
		flex-wrap: wrap;
		gap: 20px;
	}
	.flow-list::after {
		top: 0;
		left: 50%;
		width: 4px;
		height: 100%;
	}
	.flow-list li {
		display: flex;
		align-items: center;
		gap: 20px;
		width: 100%;
		padding: 20px;
	}
	.flow-list .step::before {
		width: 40px;
		height: 12px;
	}
	.flow-list .digit {
		width: 50px;
		height: 50px;
		font-size: 4.267vw;
	}
	.flow__txt {
		padding: 0;
	}
	.flow__txt h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}
}


/*------------------------------------
#company
------------------------------------*/
#company {
	padding: 120px 0;
}
#company .container {
	flex-direction: row-reverse;
	align-items: center;
	gap: 60px;
	max-width: 1260px;
}
.company__txt {
	flex: 1 1 570px;
	max-width: 570px;
	min-width: 0;
}
.company__txt h2 {
	font-size: 35px;
	margin-bottom: 20px;
}
.company__txt .name {
	display: inline-flex;
	align-items: center;
	background-color: #005970;
	border-radius: 5px;
	height: 40px;
	font-size: 25px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	padding: 0 10px;
}
.company__txt .table {
	margin-top: 40px;
}
.company__txt .link {
	padding-top: 40px;
}
.company__txt .link a {
	background-color: #ededeb;
	color: #333;
	margin-left: 0;
}
.company__txt .link a::after {
	background-image: url("../images/arrow.svg");
}
.company__img {
	flex: 1 1 630px;
	max-width: 630px;
	min-width: 0;
}
.company__img img {
	margin-bottom: 15px;
}
.company__img iframe {
	display: block;
	width: 100%;
	height: 250px;
}
@media screen and (max-width: 768px) {
	#company {
		padding: 60px 0;
	}
	#company .container {
		flex-wrap: wrap;
		gap: 40px;
	}
	.company__txt {
		max-width: 100%;
	}
	.company__txt h2 {
		font-size: 24px;
		text-align: center;
		margin-bottom: 10px;
	}
	.company__txt .name {
		display: flex;
		width: fit-content;
		height: 36px;
		font-size: 16px;
		margin: auto;
	}
	.company__txt .table {
		margin-top: 30px;
	}
	.company__img {
		max-width: 100%;
	}
	.company__img .link {
		display: block;
		padding-top: 40px;
	}
}


/*------------------------------------
#reserve
------------------------------------*/
#reserve {
	background-color: #005970;
	padding: 80px 0;
}
#reserve .container {
	max-width: 1260px;
}
#reserve h2 {
	font-size: 1.82vw;
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}
.reserve__flex {
	gap: 30px;
}
.reserve__flex li {
	flex-direction: column;
	align-items: center;
	background-color: #fff;
	border: 4px solid #b2cdd4;
	width: calc((100% - 30px) / 2);
	padding: 50px;
}
.reserve__flex h3 {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 10px;
}
.reserve__flex p {
	line-height: 1.7;
	text-align: center;
}
.reserve__flex p:not([class]) {
	margin-bottom: 20px;
}
.reserve__flex .link-big {
	border-radius: 40px;
	max-width: 460px;
	width: min(100%, 460px);
	height: 80px;
}
.reserve__flex .tel {
	flex-direction: column;
	gap: 5px;
	line-height: 1;
	margin-bottom: 20px;
}
.reserve__flex .num {
	align-items: baseline;
	gap: 8px;
	font-size: 40px;
	font-weight: 800;
	margin-bottom: 10px;
}
.reserve__flex .num::before {
	content: "";
	background-image: url("../images/icon_tel.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 40px;
	height: 40px;
}
.reserve__flex small {
	display: block;
	font-size: 16px;
	text-align: center;
}
.reserve__flex .notes {
	justify-content: center;
	align-items: center;
	background-color: #ededeb;
	max-width: 460px;
	width: 100%;
	height: 70px;
}
@media screen and (max-width: 768px) {
	#reserve {
		padding: 60px 0;
	}
	#reserve h2 {
		font-size: 24px;
		margin-bottom: 30px;
	}
	.reserve__flex {
		flex-wrap: wrap;
	}
	.reserve__flex {
		gap: 20px;
	}
	.reserve__flex li {
		width: 100%;
		padding: 30px;
	}
	.reserve__flex h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.reserve__flex p {
		font-size: 12px;
	}
	.reserve__flex .link-big {
		width: 80vw;
		height: 16vw;
	}
	.reserve__flex .num {
		font-size: 25px;
	}
	.reserve__flex .num::before {
		width: 25px;
		height: 25px;
	}
	.reserve__flex small {
		font-size: 14px;
	}
	.reserve__flex .notes {
		height: 60px;
	}
}


/*------------------------------------
#news
------------------------------------*/
#news {
	background-color: #ededeb;
	padding: 120px 0;
}
#news h2 {
	font-size: 2.60vw;
	text-align: center;
	margin-bottom: 50px;
}
#news .link {
	padding-top: 40px;
}
@media screen and (max-width: 768px) {
	#news {
		padding: 60px 0;
	}
	#news h2 {
		font-size: 25px;
		margin-bottom: 30px;
	}
}


/*------------------------------------
#about
------------------------------------*/
#about {
	padding: 120px 0;
}
#about .container {
	max-width: 1260px;
}
#about h2 {
	font-size: 1.56vw;
	font-weight: 700;
	text-align: center;
	margin-bottom: 10px;
}
.about__txt {
	text-align: center;
	margin-bottom: 70px;
}
.about__row {
	gap: 60px;
}
.about__half {
	flex: 1 1 600px;
	max-width: 600px;
	min-width: 0;
}
.about__half .img {
	margin-bottom: 40px;
}
.about__half .catch {
	font-size: 35px;
	margin-bottom: 30px;
}
.about__half h3:not([class]) {
	font-size: 1.56vw;
	font-weight: 700;
	margin-bottom: 30px;
}
.about__half p {
	text-align: justify;
}
.about__half p:not(:last-child) {
	margin-bottom: 30px;
}
.about__half .sign {
	text-align: right;
}
.about__half .table {
	margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
	#about {
		padding: 60px 0;
	}
	#about h2 {
		font-size: 20px;
		margin-bottom: 5px;
	}
	.about__txt {
		margin-bottom: 30px;
	}
	.about__row {
		flex-wrap: wrap;
		gap: 50px;
	}
	.about__half {
		max-width: 100%;
	}
	.about__half .img {
		margin-bottom: 30px;
	}
	.about__half .catch {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.about__half h3:not([class]) {
		font-size: 20px;
		margin-bottom: 20px;
	}
	.about__half p:not(:last-child) {
		margin-bottom: 20px;
	}
}

/*.about__slider*/
.about__slider .slick-next,
.about__slider .slick-prev {
	background-color: transparent !important;
	width: 32px;
	height: 32px;
	z-index: 1;
}
.about__slider .slick-next {
	right: -30px;
}
.about__slider .slick-prev {
	left: -30px;
}
.about__slider .slick-next::before,
.about__slider .slick-prev::before {
	background: #112D12 !important;
	-webkit-clip-path: polygon(30% 0, 80% 50%, 30% 100%, 25% 95%, 70% 50%, 25% 5%);
	clip-path: polygon(30% 0, 80% 50%, 30% 100%, 25% 95%, 70% 50%, 25% 5%);
	content: '';
	display: block;
	height: 100%;
	opacity: 1;
	width: 100%;
}
.about__slider .slick-prev::before {
	transform: rotateY(180deg);
}
@media screen and (max-width: 768px) {
	.about__slider {
		width: 100vw;
		margin-left: 50%;
		transform: translateX(-50%);
	}
	.about__slider .slick-next,
	.about__slider .slick-prev {
		width: 24px;
		height: 24px;
	}
	.about__slider .slick-next {
		right: 15px;
	}
	.about__slider .slick-prev {
		left: 15px;
	}
	.about__slider .slick-slide {
		margin: 0 10px;
	}
}
