@charset "UTF-8";

/* ==================================
SPファースト
===================================== */
/* 共通スタイル------------------------------- */
* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	list-style: none;
	font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ Pro", Meiryo, "游ゴシック", YuGothic, "小塚ゴシック Pr6N", osaka, sans-serif;
	font-weight: 600;
	font-size: 62.5%;

	&::before,
	&::after {
		box-sizing: border-box;
	}
}

/* 必要に応じて使用 */
/* html:focus-within {
	scroll-behavior: smooth;
} */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
	font-feature-settings: "palt";
}

p,
span,
strong,
a {
	margin-block: calc((1em - 1lh) / 2) !important;
	text-decoration-skip-ink: auto;
	line-height: 1.5;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
	color: #000000;
}

a {
	text-decoration: none;
}

a.noborder,
a.noborder:link,
a.noborder:hover,
a.noborder:active,
a.noborder:visited,
img {
	border: 0;
	vertical-align: bottom;
}

img {
	display: block;
	width: 100%;
}

table {
	table-layout: fixed;
	border-collapse: collapse;
	border-spacing: 0;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* only_pc/sp ------------- */
.only_sp {
	display: block;
}

.only_pc {
	display: none;
}

/* ▼=== bg-G common ===▼ */
.bg-G {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: -1;
	width: 100vw;
	height: 100%;
	background: #0057FF;
	background: linear-gradient(40deg, #0057ff, #4accff, #b0ffff, #4accff, #0057ff) 0 / 250% 100%;
	animation: bg-gradient 5s linear infinite alternate;
}

.bg-G:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../images/parts_noise.png);
	background-size: 300px;
	background-repeat: repeat;
}

@keyframes bg-gradient {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 100% 0;
	}
}

/* ▼=== btn-common ===▼ */
.btn-common {
	display: block;
	position: relative;
	border-radius: 50px;
	width: 80vw;
	height: 20vw;
	background-color: #007A1D;
}

.btn-common span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto !important;
	padding: 0 14.6666vw 0 0;
	width: fit-content;
	font-size: 2.0rem;
	color: #FFCB00;
}

.btn-common span:after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFCB00" d="m17.5.8C7.83.8,0,8.63,0,18.3s7.83,17.5,17.5,17.5,17.5-7.84,17.5-17.5S27.17.8,17.5.8Zm.19,28.19c-1.04.96-2.66.92-3.65-.09-1.02-1.04-1.01-2.7.02-3.73l4.45-4.23H7.96s-.07,0-.1,0c-1.46-.03-2.61-1.23-2.58-2.69.03-1.46,1.23-2.61,2.69-2.58h10.54l-4.45-4.23s-.03-.02-.04-.04c-1.04-1.01-1.07-2.68-.06-3.73,1.01-1.04,2.68-1.07,3.73-.06l11.23,10.69-11.23,10.69Z"/></svg>');
}

/* ▼=== link-text ===▼ */
.link-text {
	display: block;
	position: relative;
	width: 42.6666vw;
	height: 12vw;
}

.link-text span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto !important;
	padding: 0 12vw 0 0;
	width: fit-content;
	font-size: 2.0rem;
}

.link-text span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><path fill="%23007A1D" d="m17.5.8C7.83.8,0,8.63,0,18.3s7.83,17.5,17.5,17.5,17.5-7.84,17.5-17.5S27.17.8,17.5.8Zm.19,28.19c-1.04.96-2.66.92-3.65-.09-1.02-1.04-1.01-2.7.02-3.73l4.45-4.23H7.96s-.07,0-.1,0c-1.46-.03-2.61-1.23-2.58-2.69.03-1.46,1.23-2.61,2.69-2.58h10.54l-4.45-4.23s-.03-.02-.04-.04c-1.04-1.01-1.07-2.68-.06-3.73,1.01-1.04,2.68-1.07,3.73-.06l11.23,10.69-11.23,10.69Z"/></svg>');
}

body {
	position: relative;
}

/* ▼=== footer ===▼ */
footer {
	position: absolute;
	bottom: 0;
	padding-top: 85.86666vw;
	/* padding-top: 85.86666vw; */
	width: 100%;
}

footer .area-green {
	padding: 0 0 21.333vw 0;
	background-color: #007A1D;
}

footer .area-green>div {
	position: relative;
	height: 40px;
}

footer .area-green small {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
	font-size: 1.2rem;
	color: #ffffff;
}

footer .parm-parts {
	position: absolute;
	top: 0;
	z-index: -1;
	width: 100%;
	height: 85.86666vw;
}

