@charset "utf-8";

/* 共通スタイル
----------------------------------------- */
html {
	font-size: 62.5%;
}

body {
	background-color: #fff;
	color: #353E47;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	line-height: 1;
}

a {
	text-decoration: none;
	display: inline-block;
	color: #353E47;
	transition: .5s;
}

a:hover {
	transition: .5s;
	opacity: .7;
}

ul {
	list-style: none;
}

em {
	font-style: normal;
}

/* 全体レイアウト
----------------------------------------- */
.container {
	max-width: 1200px;
	margin: 0 auto;
}

/* 斜め背景 */
.skewBg {
	position: relative;
}

.skewBg::after {
	content: "";
	position: absolute;
	transform: skewY(-15deg);
	transform-origin: top left;
	z-index: -1;
	background: rgb(238, 248, 255);
	background: linear-gradient(180deg, rgba(238, 248, 255, 1) 0%, rgba(238, 248, 255, 1) 90%, rgba(249, 253, 255, 1) 100%);
}

@media screen and (min-width: 1200px) {
	.skewBg::after {
		left: calc(50% - 568px);
		width: 1136px;
	}
}

@media screen and (max-width: 1199px) {
	.skewBg::after {
		left: 25px;
		width: calc(100% - 50px);
	}
}

/* ヘッダー
----------------------------------------- */
header {
	display: flex;
	justify-content: space-between;
}

.hLogo {
	width: 292px;
	height: 36px;
}

.hCopy {
	width: 182px;
	height: 51px;
	margin: 57px 45px 0 0;
}

@media screen and (min-width: 1200px) {
	header {
		height: 112px;
	}

	.hLogo {
		margin: 65px 0 0 20px;
	}
}

@media screen and (max-width: 1199px) {
	header {
		height: 72px;
		margin: 0 25px;
	}

	.hLogo {
		margin-top: 15px;
	}

	.hCopy {
		display: none;
	}
}

@media screen and (max-width: 669px) {
	.hLogo {
		width: calc(100% - 135px);
		max-width: 292px;
	}

	.hLogo img {
		width: 100%;
		height: auto;
	}
}

/* ナビ（スマホ版）
----------------------------------------- */
@media screen and (min-width: 1200px) {

	#openBtn,
	#gNav {
		display: none;
	}
}

#gNav {
	position: fixed;
	z-index: 999;
	top: 0;
	right: -120%;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 1);
	transition: all 0.6s;
}

#gNav.panelactive {
	right: 0;
}

#gNav.panelactive #gNav-list {
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

#gNav ul {
	position: absolute;
	z-index: 999;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: "Josefin Sans", "Noto Sans JP";
	font-weight: 400;
}

#gNav li {
	text-align: center;
}

#gNav li a {
	letter-spacing: .1em;
	font-size: 1.3rem;
	width: 165px;
	height: 60px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 10px;
}

#gNav li a span {
	color: #35BAF2;
	display: block;
	font-size: 1.8rem;
	margin-bottom: .2em;
}

#gNav li.entry a {
	margin-bottom: 0;
}

#gNav li.contact a {
	color: #fff;
	background: rgb(65, 180, 229);
	background: linear-gradient(90deg, rgba(65, 180, 229, 1) 0%, rgba(74, 205, 182, 1) 65%, rgba(175, 221, 79, 1) 100%);
	border-radius: 30px 30px 30px 0;
	margin-top: 25px;
}

#gNav li.contact a span {
	color: #fff;
}

/* 開閉ボタン */
#openBtn {
	position: fixed;
	z-index: 9999;
	top: 10px;
	right: 25px;
	cursor: pointer;
	width: 114px;
	height: 40px;
	color: #fff;
	background: rgb(65, 180, 229);
	background: linear-gradient(90deg, rgba(65, 180, 229, 1) 0%, rgba(74, 205, 182, 1) 65%, rgba(175, 221, 79, 1) 100%);
	border-radius: 50px 0 0 50px;
}

#openBtn::after {
	content: "Menu";
	font-family: "Josefin Sans";
	font-weight: 400;
	letter-spacing: .1em;
	font-size: 1.8rem;
	position: absolute;
	top: 13px;
	right: 25px;
}

#openBtn.active::after {
	content: "Close";
}

/* ヒーローエリア
----------------------------------------- */
.hero {
	position: relative;
	background-image: url(../img/hero.webp);
}

