@charset "utf-8";
/*
------------
home.css
------------
*/

/* cv_btn */
.cv_btn a {
	display: inline-block;
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	background-color: #FC0;
	border: 1px solid #FC0;
	padding: clamp(10px, calc(100vw * 20 / 1400), 20px) clamp(20px, calc(100vw * 40 / 1400), 40px);
	border-radius: clamp(4px, calc(100vw * 10 / 1400), 10px);
	box-shadow: 5px 5px 0 0 #000;
	transition: all .3s ease;
}
.cv_btn a:hover {
	box-shadow: 0 0 0 0 #000;
	background-color: #fff;
	border: 1px solid #000;
}
@media only screen and (max-width: 768px) {
	.cv_btn a {
		transition: none;
	}
	.cv_btn a:hover {
		box-shadow: 5px 5px 0 0 #000;
		background-color: #FC0;
		border: 1px solid #FC0;
	}
}
/* sp_cv */
#sp_cv {
	display: none;
}
@media only screen and (max-width: 768px) {
	#sp_cv {
		display: block;
	}
	#sp_cv p a {
		width: 95vw;
		position: fixed;
		bottom: 2.5vw;
		left: 2.5vw;
		z-index: 10000;
		background-color: #FC0;
		box-shadow: 5px 5px 0 0 #000;
		font-size: clamp(1rem, calc(100vw * 16 / 375), 1.6rem);
		font-weight: 600;
		letter-spacing: 0.15em;
		padding: 20px 0;
		text-align: center;
	}
}
/* kv_area */
#kv_area {
	overflow: hidden;
	padding: clamp(20px, calc(100vw * 60 / 1400), 60px) 0 clamp(65px, calc(100vw * 150 / 1400), 150px) 0;
	position: relative;
}
#kv_area .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#kv_area .bg span {
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
}
#kv_area .bg span:nth-child(1) {
	width: calc(100vw * 445 / 1400);
	background-color: rgba(255, 255, 255, .5);
	top: calc(100vw * -100 / 1400);
	left: calc(100vw * -60 / 1400);
}
#kv_area .bg span:nth-child(2) {
	width: calc(100vw * 430 / 1400);
	border: 1px solid #fff;
	top: calc(100vw * -50 / 1400);
	right: calc(100vw * -130 / 1400);
}
#kv_area .bg span:nth-child(3) {
	width: calc(100vw * 538 / 1400);
	background-image: radial-gradient(#fff 1px, transparent 1px);
	background-size: 12px 12px;
	bottom: calc(100vw * -350 / 1400);
	left: calc(100vw * 60 / 1400);
}
#kv_area .inner {
	text-align: center;
	position: relative;
	z-index: 1;
}
#kv_area .inner .title {
	position: relative;
	display: inline-block;
}
#kv_area .inner .title p.shoulder {
	width: clamp(0px, calc(100vw * 276 / 1400), 276px);
	margin: 0 auto;
	position: relative;
	top: 10px;
	left: -40px;
}
#kv_area .inner .title h2 {
	width: clamp(0px, calc(100vw * 650 / 1400), 650px);
	margin: 0 auto;
}
#kv_area .inner .title p.subcopy {
	display: inline-block;
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	color: #4E4C49;
	background:linear-gradient(transparent 60%, #FFE100 60%);
	transform: skew(-10deg) rotate(-4deg);
}
#kv_area .inner .title p.circle {
	display: flex;
	justify-content: center;
	align-items: center;
	width: clamp(100px, calc(100vw * 130 / 1400), 130px);
	aspect-ratio: 1 / 1;
	font-size: clamp(1rem, calc(100vw * 14 / 1400), 1.4rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.5;
	color: #fff;
	background-color: #004260;
	border-radius: 50%;
	position: absolute;
	top: clamp(-20px, calc(100vw * -20 / 1400), -10px);
	right: clamp(-120px, calc(100vw * -120 / 1400), -100px);
}
#kv_area .inner .title p.circle::before {
	content: "";
	width: calc(100% + 10px);
	height: calc(100% + 10px);
	border: 1px solid #004260;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#kv_area .inner p.lead {
	font-size: clamp(1rem, calc(100vw * 14 / 1400), 1.4rem);
	color: #4E4C49;
	font-weight: 600;
	letter-spacing: 0.15em;
	line-height: 1.8;
	margin: clamp(20px, calc(100vw * 50 / 1400), 50px) 0 0 0;
}
#kv_area .inner p.cv_btn {
	margin: clamp(15px, calc(100vw * 30 / 1400), 30px) 0 0 0;
}
#kv_area .period {
	width: clamp(0px, calc(100vw * 360 / 1400), 360px);
	height: auto;
	position: absolute;
	bottom: clamp(0px, calc(100vw * 0 / 1400), 0px);
	right: clamp(20px, calc(100vw * 30 / 1400), 30px);
	z-index: 100;
}
@media only screen and (max-width: 768px) {
	#kv_area {
		padding: clamp(10px, calc(100vw * 40 / 375), 40px) 0 clamp(65px, calc(100vw * 150 / 375), 150px) 0;
	}
	#kv_area p.circle {
		display: flex;
		justify-content: center;
		align-items: center;
		width: clamp(100px, calc(100vw * 120 / 375), 120px);
		aspect-ratio: 1 / 1;
		font-size: clamp(1rem, calc(100vw * 12 / 375), 1.2rem);
		font-weight: 600;
		letter-spacing: 0.15em;
		line-height: 1.5;
		color: #fff;
		background-color: #004260;
		border-radius: 50%;
		position: absolute;
		top: clamp(-25px, calc(100vw * -25 / 375), -10px);
		right: clamp(-10px, calc(100vw * -10 / 375), -10px);
	}
	#kv_area p.circle::before {
		content: "";
		width: calc(100% + 10px);
		height: calc(100% + 10px);
		border: 1px solid #004260;
		border-radius: 50%;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	#kv_area .bg span:nth-child(1) {
		width: calc(100vw * 140 / 375);
		top: calc(100vw * -40 / 375);
		left: calc(100vw * -40 / 375);
	}
	#kv_area .bg span:nth-child(2) {
		display: none;
	}
	#kv_area .bg span:nth-child(3) {
		width: calc(100vw * 300 / 375);
		bottom: calc(100vw * -120 / 375);
		left: auto;
		right: calc(100vw * -40 / 375);
	}
	#kv_area .inner {
		text-align: left;
		width: 85vw;
		margin: 0 auto;
	}
	#kv_area .inner .title p.shoulder {
		width: clamp(0px, calc(100vw * 220 / 375), 220px);
		left: clamp(-30px, calc(100vw * -30 / 375), -10px);
	}
	#kv_area .inner .title h2 {
		width: 90%;
		margin: 0 auto;
		text-align: center;
	}
	#kv_area .inner .title p.subcopy {
		font-size: clamp(1rem, calc(100vw * 12 / 375), 1.4rem);
		position: relative;
		left: 50%;
		transform: translateX(-50%) skew(-10deg) rotate(-4deg);
	}
	#kv_area .inner p.lead {
		width: 85vw;
		font-size: clamp(1rem, calc(100vw * 12 / 375), 1.2rem);
		margin: clamp(10px, calc(100vw * 30 / 375), 30px) auto 0 auto;
		text-align: justify;
	}
	#kv_area .inner p.cv_btn {
		display: none;
	}
	#kv_area .period {
		width: clamp(0px, calc(100vw * 200 / 375), 200px);
		bottom: clamp(0px, calc(100vw * 0 / 375), 0px);
		right: clamp(-10px, calc(100vw * -10 / 375), -10px);
	}
}
/* prize_area */
.prize_wave_wrap {
	position: relative;
	z-index: 5;
}
.prize_wave_wrap .bg_prize {
	overflow: hidden;
}
.prize_wave_wrap::before,
.prize_wave_wrap::after{
	content: "";
	position: absolute;
	left: 0;
	width: 100%;
	height: 180px;
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: 1800px 140px;
	pointer-events: none;
	will-change: background-position;
}
/* 奥の波 */
.prize_wave_wrap::before {
	top: -100px;
	z-index: 1;
	background-image: url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 140'><path fill='%23F5B7D0' d='M0 0 C225 0 225 40 450 40 C675 40 675 0 900 0 C1125 0 1125 40 1350 40 C1575 40 1575 0 1800 0 L1800 140 L0 140 Z'/></svg>");
	animation: waveBack 26s linear infinite;
}
/* 手前の波 */
.prize_wave_wrap::after {
	top:-90px;
	z-index:2;
	background-image:url("data:image/svg+xml;utf8, <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1800 140'><path fill='%23EFC9D3' d='M0 0 C225 0 225 60 450 60 C675 60 675 0 900 0 C1125 0 1125 60 1350 60 C1575 60 1575 0 1800 0 L1800 140 L0 140 Z'/></svg>");
	animation: waveFront 20s linear infinite;
}
#prize_area {
	position: relative;
	background: #EFC9D3;
	padding: 65px 0 0 0;
	overflow: hidden;
}
#prize_area .inner {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
#prize_area .inner .list {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: clamp(0px, calc(100vw * 75 / 1400), 75px) clamp(0px, calc(100vw * 40 / 1400), 40px);
}
#prize_area .inner .list dl,
#prize_area .inner .list article {
	width: calc((100% / 3) - (clamp(0px, calc(100vw * 80 / 1400), 80px) / 3));
}
#prize_area .inner .list dl {
	text-align: center;
}
#prize_area .inner .list dl dt {
	width: clamp(0px, calc(100vw * 270 / 1400), 270px);
	position: relative;
	top: clamp(-30px, calc(100vw * -60 / 1400), -60px);
	margin: 0 auto;
}
#prize_area .inner .list dl dd {
	display: inline;
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 2;
	border-bottom: 1px solid #000;
	position: relative;
	left: clamp(-20px, calc(100vw * -20 / 1400), -5px);
}
#prize_area .inner .list article figure {
	width: 100%;
	position: relative;
}
#prize_area .inner .list article figure::before {
	content: "";
	font-family: "Roboto", sans-serif;
	font-size: clamp(1rem, calc(100vw * 66 / 1400), 6.6rem);
	color: rgba(255, 255, 255, .8);
	font-weight: 600;
	letter-spacing: 0;
	position: absolute;
	top: clamp(-30px, calc(100vw * -30 / 1400), -10px);
	left: clamp(5px, calc(100vw * 10 / 1400), 10px);;
}
#prize_area .inner .list article:nth-of-type(1) figure::before {
	content: "01";
}
#prize_area .inner .list article:nth-of-type(2) figure::before {
	content: "02";
}
#prize_area .inner .list article:nth-of-type(3) figure::before {
	content: "03";
}
#prize_area .inner .list article:nth-of-type(4) figure::before {
	content: "04";
}
#prize_area .inner .list article:nth-of-type(5) figure::before {
	content: "05";
}
#prize_area .inner .list article p {
	font-size: clamp(1rem, calc(100vw * 14 / 1400), 1.4rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.6;
	margin: 10px 0 0 0;
}
@keyframes waveBack{
	from{
		background-position: 0 0;
	}
	to{
		background-position: -1800px 0;
	}
}
@keyframes waveFront{
	from{
		background-position: 0 0;
	}
	to{
		background-position: -1800px 0;
	}
}
@media only screen and (max-width: 768px) {
	#prize_area {
		padding: 20px 0 0 0;
	}
	#prize_area .inner {
		width: 85vw;
		max-width: 85vw;
	}
	#prize_area .inner .list {
		display: block;
	}
	#prize_area .inner .list dl,
	#prize_area .inner .list article {
		width: 100%;
	}
	#prize_area .inner .list dl dt {
		width: 30vw;
		top: 0;
		margin: 0 auto 20px auto;
	}
	#prize_area .inner .list dl dd {
		font-size: clamp(1rem, calc(100vw * 14 / 375), 1.4rem);
		left: clamp(-5px, calc(100vw * -5 / 375), -5px);
	}
	#prize_area .inner .list article {
		margin: 45px 0 0 0;
	}
	#prize_area .inner .list article:nth-of-type(n + 2) {
		margin: 65px 0 0 0;
	}
	#prize_area .inner .list article figure::before {
		font-size: clamp(1rem, calc(100vw * 66 / 375), 6.6rem);
		top: clamp(-30px, calc(100vw * -30 / 375), -10px);
		left: clamp(5px, calc(100vw * 10 / 375), 10px);;
	}
	#prize_area .inner .list article p {
		font-size: clamp(1rem, calc(100vw * 14 / 375), 1.4rem);
	}
}
/* cv_area */
#cv_area {
	background-color: #EFC9D3;
	padding: 125px 0 125px 0;
	position: relative;
}
#cv_area .bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
#cv_area .bg span {
	height: auto;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	position: absolute;
}
#cv_area .bg span:nth-child(1) {
	width: calc(100vw * 430 / 1400);
	border: 1px solid #fff;
	top: calc(100vw * -100 / 1400);
	left: calc(100vw * -60 / 1400);
}
#cv_area .bg span:nth-child(2) {
	width: calc(100vw * 550 / 1400);
	background-color: rgba(255, 255, 255, .5);
	top: calc(100vw * -200 / 1400);
	right: calc(100vw * -100 / 1400);
}
#cv_area .bg span:nth-child(3) {
	width: calc(100vw * 230 / 1400);
	background-color: rgba(255, 255, 255, .2);
	bottom: calc(100vw * 20 / 1400);
	left: calc(100vw * -60 / 1400);
}
#cv_area .bg span:nth-child(4) {
	width: calc(100vw * 382 / 1400);
	background-image: radial-gradient(#fff 1px, transparent 1px);
	background-size: 12px 12px;
	bottom: calc(100vw * 20 / 1400);
	right: calc(100vw * 60 / 1400);
}
#cv_area .inner {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
	position: relative;
	z-index: 1;
}
#cv_area .inner h3 {
	display: inline-block;
	font-size: clamp(1rem, calc(100vw * 30 / 1400), 3rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	color: #4E4C49;
	border-bottom: 4px solid #4E4C49;
	padding: 0 0 10px 0;
}
#cv_area .inner p.shoulder {
	margin: clamp(15px, calc(100vw * 45 / 1400), 45px) auto 0 auto;
	width: clamp(150px, calc(100vw * 300 / 1400), 300px);
}
#cv_area .inner p.lead {
	margin: clamp(10px, calc(100vw * 20 / 1400), 20px) 0 0 0;
	display: inline-block;
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	color: #4E4C49;
	background:linear-gradient(transparent 60%, #FFE100 60%);
}
#cv_area .inner p.cv_btn {
	margin: clamp(15px, calc(100vw * 30 / 1400), 30px) 0 0 0;
}
#cv_area .inner p.cv_btn a {
	font-size: clamp(1rem, calc(100vw * 18 / 1400), 1.8rem);
	padding: clamp(10px, calc(100vw * 30 / 1400), 30px) clamp(20px, calc(100vw * 60 / 1400), 60px);
}
@media only screen and (max-width: 768px) {
	#cv_area {
		padding: 65px 0;
	}
	#cv_area .bg span:nth-child(1) {
		width: calc(100vw * 230 / 375);
		top: calc(100vw * -120 / 375);
		left: calc(100vw * -150 / 375);
	}
	#cv_area .bg span:nth-child(2) {
		width: calc(100vw * 200 / 375);
		top: calc(100vw * -100 / 375);
		right: calc(100vw * -100 / 375);
	}
	#cv_area .bg span:nth-child(3) {
		width: calc(100vw * 140 / 375);
		bottom: calc(100vw * 20 / 375);
		left: calc(100vw * -60 / 375);
	}
	#cv_area .bg span:nth-child(4) {
		width: calc(100vw * 200 / 375);
		bottom: calc(100vw * 20 / 375);
		right: calc(100vw * -120 / 375);
	}
	#cv_area .inner {
		width: 85vw;
		max-width: 85vw;
	}
	#cv_area .inner h3 {
		font-size: clamp(1rem, calc(100vw * 20 / 375), 2rem);
	}
	#cv_area .inner p.shoulder {
		margin: clamp(15px, calc(100vw * 30 / 375), 30px) auto 10px auto;
		width: clamp(150px, calc(100vw * 200 / 375), 300px);
	}
	#cv_area .inner p.lead {
		display: inline;
		margin: 0;
		font-size: clamp(1rem, calc(100vw * 16 / 375), 1.6rem);
		line-height: 1.6;
	}
	#cv_area .inner p.cv_btn {
		margin: clamp(10px, calc(100vw * 20 / 375), 20px) 0 0 0;
	}
	#cv_area .inner p.cv_btn a {
		font-size: clamp(1rem, calc(100vw * 18 / 375), 1.8rem);
		padding: clamp(10px, calc(100vw * 20 / 375), 20px) clamp(15px, calc(100vw * 30 / 375), 30px);
	}
}
/* note_area */
#note_area {
	background-color: #EFC9D3;
	border-top: 1px solid #4E4C49;
}
#note_area .inner {
	width: calc(100vw * 1100 / 1400);
	max-width: 1100px;
	margin: 0 auto;
	padding: 125px 0;
}
#note_area .inner h3 {
	color: #004260;
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 600;
	letter-spacing: 0.15em;
	position: relative;
	padding: 0 0 0 calc(clamp(1rem, calc(100vw * 16 / 1400), 1.6rem) + 10px);
}
#note_area .inner h3::before {
	content: "";
	width: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: #004260;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