footer .parm-parts li img {
	width: 100%;
	height: 100%;
}

footer .parm-parts li:nth-of-type(2),
footer .parm-parts li:nth-of-type(4) {
	display: none;
}

footer .parm-parts li:nth-of-type(1) {
	position: absolute;
	bottom: 5.98159vh;
	left: 0;
	width: 18.4vh;
	height: 31.59509vh;
}

footer .parm-parts li:nth-of-type(3) {
	position: absolute;
	bottom: 4.7546012vh;
	right: 0;
	width: 16.10429vh;
	height: 32.668711vh;
}

footer .parm-parts li:nth-of-type(5) {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	width: 66.666vw;
}

/* ▼== navigation common ===▼ */
.area-nav {
	position: relative;
	z-index: 99;
}

.area-nav .btn-bar {
	position: fixed;
	bottom: 0;
	z-index: 9999;
	width: 100%;
	height: 21.33333vw;
	background-color: #007A1D;
}

.area-nav .btn-bar .btn {
	position: absolute;
	top: 50%;
	right: 5.33333vw;
	z-index: 99999;
	transform: translateY(-50%);
	width: 10.6666vw;
	height: 6.93333vw;
}

.area-nav .btn-bar .btn span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	margin: 0 !important;
	width: 100%;
	height: 2px;
	background-color: #fff;
	transition: .3s;
}

.area-nav .btn-bar .btn span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

.area-nav .btn-bar .btn span:last-of-type {
	top: auto;
	bottom: 0;
}

.area-nav .btn-bar .btn.active span:first-of-type {
	top: 50%;
	transform: rotate(45deg);
}

.area-nav .btn-bar .btn.active span:nth-of-type(2) {
	opacity: 0;
}

.area-nav .btn-bar .btn.active span:last-of-type {
	top: 50%;
	transform: rotate(-45deg);
}

.area-nav .content-wrap {
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 9999;
	padding: 8vw 0 21.33333vw 10.66vw;
	width: 73.333vw;
	height: 100%;
	background-color: #007A1D;
	transition: .3s;
}

.area-nav .content h1 {
	margin: 0 0 5.33vw 0;
	width: 50.6666vw;
}

.area-nav .content.active .content-wrap {
	right: 0;
}

.area-nav .content .shadow {
	opacity: 1;
	transition: .3s;
}

.area-nav .content.active .shadow {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	opacity: 1;
}

.area-nav .content .nav-menu {
	margin: 0 0 13.33vw 0;
}

.area-nav .content .nav-menu li {
	margin: 0 0 10.66vw 0;
}

.area-nav .content .nav-menu li span {
	font-size: 1.5rem;
	color: #ffffff;
}

.area-nav .content .nav-sns {
	display: flex;
	flex-wrap: wrap;
}

.area-nav .content .nav-sns li {
	margin: 0 10.66vw 0 0;
}

.area-nav .content .nav-sns a {
	display: block;
	width: auto;
	height: 6.4vw;
}

.area-nav .content .nav-sns svg {
	width: auto;
	height: 100%;
	fill: #fff;
}

/* ▼=== area-mainVisual ===▼ */
.area-mainVisual {
	position: relative;
	width: 100%;
	height: calc(100dvh - 21.33333vw);
	overflow: hidden;
}

.area-mainVisual:before,
.area-mainVisual:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
}

.area-mainVisual:before {
	width: 100%;
	height: 95px;
	background-image: url(../images/mv_parts_garland.svg);
	background-repeat: repeat-x;
	background-size: contain;
	background-position: center;
}

.area-mainVisual:after {
	z-index: -1;
	width: 100%;
	height: 100%;
	background-image: url(../images/mv_parts_line.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	opacity: 0.8;
}

.area-mainVisual h1 {
	position: absolute;
	top: 17.1779vh;
	right: 0;
	left: 0;
	z-index: 99;
	margin: 0 auto;
	width: 89.3333vw;
	animation: bounce 0.8s ease-in-out;
}

@keyframes bounce {
	0% {
		transform: translateY(0) scale(0);
		opacity: 1;
	}

	30% {
		transform: translateY(-10px) scale(1.5);
	}

	50% {
		transform: translateY(0) scale(0.9);
	}

	70% {
		transform: translateY(-5px) scale(1.05);
	}

	100% {
		transform: translateY(0) scale(1);
	}
}

.area-mainVisual .text-copy {
	position: absolute;
	z-index: 95;
	top: calc(17.1779vh + 58.9333vw + 2.66vw);
	right: 0;
	left: 0;
	margin: 0 auto;
	border-radius: 50%;
	width: 40vw;
	height: 40vw;
	background-color: #FFCB00;
	transform: translateY(5px);
	opacity: 0;
	transition: .3s 1s;
}

.area-mainVisual .text-copy.fadeIn {
	transform: translateY(0);
	opacity: 1;
}

.area-mainVisual .text-copy span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto;
	width: 24vw;
}