.pageTitle {
	font-weight: bold;
	line-height: 1.2;
	letter-spacing: .1em;
	padding: 13px 0 0 17px;
	background: linear-gradient(90deg, #41B4E5 28%, #AFDD4F 65%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	filter: drop-shadow(1px 1px 0 rgba(0, 0, 0, 0.75)) drop-shadow(-1px -1px rgba(0, 0, 0, 0.65));
}

.catchcopy {
	padding: 0 0 0 17px;
	font-weight: bold;
	color: #000;
}

.catchcopy span {
	font-size: 3rem;
	letter-spacing: .25em;
	line-height: 1.8;
	background: linear-gradient(transparent 60%, #EBFF03 60%);
	display: inline;
}

.catchcopy em {
	color: #FD0202;
}

.catchcopy small {
	display: block;
	font-size: 1.2rem;
	letter-spacing: .25em;
	margin-top: 5px;
}

.deadline {
	display: block;
	position: absolute;
	right: 25px;
	bottom: 25px;
	width: 182px;
	height: 182px;
	color: #fff;
	background: #AFDD4F;
	border-radius: 50%;
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.85;
	letter-spacing: .1em;
	text-align: center;
	padding: 35px 0 0 .2em;
}

@media screen and (min-width: 1200px) {
	.hero {
		max-width: 1141px;
		height: 416px;
		margin: 0 auto;
		background-size: cover;
	}

	.pageTitle {
		font-size: 6.4rem;
	}

	.catchcopy br.spOnly {
		display: none;
	}
}

@media screen and (max-width: 1199px) {
	.hero {
		width: calc(100% - 50px);
		height: auto;
		background-size: 100% auto;
		margin: 0 25px;
	}

	.pageTitle {
		font-size: 8vw;
	}

	.catchcopy {
		margin-top: 3.8em;
	}

	.catchcopy span {
		font-size: 3.5vw;
	}

	.catchcopy br.pcOnly {
		display: none;
	}

	.deadline {
		position: unset;
		margin: 5px 45px -135px auto;
	}
}

@media screen and (max-width: 669px) {
	.pageTitle {
		font-size: 7.2vw;
		padding: 10px 0 0 17px;
	}

	.catchcopy {
		margin-top: 2.75em;
		padding: 0 0 0 7px;
	}

	.deadline {
		margin: 5px 15px -135px auto;
		width: 130px;
		height: 130px;
		font-size: 1.5rem;
		padding: 20px 0 0 .2em;
	}
}

@media screen and (max-width: 414px) {
	.catchcopy {
		margin-top: 1.25em;
	}

	.catchcopy small {
		font-size: 1rem;
	}

	.deadline {
		margin: 5px 7px -90px auto;
	}
}

@media screen and (max-width: 374px) {
	.pageTitle {
		font-size: 7vw;
	}
}

/* -----------------------------------------
応募終了のお知らせ　2025.4.30更新
----------------------------------------- */
.info {
	margin: 70px auto 0;
	max-width: 760px;
	padding: 25px 50px;
	border: 3px double #35BAF2;
}

.info p {
	text-align: center;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	color: #333;
	margin-bottom: .15em;
}

.info p:nth-child(2) {
	font-size: 28px;
	color: #35BAF2;
	margin-bottom: .5em;
	margin-top: 1.25em;
}

.info p span {
	background: linear-gradient(transparent 60%, #EBFF03 60%);
}

.info p em {
	color: #FD0202
}

.info p br {
	display: none;
}

.info p:nth-child(1) br {
	display: block;
}

.info p br.sp {
	display: none;
}


@media screen and (min-width: 1200px) {
	.info {
		background: linear-gradient(180deg, rgba(238, 248, 255, 1) 0%, rgba(249, 253, 255, 1) 25%, rgba(255, 255, 255, 1) 100%);
	}
}

@media screen and (max-width: 1199px) {
	.info {
		background: #fff;
	}
}

@media screen and (max-width: 1040px) {
	.info {
		margin: 105px auto 0;
	}
}

@media screen and (max-width: 859px) {
	.info {
		margin: 75px 50px 0;
		padding: 35px 15px;
	}

	.info p {
		margin-bottom: .5em;
	}

	.info p:nth-child(2) {
		margin-bottom: .75em;
	}

	.info p br {
		display: block;
	}
}

@media screen and (max-width: 767px) {
	.info {
		border: 0;
		margin: 80px 15px 0;
	}

	.info p {
		font-size: 16px;
	}

	.info p:nth-child(2) {
		font-size: 22px;
	}
	
	.info p br.sp {
		display: block;
	}
}

/* -----------------------------------------
メインコンテンツ
----------------------------------------- */
section p {
	line-height: 1.8;
	letter-spacing: .1em;
}

section h2,
section h3 {
	color: #35BAF2;
	font-family: "Josefin Sans", "Noto Sans JP";
	font-weight: 400;
	font-size: 7.2rem;
	letter-spacing: .1em;
}

section h2 span {
	display: block;
	font-size: 1.4rem;
	font-family: "Noto Sans JP";
	letter-spacing: .1em;
	border: 1px solid #35BAF2;
	border-right: 0;
	border-radius: 20px 0 0 20px;
	padding: 12px 0 12px 24px;
	width: 139px;
	height: 40px;
}

section .subtitle {
	font-weight: 900;
	font-size: 2.4rem;
	line-height: 1.8;
	letter-spacing: 0;
	background: linear-gradient(90deg, #41B4E5 0%, #AFDD4F 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin-bottom: .35em;
}

section .subtitle small {
	font-size: 1.5rem;
}

section .subtitle br {
	display: none;
}

section .mainTxt {
	line-height: 1.8;
}

section .wrap {
	display: flex;
	justify-content: space-between;
	width: 944px;
	margin: 0 auto;
}

@media screen and (min-width: 1200px) {

	main>section,
	div.notes {
		width: 1136px;
		padding: 0 96px;
		margin: 0 auto;
	}

	section h3 {
		margin-bottom: -.2em;
	}
}

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

	main>section,
	div.notes {
		width: 100%;
		padding: 0 25px;
	}

	section h2 {
		max-width: 944px;
		margin-right: auto;
		margin-left: auto;
	}

	section .wrap {
		width: 100%;
		max-width: 944px;
		flex-direction: column;
		align-items: center;
	}
}

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

	section h2,
	section h3 {
		font-size: 5.6rem;
	}

	section .subtitle {
		font-size: 1.8rem;
	}

	section .subtitle small {
		font-size: 1rem;
	}

	section .mainTxt {
		font-size: 1.4rem;
	}
}

/* About
----------------------------------------- */
.about {
	padding-top: 135px;
}

.about .subtitle {
	background: linear-gradient(90deg, #41B4E5 0%, #AFDD4F 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	margin: 25px 0 .35em 22px;
}

.about .youtube {
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 56.25%;
}

.about .youtube iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

@media screen and (min-width: 1200px) {
	.about.skewBg::after {
		top: 675px;
		height: 1900px;
	}

	.about .wrap:nth-of-type(1) {
		flex-direction: row-reverse;
	}

	.about .mainTxt {
		width: 622px;
		margin-bottom: .5em;
	}

	.about .wrap:nth-of-type(2) {
		align-items: center;
		width: 984px;
		margin-left: -20px;
	}

	.about .youtubeWrap {
		width: 360px;
	}
}

@media screen and (max-width: 1199px) {
	.about.skewBg::after {
		top: -750px;
		height: 900px;
		background: rgba(238, 248, 255, .75);
	}

	.about .subtitle {
		max-width: 944px;
		margin: 25px auto .35em;
	}

	.about .subtitle br {
		display: block;
	}

	.about .wrap:nth-of-type(1) figure {
		margin: -90px 0 0 auto;
	}

	.about .mainTxt {
		margin: 1em 0 1.5em;
		padding: 0 25px;
	}

	.about .youtubeWrap {
		width: 620px;
		margin-top: 25px;
	}
}

@media screen and (max-width: 669px) {
	.about {
		padding-top: 90px;
	}

	.about .mainTxt {
		padding: 0 5px;
	}

	.about .wrap:nth-of-type(1) figure {
		margin: -25px 0 0 auto;
	}

	.about .wrap:nth-of-type(1) figure img {
		width: 200px;
		height: auto;
	}

	.about .wrap:nth-of-type(2) figure img {
		width: 100%;
		height: auto;
	}

	.about .youtubeWrap {
		width: 100%;
	}
}

/* Point
----------------------------------------- */
.point {
	margin-top: 15px;
	padding-top: 135px;
	position: relative;
}

.point_01 h3 {
	text-align: center;
}

.point_01 .ctTxt {
	width: 614px;
}

.point_02 h3 {
	padding-top: 70px;
}

.point_02 .ctTxt {
	width: 490px;
}

.point_03 h3 {
	text-align: center;
	padding-top: 70px;
}

.point_03 .ctTxt {
	width: 530px;
}

.point dl {
	margin-top: 35px;
}

.point dt {
	color: #35BAF2;
	border: 1px solid #35BAF2;
	border-left: 0;
	border-radius: 0 60px 60px 0;
	width: 120px;
	height: 120px;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
	padding: 35px 1em 0 0;
	clear: both;
	float: left;
	margin: -10px 25px 0 0;
}

.point dd {
	line-height: 1.8;
	margin: .25em 0;
}

.point dd::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	background-image: url(../img/bullet.svg);
	background-size: cover;
	margin: 0 7px -3px 0;
}

.point_info {
	color: #35BAF2;
	font-size: 1.7rem;
	font-weight: bold;
	letter-spacing: 0;
	text-align: center;
	padding-top: 50px;
	position: relative;
}

.point_info a {
	color: #35BAF2;
	text-decoration: underline;
}

@media screen and (min-width: 1200px) {
	.point_01 h3 {
		margin-top: -10px;
		margin-left: -50px;
	}

	.point_03 h3 {
		margin-left: -20px;
	}

	.point_02 .wrap {
		flex-direction: row-reverse;
	}

	.point_02 figure {
		margin-top: 15px;
	}
}

@media screen and (max-width: 1199px) {
	.point h2 {
		padding-left: 25px;
	}

	.point .wrap {
		padding: 0 25px;
	}

	.point_01::after,
	.point_info::after {
		content: "";
		position: absolute;
		transform: skewY(-15deg);
		transform-origin: top left;
		z-index: -1;
		background: rgb(238, 248, 255);
		background: linear-gradient(180deg, rgba(238, 248, 255, 1) 0%, rgba(238, 248, 255, 1) 90%, rgba(249, 253, 255, 1) 100%);
	}

	.point_01::after {
		top: 200px;
		height: 1000px;
		left: 25px;
		width: calc(100% - 50px);
	}

	.point_info::after {
		top: 0;
		height: 1000px;
		left: 0;
		width: 100%;
	}

	.point_02,
	.point_03 {
		background: rgb(238, 248, 255);
	}

	.point_01 h3 {
		padding-top: 35px;
	}

	.point_01 figure {
		margin: 15px 0 20px;
	}

	.point_02 h3 {
		text-align: center;
	}

	.point_02 figure {
		margin-bottom: 20px;
	}

	.point_03 figure:nth-of-type(2) {
		text-align: center;
	}

	.point_03 figure:nth-of-type(2) img {
		width: 53px;
		height: auto;
		margin-bottom: 15px;
	}

	.point_info {
		padding: 50px 25px 0;
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 669px) {
	.point {
		margin-top: 0;
		padding-top: 90px;
	}

	.point .ctTxt {
		width: 100%;
	}

	.point_01 img,
	.point_02 img,
	.point_03 figure:nth-of-type(1) img {
		width: 100%;
		height: auto;
	}

	.point_01 figure {
		margin: 15px -50px 20px;
	}

	.point_03 figure:nth-of-type(1) {
		margin: 0 -25px -10px;
	}

	.point dt {
		float: none;
		width: auto;
		height: auto;
		padding: .75em 0;
		margin: 1.75em 0;
	}

	.point dt br {
		display: none;
	}

	.point dd {
		font-size: 1.4rem;
	}

	.point_info {
		font-size: 1rem;
	}
}

@media screen and (max-width: 480px) {
	section .subtitle br {
		display: block;
	}
}

/* 概要
----------------------------------------- */
.outline h2 {
	text-align: center;
}

.outline h2 br {
	display: none;
}

.outline p {
	color: #000;
	font-size: 2rem;
	font-weight: bold;
	line-height: 2.25;
	letter-spacing: .1em;
	text-align: center;
}

.outline p em {
	color: #FD0202;
}

.outline p small {
	font-size: 1.3rem;
}

@media screen and (min-width: 1200px) {
	.outline {
		padding-top: 215px;
	}

	.outline h2 {
		margin-bottom: 65px;
	}
}

@media screen and (max-width: 1199px) {
	.outline {
		padding-top: 100px;
	}

	.outline h2 {
		font-size: 5.6rem;
		margin-bottom: 30px;
	}

	.outline p {
		padding: 0 25px;
		font-size: 1.5rem;
	}

	.outline p small {
		font-size: inherit;
		display: block;
	}
}

@media screen and (max-width: 669px) {
	.outline h2 {
		font-size: 10vw;
		line-height: 1.15;
	}

	.outline h2 br {
		display: block;
	}

	.outline p {
		font-size: 1rem;
	}
}

/* 応募フォーム
----------------------------------------- */
section.entry {
	padding-top: 135px;
}

.entry h2 {
	text-align: center;
}

.entry_link {
	color: #fff;
	background: #35BAF2;
	border-radius: 50%;
	display: block;
	margin: 0 auto 62px;
	width: 226px;
	height: 226px;
	font-size: 2.7rem;
	line-height: 1.85;
	letter-spacing: .1em;
	text-align: center;
	padding: 58px 0 0 .2em;
}

/* 応募期間終了のお知らせ */
.entry_info {
	text-align: center;
	color: #FD0202;
	font-weight: 700;
	border-top: 1px solid #FD0202;
	border-bottom: 1px solid #FD0202;
	padding: .5em 0;
	margin: 0 auto 35px;
	max-width: 480px;
}

.entry dl {
	color: #000;
	font-size: 1.5rem;
	line-height: 1.5;
	text-align: center;
}

.entry dt {
	margin: 1.5em 0 .15em;
}

@media screen and (min-width: 1200px) {
	.entry.skewBg::after {
		top: 580px;
		height: 700px;
	}

	section.entry {
		margin-top: 125px;
	}

	.entry h2 {
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 1199px) {
	.entry h2 {
		font-size: 5.6rem;
		margin-bottom: 30px;
	}
}

@media screen and (max-width: 669px) {
	section.entry {
		padding-top: 110px;
	}

	.entry h2 {
		font-size: 10vw;
	}

	.entry_link {
		width: 160px;
		height: 160px;
		font-size: 2rem;
		line-height: 1.6;
		padding: 47px 0 0 .2em;
	}
}

/* Q&A
----------------------------------------- */
.qa {
	padding-top: 120px;
}

.qa h2 {
	margin-bottom: 60px;
}

.qa dl {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
	border-radius: 24px;
}

.qa_q {
	background: #fff;
}

.qa_a {
	height: 49px;
}

.qa dt {
	width: 64px;
	font-size: 2.8rem;
	font-family: "Josefin Sans";
	font-weight: 400;
	border-radius: 24px 0 0 24px;
	padding: 12px 0 0 24px;
}

.qa_q dt {
	height: 45px;
	color: #fff;
	background: rgb(65, 180, 229);
	background: linear-gradient(90deg, rgba(65, 180, 229, 1) 0%, rgba(74, 205, 182, 1) 65%, rgba(175, 221, 79, 1) 100%);
}

.qa_a dt {
	height: 49px;
	color: #35BAF2;
	border: 1px solid #35BAF2;
	border-right: 0;
}

.qa dd {
	letter-spacing: .1em;
}

.qa_q dd {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
}

.qa_a dd {
	font-size: 1.6rem;
	line-height: 1.8;
}

.qa li {
	margin-bottom: 40px;
}

@media screen and (max-width: 1199px) {
	.qa h2 {
		padding-left: 25px;
	}

	.qa ul {
		max-width: 944px;
		margin: 0 auto;
		padding-left: 25px;
	}
}

@media screen and (max-width: 669px) {
	.qa dt {
		font-size: 2.5rem;
	}

	.qa_q dd {
		font-size: 1.5rem;
	}

	.qa_a dd {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 414px) {
	.qa ul {
		padding-left: 5px;
	}
}

/* notes
----------------------------------------- */
.notes dl {
	color: #000;
	font-size: 1.7rem;
	line-height: 1.5;
	margin-top: 50px;
}

.notes dt {
	margin-bottom: .25em;
}

.notes li {
	margin: 0 0 0 1em;
	text-indent: -1em;
}

.notes li::before {
	content: "・";
}

.notes a {
	color: #FD0202;
	text-decoration: underline;
	display: inline;
}

@media screen and (max-width: 1199px) {
	.notes dl {
		font-size: 1.5rem;
		max-width: 944px;
		margin: 65px auto 0;
		padding-left: 15px;
	}
}

@media screen and (max-width: 669px) {
	.notes dl {
		font-size: 1rem;
		padding-left: 5px;
	}
}

/* フッター
----------------------------------------- */
footer {
	text-align: center;
	position: relative;
}

footer .snsLink {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 45px;
	margin-top: 100px;
}

footer .contact {
	margin-top: 100px;
}

footer .copyright {
	display: block;
	font-size: .9rem;
	letter-spacing: .1em;
	margin: 10px 0 50px;
}

#pageTop {
	position: absolute;
	right: 0;
	top: 150px;
}

@media screen and (max-width: 1199px) {
	#pageTop {
		display: none;
	}
}

@media screen and (max-width: 669px) {
	footer .contact {
		margin: 70px 0 25px;
	}
}