#note_area .inner h3:nth-of-type(2) {
	margin: clamp(20px, calc(100vw * 45 / 1400), 45px) 0 0 0;
}
#note_area .inner ul:not(.child) {
	margin: clamp(10px, calc(100vw * 15 / 1400), 15px) 0 0 0;
}
#note_area .inner ul li {
	font-size: clamp(1rem, calc(100vw * 16 / 1400), 1.6rem);
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 1.6;
	padding: 0 0 0 1.5rem;
	position: relative;
}
#note_area .inner ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
}
#note_area .inner ul.child li {
	padding: 0 0 0 1.8rem;
}
#note_area .inner ul.child li::before {
	content: "※";
}
@media only screen and (max-width: 768px) {
	#note_area .inner {
		width: 85vw;
		max-width: 85vw;
		padding: 65px 0;
	}
	#note_area .inner h3 {
		font-size: clamp(1rem, calc(100vw * 16 / 375), 1.6rem);
		padding: 0 0 0 calc(clamp(1rem, calc(100vw * 16 / 375), 1.6rem) + 5px);
	}
	#note_area .inner h3::before {
		width: clamp(1rem, calc(100vw * 16 / 375), 1.6rem);
	}
	#note_area .inner h3:nth-of-type(2) {
		margin: clamp(15px, calc(100vw * 30 / 375), 30px) 0 0 0;
	}
	#note_area .inner ul:not(.child) {
		margin: clamp(10px, calc(100vw * 15 / 375), 15px) 0 0 0;
	}
	#note_area .inner ul li {
		font-size: clamp(1rem, calc(100vw * 16 / 375), 1.6rem);
		text-align: justify;
	}
}