.is_page_scr .area-mainVisual .parm-parts {
	transform: translateY(100%);
	opacity: 0;
}

.area-mainVisual .parm-parts {
	position: fixed;
	bottom: 21.33333vw;
	z-index: 9;
	height: calc(100% - 21.33333vw);
	width: 100%;
	transition: 1s ease-in-out;
	opacity: 1;
}

.area-mainVisual .parm-parts li img {
	width: 100%;
	height: 100%;
}

.area-mainVisual .parm-parts li:nth-of-type(2),
.area-mainVisual .parm-parts li:nth-of-type(4) {
	display: none;
	transform: scale(0.9);
	transform-origin: center bottom;
	transition: 0.2s 1.2s ease;
	opacity: 0;
}

.area-mainVisual.fadeIn .parm-parts li:nth-of-type(2),
.area-mainVisual.fadeIn .parm-parts li:nth-of-type(4) {
	transform: scale(1);
	opacity: 1;
}

.area-mainVisual .parm-parts li:nth-of-type(1) {
	position: absolute;
	bottom: 5.98159vh;
	left: 0;
	width: 18.4vh;
	height: 31.59509vh;
	transform: rotate(-5deg);
	transform-origin: left bottom;
	transition: 0.8s 0.3s ease;
	opacity: 0;
}

.area-mainVisual.fadeIn .parm-parts li:nth-of-type(1) {
	transform: rotate(0deg);
	opacity: 1;
}

.area-mainVisual .parm-parts li:nth-of-type(3) {
	position: absolute;
	bottom: 4.7546012vh;
	right: 0;
	width: 16.10429vh;
	height: 32.668711vh;
	transform: rotate(5deg);
	transform-origin: right bottom;
	transition: 0.8s 0.5s ease;
	opacity: 0;
}

.area-mainVisual.fadeIn .parm-parts li:nth-of-type(3) {
	transform: rotate(0deg);
	opacity: 1;
}

.area-mainVisual .parm-parts li:nth-of-type(5) {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	margin: 0 auto;
	width: 66.666vw;
	transform: scale(0.5);
	transform-origin: center bottom;
	transition: 0.5s 0.8s ease;
	opacity: 0;
}

.area-mainVisual.fadeIn .parm-parts li:nth-of-type(5) {
	transform: scale(1);
	opacity: 1;
}

/* ▼=== area-svg ===▼ */
.area-svg {
	display: none;
}

/* ▼=== h2 common ===▼ */
h2 {
	position: relative;
	z-index: 1;
	padding: 0 5.33vw 0 5.33vw;
	margin: 0 auto 13.33vw auto;
	width: fit-content;
}

h2:before,
h2:after {
	content: "";
	display: block;
	position: absolute;
}

h2::before {
	right: 0;
	bottom: 50%;
	width: 20px;
	height: 27px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 50" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFF500" d="m23.41 1c1.1.23 2.21.43 3.32.61-.35.99-.67 1.95-.76 3-.25 3.02 1.08 6.05 3.15 8.2 1.12 1.16 2.38 2.15 3.42 3.4 2.55 3.06 3.74 6.66 3.37 10.64-.38 4.03-1.97 7.52-4.62 10.57-.6.69-1.23 1.39-1.94 1.98.44-2.18.69-4.46.4-6.68-.02-.14-.04-.27-.06-.41s-.05-.27-.08-.41c-.03-.13-.06-.27-.1-.4s-.08-.26-.12-.4c-.04-.13-.09-.26-.14-.39s-.11-.26-.16-.38c-.06-.13-.12-.25-.18-.37s-.13-.24-.2-.36c-1.21-2.07-4.23-4.88-6.18-6.38l-3.02 17.13c-.37 2.04-.39 4.28-1.78 5.94-1.5 1.78-3.86 2.73-6.13 2.94-3.16.29-6.41-.59-8.86-2.65-1.45-1.22-2.56-2.84-2.71-4.77-.13-1.66.48-3.16 1.56-4.41 1.5-1.73 3.93-2.55 6.17-2.69 3.49-.22 6.56.89 9.15 3.17z" /></svg>');
	opacity: 0;
	transition: .3s 1s ease;
}

