@charset "UTF-8";

/* mainv_block
----------------------------------------*/
.mainv_block {
	background-color: #fff;
	position: relative;
	aspect-ratio: 160 / 103;
}
.mainv_block img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: none;
}

.mv {
	position: relative;
}
.mv .mv_txt01 {
	width:  calc(962 / 1440 * 100%);
	position: absolute;
	left: calc(179 / 1440 * 100%);
	top: calc(125 / 1440 * 100vw);
	opacity: 0;
	filter: blur(5px);
	animation-fill-mode: forwards;
	animation-duration: 2.5s;
	animation-delay: 2s;
	animation-name: main_txt;
}
.mv .mv_txt02 {
	width:  calc(421 / 1440 * 100%);
	position: absolute;
	right: calc(106 / 1440 * 100%);
	bottom: calc(237 / 1440 * 100vw);
	opacity: 0;
	animation-fill-mode: forwards;
	animation-duration: 2.5s;
	animation-delay: 3.5s;
	animation-name: main_txt;
}
@media only screen and (max-width: 768px) {
	.mv .mv_txt01 {
		width: calc(347 / 430 * 100vw);
		top: calc(110 / 430 * 100vw);
		left: 50%;
		transform: translateX(-50%);
		margin: 0 auto;
	}
	.mv .mv_txt02 {
		width:  calc(195 / 430 * 100vw);
		right: calc(9 / 430 * 100vw);
		bottom: calc(30 / 430 * 100vw);
	}
}

@keyframes main_txt {
	0% {
		opacity: 0;
		filter: blur(5px);
	}
	100% {
		opacity: 1;
		filter: blur(0);
	}
}

/* sub_copy
----------------------------------------*/
.sub_copy {
	background: url("../img/index/sub_copy_bg.png") center no-repeat;
	background-size: cover;
	padding: 40px 15px;
}
.sub_copy h2 {
	text-align: center;
	font-size: 6rem;
	line-height: 1.3333;
}
@media only screen and (max-width: 768px) {
	.sub_copy {
		padding: 20px 15px;
	}
	.sub_copy h2 {
		font-size: clamp(2rem, 7vw, 3rem);
	}
}