h2.fadeIn:before {
	bottom: 0;
	opacity: 1;
}

h2:after {
	left: 0;
	right: 0;
	bottom: 0;
	width: 0%;
	height: 2px;
	background-color: #FFF500;
	transition: .8s ease-in-out;
}

h2.fadeIn:after {
	width: 100%;
}

h2 .none {
	display: none;
}

h2 span:nth-of-type(2) {
	display: block;
	padding: 5px 0 2.66vw 0;
}

h2 span svg {
	display: block;
	margin: 0 auto;
	height: 8vw;
	filter: drop-shadow(0px 0px 1px #0057ff);
	transition: .3s .7s;
}

h2.fadeIn span svg {
	filter: drop-shadow(0px 0px 5px #0057ff);
}


/* ▼=== sec-box common ===▼ */
.sec-box {
	margin: 26.66vw 0 26.66vw 0;
}

.sec-box .inner {
	margin: 0 auto;
	width: calc(100% - 10.66vw);
}

.sec-box .box-text strong {
	line-height: 2;
	font-size: clamp(2.2rem, 5.86666vw, 2.5rem);
}

.sec-box .box-text .marker {
	background: linear-gradient(transparent 0%, rgba(255, 245, 0, 1) 0%);
	background-size: 0% 100%;
	background-repeat: no-repeat;
	transition: 1s ease-in-out;
}

.sec-box .box-text p.fadeIn .marker {
	background-size: 100% 100%;
}

.sec-box .box-text .red {
	color: #FF3600;
}

.parts-hanabi li {
	position: absolute;
	width: 40vw;
	opacity: 0;
}

.parts-hanabi li:first-of-type {
	top: 21.3333vw;
	left: 0;
	animation: hanabiAnime 2.5s 2s ease-out infinite;
}

.parts-hanabi li:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	animation: hanabiAnime 3s ease-out infinite;
}

@keyframes hanabiAnime {
	0% {
		clip-path: circle(0 at 50% 50%);
	}

	80% {
		clip-path: circle(100% at 50% 50%);
		opacity: 0.5;
	}

	85% {
		opacity: 0;
	}
}

/* ▼== UNDER common ===▼ */
.page-under {
	padding-bottom: 106.666vw;
}

.page-under .parts-hanabi {
	position: fixed;
	top: 21.333vw;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.page-under .under-common {
	position: relative;
	padding: 21.333vw 0 0 0;
}

.page-under .under-common:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 32px;
	background-image: url(../images/mv_parts_garland.svg);
	background-repeat: repeat-x;
	background-size: contain;
	background-position: center;
}

.page-under .under-common h2 {
	margin-bottom: 13.33vw;
	width: 100%;
}

.page-under p {
	font-weight: 500;
}

.page-under article .sec-box:first-of-type {
	margin-top: 0;
}

.page-under article .sec-box:last-of-type {
	margin-bottom: 0;
}

.page-under .sec-intro p {
	margin-block: calc((1em - 1lh) / 2) !important;
	text-align: center;
	line-height: 2;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
}



.page-under dl dt,
.page-under dl dt span {
	margin: 0 0 5.33vw 0;
	line-height: 1.5;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
	color: #FF3600;
}

.page-under dl dt span {
	display: block;
	font-size: 1.2rem;
}

.page-under dl dd {
	font-weight: 500;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
}


#top .area-nav .content-wrap {
	padding: 26.66vw 0 0 10.66vw;
}

#top .area-nav h1 {
	display: none;
}

/* ▼== TOP sec-about ===▼ */
#top {
	padding-bottom: 133.333333vw;
}

#top .sec-about {
	position: relative;
	margin-top: 0;
	padding-top: 26.66vw;
}

#top .sec-about .inner {
	position: relative;
	z-index: 1;
}

#top .sec-about .box-text {
	margin: 0 0 13.333vw 0;
}

#top .sec-about .box-text p {
	margin-block: calc((1em - 1lh) / 2) !important;
	text-align: center;
	line-height: 2;
	font-feature-settings: "palt";
	font-size: clamp(2rem, 5.33vw, 2.5rem);
}

#top .sec-about .btn-common {
	margin: 13.33vw auto 0 auto;
}

#top .sec-about .box-text strong {
	font-size: clamp(2.2rem, 5.86666vw, 2.8rem);
}

/* ▼== TOP sec-sns ===▼ */
#top .sec-sns {
	margin-top: 0;
}

#top .sec-sns .inner {
	position: relative;
	padding: 12vw 0;
}

#top .sec-sns .inner.fadeIn:before,
#top .sec-sns .inner.fadeIn:after {
	width: 100%;
}

#top .sec-sns .inner::before,
#top .sec-sns .inner::after {
	content: "";
	position: absolute;
	display: block;
	width: 0%;
	height: 5px;
	background-color: #FFF500;
	transition: 1s ease-in-out;
}

#top .sec-sns .inner::before {
	top: 0;
}

#top .sec-sns .inner::after {
	bottom: 0;
}

#top .sec-sns h2::before,
#top .sec-sns h2::after {
	content: none;
}

#top .sec-sns ul {
	display: grid;
	grid-template-columns: repeat(3, 21.333vw);
	justify-content: center;
	column-gap: 8vw;
	margin: 0 auto;
	width: 80vw;
}

#top .sec-sns ul li a {
	display: block;
	position: relative;
	border-radius: 50%;
	margin: 0 auto;
	width: 21.333vw;
	height: 21.333vw;
	background-color: #007A1D;
}


#top .sec-sns ul li svg {
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	margin: 0 auto;
	height: 8.5333vw;
	fill: #FFCB00;
}

/* ▼== TOP sec-past ===▼ */
#top .sec-past {
	margin-bottom: 0;
}


#top .sec-past .list-past {
	display: grid;
	grid-template-columns: repeat(2, 42.6666vw);
	margin: 0 0 13.33vw 0;
}

#top .sec-past .list-past li {
	position: relative;
	margin: 0 0 5.33vw 0;
}

#top .sec-past .list-past a {
	display: block;
	width: 42.6666vw;
	height: 12vw;
}

#top .sec-past .list-past span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto !important;
	padding: 0 12vw 0 0;
	width: fit-content;
	font-size: 2.0rem;
}

#top .sec-past .list-past span:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 36" xmlns="http://www.w3.org/2000/svg"><path fill="%23007A1D" d="m17.5.8C7.83.8,0,8.63,0,18.3s7.83,17.5,17.5,17.5,17.5-7.84,17.5-17.5S27.17.8,17.5.8Zm.19,28.19c-1.04.96-2.66.92-3.65-.09-1.02-1.04-1.01-2.7.02-3.73l4.45-4.23H7.96s-.07,0-.1,0c-1.46-.03-2.61-1.23-2.58-2.69.03-1.46,1.23-2.61,2.69-2.58h10.54l-4.45-4.23s-.03-.02-.04-.04c-1.04-1.01-1.07-2.68-.06-3.73,1.01-1.04,2.68-1.07,3.73-.06l11.23,10.69-11.23,10.69Z"/></svg>');
}

#top .sec-past .btn-common {
	margin: 0 auto;
}

/* ▼== about ===▼ */
#about .sec-intro {
	margin-top: 0;
}

#about .sec-intro strong {
	font-size: clamp(2rem, 5.33vw, 2.5rem);
}

#about .sec-list {
	position: relative;
	z-index: 1;
}

#about .sec-list .box-item {
	margin: 0 0 13.33vw 0;
	padding: 5.33vw 5.33vw;
	background-color: rgba(255, 255, 255, 0.6);
}

#about .sec-list .box-item h3 {
	margin: 0 0 5.33vw 0;
	font-weight: 600;
	font-size: clamp(2.2rem, 5.86666vw, 2.8rem);
	color: #FF3600;
}

#about .sec-list .box-item p {
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
}

#about .sec-list .box-item strong {
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	font-weight: 600;
}

#about .sec-list .box-item .link-text {
	margin: 5.33vw 0 0 auto !important;
}

/* ▼== program ===▼ */
#program .tab-panel {
	display: none;
}

#program .tab-panel.active {
	display: block;
}

#program .sec-box {
	margin: 0;
}

#program .sec-intro {
	margin: 0 0 13.33vw 0;
}


#program .tab-list {
	display: grid;
	grid-template-columns: repeat(2, 40vw);
	column-gap: 5.33vw;
	margin: 0 auto 8vw auto;
	width: fit-content;
}

#program .tab-list li {
	position: relative;
	border: 2px solid #007A1D;
	width: 40vw;
	background-color: #007A1D;
	filter: drop-shadow(0px 2px 10px #0057ff);
	transition: .3s;
}

#program .tab-list li.active {
	border: 2px solid #FFCB00;
	background-color: #FFCB00;
	transform: translateY(2px);
	filter: drop-shadow(0px 0px 2px #0057ff);
}

#program .tab-list li.active p {
	color: #007A1D;
}