/* info_wrap
----------------------------------------*/
.info_wrap {
	position: relative;
}
.info_inner {
	color: #ffffff;
	text-shadow: 0 0 10px #00406C;
	position: absolute;
	width: 100%;
	text-align: center;
	left: 0;
	right: 0;
	bottom: calc(112 / 1440 * 100vw);
}
.info_inner h3 {
	font-size: 10rem;
	position: relative;
	display: inline-block;
	letter-spacing: 0.3em;
	line-height: 1.2;
	padding: 0 0 2.2rem 0.3em;
	margin-bottom: 0.5rem;
}
.info_inner h3 small {
	font-size: 4.8rem;
	display: block;
	letter-spacing: 0.05em;
}
.info_inner h3::after {
	content: "";
	width: calc(100% - 0.6em);
	height: 2px;
	background-color: #ffffff;
	box-shadow: 0 0 10px #00406C;
	position: absolute;
	left: 0.3em;
	right: 0;
	bottom: 0;
}
.info_inner > div {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 3.5rem;
}
.info_inner > div p {
	font-size: 7rem;
	letter-spacing: 0.05em;
	text-shadow: 0 0 10px #00406C;
}
.info_inner > div a {
	width: 278px;
	filter: drop-shadow(0 0 10px #00406C);
	margin-top: 10px;
	transition: .4s;
}
.info_inner > div a:hover {
	opacity: 0.7;
}
@media only screen and (max-width: 768px) {
	.info_inner {
		bottom: calc(60 / 430 * 100vw);
	}
	.info_inner h3 {
		font-size: clamp(3rem, 9.6vw, 4.2rem);
		letter-spacing: 0.15em;
		padding: 0 0 2.2rem 0.15em;
	}
	.info_inner h3 small {
		font-size: clamp(1.6rem, 6vw, 2.2rem);
		display: block;
		letter-spacing: 0.05em;
	}
	.info_inner h3::after {
		width: calc(100% - 0.3em);
		left: 0.15em;
	}
	.info_inner > div {
		flex-direction: column;
		row-gap: 0.5rem;
	}
	.info_inner > div p {
		font-size: clamp(2.2rem, 9vw, 3.6rem);
	}
	.info_inner > div a {
		width: 278px;
		filter: drop-shadow(0 0 10px #00406C);
		margin-top: 10px;
		transition: .4s;
	}
}


/* merit_wrap
----------------------------------------*/
.mainv_merit {
	padding: 25px 15px 30px;
}
.mainv_merit ul {
	display: flex;
	flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  line-height: 1.3;
}
.mainv_merit ul li {
  font-size: 4.2rem;
	letter-spacing: 0.05em;
}
.mainv_merit ul li span {
  font-size: 5rem;
}
.mainv_merit ul li + li {
  position: relative;
	padding-left: 4.3rem;
}
.mainv_merit ul li + li::before {
  content: "";
	background: url("../img/index/merit_slash.png") center no-repeat;
	background-size: contain;
	width: 35px;
	height: 50px;
	position: absolute;
	left: 3px;
	top: 50%;
	transform: translateY(-45%);
}
@media only screen and (max-width: 768px) {
	.mainv_merit {
		padding: 15px;
	}
	.mainv_merit ul {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		row-gap: 13px;
	}
	.mainv_merit ul li {
		font-size: clamp(2rem, 6vw, 2.6rem);
	}
	.mainv_merit ul li span {
		font-size: clamp(3rem, 8vw, 4rem);
	}
	.mainv_merit ul li + li {
		position: relative;
		padding-left: 0;
	}
	.mainv_merit ul li + li::before {
		content: "";
		background: linear-gradient(to right,  rgba(94,183,232,1) 0%,rgba(156,215,244,1) 50%,rgba(103,191,153,1) 100%);
		width: 40px;
		height: 1px;
		position: absolute;
		left: calc(50% - 20px);
		top: 0;
		transform: translateY(0);
	}
}

/* sec01
----------------------------------------*/
.sec01 {
	background: #E0EBF1;
	padding: 100px 15px 65px;
}
.sec01 figure {
	max-width: 853px;
	margin: 0 auto 50px;
}
.sec01 p {
	text-align: center;
	font-size: 4rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
	.sec01 {
		padding: 30px 15px 25px;
	}
	.sec01 figure {
		width: 90%;
		margin: 0 auto 30px;
	}
	.sec01 p {
		font-size: clamp(1.4rem, 4.4vw, 2.2rem);
		line-height: 1.5;
	}
}

/* sec02
----------------------------------------*/
.sec02 {
	background: url("../img/index/sec02_bg.jpg") center top;
	background-size: cover;
	padding-bottom: 100px;
}
.sec02_inner {
	width: 1200px;
	background: #ffffff;
	border-radius: 20px;
	padding: 100px 100px 50px;
	margin: 80px auto 0;
	position: relative;
}
.sec02_inner h3 {
	text-align: center;
	height: 47px;
	margin-bottom: 60px;
}
.sec02_inner h3 img {
	height: 47px;
}
.sec02_inner .usagi {
	width: 189px;
	position: absolute;
	right: 100px;
	top: 47px;
	z-index: 2;
}
.sec02_02 {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin: 80px 0 40px;
}
.sec02_02 > div:nth-of-type(1) {
	width: 450px;
}
.sec02_02 > div:nth-of-type(1) h4 {
	font-size: 3rem;
	margin-bottom: 30px;
}
.sec02_02 > div:nth-of-type(1) p {
	font-size: 1.4rem;
	line-height: 2.3;
	letter-spacing: 0.1em;
	margin-bottom: 40px;
}
.sec02_02 > div:nth-of-type(1) ul {
	display: flex;
	justify-content: space-between;
	column-gap: 18px;
}
.sec02_02 > div:nth-of-type(1) ul p {
	font-size: 1.1rem;
	line-height: 1.3;
	margin: 3px 0 0;
}
.sec02_02 > div:nth-of-type(2) {
	width: 514px;
	display: flex;
	flex-direction: column;
	align-items: end;
}
.sec02_02 > div:nth-of-type(2) figure:first-child {
	width: 450px;
}

.sec02_border {
	width: 100%;
	height: 4px;
	background: linear-gradient(to right,  rgba(94,183,232,1) 0%,rgba(156,215,244,1) 50%,rgba(103,191,153,1) 100%);
	margin: 40px 0 70px;
}

.resort_block {
	margin: 80px 0 50px;
}
.resort_block ul {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	row-gap: 30px;
}
.resort_block ul li {
	width: 310px;
}
.resort_block ul li h4 {
	font-size: 3rem;
	margin-bottom: 10px;
}
.resort_block ul li h5 {
	font-size: 1.6rem;
	text-align: center;
	margin: 10px 0;
}
.resort_block ul li p {
	line-height: 2.28;
	letter-spacing: 0.1em;
}
.resort_block ul li:not(:first-of-type) p {
	line-height: 1.5;
}
.resort_block ul li p small {
	font-size: 1rem;
	display: block;
	text-align: right;
}

@media only screen and (max-width: 768px) {
	.sec02 {
		padding-bottom: 60px;
	}
	.sec02_inner {
		width: 94%;
		border-radius: 10px;
		padding: 60px 15px 30px;
		margin: 80px auto 0;
		position: relative;
	}
	.sec02_inner h3 {
		height: 25px;
		margin-bottom: 20px;
	}
	.sec02_inner h3 img {
		height: 25px;
	}
	.sec02_inner .usagi {
		width: 90px;
		right: -10px;
		top: -20px;
	}
	.sec02_02 {
		display: block;
		margin: 40px 0 20px;
	}
	.sec02_02 > div:nth-of-type(1) {
		width: 100%;
	}
	.sec02_02 > div:nth-of-type(1) h4 {
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.sec02_02 > div:nth-of-type(1) p {
		font-size: 1.3rem;
		line-height: 2;
		margin-bottom: 20px;
	}
	.sec02_02 > div:nth-of-type(1) ul {
		column-gap: 15px;
	}
	.sec02_02 > div:nth-of-type(1) ul p {
		font-size: 0.9rem;
		line-height: 1.3;
		margin: 3px 0 0;
	}
	.sec02_02 > div:nth-of-type(2) {
		width: 100%;
		align-items: center;
		margin: 30px 0 0;
	}
	.sec02_02 > div:nth-of-type(2) figure:first-child {
		width: 90%;
		margin-bottom: 20px;
	}

	.sec02_border {
		width: 100%;
		height: 4px;
		background: linear-gradient(to right,  rgba(94,183,232,1) 0%,rgba(156,215,244,1) 50%,rgba(103,191,153,1) 100%);
		margin: 30px 0 40px;
	}

	.resort_block {
		margin: 40px 0 20px;
	}
	.resort_block ul {
		row-gap: 20px;
		column-gap: 20px;
	}
	.resort_block ul li {
		width: 100%;
	}
	.resort_block ul li:not(:first-of-type) {
		width: calc(50% - 10px);
	}
	.resort_block ul li h4 {
		font-size: 2.2rem;
		margin-bottom: 10px;
	}
	.resort_block ul li h5 {
		font-size: 1.4rem;
		margin: 10px 0;
	}
	.resort_block ul li p {
		font-size: 1.3rem;
		line-height: 2;
	}
	.resort_block ul li:not(:first-of-type) p {
		line-height: 1.5;
	}
	.resort_block ul li p small {
		font-size: 1rem;
		text-align: left;
	}
}