#program .tab-list li span {
	display: block;
	margin: auto !important;
}

#program .tab-list li p {
	padding: 2.66vw 0 calc(2.66vw - 2px) 0;
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	color: #FFCB00;
	transition: .3s;
}

#program .tab-panel {
	position: relative;
	z-index: 1;
}

#program .tab-panel .inner {
	padding: 5.33vw 5.33vw;
	background-color: rgba(255, 255, 255, 0.6);
}

#program .tab-panel .inner .btn-common {
	margin: 0 auto 5.33vw auto !important;
	width: 100%;
}

#program .tab-panel .inner .btn-common span {
	font-size: clamp(1.4rem, 3.733vw, 2rem);
}


#program .tab-panel .left-side {
	margin: 0 0 13.333vw 0;

}

#program .tab-panel li {
	margin: 0 0 13.333vw 0;
	padding: 0 0 13.333vw 0;
	border-bottom: 5px solid #FFCB00;
}

#program .tab-panel li:first-of-type {
	padding-top: 13.333vw;
	border-top: 5px solid #FFCB00;
}

#program .tab-panel li:last-of-type {
	margin-bottom: 0;
}

#program .tab-panel li .box-img {
	margin: 0 0 5.33vw 0;
}

#program .tab-panel li h3 {
	margin: 0 0 8vw 0;
	font-size: clamp(2.2rem, 5.86666vw, 2.8rem);
	color: #FF3600;
}

#program .tab-panel .date {
	margin: 0 0 5.33vw 0;
}

#program .tab-panel .date dt {
	position: relative;
	margin: 0 0 5.33vw 0;
	padding: 10px 25px;
	width: fit-content;
	background-color: #FF3600;
}

#program .tab-panel .date dt span {
	display: block;
	margin: 0 auto 0 auto !important;
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
	color: #ffffff;
}

#program .tab-panel .date dd {
	margin: 0 auto 2.66vw auto;
	font-weight: 600;
}

#program .tab-panel .date:last-of-type,
#program .tab-panel .date dd:last-of-type {
	margin-bottom: 0;
}

#program .tab-panel .other-detail {
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 5.33vw 0;
}


#program .tab-panel .other-detail dt,
#program .tab-panel .other-detail dd {
	font-weight: 600;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
}

#program .tab-panel .other-detail dt {
	margin-bottom: 0;
	padding: 0 5.33vw 0 0;
}

#program .tab-panel .other-detail dd {
	width: calc(100% - (2em + 5.33vw));
}

#program .tab-panel .cs {
	position: relative;
	width: 100%;
	height: 52.8vw;
	background-color: #FFFFFF;
}

#program .tab-panel .cs span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	text-align: center;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	font-weight: 500;
}

/* ▼== present ===▼ */
#present h2 svg {
	margin-bottom: 5px;
}

#present .sec-intro {
	margin-bottom: 13.33vw;
}

#present .sec-explain {
	margin-top: 0;
}

#present .sec-explain .text-1 {
	margin: 0 0 13.333vw 0;
}

#present .sec-explain .box-text p {
	text-align: center;
	line-height: 2;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
}

#present .sec-explain .box-text a {
	background: linear-gradient(transparent 0%, #007A1D 0%);
	background-size: 100% 100%;
	line-height: 2;
	font-weight: 600;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	color: #FFCB00;
	transition: .3s;
}

#present .sec-explain ul {
	margin: 0 0 5.33vw 0;

}

#present .sec-explain li {
	margin: 0 0 5.33vw 0;
	padding: 5.33vw 0;
	background-color: rgba(255, 255, 255, 0.6);
}

#present .sec-explain li .box-text p {
	line-height: 1.5;
	font-weight: 600;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
}


#present .sec-explain li .box-text p span {
	display: block;
	margin: 5.33vw 0 0 0 !important;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	color: #FF3600;
}

#present .sec-explain li .box-text p strong {
	font-size: clamp(2rem, 5.33vw, 2.5rem);
	color: #FF3600;
}

#present .sec-explain .note {
	margin: 0 0 5.33vw 0 !important;
	font-size: 1.2rem;
}

#present .deadline {
	margin: 0 0 13.333vw 0;
}

#present .deadline dt {
	position: relative;
	margin-bottom: 0;
	width: 100%;
	height: 21.333vw;
	background-color: #FFCB00;
}

#present .deadline dt span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto !important;
	text-align: center;
	font-size: clamp(2.2rem, 5.86666vw, 2.5rem);
	color: #007A1D;
}

#present .deadline dd {
	border: 5px solid #FFCB00;
	background-color: rgba(255, 255, 255, 0.6);
}

#present .deadline dd span {
	display: block;
	padding: 6.66vw 0;
	text-align: center;
	font-size: clamp(2rem, 5.33vw, 2.5rem);
	color: #FF3600;
}

#present .text-2 p:has(strong) {
	margin: 0 0 5.33vw 0 !important;
}

#present .btn-common {
	margin: 13.333vw auto 0 auto !important;
}


/* ▼== eyecatch ===▼ */
#eyecatch h2 span:nth-of-type(2) {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

#eyecatch h2 svg:first-of-type {
	margin: 0 0 5px 0;
}

#eyecatch h2 svg {
	margin: 0;
	width: fit-content;
}

#eyecatch .sec-intro .box-img {
	margin-bottom: 13.33vw;
}

#eyecatch h3 {
	position: relative;
	margin: 0 0 13.33vw 0;
	width: 100%;
	height: 10.66vw;
	background-color: #FFCB00;
}

#eyecatch h3 span {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto !important;
	width: fit-content;
	font-size: clamp(2.5rem, 6.66vw, 2.8rem);
	color: #007A1D;
}

#eyecatch dl {
	margin: 0 0 5.33vw 0;
	padding: 5.33vw 5.33vw;
	border: 2px solid #FFCB00;
	background-color: rgba(255, 255, 255, 0.6);
}

#eyecatch dl dt {
	margin: 0 0 5.33vw 0;
}

#eyecatch dl dd {
	font-weight: 600;
}

/* ▼== fes-list ===▼ */
#fes .sec-intro .box-text:has(.box-video) {
	margin-bottom: 13.33vw;
}

#fes .box-video {
	position: relative;
	max-width: 600px;
	width: 89.6vw;
	max-height: 338px;
	height: 67.2vw;
	background-color: #ffffff;
}

#fes .box-video p {
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto;
}

#fes .titleList-select {
	margin: 0 0 10.66vw 0;
}

#fes .titleList-select .select-wrap {
	position: relative;
	z-index: 1;
}

#fes .titleList-select select {
	appearance: none;
	border: 0;
	border-radius: 10px;
	width: 100%;
	height: 16vw;
	background-color: #007A1D;
	text-align: center;
	-moz-text-align-last: center;
	text-align-last: center;
	font-size: 4.8vw;
	font-weight: bold;
	color: #ffffff;
}

#fes .titleList-select .select-wrap:after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 5.33vw;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 13px 8px 0 8px;
	border-color: #FFFFFF transparent transparent transparent;
}

#fes .list-wrap .current-board {
	display: block;
}

#fes .list-wrap .section ul {
	display: grid;
	grid-template-columns: repeat(2, 42.1333vw);
	column-gap: 5.33vw;
}

#fes .list-wrap .section li {
	margin: 0 0 5.33vw 0;
	width: 42.1333vw;
}

#fes .list-wrap .section li a {
	display: block;
	border: 2px solid #FFCB00;
}

#fes .list-wrap .section li .img {
	position: relative;

}

#fes .list-wrap .section li .img:before {
	content: "";
	display: block;
	position: absolute;
	bottom: -1px;
	right: 0;
	width: 35px;
	height: 48px;
	background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 36 50" xmlns="http://www.w3.org/2000/svg"><path fill="%23FFCB00" d="m23.41 1c1.1.23 2.21.43 3.32.61-.35.99-.67 1.95-.76 3-.25 3.02 1.08 6.05 3.15 8.2 1.12 1.16 2.38 2.15 3.42 3.4 2.55 3.06 3.74 6.66 3.37 10.64-.38 4.03-1.97 7.52-4.62 10.57-.6.69-1.23 1.39-1.94 1.98.44-2.18.69-4.46.4-6.68-.02-.14-.04-.27-.06-.41s-.05-.27-.08-.41c-.03-.13-.06-.27-.1-.4s-.08-.26-.12-.4c-.04-.13-.09-.26-.14-.39s-.11-.26-.16-.38c-.06-.13-.12-.25-.18-.37s-.13-.24-.2-.36c-1.21-2.07-4.23-4.88-6.18-6.38l-3.02 17.13c-.37 2.04-.39 4.28-1.78 5.94-1.5 1.78-3.86 2.73-6.13 2.94-3.16.29-6.41-.59-8.86-2.65-1.45-1.22-2.56-2.84-2.71-4.77-.13-1.66.48-3.16 1.56-4.41 1.5-1.73 3.93-2.55 6.17-2.69 3.49-.22 6.56.89 9.15 3.17z" /></svg>');
	background-repeat: no-repeat;
}

#fes .list-wrap .section li .text {
	padding: 5.33vw 0;
	background-color: #FFCB00;
	text-align: center;
}

#fes .list-wrap .section li .text h3 {
	margin: 0 0 2.66vw 0;
	font-size: clamp(1.6rem, 4.26vw, 2rem);
	color: #007A1D;
}

#fes .list-wrap .section li .text .office {
	font-weight: 600;
	font-size: 1.2rem;
}

#fes .list-wrap .section li .birthday {
	padding: 2.66vw 0;
	background-color: #007A1D;
}

#fes .list-wrap .section li .birthday p {
	text-align: center;
	font-weight: 600;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
	color: #FFCB00;
}


#fes .A_Line-board,
#fes .KA_Line-board,
#fes .SA_Line-board,
#fes .TA_Line-board,
#fes .NA_Line-board,
#fes .HA_Line-board,
#fes .MA_Line-board,
#fes .YA_Line-board,
#fes .RA_Line-board,
#fes .WA_Line-board {
	display: none;
}

/* ▼== fes-detail ===▼ */
#fesDetail .sec-castDtail .area-content {
	padding: 5.33vw 5.33vw;
	margin: 0 0 13.33vw 0;
	background-color: rgba(255, 255, 255, 0.6);
}

#fesDetail .sec-castDtail .box-img {
	margin: 0 0 13.33vw 0;
}

#fesDetail .sec-castDtail h3 {
	margin: 0 0 8vw 0;
	border-bottom: 5px solid #FFCB00;
	padding: 0 0 2.66vw 0;
}

#fesDetail .sec-castDtail h3>span {
	display: block;
	font-size: clamp(2.5rem, 6.66vw, 2.8rem);
}

#fesDetail .sec-castDtail h3 span.small {
	margin-left: 1em;
	font-size: clamp(1.4rem, 3.733vw, 1.6rem);
}


#fesDetail .sec-castDtail dl {
	border-bottom: 2px solid #FFCB00;
	padding: 8vw 0 8vw 0;
}

#fesDetail .sec-castDtail dt,
#fesDetail .sec-castDtail dd {
	line-height: 1.75;
}

#fesDetail .sec-castDtail dd {
	font-size: 1.6rem;
}

#fesDetail .sec-castDtail dl:first-of-type {
	padding-top: 0;
}

#fesDetail .sec-castDtail .ico-sns {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 20px;
	width: fit-content;
}

#fesDetail .sec-castDtail .ico-sns:has(+a) {
	margin-bottom: 20px;
}

#fesDetail .sec-castDtail .ico-sns a {
	display: block;
	position: relative;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	background-color: #007A1D;
}

#fesDetail .sec-castDtail .ico-sns svg {
	display: block;
	position: absolute;
	top: 50%;
	right: 0;
	left: 0;
	transform: translateY(-50%);
	margin: 0 auto;
	width: 30px;
	fill: #FFCB00;
}

#fesDetail .sec-castDtail .other-sns {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	border-radius: 50px;
	padding: 0px 30px;
	width: fit-content;
	height: 30px;
	background-color: #007A1D;
}

#fesDetail .sec-castDtail .other-sns span {
	display: block;
	color: #FFCB00;
}

#fesDetail .sec-castDtail .btn-common {
	margin: 0 auto;
}

/* ==================================
中間調整 ここから min-width:555px-800px
===================================== */
@media screen and (min-width: 555px) and (max-width: 800px) {
	.area-nav .btn-bar {
		position: fixed;
		bottom: 0;
		z-index: 9999;
		width: 100%;
		height: 80px;
		background-color: #007A1D;
	}

	.area-nav .btn-bar .btn {
		width: 40px;
		height: 26px;
	}


	.area-mainVisual,
	.area-mainVisual .parm-parts {
		height: calc(100dvh - 80px) !important;
	}

	.area-mainVisual .parm-parts {
		bottom: 80px !important;
	}

	.area-mainVisual h1 {
		top: 105px;
	}

	.area-mainVisual .text-copy {
		top: calc(105px + 58.9333vw + 2.66vw);
		left: 0 !important;
		right: 0 !important;
		width: 150px !important;
		height: 150px !important;
	}

	.area-mainVisual .text-copy span {
		width: 92px !important;
	}

	/*max-width: 820px*/
}

.textlink a{
	font-size: 1.6rem;
	color: #007a1d;
}
.textlink a:hover {
	color: #ffcb00;
}

