@charset "UTF-8";
:root {
	--black: #1a1a1a;
	--black20per: rgb(26 26 26 / 20%);
	--white: #fff;
	--white80per: rgb(255 255 255 / 80%);
	--white70per: rgb(255 255 255 / 70%);
	--white60per: rgb(255 255 255 / 60%);
	--white55per: rgb(255 255 255 / 55%);
	--white50per: rgb(255 255 255 / 50%);
	--white40per: rgb(255 255 255 / 40%);
	--white30per: rgb(255 255 255 / 30%);
	--white20per: rgb(255 255 255 / 20%);
	--white10per: rgb(255 255 255 / 10%);
	--brown: #6f564f;
	--brown30per: #6f564f30;
	--brown20per: #6f564f20;
	--btn-brown: #6f564f;
	--btn-brown-hover: #8c7169;
	--baige-brown: #f5dfd0;
	--baige: #f2e8da;
	--cream: #f5e7dc;
	--bgA: #f5ddd5;
	--bgB: #f5e4ce;
	--wheat: #f5e4d7;
	--bisque: #f5ddd550;
}

.clamp {
	--min-viewport: 768;
	--max-viewport: 1440;
	--min-size: 64;
	--max-size: 104;
	/* a 傾き */
	--slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
	/* b 切片 */
	--intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
	/* y = ax + b */
	--fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 16 * 1rem);
	/* clamp( 最小サイズ , 可変サイズ , 最大サイズ) */
	--clamp-size: clamp(var(--min-size) / 16 * 1rem, var(--fluid-size), var(--max-size) / 16 * 1rem);
}

@keyframes hidden {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes progress {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
/* ------------------------------
数値変換
------------------------------ */
.--hover-rotate {
	display: inline-block;
	text-decoration: none;
	perspective: 300px;
}
.--hover-rotate p,
.--hover-rotate span,
.--hover-rotate a {
	display: block;
	height: 20px;
	transition: transform 0.5s;
	backface-visibility: hidden;
}
.--hover-rotate p:first-child,
.--hover-rotate span:first-child,
.--hover-rotate a:first-child {
	transform: translateY(10px) rotateX(0deg);
}
.--hover-rotate p:last-child,
.--hover-rotate span:last-child,
.--hover-rotate a:last-child {
	transform: rotateX(-90deg);
}
.--hover-rotate:hover p:first-child,
.--hover-rotate:hover span:first-child,
.--hover-rotate:hover a:first-child {
	transform: rotateX(90deg);
}
.--hover-rotate:hover p:last-child,
.--hover-rotate:hover span:last-child,
.--hover-rotate:hover a:last-child {
	transform: translateY(-10px) rotateX(0deg);
}

.--is-sp {
	display: none;
}

.--is-pc {
	display: block;
}

.js-fade-in-elment {
	opacity: 0;
	transition:
		opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.1s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}

.js-fade-in.is-visible .js-fade-in-elment {
	opacity: 1;
	transform: translateY(0);
}

/* 初期状態: ぼかしあり */
.--target-image {
	filter: blur(6px);
	transition:
		filter 1s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 表示されたらぼかしを取る */
.--target-image-effect {
	filter: blur(0);
	transform: scale(1);
}

.no-scroll {
	overflow: hidden;
}

*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

:where([hidden]:not([hidden='until-found'])) {
	display: none !important;
}

:where(html) {
	-webkit-text-size-adjust: none;
	-moz-tab-size: 2;
	-o-tab-size: 2;
	tab-size: 2;
}
:where(body) {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}

:where(button) {
	all: unset;
}

:where(input, button, textarea, select) {
	font: inherit;
	color: inherit;
}

:where(textarea) {
	resize: vertical;
	resize: block;
}

:where(button, label, select, summary, [role='button'], [role='option']) {
	cursor: pointer;
}

:where(:disabled) {
	cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
	cursor: not-allowed;
}

:where(a) {
	color: inherit;
	text-underline-offset: 0.2ex;
}

:where(ul, ol) {
	list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object):not(.pane-footer *, .common-header *) {
	display: block;
}

:where(img, picture, svg, video):not(.pane-footer *, .common-header *) {
	max-inline-size: 100%;
	block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
	overflow-wrap: break-word;
}

:where(h1, h2, h3) {
	line-height: calc(1em + 0.5rem);
}

:where(hr) {
	block-size: 0;
	overflow: visible;
	color: inherit;
	border: none;
	border-block-start: 1px solid;
}

:where(:focus-visible) {
	outline: 2px solid #2e2c29;
	outline-offset: 2px;
}

:where(.visually-hidden:not(:focus-within, :active)) {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip-path: inset(50%) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

html {
	min-height: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-black);
	scrollbar-gutter: stable;
	background-color: var(--color-white);
	-webkit-text-size-adjust: 100%;
}
html:lang(en) {
	font-family: Roboto, serif;
}

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: clip;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

body {
	position: relative;
	min-height: 100vh;
	overscroll-behavior-y: none;
}

body:has(main.top, main.about) #footer {
	background-color: var(--color-blue);
}

body:not(:has(main.top)) .main {
	position: relative;
	background-color: var(--baige-brown);
}

main {
	position: relative;
	background-color: var(--color-white);
}

body:not(.is-loaded) * {
	transition: none !important;
}

a {
	color: var(--color-black);
	text-decoration: none;
}
a.is-disabled {
	pointer-events: none;
}
a[data-target] {
	cursor: pointer;
}
a.blank[target='_blank'] {
	--icon-size: 7px;
	--icon-gap: 4px;
}
a.blank[target='_blank']::after {
	position: relative;
	top: -0.5px;
	display: inline-block;
	width: var(--icon-size);
	aspect-ratio: 7/8;
	margin-right: calc((var(--icon-size) + var(--icon-gap)) * -1);
	margin-left: var(--icon-gap);
	content: '';
	background-color: currentcolor;
	-webkit-mask-image: url('/holidea/assets/images/common/icon_blank.svg');
	mask-image: url('/holidea/assets/images/common/icon_blank.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
}

summary {
	display: block;
}

summary::-webkit-details-marker {
	display: none;
}

@keyframes show {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
@keyframes hidden {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes loop {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}
@keyframes loopClone {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}
@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 1;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle__play {
	display: flex;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: flex;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

.splide__container {
	box-sizing: border-box;
	position: relative;
}

.splide__list {
	backface-visibility: hidden;
	display: flex;
	height: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
	display: block;
}

.splide__pagination {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	pointer-events: none;
}

.splide__pagination li {
	display: inline-block;
	line-height: 1;
	list-style-type: none;
	margin: 0;
	pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
	display: none;
}

.splide__progress__bar {
	width: 0;
}

.splide {
	position: relative;
	visibility: hidden;
}

.splide.is-initialized,
.splide.is-rendered {
	visibility: visible;
}

.splide__slide {
	backface-visibility: hidden;
	box-sizing: border-box;
	flex-shrink: 0;
	list-style-type: none !important;
	margin: 0;
	position: relative;
}

.splide__slide img {
	vertical-align: bottom;
}

.splide__spinner {
	animation: splide-loading 1s linear infinite;
	border: 2px solid #999;
	border-left-color: transparent;
	border-radius: 50%;
	bottom: 0;
	contain: strict;
	display: inline-block;
	height: 20px;
	left: 0;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 20px;
}

.splide__sr {
	clip: rect(0 0 0 0);
	border: 0;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
}

.splide__toggle.is-active .splide__toggle__play,
.splide__toggle__pause {
	display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
	display: flex;
}

.splide__track {
	overflow: hidden;
	position: relative;
	z-index: 0;
}

@keyframes splide-loading {
	0% {
		transform: rotate(0);
	}
	to {
		transform: rotate(1turn);
	}
}
.splide__track--draggable {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
	margin: 0 !important;
	opacity: 1;
	z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
	opacity: 1;
	z-index: 1;
}

.splide--rtl {
	direction: rtl;
}

.splide__track--ttb > .splide__list {
	display: block;
}

.splide__arrow {
	align-items: center;
	background: #ccc;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 2em;
	justify-content: center;
	opacity: 0.7;
	padding: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2em;
	z-index: 1;
}

.splide__arrow svg {
	fill: #000;
	height: 1.2em;
	width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
	opacity: 0.9;
}

.splide__arrow:disabled {
	opacity: 0.3;
}

.splide__arrow:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__arrow--prev {
	left: 1em;
}

.splide__arrow--prev svg {
	transform: scaleX(-1);
}

.splide__arrow--next {
	right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__pagination {
	bottom: 0.5em;
	left: 0;
	padding: 0 1em;
	position: absolute;
	right: 0;
	z-index: 1;
}

.splide__pagination__page {
	background: #ccc;
	border: 0;
	border-radius: 50%;
	display: inline-block;
	height: 8px;
	margin: 3px;
	opacity: 0.7;
	padding: 0;
	position: relative;
	transition: transform 0.2s linear;
	width: 8px;
}

.splide__pagination__page.is-active {
	background: #fff;
	transform: scale(1.4);
	z-index: 1;
}

.splide__pagination__page:hover {
	cursor: pointer;
	opacity: 0.9;
}

.splide__pagination__page:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__progress__bar {
	background: #ccc;
	height: 3px;
}

.splide__slide {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
	outline: 0;
}

@supports (outline-offset: -3px) {
	.splide__slide:focus-visible {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
@supports (outline-offset: -3px) {
	.splide.is-focus-in .splide__slide:focus {
		outline: 3px solid #0bf;
		outline-offset: -3px;
	}
}
.splide__toggle {
	cursor: pointer;
}

.splide__toggle:focus-visible {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
	outline: 3px solid #0bf;
	outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
	border: 3px solid transparent;
	cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
	border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
	left: auto;
	right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
	transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
	left: 1em;
	right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
	transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
	left: 50%;
	transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
	top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
	transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
	bottom: 1em;
	top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
	transform: rotate(90deg);
}

.splide__pagination--ttb {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: auto;
	padding: 1em 0;
	right: 0.5em;
	top: 0;
}

/* NEW HEADER / FOOTER - 2020 */
/* FOOTER */
.footer_v2 {
	position: relative;
	background: #fff;
	font-size: 1.2rem;
	font-family: sans-serif !important;
}

.footer_v2 .wrap_mailmagazine {
	background: transparent;
	margin: 0;
	padding: 0;
	height: 0;
}

.footer_v2 .wrap {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.footer_v2 .footer_v2_container {
	position: relative;
	margin: 0 10px;
	padding: 0;
}

.footer_v2 .footer_v2_container .wrap {
	position: relative;
}

.footer_v2 .footer_v2_container .menu {
	border-bottom: 1px solid #ccc;
	letter-spacing: -0.5em;
}

.footer_v2 .footer_v2_container .menu li {
	display: inline-block;
	margin: 0;
	padding: 5px 0;
	vertical-align: top;
	letter-spacing: normal;
	width: 46%;
	box-sizing: border-box;
	border-top: 1px solid #ccc;
}

.footer_v2 .footer_v2_container .menu li:nth-child(even) {
	width: 54%;
}

.footer_v2 .footer_v2_container .menu li a {
	position: relative;
	display: block;
	padding: 6px 6px 6px 18px;
	font-size: 13px;
	letter-spacing: normal;
}

.footer_v2 .footer_v2_container .menu li:nth-child(even) a {
	border-left: 1px solid #ccc;
}

.footer_v2.ir .footer_v2_container .menu li,
.footer_v2.ir .footer_v2_container .menu li:nth-child(even) {
	width: 46%;
}

.footer_v2.ir .footer_v2_container .menu li:nth-child(2),
.footer_v2.ir .footer_v2_container .menu li:nth-child(4),
.footer_v2.ir .footer_v2_container .menu li:nth-child(7),
.footer_v2.ir .footer_v2_container .menu li:nth-child(9) {
	width: 54%;
}

.footer_v2.ir .footer_v2_container .menu li:nth-child(10) {
	width: 100%;
}

.footer_v2.ir .footer_v2_container .menu li:nth-child(even) a {
	border-left: none;
}

.footer_v2.ir .footer_v2_container .menu li:nth-child(2) a,
.footer_v2.ir .footer_v2_container .menu li:nth-child(4) a,
.footer_v2.ir .footer_v2_container .menu li:nth-child(7) a,
.footer_v2.ir .footer_v2_container .menu li:nth-child(9) a {
	border-left: 1px solid #ccc;
}

.footer_v2 .footer_v2_container .menu li a:before {
	position: absolute;
	top: 12px;
	left: 3px;
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: rotate(45deg);
}

.footer_v2 h1 {
	padding: 25px 10px;
}

.footer_v2 h1 a {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer_v2 .copyright {
	position: relative;
	padding: 10px;
	border-top: 1px solid #ccc;
	color: #4d4d4d;
	font-size: 10px;
	font-weight: 600;
	height: 45px;
}

.footer_v2 .copyright .col12 {
	padding: 0;
	text-align: right;
	display: block;
}

.footer_v2 h1 {
	padding: 25px 10px;
}

.footer_v2 .sns {
	position: absolute;
	bottom: -42px;
	left: 0;
	z-index: 50;
}

.footer_v2 ul.sns li {
	width: 25px;
	padding: 0 5px;
	display: inline-block;
	box-sizing: content-box;
}

.footer_v2 .wrapper {
	max-width: 1080px;
	width: 100%;
	display: block;
	position: relative;
	margin: 0 auto;
}
/* min-width:768px */
/* min-width:937px */
/*min-width:1080px*/
/*min-width:1120px*/
.l-header {
	position: fixed;
	top: 38px;
	left: 0;
	z-index: 100;
	width: 100%;
}
body:has(.p-top-main) .l-header {
	opacity: 0;
}

body:not(:has(.p-top-main)) .l-header__logo a {
	background-color: var(--brown);
}
body:not(:has(.p-top-main)) .l-header__list-item > a,
body:not(:has(.p-top-main)) .l-header__list-item p {
	color: var(--brown);
}
body:not(:has(.p-top-main)) .l-header__list-item > a {
	background-image: linear-gradient(#6f564f, #6f564f);
}
body:not(:has(.p-top-main)) .l-header__burger-line-top {
	background-color: var(--brown);
}
body:not(:has(.p-top-main)) .l-header__burger-line-bottom {
	background-color: var(--brown);
}
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__logo a {
	background-color: var(--white);
}
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__list-item > a,
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__list-item p {
	color: var(--white);
}
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__list-item > a {
	background-image: linear-gradient(#fff, #fff);
}
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__burger-line-top {
	background-color: var(--white);
}
body:not(:has(.p-top-main)) .l-header.is-change-color .l-header__burger-line-bottom {
	background-color: var(--white);
}

.l-header.is-change-color .l-header__logo a {
	background-color: var(--brown);
}
.l-header.is-change-color .l-header__list-item > a,
.l-header.is-change-color .l-header__list-item p {
	color: var(--brown);
}
.l-header.is-change-color .l-header__list-item > a {
	background-image: linear-gradient(#6f564f, #6f564f);
}
.l-header.is-change-color .l-header__burger-line-top {
	background-color: var(--brown);
}
.l-header.is-change-color .l-header__burger-line-bottom {
	background-color: var(--brown);
}
.l-header__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-right: 54px;
	padding-left: 56px;
}
.l-header__logo {
	position: relative;
	z-index: 100;
}
.l-header__logo a {
	position: relative;
	z-index: 2;
	display: block;
	background-color: var(--white);
	-webkit-mask-image: url('/holidea/assets/images/common/logo.svg');
	mask-image: url('/holidea/assets/images/common/logo.svg');
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	mask-size: cover;
	transition: background-color 0.6s ease-out;
}
.l-header__logo a img {
	opacity: 0;
}
.l-header__logo-img {
	fill: var(--white);
}
.l-header__logo-img--open {
	fill: var(--brown);
}
.l-header__nav {
	position: relative;
}
.l-header__list {
	position: relative;
	z-index: 2;
	display: flex;
}
.l-header__list-item {
	position: relative;
	z-index: 1;
}
.l-header__list-item a,
.l-header__list-item p {
	display: block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4;
	color: var(--white);
	letter-spacing: 0.04em;
}
.l-header__list-item > a {
	background-image: linear-gradient(#fff, #fff);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 1px;
	transition:
		background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	background-position: right bottom;
	background-size: 0 1px;
}
.l-header__list-item > p {
	transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__list-child li:nth-of-type(1) {
	margin-top: 0;
}
.l-header__list-child a {
	font-size: 12px;
	line-height: 1;
}
.l-header__list-item-child {
	position: relative;
	z-index: 1;
}
.l-header__list-item-child > a {
	color: #6f564f;
}
.l-header__list-item-child > a span {
	white-space: nowrap;
	background-image: linear-gradient(#6f564f, #6f564f);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 0 1px;
	transition:
		background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-header__burger {
	position: relative;
	z-index: 100;
	display: grid;
	gap: 6px;
	padding: 20px;
}
.l-header__burger-line-top {
	display: block;
	width: 32px;
	height: 1px;
	background-color: var(--white);
	transition:
		background-color 0.4s ease-out,
		transform 0.4s ease-out;
}
.l-header__burger-line-bottom {
	display: block;
	width: 32px;
	height: 1px;
	background-color: var(--white);
	transition:
		background-color 0.4s ease-out,
		transform 0.4s ease-out;
}
.l-header__sns {
	padding-inline: 32px;
}
.l-header__sns-list {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: center;
	padding-top: 32px;
	border-top: 1px solid var(--brown);
}
.l-header__sns-item {
	width: 40px;
	height: 40px;
	aspect-ratio: 1/1;
	background-color: var(--white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.l-header__sns-item a {
	display: flex;
	align-items: center;
	justify-content: center;
}
.l-header__sns-caption {
	margin-top: 8px;
	font-size: 10px;
	line-height: 1.8;
	color: var(--brown);
	text-align: center;
	letter-spacing: 0.08em;
	font-family: 'Noto Sans JP', serif;
}

.l-info {
	width: 100%;
	background-image: url('/holidea/assets/images/common/bg_footer.webp');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position: right;
	background-size: cover;
}
.l-info__wrapper {
	display: flex;
	padding-block: 104px 112px;
	padding-left: clamp(10px, 12vw, 160px);
}
.l-info__group-nav {
	margin-inline: auto;
	margin-top: 56px;
	text-align: center;
}
.l-info__sns {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
}
.l-info__sns-item:nth-of-type(1) img {
	width: 17px;
}
.l-info__sns-item:nth-of-type(2) img {
	width: 14px;
}
.l-info__sns-item a {
	position: relative;
	width: 48px;
	height: 48px;
	background-color: var(--white50per);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-info__sns-item a:hover {
	opacity: 0.7;
}
.l-info__sns-caption {
	margin-top: 16px;
	font-size: 12px;
	line-height: 1.8;
	color: var(--brown);
	text-align: center;
	letter-spacing: 0.08em;
	font-family: 'Noto Sans JP', serif;
}
.l-info__nav {
	display: flex;
	gap: clamp(10px, 12vw, 153px);
	align-items: flex-start;
	margin-top: 8px;
}
.l-info__list-item {
	transition-duration: 0.3s;
}
.l-info__list-item p,
.l-info__list-item a {
	display: block;
	font-size: 20px;
	font-weight: 500;
	line-height: 1;
	color: var(--brown);
	letter-spacing: 0.04em;
	transition-duration: 0.3s;
	font-family: Roboto, serif;
}
.l-info__list-item p:hover:not(p),
.l-info__list-item a:hover:not(p) {
	transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-info__list-item p:hover:not(p):hover,
.l-info__list-item a:hover:not(p):hover {
	opacity: 0.7;
}
.l-info__list-item--home {
	order: 1;
}
.l-info__list-item--product {
	order: 3;
}
.l-info__list-item--spa-science {
	order: 2;
}
.l-info__list-item--course {
	order: 4;
}
.l-info__list-item--course a {
	font-family: 'Noto Sans JP', serif;
}
.l-info__list-item--journal {
	order: 5;
}
.l-info__list-item--journal a {
	font-family: 'Noto Sans JP', serif;
}
.l-info__list-child {
	margin-top: 28px;
	font-family: 'Noto Sans JP', serif;
}
.l-info__list-child-item:first-of-type a {
	margin-top: 0;
}
.l-info__list-child-item a {
	display: block;
	margin-top: 20px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.l-info__list-child-item:nth-of-type(1) {
	margin-top: 0;
}

.c-btn-blown {
	position: relative;
	display: block;
	width: 100%;
	max-width: 340px;
	padding: 15px;
	margin-inline: auto;
	font-size: 16px;
	font-weight: 500;
	font-feature-settings: 'palt';
	line-height: 1.6;
	color: var(--white);
	letter-spacing: 0.2em;
	background-color: var(--btn-brown);
	border-radius: 2px;
	fill: var(--white);
	font-family: 'Noto Sans JP', serif;
}
.c-btn-blown svg {
	position: absolute;
	top: 50%;
	right: 20px;
	display: block;
	width: 18px;
	fill: var(--white);
	transform: translateY(-50%);
}

.c-card {
	width: clamp(0px, 98vw, 1200px);
	padding-block: 30px;
	padding-right: clamp(0px, 25vw, 80px);
	padding-left: clamp(0px, 25vw, 48px);
	margin-inline: auto;
	background-color: var(--white);
	border-radius: 4px;
}
.c-card--1 .c-card__right-main h4 {
	letter-spacing: -0.053em;
}
.c-card--2 .c-card__right-main h4 {
	letter-spacing: -0.05em;
}
.c-card--3 .c-card__right-main h4 {
	letter-spacing: -0.053em;
}
.c-card--4 .c-card__right-main h4 {
	letter-spacing: -0.053em;
}
.c-card__splide-arrows button {
	display: block;
	width: clamp(0px, 6vw, 81px);
	height: clamp(0px, 6vw, 81px);
	margin-inline: auto;
	background-color: var(--brown);
	opacity: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-card__splide-arrows button:nth-of-type(1) {
	left: clamp(0px, 1vw, 5em);
}
.c-card__splide-arrows button:nth-of-type(1) img {
	rotate: 180deg;
}
.c-card__splide-arrows button:nth-of-type(2) {
	right: clamp(0px, 1vw, 5em);
}
.c-card__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.c-card__left {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	grid-area: product-img;
}
.c-card__left img {
	display: block;
	width: clamp(0px, 34vw, 480px);
	height: clamp(0px, 33vw, 450px);
	aspect-ratio: 16/15;
	margin-inline: auto;
	-o-object-fit: contain;
	object-fit: contain;
}
.c-card__right {
	grid-area: product-info;
	width: -moz-fit-content;
	width: fit-content;
}
.c-card__right h4 {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.4;
	text-align: center;
}
.c-card__right h4 span {
	font-size: 0.875rem;
	letter-spacing: 0.1em;
	line-height: 1.2;
	display: block;
	padding-inline: 20px;
	margin-top: 24px;
	font-feature-settings: 'palt';
	font-family: 'Noto Sans JP', serif;
}
.c-card__right-main {
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}
.c-card__price {
	position: relative;
	display: flex;
	gap: 20px;
	align-items: center;
	margin-inline: auto;
	margin-top: 46px;
}
.c-card__price--pc {
	align-items: flex-end;
}
.c-card__price .c-card__item-blue {
	display: none;
}
.c-card__dummy {
	font-family: 'Noto Sans JP', serif;
	font-feature-settings: 'palt';
}
.c-card__dummy-text {
	display: inline-block;
	padding: 11px 43px;
	font-weight: 500;
	border: 1px solid var(--brown);
	border-radius: 1px;
	font-size: 1.125rem;
	letter-spacing: 0.04em;
	line-height: 1;
}
.c-card__dummy-price {
	font-size: 1.125rem;
	margin-top: 16px;
	font-size: clamp(0px, 2vw, 18px);
	line-height: 1;
	text-align: left;
	letter-spacing: 0.04em;
}
.c-card__dummy-price span {
	position: relative;
	display: block;
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 12px;
	font-size: clamp(0px, 2vw, 18px);
	line-height: 1;
	letter-spacing: 0.04em;
}
.c-card__dummy-price span::before {
	position: absolute;
	top: 50%;
	width: 100%;
	height: 1px;
	aspect-ratio: 1/1;
	content: '';
	background-color: #db6075;
	transform: translatxe(-50%);
}
.c-card__real {
	position: relative;
	display: grid;
	grid-template-areas: 'message message' 'pink price';
	align-items: end;
	margin-top: -3px;
}
.c-card__real-message {
	grid-area: message;
	font-size: 1.75rem;
	letter-spacing: 0.01em;
	line-height: 1;
	text-align: left;
}
.c-card__real-price {
	grid-area: price;
	margin-top: 4px;
	margin-left: 7px;
	font-size: clamp(0px, 5vw, 64px);
	line-height: 1;
	letter-spacing: 0, 0;
}
.c-card__real-price--yen {
	font-size: 2.75rem;
	letter-spacing: 0;
	line-height: 1;
	position: relative;
	display: inline-block;
	margin-left: 3px;
}
.c-card__real-price--yen::before {
	position: absolute;
	top: -17px;
	left: 50%;
	min-width: 64px;
	content: '（税込）';
	transform: translateX(-50%);
	font-size: 1rem;
	letter-spacing: -0.06em;
	line-height: 1;
}
.c-card__item-pink {
	grid-area: pink;
	width: -moz-fit-content;
	width: fit-content;
	height: -moz-fit-content;
	height: fit-content;
	padding: 12px 16px 13px 17px;
	font-size: clamp(0px, 2vw, 23px);
	line-height: 1.1;
	color: var(--white);
	letter-spacing: 0.06em;
	background-color: #d4a598;
	border-radius: 1px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-card__item-pink span {
	display: block;
}
.c-card__item-blue {
	position: absolute;
	display: grid;
	grid-template-areas: 'area1 area1' 'area2 area3' 'area4 area4';
	place-content: center center;
	align-items: center;
	width: clamp(0px, 11vw, 130px);
	height: clamp(0px, 11vw, 130px);
	aspect-ratio: 1/1;
	margin-block: auto;
	color: var(--white);
	background-color: #78bbc2;
	border-radius: calc(infinity * 1px);
}
.c-card__item-blue--1 {
	top: 44px;
	right: -4px;
}
.c-card__item-blue--2 {
	top: -2px;
	right: -12px;
}
.c-card__item-blue--3 {
	top: 110px;
	right: 38px;
}
.c-card__item-blue--4 {
	top: 100px;
	right: 68px;
}
.c-card__item-blue span {
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-card__item-blue span:nth-of-type(1) {
	font-size: 1.3125rem;
	letter-spacing: 0.04em;
	line-height: 1;
	grid-area: area1;
}
.c-card__item-blue span:nth-of-type(2) {
	font-size: 2.1875rem;
	letter-spacing: 0;
	line-height: 1;
	grid-area: area2;
}
.c-card__item-blue span:nth-of-type(3) {
	font-size: 1.75rem;
	letter-spacing: 0;
	line-height: 1;
	grid-area: area3;
}
.c-card__item-blue span:nth-of-type(4) {
	font-size: 1.875rem;
	letter-spacing: 0;
	line-height: 1;
	grid-area: area4;
}
.c-card__atten {
	font-family: 'Noto Sans JP', serif;
	margin-top: 14px;
	font-feature-settings: 'palt';
	text-align: center;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.c-card__btn {
	grid-area: product-btn;
	width: 100%;
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 26px;
	margin-left: auto;
	text-align: center;
}
.c-card__btn a {
	width: 550px;
	max-width: 550px;
	letter-spacing: 0.06em;
}

.alum-k-action {
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.alum-k-action.is-visible .alum-k-action__title-num {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.alum-k-action.is-visible .alum-k-action__title-text {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.2s;
	transform: translateY(0);
}
.alum-k-action.is-visible .alum-k-action__img {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.4s;
	transform: translateY(0);
}
.alum-k-action__title {
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.06em;
}
.alum-k-action__title:is(.alum-k-action__title) {
	text-align: center;
}
.alum-k-action__title-num {
	display: block;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-family: Roboto, serif;
}
.alum-k-action__title-text {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.alum-k-action__img {
	width: 100%;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.alum-k-action__section {
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.alum-k-action__section.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.alum-k-action__section:nth-child(2) .alum-k-action__images {
	order: 4;
}
.alum-k-action__section:nth-child(3) .alum-k-action__item:nth-child(1) {
	order: 6;
}
.alum-k-action__section:nth-child(3) .alum-k-action__item:nth-child(1) img {
	border: 1px solid rgba(115, 92, 86, 0.2);
	border-radius: 2px;
}
.alum-k-action__section:nth-child(3) .alum-k-action__item:nth-child(2) {
	order: 7;
}
.alum-k-action__section:nth-child(3) .alum-k-action__item:nth-child(2) .note {
	font-size: 10px;
}
.alum-k-action__number {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	border-bottom: 1px solid var(--brown30per);
	font-family: Roboto, serif;
}
.alum-k-action__number i {
	font-size: 22px;
	font-weight: 400;
	font-family: Roboto, serif;
}
.alum-k-action__title-sub {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__title-sub sup {
	font-size: 12px;
	font-weight: 400;
}
.alum-k-action__lead {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__text {
	font-weight: 400;
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__note {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__images {
	display: grid;
	gap: 16px;
	margin-inline: auto;
	text-align: center;
}
.alum-k-action__images img {
	width: 100%;
	border-radius: 4px;
}
.alum-k-action__images-inner img {
	margin: 20px auto 0;
}
.alum-k-action__images-title {
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.06em;
}
.alum-k-action__images-text {
	line-height: 1.8;
	letter-spacing: -0.03em;
}
.alum-k-action__images-text span {
	letter-spacing: -0.4em;
}
.alum-k-action__figure figcaption {
	margin-top: 12px;
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
}
.alum-k-action__list {
	display: grid;
	gap: 16px;
}
.alum-k-action__item {
	position: relative;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
}
.alum-k-action__term {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	border-bottom: 1px solid var(--brown30per);
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__description {
	margin-top: 14px;
}
.alum-k-action__description p {
	font-feature-settings: 'palt';
	line-height: 1.8;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.alum-k-action__description .note {
	line-height: 1.3;
}
.alum-k-action__description img {
	width: 100%;
}
.alum-k-action__youtube {
	width: 100%;
	aspect-ratio: 16/9;
	border: none;
}
body.is-loaded .p-alum-k-head.is-active .p-alum-k-head__title {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-alum-k-head.is-active .p-alum-k-head__img {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.6s;
	transform: translateY(0);
}
body.is-loaded .p-alum-k-head.is-active .p-alum-k-head__img img {
	transition-delay: 0.6s;
	transform: scale(1);
}
body.is-loaded .p-alum-k-head.is-active + .p-alum-k-intro {
	filter: blur(0);
	opacity: 1;
	transition-delay: 1s;
	transform: translateY(0);
}
.p-alum-k-head__title {
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.08em;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition-delay: 0.2s;
	transform: translateY(16px);
}
.p-alum-k-head__title > .brackets2 {
	letter-spacing: -0.4em;
}
.p-alum-k-head__img {
	position: relative;
	display: block;
	overflow: hidden;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-alum-k-head__img img {
	position: relative;
	width: 100%;
	max-width: none;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: scale(1.12);
}

.p-alum-k-intro {
	background-color: var(--white);
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-alum-k-intro__text p {
	letter-spacing: 0;
}

.p-alum-k-nav {
	width: -moz-fit-content;
	width: fit-content;
}
.p-alum-k-nav__title {
	width: -moz-fit-content;
	width: fit-content;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0;
	font-family: Roboto, serif;
}
.p-alum-k-nav__list {
	position: relative;
	gap: 56px;
	margin-top: 20px;
}
.p-alum-k-nav__item {
	position: relative;
	border-top: 1px solid var(--brown30per);
}
.p-alum-k-nav__item::before {
	position: absolute;
	top: -1px;
	left: 0;
	height: 1px;
	content: '';
	background-color: var(--brown);
}
.p-alum-k-nav__link {
	position: relative;
	display: grid;
	gap: 16px;
	align-items: center;
	padding-block: 30px 24px;
	text-decoration: none;
}
.p-alum-k-nav__num {
	position: absolute;
	left: 3px;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	font-family: Roboto, serif;
}
.p-alum-k-nav__img {
	flex-shrink: 0;
	width: 64px;
	height: 64px;
	aspect-ratio: 1/1;
	border-radius: 2px;
}
.p-alum-k-nav__text {
	display: flex;
	gap: 16px;
	align-items: center;
	justify-content: space-between;
	font-weight: 500;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-nav__arrow {
	position: relative;
	display: grid;
	place-items: center;
	aspect-ratio: 1/1;
	background-color: var(--brown);
	border-radius: calc(infinity * 1px);
}
.p-alum-k-nav__arrow::before {
	display: block;
	content: '';
	background-image: url('/holidea/assets/images/common/icon_arrow_nav_large.svg');
	background-size: cover;
}
.p-alum-k-nav__subnav {
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-nav__subnav-item:nth-of-type(n + 2) {
	margin-top: 4px;
}
.p-alum-k-nav__subnav-item .p-alum-k-nav__arrow {
	width: 16px;
	height: 16px;
}
.p-alum-k-nav__subnav-item .p-alum-k-nav__arrow::before {
	width: 6px;
	height: 6px;
}
.p-alum-k-nav__subnav-link {
	display: flex;
	gap: 48px;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	font-size: 13px;
	font-weight: 500;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	background-color: rgba(245, 231, 220, 0.3);
}

.p-alum-k-what {
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.p-alum-k-what.is-visible .p-alum-k-what__title-num {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-alum-k-what.is-visible .p-alum-k-what__title-text {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.2s;
	transform: translateY(0);
}
.p-alum-k-what.is-visible .p-alum-k-what__img {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.4s;
	transform: translateY(0);
}
.p-alum-k-what__title {
	font-weight: 600;
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.04em;
	font-family: 'Shippori Mincho', serif;
}
.p-alum-k-what__title:is(.p-alum-k-what__title) {
	text-align: center;
}
.p-alum-k-what__title-num {
	display: block;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-family: Roboto, serif;
}
.p-alum-k-what__title-text {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-alum-k-what__img {
	width: 100%;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-alum-k-what__section {
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-alum-k-what__section.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-alum-k-what__number {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0;
	font-family: Roboto, serif;
}
.p-alum-k-what__number i {
	font-size: 22px;
	font-weight: 400;
	font-family: Roboto, serif;
}
.p-alum-k-what__title-sub {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-what__title-sub sup {
	font-size: 12px;
	font-weight: 400;
}
.p-alum-k-what__lead {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-what__text {
	font-weight: 400;
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-what__note {
	margin-top: 8px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-alum-k-what__flex {
	display: flex;
}
.p-alum-k-what__figure img {
	border: 1px solid rgba(115, 92, 86, 0.1);
	border-radius: 4px;
}

.p-alum-k :where(h2) {
	padding: 0;
	margin: 0;
	text-align: left;
	background-color: transparent;
}
.p-alum-k :where(h3) {
	padding: 0;
}

body:has(.p-alum-k) {
	max-width: none;
}

.p-course-faq {
	color: var(--white);
	background-color: #735c56;
}
.p-course-faq__head {
	padding-top: 96px;
	text-align: center;
}
.p-course-faq__head h2 {
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	line-height: 1.6;
}
.p-course-faq__main {
	margin-top: 72px;
}
.p-course-faq__detail {
	font-weight: 500;
	font-feature-settings: 'palt';
	border-top: 1px solid var(--white20per);
	transition-duration: 0.3s;
	font-family: 'Noto Sans JP', serif;
}
.p-course-faq__detail[open] .p-course-faq__btn {
	background-color: transparent;
	border: 1px solid var(--white);
}
.p-course-faq__detail[open] .p-course-faq__btn span {
	background-color: var(--white);
}
.p-course-faq__detail[open] .p-course-faq__btn::before,
.p-course-faq__detail[open] .p-course-faq__btn::after {
	content: '';
	background-color: var(--white);
}
.p-course-faq__detail[open] .p-course-faq__btn::after {
	opacity: 0;
}
.p-course-faq__question {
	position: relative;
	display: grid;
	grid-template-columns: auto 1fr auto;
}
.p-course-faq__question::before {
	position: relative;
	line-height: 1;
	letter-spacing: 0;
	content: 'Q';
	font-family: Roboto, serif;
}
.p-course-faq__question-text {
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.p-course-faq__btn {
	position: relative;
	background-color: var(--white);
	border: 1px solid var(--white);
	border-radius: calc(infinity * 1px);
	transition:
		background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-course-faq__btn::before,
.p-course-faq__btn::after {
	position: absolute;
	inset: 0;
	height: 1px;
	margin: auto;
	content: '';
	background-color: #735c56;
	border-radius: 0.5px;
	opacity: 1;
	transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-course-faq__btn::after {
	rotate: 90deg;
}
.p-course-faq__answer {
	position: relative;
	top: -16px;
	overflow: hidden;
}
.p-course-faq__answer-inner {
	color: #735c56;
	background-color: var(--white70per);
	border-radius: 2px;
}
.p-course-faq__answer-inner:has(.p-course-faq__answer-atten) {
	padding-bottom: 34px;
}
.p-course-faq__answer-inner p {
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.04em;
}
.p-course-faq__answer-inner a {
	text-decoration: underline;
}
.p-course-faq__answer-inner > a {
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.4;
	display: block;
	margin-top: 6px;
}
.p-course-faq__answer-inner * + p {
	margin-top: 4px;
}
.p-course-faq__answer-inner h3 {
	position: relative;
	display: flex;
	align-items: center;
	padding-left: 0.6em;
	font-weight: 700;
	font-size: 1rem;
	letter-spacing: 0.04em;
	line-height: 1.4;
}
.p-course-faq__answer-inner h3 span {
	display: block;
	margin-left: 10px;
}
.p-course-faq__answer-inner h3::before {
	position: absolute;
	top: 50%;
	left: 0%;
	display: block;
	width: 6px;
	height: 6px;
	margin-right: 4px;
	content: '';
	background-color: #735c56;
	border-radius: calc(infinity * 1px);
	transform: translate(0%, -50%);
}
.p-course-faq__answer-inner .note {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.04em;
	line-height: 1.4;
	margin-top: 6px;
}
.p-course-faq__answer-circle {
	display: block;
	width: 6px;
	height: 6px;
	margin-right: 4px;
	background-color: #735c56;
	border-radius: calc(infinity * 1px);
}

.p-course-set {
	padding-bottom: 140px;
	background-image: url('/holidea/assets/images/course/bg_course_set-pc.webp');
	background-size: cover;
}
.p-course-set.is-visible .p-course-set__head {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-course-set.is-visible .p-course-set__splide {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-course-set__head {
	padding-top: 120px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-course-set__title {
	font-size: 2.25rem;
	letter-spacing: -0.01em;
	line-height: 1.6;
	font-weight: 500;
	text-align: center;
}
.p-course-set__text {
	margin-top: 24px;
	text-align: center;
	font-size: 0.875rem;
	letter-spacing: 0;
	line-height: 1.8;
}
.p-course-set__text a {
	font-weight: 700;
	color: #db6075;
	text-decoration: underline;
}
.p-course-set__splide {
	margin-inline: auto;
	margin-top: 64px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1) 0.4s,
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
	transform: translateY(16px);
}

.p-course-head {
	background-color: var(--white);
}
body.is-loaded .p-course-head.is-active .p-course-head__title {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-course-head.is-active .p-course-head__text {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-course-head.is-active .p-course-head__img {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-course-head.is-active .p-course-head__img img {
	transform: scale(1);
}

.p-course-head__wrapper {
	display: flex;
	margin-inline: auto;
}
.p-course-head__title {
	font-weight: 500;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition-delay: 0.3s;
	transform: translateY(16px);
	font-size: 2.5rem;
	letter-spacing: 0;
	line-height: 1.6;
}
.p-course-head__text {
	margin-top: 56px;
	font-weight: 500;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-size: 1rem;
	letter-spacing: 0;
	line-height: 2.6;
}
.p-course-head__img {
	overflow: hidden;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-course-head__img img {
	position: relative;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: scale(1.06);
}

.p-course-merit {
	padding-block: 120px;
	padding-inline: clamp(10px, 10vw, 140px);
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.p-course-merit.is-visible .p-course-merit__title {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-course-merit.is-visible .p-course-merit__item {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-course-merit__title {
	font-weight: 500;
	text-align: center;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-size: 2.25rem;
	letter-spacing: 0.01em;
	line-height: 1.6;
}
.p-course-merit__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	max-width: 1160px;
	margin-inline: auto;
	margin-top: 81px;
	counter-reset: number 0;
}
.p-course-merit__item {
	position: relative;
	height: auto;
	min-height: 233px;
	padding: 32px;
	font-feature-settings: 'palt';
	background-color: var(--white80per);
	filter: blur(6px);
	border-radius: 4px;
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-family: 'Noto Sans JP', serif;
}
.p-course-merit__item:nth-child(1) {
	transition-delay: 0.2s;
}
.p-course-merit__item:nth-child(2) {
	transition-delay: 0.4s;
}
.p-course-merit__item:nth-child(3) {
	transition-delay: 0.6s;
}
.p-course-merit__item:nth-child(4) {
	transition-delay: 0.8s;
}
.p-course-merit__item:nth-child(5) {
	transition-delay: 1s;
}
.p-course-merit__item:nth-child(6) {
	transition-delay: 1.2s;
}
.p-course-merit__item::before {
	position: absolute;
	top: 8px;
	left: 8px;
	font-weight: 500;
	line-height: 1;
	content: counter(number, decimal-leading-zero) ' ';
	counter-increment: number 1;
	font-family: Roboto, serif;
}
.p-course-merit__item-num {
	position: absolute;
	top: 8px;
	left: 8px;
	font-size: 0.75rem;
	letter-spacing: 0;
	line-height: 1;
}
.p-course-merit__item-head {
	display: flex;
	gap: 16px;
	align-items: center;
}
.p-course-merit__item-icon {
	position: relative;
	width: 60px;
	height: 60px;
	background-color: var(--white);
	border: 1px solid var(--brown20per);
	border-radius: 2px;
}
.p-course-merit__item-icon img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.p-course-merit__item-title {
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.p-course-merit__item-title sup {
	position: relative;
	top: 2px;
}
.p-course-merit__item-main p {
	height: auto;
	margin-top: 12px;
	font-weight: 400;
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	line-height: 1.8;
}
.p-course-merit__item-main span {
	display: block;
	font-size: 0.625rem;
	letter-spacing: 0.04em;
	line-height: 1.3;
	margin-top: 8px;
}
.p-course-merit__item-main span:nth-of-type(n + 2) {
	margin-top: 2px;
}
.p-course-merit__item-main--atten {
	text-decoration: underline;
}
.p-course-merit__item-illust {
	display: block;
	display: none;
	width: 100%;
	margin-top: 20px;
}
.p-course-merit__item-btn-cross-wrapper {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.p-course-merit__item-btn-cross-line {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 6px;
	height: 1px;
	background-color: var(--brown);
	transform: translate(-50%, -50%);
}
.p-course-merit__item-btn-cross-line--is-open {
	background-color: var(--white);
}
.p-course-merit__item-btn-cross-line--is-open:nth-child(1) {
	top: 45%;
	left: 20%;
	transform: rotate(90deg) translateY(-50%);
}

.p-science-banner {
	background-color: var(--white);
}
.p-science-banner.is-visible .p-science-banner__link {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-banner__link {
	position: relative;
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-banner__contnet {
	position: absolute;
	height: -moz-fit-content;
	height: fit-content;
	margin: auto;
	text-align: center;
}
.p-science-banner__contnet .c-btn-blown {
	text-align: center;
	letter-spacing: 0.04em;
	pointer-events: none;
}
.p-science-banner__text {
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.08em;
	font-family: 'Noto Sans JP', serif;
}

.p-science-engineering {
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.p-science-engineering.is-visible .p-science-engineering__title-en {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-engineering.is-visible .p-science-engineering__title-jp {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.2s;
	transform: translateY(0);
}
.p-science-engineering.is-visible .p-science-engineering__img {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.4s;
	transform: translateY(0);
}
.p-science-engineering__title {
	font-weight: 400;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.04em;
	font-family: Roboto, serif;
}
.p-science-engineering__title-en {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-engineering__title-jp {
	display: block;
	font-weight: 500;
	line-height: 1.6;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-family: 'Shippori Mincho', serif;
}
.p-science-engineering__img {
	width: 100%;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}
.p-science-engineering__section {
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-engineering__section.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-engineering__number {
	position: relative;
	padding-bottom: 14px;
	font-weight: 500;
	line-height: 1;
	text-align: center;
	border-bottom: 2px solid var(--brown30per);
	font-family: Roboto, serif;
}
.p-science-engineering__title-sub {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-engineering__title-sub sup {
	font-size: 12px;
	font-weight: 400;
}
.p-science-engineering__lead {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-engineering__group {
	display: flex;
}
.p-science-engineering__text {
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-engineering__note {
	margin-top: 8px;
	font-size: 12px;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-engineering__images {
	position: relative;
	display: grid;
	margin-inline: auto;
	text-align: center;
}
.p-science-engineering__images-inner {
	position: relative;
}
.p-science-engineering__images-title {
	position: relative;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: -0.15em;
}
.p-science-engineering__images-text {
	line-height: 1.8;
	letter-spacing: -0.03em;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 4px;
}
.p-science-engineering__images-text span {
	letter-spacing: -0.4em;
}
.p-science-engineering__figure figcaption {
	margin-top: 12px;
	font-size: 12px;
	line-height: 1.3;
	text-align: center;
}
.p-science-engineering__list {
	display: grid;
	gap: 16px;
	counter-reset: number 0;
}
.p-science-engineering__item {
	position: relative;
	display: grid;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
}
.p-science-engineering__item::before {
	position: absolute;
	top: 8px;
	left: 8px;
	font-weight: 500;
	line-height: 1;
	content: counter(number, decimal-leading-zero) ' ';
	counter-increment: number 1;
	font-family: Roboto, serif;
}
.p-science-engineering__item img {
	border: 1px solid rgba(115, 92, 86, 0.1019607843);
	border-radius: 2px;
}
.p-science-engineering__item-text {
	line-height: 1.8;
	letter-spacing: -0.04em;
}
.p-science-engineering__item-note {
	margin-top: 8px;
	font-size: 12px;
	line-height: 1.3;
	font-family: 'Noto Sans JP', serif;
}
.p-science-engineering__description {
	font-weight: 600;
	text-align: center;
	letter-spacing: -0.02em;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-engineering__description.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}

.p-science-mv {
	background-color: var(--white);
}
body.is-loaded .p-science-mv.is-active .p-science-mv__en {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-science-mv.is-active .p-science-mv__image > div {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
body.is-loaded .p-science-mv.is-active .p-science-mv__intro {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-mv__en {
	font-family: Roboto, serif;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
	white-space: nowrap;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition-delay: 0.3s;
	transform: translateY(16px);
}
.p-science-mv__image {
	position: relative;
	display: flex;
	gap: 32px;
	align-items: flex-start;
	justify-content: space-between;
}
.p-science-mv__image > div {
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}
.p-science-mv__image > div:nth-of-type(1) {
	transition-delay: 0.8s;
}
.p-science-mv__image > div:nth-of-type(2) {
	margin-top: 32px;
	transition-delay: 1.1s;
}
.p-science-mv__image > div:nth-of-type(3) {
	position: absolute;
	transition-delay: 1.4s;
}
.p-science-mv__intro {
	display: flex;
	background-color: var(--white);
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transition-delay: 1.8s;
	transform: translateY(16px);
}
.p-science-mv__title {
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.1em;
}
.p-science-mv__text {
	margin-inline: auto;
	margin-top: 40px;
	line-height: 2.6;
	letter-spacing: 0.04em;
}
.p-science-mv__illust {
	width: 100%;
	margin-inline: auto;
}
.p-science-mv__illust > img {
	position: relative;
	margin-inline: auto;
}
.p-science-mv__nav {
	margin-top: 16px;
}
.p-science-mv__nav-link {
	position: relative;
	display: grid;
	place-items: center;
	margin-inline: auto;
	line-height: 1;
	color: var(--white);
	background-color: var(--brown);
	border-radius: calc(infinity * 1px);
	transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-science-mv__nav-arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	margin: auto;
	background-color: var(--white);
	border: 1px solid var(--brown);
	border-radius: calc(infinity * 1px);
	transform: translateY(50%);
}
.p-science-mv__nav-arrow::before {
	position: absolute;
	inset: 0;
	display: block;
	width: 6px;
	height: 6px;
	margin: auto;
	content: '';
	background-color: var(--brown);
	-webkit-mask-image: url('/holidea/assets/images/common/icon_arrow_nav.svg');
	mask-image: url('/holidea/assets/images/common/icon_arrow_nav.svg');
	-webkit-mask-size: cover;
	mask-size: cover;
}

.p-science-promise {
	color: var(--white);
	background-color: var(--brown);
}
.p-science-promise__title {
	line-height: 1.6;
	text-align: center;
	letter-spacing: 0.06em;
}
.p-science-promise__text {
	margin-top: 32px;
	line-height: 1.8;
	text-align: center;
	letter-spacing: 0.05em;
}
.p-science-promise__item {
	position: relative;
}
.p-science-promise__term {
	line-height: 1;
	text-align: left;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-promise__description {
	display: contents;
}
.p-science-promise__description .text {
	margin-top: 16px;
	font-feature-settings: 'palt';
	line-height: 1.6;
	text-align: left;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-promise__description .icon {
	position: absolute;
	grid-row: 1/3;
	grid-column: 2/3;
	margin: auto;
}

.p-science-report {
	background-color: #f7ece1;
}
.p-science-report__title {
	position: relative;
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.06em;
	border-bottom: 1px solid var(--brown30per);
}
.p-science-report__text {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-report__text sup {
	position: relative;
	top: 2px;
}
.p-science-report__text-note {
	line-height: 1.6;
	font-family: 'Noto Sans JP', serif;
}
.p-science-report__img {
	margin-top: 32px;
}
.p-science-report__img + .p-science-report__text {
	margin-top: 32px;
}
.p-science-report__img img {
	border-radius: 4px;
}
.p-science-report__box {
	padding: 40px 40px 56px;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
}
.p-science-report__box-text {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-report__box-img {
	margin: 32px auto 0;
}
.p-science-report__profile {
	position: relative;
	display: flex;
	justify-content: center;
}
.p-science-report__profile-img {
	display: block;
	aspect-ratio: 1/1;
	-o-object-fit: contain;
	object-fit: contain;
}
.p-science-report__profile-data {
	font-family: 'Noto Sans JP', serif;
}
.p-science-report__profile-data dt {
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
}
.p-science-report__profile-data dt span {
	display: inline-block;
	margin-left: 10px;
	font-size: 12px;
	line-height: 1;
	letter-spacing: 0.06em;
}
.p-science-report__profile-data dd {
	padding-top: 10px;
	margin-top: 10px;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.06em;
	border-top: 1px solid var(--brown30per);
}

.p-science-skin {
	background-color: var(--white);
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.p-science-skin.is-visible .p-science-skin__title-en {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-skin.is-visible .p-science-skin__title-jp {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.2s;
	transform: translateY(0);
}
.p-science-skin.is-visible .p-science-skin__img {
	filter: blur(0);
	opacity: 1;
	transition-delay: 0.4s;
	transform: translateY(0);
}
.p-science-skin__title {
	font-weight: 400;
	line-height: 1;
	text-align: center;
	letter-spacing: 0.04em;
	font-family: Roboto, serif;
}
.p-science-skin__title-en {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-skin__title-jp {
	display: block;
	font-weight: 500;
	line-height: 1.6;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
	font-family: 'Shippori Mincho', serif;
}
.p-science-skin__img {
	width: 100%;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}
.p-science-skin__section {
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.5s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.3s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-science-skin__section.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-science-skin__section:nth-child(2) .p-science-skin__group {
	justify-content: center;
}
.p-science-skin__section:nth-child(2) .p-science-skin__figure {
	margin: 0;
}
.p-science-skin__number {
	position: relative;
	font-size: 12px;
	font-weight: 500;
	line-height: 1;
	font-family: Roboto, serif;
}
.p-science-skin__number i {
	font-size: 22px;
	font-weight: 400;
	font-family: Roboto, serif;
}
.p-science-skin__title-sub {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__title-sub sup {
	font-size: 12px;
	font-weight: 400;
}
.p-science-skin__lead {
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__text {
	font-weight: 400;
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.06em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__note {
	margin-top: 8px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__flex {
	display: flex;
}
.p-science-skin__figure figcaption {
	line-height: 1.3;
	text-align: center;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__figure img {
	border-radius: 4px;
}
.p-science-skin__list {
	display: grid;
	gap: 16px;
}
.p-science-skin__item {
	display: grid;
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 4px;
}
.p-science-skin__item-title {
	font-weight: 600;
	font-feature-settings: 'palt';
	line-height: 1;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__item-title sup {
	position: relative;
	top: 2px;
	font-size: 10px;
	font-weight: 400;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__item-text {
	font-feature-settings: 'palt';
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__item-note {
	margin-top: 8px;
	font-feature-settings: 'palt';
	line-height: 1.3;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-science-skin__item-note > span {
	white-space: nowrap;
}
.p-science-skin__item-colmn2 {
	grid-column: 1/3;
}
.p-science-skin__item-figure img {
	margin-inline: auto;
}

.p-loading {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	overscroll-behavior: none;
	background: #f5dfd0;
}
.p-loading__inner {
	display: grid;
	place-items: center;
	width: 100%;
	height: calc(100% + 1px);
}
.p-loading__logo {
	filter: blur(6px);
	opacity: 0;
	transform: translateZ(0);
}

.p-top-lineup {
	background-color: var(--baige-brown);
}
.p-top-lineup__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 48px;
	padding-right: clamp(40px, 10vw, 142px);
	padding-left: clamp(40px, 10vw, 116px);
}
.p-top-lineup__title {
	font-family: Roboto, serif;
	font-size: 44px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
}
.p-top-lineup__title-text {
	font-family: 'Noto Sans JP', serif;
	font-size: 16px;
	font-feature-settings: 'palt';
	line-height: 2;
	letter-spacing: 0.08em;
}
.p-top-lineup__title-text span {
	font-size: 12px;
}
.p-top-lineup__title-text sup {
	position: relative;
	top: 3px;
	font-size: 11px;
}
.p-top-lineup__main {
	background-color: var(--brown);
	border-top: 1px solid var(--brown);
	border-bottom: 1px solid var(--brown);
}
.p-top-lineup__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
}
.p-top-lineup__item {
	position: relative;
	height: 812px;
	text-align: center;
	background-color: var(--baige-brown);
}
.p-top-lineup__item .c-btn-blown {
	margin-top: 24px;
}
.p-top-lineup__item--hoverd .p-top-lineup__item-img {
	transform: scale(1.1);
}
.p-top-lineup__item.is-visible .p-top-lineup__item-continer {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-lineup__item-continer {
	padding-block: 80px 89px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-top-lineup__item-tag {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 104px;
	padding-block: 9px;
	font-size: 12px;
	text-align: center;
	letter-spacing: 0.04em;
	background-color: var(--white40per);
	font-family: Roboto, serif;
}
.p-top-lineup__item-award {
	position: absolute;
	top: -16px;
	right: -56px;
	z-index: 1;
	width: 124px;
	pointer-events: none;
}
.p-top-lineup__item-award--toner {
	width: auto;
}
.p-top-lineup__item-award--toner .p-top-lineup__item-award-text {
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	font-size: 10px;
	line-height: 1.4;
}
.p-top-lineup__item-award-voice {
	width: 60px;
	margin-inline: auto;
}
.p-top-lineup__item-award-cosme {
	width: 84px;
	margin-inline: auto;
}
.p-top-lineup__item-award-text {
	font-family: 'Noto Sans JP', serif;
	font-size: 10px;
	font-feature-settings: 'palt';
	line-height: 1.5;
	color: #6f564f;
	text-shadow: 0 0 10px #fff;
	letter-spacing: 0;
	scale: 0.9;
}
.p-top-lineup__item-award-text + * {
	margin-top: 10px;
}
.p-top-lineup__item-contents {
	position: relative;
	overflow: hidden;
}
.p-top-lineup__item-title {
	font-family: Roboto, serif;
	font-size: 20px;
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.08em;
}
.p-top-lineup__item-wrap {
	position: relative;
	width: 340px;
	height: 340px;
	margin-inline: auto;
	margin-top: 32px;
}
.p-top-lineup__item-image {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.p-top-lineup__item-img {
	display: block;
	-o-object-fit: contain;
	object-fit: contain;
	transition: scale 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-top-lineup__item-caption {
	margin-top: 40px;
	font-family: 'Noto Sans JP', serif;
}
.p-top-lineup__item-detail dt {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	letter-spacing: 0.08em;
}
.p-top-lineup__item-detail dd {
	margin-top: 20px;
	font-size: 14px;
	font-weight: regular;
	line-height: 1.8;
	letter-spacing: 0.04em;
}
.p-top-lineup__item-detail dd span {
	vertical-align: top;
}
.p-top-lineup__item-detail dd:nth-of-type(n + 2) {
	margin-top: 9px;
	line-height: 1.6;
	letter-spacing: 0.04em;
}
.p-top-lineup__item-dd-coltext {
	position: relative;
	top: 3px;
	font-size: 10px;
}
.p-top-lineup__item-category {
	display: block;
	margin-bottom: 8px;
	font-size: 12px;
	font-weight: medium;
	line-height: 1;
	letter-spacing: 0.04em;
}
.p-top-lineup__item-attention {
	display: block;
	margin-top: 16px;
	font-size: 10px;
	line-height: 1.6;
	font-family: 'Noto Sans JP', serif;
}
.p-top-lineup__bottom {
	padding: 96px 40px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		transform 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	transform: translateY(16px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-top-lineup__bottom.is-visible {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-lineup__banner {
	position: relative;
	display: block;
	width: 100%;
	max-width: 1000px;
}
.p-top-lineup__banner img {
	width: 100%;
}
.p-top-lineup__banner .c-btn-blown {
	position: absolute;
	bottom: clamp(48px, 6.8vw, 74px);
	left: 48.3%;
	width: 34%;
	margin-top: 114px;
	text-align: center;
}
.p-top-lineup__banner-text {
	font-size: 28px;
}
.p-top-lineup__banner-text span {
	display: block;
	margin-bottom: 24px;
	font-size: 14px;
	letter-spacing: 0.08em;
	font-family: 'Noto Sans JP', serif;
}

.p-top-links {
	color: var(--white);
	background-color: #735c56;
}
.p-top-links a {
	color: var(--white);
}
.p-top-links__wrapper {
	display: grid;
	grid-template-columns: 1fr 1px 1fr;
	align-items: center;
	min-height: 344px;
}
.p-top-links__item {
	height: 100%;
}
.p-top-links__link {
	display: flex;
	gap: 61px;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.p-top-links__line {
	display: block;
	width: 1px;
	height: calc(100% - 120px);
	min-height: 224px;
	background-color: var(--white20per);
}
.p-top-links__link-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 80px;
	height: 80px;
	aspect-ratio: 1/1;
	background-color: transparent;
	border: 1px solid var(--white20per);
	border-radius: 50%;
}
.p-top-links__link-arrow img {
	position: relative;
	left: 1px;
	z-index: 3;
}
.p-top-links__detail {
	text-align: center;
}
.p-top-links__detail dt {
	font-size: 32px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.04em;
}
.p-top-links__detail dd {
	font-family: 'Noto Sans JP', serif;
	margin-top: 18px;
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.04em;
}

.p-top-message {
	background-color: var(--white);
	background-image: url('/holidea/assets/images/top/bg_top-message.webp');
	background-repeat: no-repeat;
	background-size: cover;
}
.p-top-message.is-visible .p-top-message__text-title span {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message.is-visible .p-top-message__text-group > p > span {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message.is-visible .p-top-message__trigger {
	filter: blur(0);
	opacity: 1;
}
.p-top-message__wrapper {
	position: relative;
	width: 100%;
	padding-block: 121px 160px;
	padding-right: clamp(20px, 10vw, 140px);
	padding-left: clamp(20px, 14vw, 200px);
}
.p-top-message__flex {
	display: flex;
}
.p-top-message__title {
	font-family: Roboto, serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1;
	color: var(--white);
	letter-spacing: 0.08em;
}
.p-top-message__text {
	margin-top: 100px;
	color: var(--white);
}
.p-top-message__text-title span {
	display: block;
	font-size: clamp(24px, 5vw, 40px);
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0.056em;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-top-message__text-title span:nth-child(2) {
	transition-delay: 0.25s;
}
.p-top-message__text-group {
	font-size: clamp(16px, 1.5vw, 18px);
	font-weight: 600;
	line-height: 2.4;
	letter-spacing: 0.2em;
}
.p-top-message__text-group > p > span {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		transform 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	transform: translateY(16px);
}
.p-top-message__text-group > p > span:nth-child(2) {
	transition-delay: 0.7s;
}
.p-top-message__text-group > p > span:nth-child(3) {
	transition-delay: 0.9s;
}
.p-top-message__text-group > p > span:nth-child(4) {
	transition-delay: 1.1s;
}
.p-top-message__text-group p {
	margin-top: 80px;
	letter-spacing: 0.065em;
}
.p-top-message__accordion {
	height: 0;
	overflow: hidden;
}
.p-top-message__accordion:has(p.is-animationend:nth-child(1)) p:nth-child(2) {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion:has(p.is-animationend:nth-child(1)) p:nth-child(2) span {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion:has(p.is-animationend:nth-child(2)) p:nth-child(3) {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion:has(p.is-animationend:nth-child(2)) p:nth-child(3) span {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion p {
	margin-top: 40px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-top-message__accordion p:first-child.is-active {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion p:first-child.is-active span {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__accordion p > span:not(:first-child) {
	display: block;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-top-message__accordion p > span:not(:first-child):nth-child(2) {
	transition-delay: 0.2s;
}
.p-top-message__accordion p > span:not(:first-child):nth-child(3) {
	transition-delay: 0.4s;
}
.p-top-message__accordion p > span:not(:first-child):nth-child(4) {
	transition-delay: 0.6s;
}
.p-top-message__accordion p:nth-child(2) {
	transition-delay: 0.2s;
}
.p-top-message__accordion p:nth-child(3) {
	transition-delay: 0.4s;
}
.p-top-message__accordion.is-active {
	height: auto;
	overflow: visible;
}
.p-top-message__accordion.is-active > p:nth-child(1) {
	filter: blur(0);
	opacity: 1;
	transform: translateY(0);
}
.p-top-message__trigger {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 16px;
	margin-top: 40px;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.04em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.6s cubic-bezier(0.25, 1, 0.5, 1) 0.8s,
		filter 1.6s cubic-bezier(0.25, 1, 0.5, 1);
	font-family: 'Noto Sans JP', serif;
}
.p-top-message__trigger.is-active {
	display: none;
}
.p-top-message__trigger::before,
.p-top-message__trigger::after {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	display: block;
	width: 8px;
	height: 1px;
	margin: auto;
	content: '';
	background-color: var(--white);
}
.p-top-message__trigger::after {
	rotate: 90deg;
}
.p-top-message__trigger > span {
	background-image: linear-gradient(#fff, #fff);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 1px;
	transition:
		background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-top-message__trigger > span:hover {
	background-position: right bottom;
	background-size: 0 1px;
}
.p-top-message__right {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}
.p-top-message__right-image {
	position: relative;
	width: clamp(20px, 34vw, 478px);
	height: 730px;
}
.p-top-message__right-img {
	position: absolute;
}
.p-top-message__right-img:nth-child(1) {
	top: 95px;
	left: -31px;
	z-index: 2;
}
.p-top-message__right-img:nth-child(1) img {
	transition-delay: 0.8s;
}
.p-top-message__right-img:nth-child(2) {
	top: -9px;
	right: 103px;
	z-index: 1;
}
.p-top-message__right-img:nth-child(2) img {
	transition-delay: 0.5s;
}
.p-top-message__right-img:nth-child(3) {
	right: 0;
	bottom: 167px;
	z-index: 1;
}
.p-top-message__right-img:nth-child(3) img {
	transition-delay: 1.1s;
}
.p-top-message__right-img:nth-child(4) {
	right: 125px;
	bottom: 9px;
	z-index: 1;
}
.p-top-message__right-img:nth-child(4) img {
	transition-delay: 1.4s;
}
.p-top-message__right-img img {
	max-width: none;
	-o-object-fit: contain;
	object-fit: contain;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}
.p-top-message__banner {
	position: relative;
	display: grid;
	-moz-column-gap: 24px;
	column-gap: 24px;
	align-items: center;
	padding: 10px;
	font-weight: 700;
	background-color: var(--btn-brown-hover);
}
.p-top-message__banner p {
	line-height: 1.6;
	color: var(--white);
	letter-spacing: 0.08em;
}
.p-top-message__banner strong {
	font-size: 18px;
}
.p-top-message__banner img {
	border-radius: 2px;
}
.p-top-message__banner svg {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 16px;
	fill: var(--white);
}

.p-top-mv {
	position: relative;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}
.p-top-mv__slider {
	display: grid;
	transform: scale(1.01);
}
.p-top-mv__slider img {
	width: 100%;
	height: 100dvh;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 10s linear;
}
.p-top-mv__list {
	position: relative;
	display: grid;
}
.p-top-mv__list::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 5;
	display: block;
	width: 100%;
	height: 160px;
	content: '';
	background: linear-gradient(0deg, rgba(58, 54, 39, 0) 0%, rgba(58, 54, 39, 0.25) 100%);
}
.p-top-mv__list::after {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 5;
	display: block;
	width: 100%;
	height: 120px;
	content: '';
	background: linear-gradient(180deg, rgba(58, 54, 39, 0) 0%, rgba(58, 54, 39, 0.4) 100%);
}
.p-top-mv__slide {
	position: relative;
	grid-area: 1/1;
}
.p-top-mv__slide:nth-child(1) {
	z-index: 3;
}
.p-top-mv__slide:nth-child(2) {
	z-index: 2;
}
.p-top-mv__slide:nth-child(3) {
	z-index: 1;
}
.p-top-mv__inner {
	position: relative;
	overflow: hidden;
	transform: translateZ(0);
}
.p-top-mv__inner.is-active img {
	transform: scale(1.08);
}
.p-top-mv__pagination {
	position: static;
	width: -moz-fit-content;
	width: fit-content;
	padding-inline: 0;
	margin-right: 8px;
	margin-left: auto;
	font-size: 12px;
	color: var(--white);
	font-family: Roboto, serif;
}
.p-top-mv__pagination .current-slide {
	font-size: 14px;
	font-weight: 500;
}
.p-top-mv__pagination .separator {
	margin-inline: 3px;
	font-size: 12px;
}
.p-top-mv__pagination .total-slides {
	font-size: 12px;
}
.p-top-mv__group {
	position: absolute;
	bottom: 48px;
	z-index: 5;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	width: 100%;
	padding-inline: 72px 56px;
}
.p-top-mv__left img {
	position: relative;
	display: block;
	filter: blur(6px);
	opacity: 0;
	transform: translateY(8px);
}
.p-top-mv__left > img {
	bottom: -50px;
	left: 13px;
	width: 339px;
}
.p-top-mv__right {
	position: relative;
	margin-bottom: 16px;
	opacity: 0;
}
.p-top-mv__right-scroller {
	position: relative;
	display: flex;
	gap: 12px;
	align-items: center;
	margin-top: 44px;
	color: var(--white);
	font-family: Roboto, serif;
}
.p-top-mv__right-scroller-shadow {
	z-index: 1;
	width: 100%;
	max-width: 202px;
	height: 100%;
	max-height: 51px;
	background-color: #a39d95;
	filter: blur(80px);
	border-radius: 9999px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
}
.p-top-mv__right-scroller-text {
	position: relative;
	z-index: 2;
	display: inline-block;
	font-size: 13px;
	text-decoration: none;
	letter-spacing: 0.04em;
	perspective: 300px;
}
.p-top-mv__right-scroller-text p {
	display: block;
	background-image: linear-gradient(#fff, #fff);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 1px;
	transition:
		background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	background-position: right bottom;
	background-size: 0 1px;
}
.p-top-mv__right-scroller-arrow {
	position: relative;
	z-index: 2;
	width: 20px;
	height: 20px;
	background-color: var(--white20per);
	border-radius: calc(infinity * 1px);
	display: flex;
	align-items: center;
	justify-content: center;
}
.p-top-mv__right-scroller-arrow img {
	transform: rotate(90deg);
}

.p-top-science {
	color: var(--white);
	background-image: url('/holidea/assets/images/top/bg_top-science.webp');
	background-size: cover;
	transition: transform 4s ease-in-out;
}
.p-top-science__wrapper {
	position: relative;
	display: grid;
	grid-template-areas: 'image title' 'image text';
	-moz-column-gap: clamp(20px, 16vw, 220px);
	column-gap: clamp(20px, 16vw, 220px);
	justify-content: flex-start;
	padding-block: 117px;
}
.p-top-science__image {
	grid-area: image;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		transform 1.8s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(20px);
}
.p-top-science__title {
	position: relative;
	z-index: 2;
	grid-area: title;
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 47px;
	line-height: 1;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1),
		transform 2s cubic-bezier(0.25, 1, 0.5, 1),
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1);
	transform: translateY(16px);
}
.p-top-science__title h2 {
	font-family: Roboto, serif;
	font-size: 44px;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.04em;
}
.p-top-science__text {
	font-family: 'Noto Sans JP', serif;
	position: relative;
	z-index: 2;
	grid-area: text;
	font-size: 32px;
	font-weight: regular;
	letter-spacing: 0.04em;
}
.p-top-science__text-title {
	font-family: 'Shippori Mincho', serif;
	font-size: 32px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.04em;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		transform 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	transform: translateY(16px);
}
.p-top-science__text-text {
	margin-top: 32px;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: 0.08em;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		transform 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	transform: translateY(16px);
}
.p-top-science__btn {
	margin-top: 48px;
	filter: blur(6px);
	opacity: 0;
	transition:
		opacity 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		transform 2s cubic-bezier(0.25, 1, 0.5, 1) 0.5s,
		filter 1.8s cubic-bezier(0.25, 1, 0.5, 1) 0.5s;
	transform: translateY(16px);
}
.p-top-science__btn-link {
	position: relative;
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 24px;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.04em;
	font-family: 'Noto Sans JP', serif;
}
.p-top-science__btn-link:hover > span {
	background-position: right bottom;
	background-size: 0 1px;
}
.p-top-science__btn-link > span {
	background-image: linear-gradient(#fff, #fff);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 1px;
	transition:
		background-size 0.6s cubic-bezier(0.25, 1, 0.5, 1),
		color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-top-science__btn-link--deactive {
	padding-right: 0;
	color: rgb(200, 200, 200);
	text-decoration: underline;
	font-family: Roboto, serif;
}
.p-top-science__btn-arrow {
	position: absolute;
	inset: 2px 0 0 auto;
	margin: auto;
}

main {
	color: var(--brown);
	font-family: 'Shippori Mincho', serif;
}

.u-hide {
	opacity: 0;
}

.u-palt {
	font-feature-settings: 'palt';
}

@media screen and (min-width: 321px) {
	.footer_v2 .copyright {
		min-height: 20px;
	}
}

@media screen and (min-width: 768px) {
	/* FOOTER */
	.footer_v2 h1 {
		float: left;
		padding: 34px 0 0;
		width: 8%;
		text-align: right;
		box-sizing: border-box;
	}
	.footer_v2 h1 a {
		justify-content: space-between;
	}
	.footer_v2 .footer_v2_container {
		margin: 0;
		border-top: 1px solid #ccc;
	}
	.footer_v2 .wrap {
		overflow: hidden;
	}
	.footer_v2 .footer_v2_container .menu {
		float: right;
		position: relative;
		width: calc(92% - 140px);
		padding: 20px 10px;
		margin-right: 140px;
		border-bottom: none;
		box-sizing: border-box;
	}
	.footer_v2 .footer_v2_container .menu li,
	.footer_v2 .footer_v2_container .menu li:nth-child(even) {
		border-top: none;
		padding: 0;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(even) a {
		border-left: none;
	}
	.footer_v2 .footer_v2_container .menu:after {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 0;
		content: '';
		display: inline-block;
		width: 1px;
		height: 70%;
		vertical-align: middle;
		background: #ccc;
	}
	.footer_v2.ir .footer_v2_container .menu {
		width: 92%;
		margin-right: 0;
	}
	.footer_v2.ir .footer_v2_container .menu:after {
		display: none;
	}
	.footer_v2 .footer_v2_container .menu li,
	.footer_v2 .footer_v2_container .menu li:nth-child(even) {
		width: 28%;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(1),
	.footer_v2 .footer_v2_container .menu li:nth-child(5) {
		width: 20%;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(2),
	.footer_v2 .footer_v2_container .menu li:nth-child(6) {
		width: 24%;
	}
	.footer_v2.ir .footer_v2_container .menu li,
	.footer_v2.ir .footer_v2_container .menu li:nth-child(even),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(1),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(2),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(3),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(4),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(5),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(6),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(7),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(8),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(9),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(10) {
		width: 20%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(1),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(6) {
		width: 14%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(2),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(7) {
		width: 16%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(3),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(8) {
		width: 20%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(4),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(9) {
		width: 22%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(5),
	.footer_v2.ir .footer_v2_container .menu li:nth-child(10) {
		width: 25%;
	}
	.footer_v2.ir .footer_v2_container .menu li:nth-child(2) a,
	.footer_v2.ir .footer_v2_container .menu li:nth-child(4) a,
	.footer_v2.ir .footer_v2_container .menu li:nth-child(7) a,
	.footer_v2.ir .footer_v2_container .menu li:nth-child(9) a {
		border-left: none;
	}
	.footer_v2 .copyright {
		border-top: none;
	}
	.footer_v2 .copyright .col12 {
		text-align: left;
	}
	.footer_v2-top-btn {
		right: 40px;
	}
	.footer_v2 .sns {
		bottom: auto;
		left: calc(100% - 115px);
		top: 24%;
		z-index: 50;
	}
	.footer_v2 ul.sns li {
		padding: 0 10px;
	}
	.footer_v2.ir_sns .footer_v2_container .menu li a {
		padding: 3px 6px 3px 18px;
	}
	.footer_v2.ir_sns .footer_v2_container .menu li.menu_w,
	.footer_v2.ir_sns .footer_v2_container .menu li.menu_w2 {
		width: 44%;
	}
}

@media screen and (width >= 768px) {
	.l-header__inner {
		display: contents;
	}
	.l-header__list {
		gap: clamp(20px, -58px + 10.16vw, 46px);
	}
	.l-header__list-child {
		position: absolute;
		padding: 24px 32px 32px;
		margin-top: 22px;
		margin-left: -30px;
		font-size: 14px;
		visibility: hidden;
		background-color: rgba(255, 255, 255, 0.8);
		-webkit-backdrop-filter: blur(6px);
		backdrop-filter: blur(6px);
		border-radius: 4px;
		opacity: 0;
		transition:
			visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1),
			opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.l-header__list-child::before {
		position: absolute;
		top: -40px;
		left: 0;
		display: block;
		width: 100%;
		height: calc(100% + 40px);
		content: '';
	}
	.l-header__list-child li {
		margin-top: 20px;
	}
	.l-header__burger {
		display: none;
	}
	.l-header__sns {
		display: none;
	}
	.l-info__wrapper {
		justify-content: space-between;
		max-width: 1280px;
		padding-inline: 80px;
		margin-inline: auto;
	}
	.l-info__list {
		display: grid;
		gap: 48px;
	}
	.alum-k-action {
		background-image: linear-gradient(180deg, rgba(250, 201, 167, 0.4) 0.53%, rgba(245, 208, 186, 0.4) 5.55%, rgba(242, 209, 189, 0.4) 12.87%), url('/holidea/assets/images/common/gradient_just-right_bg.webp');
	}
	.alum-k-action__wrapper {
		max-width: 1440px;
		padding-block: 120px;
		padding-inline: clamp(1px, 10vw, 140px);
		margin-inline: auto;
	}
	.alum-k-action__title {
		font-size: 36px;
	}
	.alum-k-action__title-num {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.alum-k-action__img {
		margin-top: 80px;
		border-radius: 4px;
	}
	.alum-k-action__section {
		padding-top: 96px;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__lead + .alum-k-action__lead {
		margin-top: 24px;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__images {
		justify-content: center;
	}
	.alum-k-action__number {
		padding-bottom: 14px;
		text-align: center;
	}
	.alum-k-action__title-sub {
		margin-block: 64px;
		font-size: 26px;
		text-align: center;
	}
	.alum-k-action__lead {
		max-width: 840px;
		margin-inline: auto;
		font-size: 16px;
		text-align: left;
	}
	.alum-k-action__lead + .alum-k-action__lead {
		margin-top: 24px;
	}
	.alum-k-action__text {
		font-size: 16px;
	}
	.alum-k-action__images {
		margin-top: 64px;
	}
	.alum-k-action__images-title {
		font-size: 26px;
	}
	.alum-k-action__images-text {
		margin-top: 8px;
		font-size: 13px;
	}
	.alum-k-action__list {
		margin-top: 64px;
	}
	.alum-k-action__item {
		grid-template-columns: 1fr 100px;
		gap: 24px;
		padding: 40px;
	}
	.alum-k-action__term {
		padding-bottom: 20px;
	}
	.alum-k-action__description p {
		font-size: 14px;
	}
	.alum-k-action__description .note {
		margin-top: 14px;
		font-size: 12px;
	}
	.alum-k-action__description img {
		margin-top: 32px;
	}
	.p-alum-k-head {
		padding-top: 32px;
	}
	.p-alum-k-head__content {
		display: flex;
		justify-content: center;
	}
	.p-alum-k-head__title {
		font-size: 40px;
	}
	.p-alum-k-intro__wrapper {
		display: grid;
		gap: 36px;
		max-width: 1440px;
		padding-inline: 120px;
		padding-top: 120px;
		padding-bottom: 140px;
		margin-inline: auto;
	}
	.p-alum-k-intro__text p {
		font-size: 18px;
		line-height: 2.6;
	}
	.p-alum-k-nav {
		width: 100%;
		max-width: 465px;
	}
	.p-alum-k-nav__title {
		font-size: 20px;
	}
	.p-alum-k-nav__item::before {
		width: 30px;
	}
	.p-alum-k-nav__item:nth-child(2) .p-alum-k-nav__link {
		padding-bottom: 14px;
	}
	.p-alum-k-nav__link {
		grid-template-columns: 64px 1fr;
	}
	.p-alum-k-nav__num {
		top: 6px;
	}
	.p-alum-k-nav__text {
		font-size: 16px;
	}
	.p-alum-k-nav__arrow {
		width: 20px;
		height: 20px;
	}
	.p-alum-k-nav__arrow::before {
		width: 8px;
		height: 8px;
	}
	.p-alum-k-nav__subnav-link {
		padding: 6px 8px 5px 16px;
	}
	.p-alum-k-what {
		background-image: linear-gradient(180deg, rgba(247, 214, 205, 0.5) -0.15%, rgba(250, 226, 220, 0.5) 6.66%, rgba(245, 215, 208, 0.5) 13.18%), url('/holidea/assets/images/common/gradient_cinderella_bg.webp');
	}
	.p-alum-k-what__wrapper {
		max-width: 1440px;
		padding-block: 120px;
		padding-inline: clamp(1px, 10vw, 140px);
		margin-inline: auto;
	}
	.p-alum-k-what__title {
		font-size: 36px;
	}
	.p-alum-k-what__title-num {
		margin-bottom: 16px;
		font-size: 16px;
	}
	.p-alum-k-what__img {
		margin-top: 80px;
		border-radius: 4px;
	}
	.p-alum-k-what__section {
		padding-top: 96px;
	}
	.p-alum-k-what__section:nth-child(1) .p-alum-k-what__figure {
		grid-row: 1/3;
		grid-column: 2/3;
		width: 100%;
		max-width: 572px;
	}
	.p-alum-k-what__number {
		padding-bottom: 14px;
		text-align: center;
		border-bottom: 2px solid var(--brown30per);
	}
	.p-alum-k-what__title-sub {
		margin-block: 64px;
		font-size: 26px;
		text-align: center;
	}
	.p-alum-k-what__lead {
		font-size: 16px;
		text-align: center;
	}
	.p-alum-k-what__group {
		display: flex;
		gap: 56px;
	}
	.p-alum-k-what__text {
		font-size: 16px;
	}
	.p-alum-k-what__note {
		font-size: 12px;
	}
	.p-alum-k-what__flex {
		gap: 24px;
	}
	.p-course-faq {
		padding-bottom: 110px;
	}
	.p-course-faq__wrapper {
		max-width: 1000px;
		padding-inline: 80px;
		margin-inline: auto;
	}
	.p-course-faq__question {
		gap: 24px;
		padding: 32px 16px 48px;
	}
	.p-course-faq__question::before {
		top: 5px;
		font-size: 20px;
	}
	.p-course-faq__question-text {
		font-size: 18px;
	}
	.p-course-faq__btn {
		top: 5px;
		width: 20px;
		height: 20px;
	}
	.p-course-faq__btn::before,
	.p-course-faq__btn::after {
		width: 8px;
	}
	.p-course-faq__answer {
		padding-inline: 16px;
	}
	.p-course-faq__answer-inner {
		padding: 32px 38px;
		margin: 0 0 32px;
	}
	.p-course-faq__answer-inner p {
		font-size: 16px;
	}
	.p-course-faq__answer-inner * + h3 {
		margin-top: 20px;
	}
	.p-course-head__text {
		transition-delay: 0.6s;
	}
	.p-course-merit {
		background-image: linear-gradient(180deg, rgba(252, 215, 207, 0.5) -0.15%, rgba(250, 226, 220, 0.5) 17.09%, rgba(245, 215, 208, 0.5) 42.54%), url('/holidea/assets/images/common/gradient_cinderella2_bg.webp');
	}
	.p-course-merit__item::before {
		font-size: 12px;
	}
	.p-course-merit__item-title {
		font-size: 18px;
	}
	.p-course-merit__item-title sup {
		font-size: 12px;
	}
	.p-science-banner__wrapper {
		max-width: 1440px;
		padding-block: 90px 96px;
		padding-inline: 80px;
		margin-inline: auto;
	}
	.p-science-banner__link {
		max-width: 1120px;
		height: 320px;
		margin-inline: auto;
		background-image: url('/holidea/assets/images/inner/bg_banner.webp');
		background-repeat: no-repeat;
		background-position: calc((100vw - 1024px) / 2.5) top;
		background-size: auto 320px;
	}
	.p-science-banner__contnet {
		top: 24px;
		right: 40px;
		bottom: 0;
	}
	.p-science-banner__contnet .c-btn-blown {
		width: 340px;
		max-width: 340px;
		margin-top: 52px;
	}
	.p-science-banner__text {
		font-size: 16px;
	}
	.p-science-banner__text img {
		width: 197px;
		margin: 18px auto 0;
	}
	.p-science-engineering {
		background-image: linear-gradient(180deg, rgba(250, 201, 167, 0.4) 0.53%, rgba(245, 208, 186, 0.4) 5.55%, rgba(242, 209, 189, 0.4) 12.87%), url('/holidea/assets/images/common/gradient_just-right_bg.webp');
	}
	.p-science-engineering__wrapper {
		max-width: 1440px;
		padding-block: 120px;
		padding-inline: 140px;
		margin-inline: auto;
	}
	.p-science-engineering__title {
		font-size: 48px;
	}
	.p-science-engineering__title-jp {
		margin-top: 16px;
		font-size: 20px;
	}
	.p-science-engineering__img {
		margin-top: 80px;
		border-radius: 4px;
	}
	.p-science-engineering__section {
		padding-top: 96px;
	}
	.p-science-engineering__section:nth-child(1) .p-science-engineering__content {
		max-width: 532px;
	}
	.p-science-engineering__section:nth-child(2) .p-science-engineering__content {
		max-width: 456px;
	}
	.p-science-engineering__number {
		font-size: 12px;
	}
	.p-science-engineering__number i {
		font-size: 22px;
		font-weight: 400;
		font-family: Roboto, serif;
	}
	.p-science-engineering__title-sub {
		margin-block: 64px;
		font-size: 26px;
	}
	.p-science-engineering__lead {
		font-size: 16px;
		text-align: center;
	}
	.p-science-engineering__group {
		gap: 56px;
	}
	.p-science-engineering__text {
		font-size: 16px;
	}
	.p-science-engineering__images {
		align-items: center;
		max-width: 1100px;
		padding-inline: 80px;
		margin-top: 88px;
	}
	.p-science-engineering__images-title {
		margin-bottom: 20px;
		font-size: clamp(1.25rem, 0.327rem + 1.44vw, 1.625rem);
	}
	.p-science-engineering__images-text {
		position: absolute;
		top: 132px;
		right: -72px;
		padding: 28px 22px;
		font-size: clamp(0.625rem, 0.01rem + 0.96vw, 0.875rem);
	}
	.p-science-engineering__list {
		max-width: 540px;
		margin-top: 88px;
	}
	.p-science-engineering__item {
		grid-template-columns: 1fr 100px;
		gap: 24px;
		width: 100%;
		max-width: 376px;
		padding: 24px 24px 24px 36px;
	}
	.p-science-engineering__item::before {
		font-size: 12px;
	}
	.p-science-engineering__item-text {
		font-size: 14px;
	}
	.p-science-engineering__item-colmn2 {
		grid-column: 1/3;
	}
	.p-science-engineering__description {
		padding-top: 72px;
		font-size: 18px;
		line-height: 2.6;
	}
	.p-science-mv__en {
		font-size: 44px;
	}
	.p-science-mv__image {
		width: 100%;
		max-width: 670px;
		margin: 48px auto 0;
	}
	.p-science-mv__image > div:nth-of-type(1) {
		max-width: 320px;
	}
	.p-science-mv__image > div:nth-of-type(2) {
		max-width: 190px;
	}
	.p-science-mv__image > div:nth-of-type(3) {
		right: 0;
		bottom: -48px;
		left: 38px;
		max-width: 190px;
		margin: auto;
	}
	.p-science-mv__illust {
		max-width: 470px;
		margin-top: 56px;
	}
	.p-science-mv__illust > img {
		left: 8px;
	}
	.p-science-mv__nav-list {
		position: relative;
		left: 8px;
		display: flex;
		justify-content: space-between;
		width: 100%;
		max-width: 354px;
		margin-inline: auto;
	}
	.p-science-mv__nav-link {
		width: 134px;
		height: 42px;
		font-size: 14px;
	}
	.p-science-mv__nav-arrow {
		width: 16px;
		height: 16px;
	}
	.p-science-promise__wrapper {
		max-width: 1440px;
		padding: 96px 80px 88px;
		margin-inline: auto;
	}
	.p-science-promise__title {
		font-size: 32px;
	}
	.p-science-promise__text {
		font-size: 16px;
	}
	.p-science-promise__term {
		font-size: 18px;
	}
	.p-science-promise__description .text {
		font-size: 14px;
	}
	.p-science-report__wrapper {
		width: 100%;
		max-width: 1440px;
		padding-block: 96px 120px;
		padding-inline: clamp(1px, 10vw, 140px);
		margin-inline: auto;
	}
	.p-science-report__title {
		padding-bottom: 64px;
		font-size: 32px;
	}
	.p-science-report__text {
		font-size: 16px;
	}
	.p-science-report__text sup {
		font-size: 12px;
	}
	.p-science-report__text-note {
		margin-top: 12px;
		font-size: 12px;
	}
	.p-science-report__box-text {
		margin-top: 20px;
		font-size: 15px;
	}
	.p-science-report__profile {
		left: -12px;
		gap: 24px;
		margin: 36px auto 0;
	}
	.p-science-report__profile-data dt {
		font-size: 14px;
	}
	.p-science-report__profile-data dd {
		font-size: 12px;
	}
	.p-science-skin {
		background-image: linear-gradient(180deg, rgba(247, 214, 205, 0.5) -0.15%, rgba(250, 226, 220, 0.5) 6.66%, rgba(245, 215, 208, 0.5) 13.18%), url('/holidea/assets/images/common/gradient_cinderella_bg.webp');
	}
	.p-science-skin__wrapper {
		max-width: 1440px;
		padding-block: 120px;
		padding-inline: clamp(1px, 10vw, 140px);
		margin-inline: auto;
	}
	.p-science-skin__title {
		font-size: 48px;
	}
	.p-science-skin__title-jp {
		margin-top: 16px;
		font-size: 20px;
	}
	.p-science-skin__img {
		margin-top: 80px;
		border-radius: 4px;
	}
	.p-science-skin__section {
		padding-top: 96px;
	}
	.p-science-skin__section:nth-child(1) .p-science-skin__content {
		max-width: 532px;
	}
	.p-science-skin__section:nth-child(2) .p-science-skin__content {
		max-width: 456px;
	}
	.p-science-skin__number {
		padding-bottom: 14px;
		text-align: center;
		border-bottom: 1px solid var(--brown30per);
	}
	.p-science-skin__title-sub {
		margin-block: 64px;
		font-size: 26px;
		text-align: center;
	}
	.p-science-skin__lead {
		font-size: 16px;
		text-align: center;
	}
	.p-science-skin__group {
		display: flex;
		gap: 56px;
	}
	.p-science-skin__text {
		font-size: 16px;
	}
	.p-science-skin__note {
		font-size: 12px;
	}
	.p-science-skin__flex {
		gap: 24px;
	}
	.p-science-skin__figure figcaption {
		margin-top: 12px;
		font-size: 12px;
	}
	.p-science-skin__list {
		margin-top: 88px;
	}
	.p-science-skin__item {
		grid-template-columns: 1fr 100px;
		-moz-column-gap: 24px;
		column-gap: 24px;
		padding: 40px;
	}
	.p-science-skin__item-title {
		font-size: 16px;
	}
	.p-science-skin__item-text {
		margin-top: 16px;
		font-size: 14px;
	}
	.p-science-skin__item-note {
		font-size: 12px;
	}
	.p-science-skin__item-colmn2 {
		display: flex;
		flex-direction: column;
	}
	.p-science-skin__item-colmn2 .p-science-skin__item-figure {
		margin-top: -16px;
	}
	.p-science-skin__item-colmn2 .p-science-skin__item-note {
		margin-top: auto;
	}
	.p-top-lineup__item:nth-child(2) .p-top-lineup__item-continer {
		transition-delay: 0.4s;
	}
	.p-top-lineup__item:nth-child(4) .p-top-lineup__item-continer {
		transition-delay: 0.4s;
	}
	.p-top-lineup__item-award--toner {
		top: -40px;
		right: -50px;
	}
	.p-top-lineup__item-award--toner > img {
		width: 141px;
	}
	.p-top-lineup__item-award--toner .p-top-lineup__item-award-text {
		top: 47px;
		scale: 0.9;
	}
	.p-top-lineup__item-award-text {
		margin-top: 6px;
	}
	.p-top-message.is-visible .p-top-message__right-image img {
		filter: blur(0);
		opacity: 1;
		transform: translateY(0);
	}
	.p-top-message__flex {
		display: flex;
		gap: 40px;
		justify-content: space-between;
		max-width: 1100px;
	}
	.p-top-message__banner {
		grid-template-columns: 80px 1fr;
		width: 312px;
		margin-top: 120px;
	}
	.p-top-message__banner p {
		font-size: 15px;
	}
	.p-top-mv {
		max-height: 820px;
	}
	.p-top-mv__list {
		max-height: 820px;
	}
	.p-top-science.is-visible .p-top-science__title {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.2s;
		transform: translateY(0);
	}
	.p-top-science.is-visible .p-top-science__text-title {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.4s;
		transform: translateY(0);
	}
	.p-top-science.is-visible .p-top-science__text-text {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.6s;
		transform: translateY(0);
	}
	.p-top-science.is-visible .p-top-science__btn {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.8s;
		transform: translateY(0);
	}
	.p-top-science.is-visible .p-top-science__image {
		filter: blur(0);
		opacity: 1;
		transition-delay: 1.2s;
		transform: translateY(0);
	}
	.u-sp-display {
		display: none !important;
	}
}

@media screen and (width >= 1025px) {
	.l-header__list {
		gap: 46px;
	}
	.alum-k-action__section:nth-child(1) .alum-k-action__content {
		max-width: 532px;
	}
	.alum-k-action__group {
		display: flex;
		gap: 56px;
		align-items: flex-start;
	}
	.alum-k-action__images {
		grid-template-columns: repeat(2, 1fr);
	}
	.alum-k-action__list {
		grid-template-columns: repeat(2, 1fr);
	}
	.alum-k-action__youtube {
		max-width: 572px;
	}
	.p-alum-k-head {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.p-alum-k-head__content {
		flex-shrink: 0;
		align-items: center;
		justify-content: flex-end;
		min-width: 678px;
		padding-right: 80px;
		padding-left: 80px;
	}
	.p-alum-k-head__title > .brackets1 {
		margin-left: -18px;
	}
	.p-alum-k-head__img {
		width: 100%;
		height: 400px;
	}
	.p-alum-k-intro__wrapper {
		display: flex;
		gap: 80px;
	}
	.p-alum-k-intro__text p {
		max-width: 655px;
	}
	.p-alum-k-what__section:nth-child(1) .p-alum-k-what__content {
		display: grid;
		grid-template-columns: 1fr clamp(380px, -92px + 46.15vw, 572px);
		gap: 24px 56px;
	}
	.p-course-head__wrapper {
		-moz-column-gap: 40px;
		column-gap: 40px;
		align-items: center;
		justify-content: space-between;
		max-width: 1440px;
		padding-bottom: 140px;
		margin-top: 126px;
	}
	.p-course-head__content {
		padding-left: clamp(10px, 9vw, 120px);
	}
	.p-course-head__img {
		width: clamp(10px, 50vw, 720px);
		transition-delay: 1.1s;
	}
	.p-course-head__img img {
		transition-delay: 0.9s;
	}
	.p-science-banner__link {
		height: 400px;
		background-position: left top;
		background-size: cover;
	}
	.p-science-banner__contnet {
		top: 24px;
		right: 94px;
		bottom: 0;
	}
	.p-science-engineering__images {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
	.p-science-engineering__images-inner {
		width: -moz-fit-content;
		width: fit-content;
		margin: 0 0 0 38px;
	}
	.p-science-engineering__images-text {
		right: clamp(-13.625rem, -5.404rem - 9.13vw, -11.25rem);
	}
	.p-science-engineering__list {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		max-width: none;
	}
	.p-science-mv__wrapper {
		max-width: 1440px;
		padding: 102px 56px 140px 160px;
		margin-inline: auto;
	}
	.p-science-mv__group {
		display: flex;
		gap: 80px;
		align-items: center;
		justify-content: space-between;
	}
	.p-science-mv__image {
		margin: 0;
	}
	.p-science-mv__intro {
		gap: 32px;
		justify-content: space-between;
		max-width: 1100px;
		margin-top: 120px;
	}
	.p-science-mv__title {
		font-size: 32px;
	}
	.p-science-mv__text {
		margin-top: 32px;
		font-size: 18px;
	}
	.p-science-mv__illust {
		margin-top: 26px;
	}
	.p-science-promise__wrapper {
		padding: 96px 80px;
	}
	.p-science-promise__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		padding-top: 32px;
		margin-top: 72px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	.p-science-promise__item {
		align-content: center;
		padding: 44px 250px 44px 80px;
	}
	.p-science-promise__item + .p-science-promise__item {
		border-left: 1px solid rgba(255, 255, 255, 0.2);
	}
	.p-science-promise__description .icon {
		inset: 0 80px 0 auto;
	}
	.p-science-report__inner {
		display: flex;
		gap: 64px;
		align-items: flex-start;
		margin-top: 80px;
	}
	.p-science-report__left {
		width: 100%;
		max-width: 590px;
	}
	.p-science-report__box {
		width: 100%;
		min-width: 400px;
		max-width: 510px;
	}
	.p-science-skin__list {
		grid-template-columns: repeat(2, 1fr);
	}
	.p-science-skin__item:nth-child(2) {
		grid-row: 1/3;
		grid-column: 2/3;
	}
	.p-top-links__wrapper {
		max-width: 1440px;
		margin-inline: auto;
	}
	.p-top-message__wrapper {
		max-width: 1440px;
		margin-inline: auto;
	}
	.p-top-science__wrapper {
		left: 10px;
		max-width: 900px;
		margin-inline: auto;
	}
	.u-tab-display {
		display: none !important;
	}
}

@media screen and (min-width: 1080px) {
	/* FOOTER */
	.footer_v2 {
		font-size: 1.3rem;
	}
	.footer_v2 .wrap {
		max-width: 1080px;
		width: 1080px;
		margin: 0 auto;
	}
	.footer_v2 h1 {
		width: 6%;
		text-align: left;
	}
	.footer_v2 .footer_v2_container .menu {
		width: calc(90% - 200px);
		margin-right: 200px;
	}
	.footer_v2.ir .footer_v2_container .menu {
		width: 94%;
		margin-right: 0;
	}
	.footer_v2 .footer_v2_container .menu li,
	.footer_v2 .footer_v2_container .menu li:nth-child(even) {
		width: 21%;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(1),
	.footer_v2 .footer_v2_container .menu li:nth-child(5) {
		width: 17%;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(3),
	.footer_v2 .footer_v2_container .menu li:nth-child(7) {
		width: 25%;
	}
	.footer_v2 .footer_v2_container .menu li:nth-child(4),
	.footer_v2 .footer_v2_container .menu li:nth-child(8) {
		width: 28%;
	}
	.footer_v2-top-btn {
		right: 20px;
	}
	.footer_v2 .sns {
		left: calc(100% - 180px);
		width: 180px;
		text-align: center;
		left: calc(100% - 178px);
		top: 23%;
		z-index: 50;
	}
}

@media screen and (min-width: 1120px) {
	.footer_v2 h1 {
		width: 10%;
	}
}

@media screen and (width >= 1281px) {
	.u-tab-pc-display {
		display: none !important;
	}
}

@media screen and (width >= 1441px) {
	.c-card__splide-arrows button:nth-of-type(1) {
		left: calc(50% - 640px);
	}
	.c-card__splide-arrows button:nth-of-type(2) {
		right: calc(50% - 640px);
	}
	.p-course-head__img {
		min-width: clamp(10px, 50vw, 720px);
	}
}

@media screen and (width <= 1024px) {
	.l-info__wrapper {
		display: block;
		padding-block: 72px 80px;
		padding-inline: 48px;
		margin-inline: auto;
	}
	.l-info__logo {
		display: flex;
		align-items: center;
		justify-content: center;
		width: -moz-fit-content;
		width: fit-content;
		margin-inline: auto;
	}
	.l-info__group-nav {
		margin-top: 32px;
	}
	.l-info__nav {
		justify-content: center;
		margin-top: 48px;
	}
	.c-card {
		width: auto;
		max-width: 308px;
		padding-block: 0 32px;
		padding-inline: 0;
	}
	.c-card--1 .c-card__right-main h4 {
		letter-spacing: -0.01em;
	}
	.c-card--2 .c-card__right-main h4 {
		letter-spacing: -0.01em;
	}
	.c-card--3 .c-card__right-main h4 {
		letter-spacing: -0.01em;
	}
	.c-card--4 .c-card__right-main h4 {
		letter-spacing: -0.01em;
	}
	.c-card__splide {
		max-width: none;
		margin-inline: auto;
		margin-top: 40px;
	}
	.c-card__splide-arrows button:nth-of-type(1) {
		left: 0.9em;
	}
	.c-card__splide-arrows button:nth-of-type(2) {
		right: 0.9em;
	}
	.c-card__splide-arrows button {
		top: 40%;
		width: 44px;
		height: 44px;
		transform: translateY(0);
	}
	.c-card__splide-arrows button img {
		width: 15px;
	}
	.c-card__wrapper {
		display: block;
		margin-inline: auto;
		margin-top: 0;
	}
	.c-card__left img {
		width: 100%;
		max-width: 284px;
		height: auto;
		aspect-ratio: auto;
		margin: 12px 12px 0;
	}
	.c-card__left .c-card__item-blue {
		display: none;
	}
	.c-card__right {
		width: 100%;
		padding-inline: 20px;
		margin-top: 4px;
	}
	.c-card__right h4 {
		font-size: 1.25rem;
		letter-spacing: -0.01em;
		line-height: 1.4;
	}
	.c-card__right h4 span {
		min-height: 25px;
		margin-top: 10px;
		font-size: 0.6875rem;
		letter-spacing: 0;
		line-height: 1.2;
	}
	.c-card__right-main {
		width: 100%;
	}
	.c-card__price {
		display: block;
		margin-top: 17px;
	}
	.c-card__price--pc {
		display: none;
	}
	.c-card__price .c-card__item-blue {
		display: grid;
	}
	.c-card__dummy {
		display: flex;
		gap: 12px;
		align-items: center;
	}
	.c-card__dummy-text {
		padding: 6px 12px;
		font-size: 0.6875rem;
		letter-spacing: -0.03em;
		line-height: 1;
		border: 1px solid var(--brown);
	}
	.c-card__dummy-price {
		font-size: 0.75rem;
		letter-spacing: 0.04em;
		line-height: 1;
		margin-top: 0;
	}
	.c-card__dummy-price span {
		display: inline-block;
		margin-top: 0;
		font-size: 0.75rem;
		letter-spacing: 0.04em;
		line-height: 1;
		margin-left: 4px;
	}
	.c-card__real {
		grid-template-areas: 'pink message' 'pink price';
		width: -moz-fit-content;
		width: fit-content;
		margin-top: 11px;
	}
	.c-card__real-message {
		font-size: 1rem;
		letter-spacing: 0.04em;
		line-height: 1;
		margin-left: 7px;
	}
	.c-card__real-price {
		font-size: 2.375rem;
		letter-spacing: 0;
		line-height: 1;
		margin-top: 0;
	}
	.c-card__real-price--yen {
		font-size: 1.5rem;
		letter-spacing: 0;
		line-height: 1;
		margin-left: 0;
	}
	.c-card__real-price--yen::before {
		font-size: 0.625rem;
		letter-spacing: 0;
		line-height: 1;
		top: -11px;
		left: 60%;
		min-width: 41px;
	}
	.c-card__item-pink {
		font-size: 1rem;
		letter-spacing: 0.06em;
		line-height: 1.1;
		display: block;
		width: -moz-fit-content;
		width: fit-content;
		aspect-ratio: 1/1;
		padding: 10px 11px 10px 12px;
	}
	.c-card__item-blue {
		right: 0;
		bottom: 0;
		width: 56px;
		height: 56px;
		margin-block: 0;
		text-align: center;
	}
	.c-card__item-blue--1 {
		top: auto;
		right: 0;
		bottom: 0;
	}
	.c-card__item-blue--2 {
		top: auto;
		right: 0;
		bottom: 0;
	}
	.c-card__item-blue--3 {
		top: auto;
		right: 0;
		bottom: 0;
	}
	.c-card__item-blue--4 {
		top: auto;
		right: 0;
		bottom: 0;
	}
	.c-card__item-blue span:nth-of-type(1) {
		font-size: 0.625rem;
		letter-spacing: 0.04em;
		line-height: 1;
	}
	.c-card__item-blue span:nth-of-type(2) {
		font-size: 0.9375rem;
		letter-spacing: 0;
		line-height: 1;
	}
	.c-card__item-blue span:nth-of-type(3) {
		font-size: 0.75rem;
		letter-spacing: 0;
		line-height: 1;
	}
	.c-card__item-blue span:nth-of-type(4) {
		font-size: 0.8125rem;
		letter-spacing: 0;
		line-height: 1;
	}
	.c-card__atten {
		margin-top: 10px;
		font-size: 0.625rem;
		letter-spacing: 0.04em;
		line-height: 1.6;
	}
	.c-card__btn {
		margin-top: 20px;
	}
	.c-card__btn a {
		width: 100%;
	}
	.alum-k-action__group {
		display: grid;
		gap: 32px;
	}
	.alum-k-action__images img {
		margin-inline: auto;
	}
	.p-alum-k-head__title > .brackets1 {
		margin-left: -12px;
	}
	.p-alum-k-head__img {
		width: 100%;
		height: 352px;
		margin-top: 62px;
	}
	* + .p-alum-k-what__text {
		margin-top: 32px;
	}
	.p-alum-k-what__figure {
		margin: 32px auto 0;
	}
	.p-course-head__wrapper {
		flex-direction: column;
		padding-top: 104px;
		padding-bottom: 64px;
		padding-left: 0;
	}
	.p-course-head__content {
		display: contents;
	}
	.p-course-head__title {
		font-size: 1.5rem;
		letter-spacing: 0;
		line-height: 1.6;
		margin-left: 24px;
		text-align: left;
	}
	.p-course-head__text {
		order: 1;
		font-size: 0.9375rem;
		letter-spacing: -0.001em;
		line-height: 2.4;
		padding-inline: 20px;
		text-align: center;
		transition-delay: 0.9s;
	}
	.p-course-head__img {
		margin-top: 48px;
		transition-delay: 0.6s;
	}
	.p-course-head__img img {
		transition-delay: 0.6s;
	}
	.p-course-merit__list {
		grid-template-columns: 1fr;
		row-gap: 10px;
		margin-top: 40px;
	}
	.p-course-merit__item {
		min-height: auto;
	}
	.p-science-engineering__images {
		gap: 40px;
	}
	.p-science-engineering__images > img {
		margin-inline: auto;
	}
	.p-science-engineering__images-inner img {
		margin-inline: auto;
	}
	.p-science-engineering__list {
		margin-inline: auto;
	}
	.p-science-mv__wrapper {
		padding: 102px 0 72px;
	}
	.p-science-mv__en {
		padding-inline: 24px;
	}
	.p-science-mv__intro {
		display: block;
		justify-content: center;
		padding-inline: 20px;
		margin-top: 122px;
	}
	.p-science-mv__title {
		font-size: 24px;
		text-align: center;
	}
	.p-science-mv__text {
		width: -moz-fit-content;
		width: fit-content;
		max-width: none;
		margin-top: 24px;
		font-size: 15px;
		text-align: center;
	}
	.p-science-promise__list {
		margin-top: 32px;
	}
	.p-science-promise__item {
		gap: 16px 24px;
		padding: 28px 116px 28px 12px;
		border-top: 1px solid rgba(255, 255, 255, 0.2);
	}
	.p-science-promise__description .icon {
		inset: 0 8px 0 auto;
		width: 80px;
	}
	.p-science-report__inner {
		display: block;
		margin-top: 24px;
	}
	.p-science-report__box {
		padding: 24px 20px 32px;
		margin-top: 36px;
		border-radius: 4px;
	}
	.p-top-links__wrapper {
		display: block;
		min-height: none;
		padding-block: 56px 79px;
		padding-inline: 0;
		margin-inline: 24px 30px;
	}
	.p-top-links__link {
		justify-content: space-between;
		max-width: 600px;
		margin: 0 auto;
	}
	.p-top-links__line {
		width: 100%;
		height: 1px;
		min-height: 0;
		margin-block: 40px;
		margin-inline: 0;
	}
	.p-top-message__wrapper {
		padding: 80px 65px 80px 80px;
	}
	.p-top-message__right-img:nth-child(3) {
		z-index: 3;
	}
	.p-top-message__right-img:nth-child(4) {
		right: -30px;
	}
	.p-top-science {
		background-image: url('/holidea/assets/images/top/bg_top-science_sp.webp');
		background-position: bottom;
		background-size: cover;
	}
	.p-top-science__wrapper {
		-moz-column-gap: clamp(20px, 6vw, 50px);
		column-gap: clamp(20px, 6vw, 50px);
		padding: 80px 65px 80px 80px;
	}
	.p-top-science__text {
		margin-top: 56px;
		font-size: 26px;
	}
	.u-tab-over-display {
		display: none !important;
	}
}

@media screen and (width <= 767px) {
	.--is-sp {
		display: block;
	}
	.--is-pc {
		display: none;
	}
	body:not(:has(main.top)) .main::before {
		position: absolute;
		inset: 0 0 auto;
		display: block;
		width: calc(100% - 40px);
		height: 1px;
		margin: auto;
		content: '';
		background-color: var(--color-black);
	}
	.l-header {
		top: 6px;
	}
	.l-header:has(.l-header__burger[aria-expanded='true']) .l-header__logo a {
		background-color: var(--brown);
	}
	.l-header:has(.l-header__burger[aria-expanded='true']) .l-header__burger-line-top {
		background-color: var(--brown);
		transform: rotate(25deg);
	}
	.l-header:has(.l-header__burger[aria-expanded='true']) .l-header__burger-line-bottom {
		background-color: var(--brown);
		transform: translateY(-7px) rotate(-25deg);
	}
	.l-header:has(.l-header__burger[aria-expanded='true']) .l-header__nav {
		pointer-events: auto;
		opacity: 1;
	}
	.l-header__wrapper {
		padding-right: 4px;
		padding-left: 24px;
	}
	.l-header__logo {
		width: 104px;
	}
	.l-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-top: 104px;
		padding-bottom: 40px;
		overflow-y: auto;
		overscroll-behavior: none;
		pointer-events: none;
		background-color: rgba(255, 255, 255, 0.9);
		-webkit-backdrop-filter: blur(6px);
		backdrop-filter: blur(6px);
		opacity: 0;
		transition: opacity 0.6s ease-out;
	}
	.l-header__inner {
		min-height: calc(100% + 1px);
	}
	.l-header__list {
		display: grid;
		gap: 32px;
		padding: 0 56px 84px;
	}
	.l-header__list-item a,
	.l-header__list-item p {
		font-size: 17px;
		color: #6f564f;
	}
	.l-header__list-child {
		padding-left: 8px;
		margin-top: 12px;
	}
	.l-header__list-item-child > a {
		padding-block: 12px;
		font-size: 13px;
		line-height: 1;
	}
	.l-info {
		background-image: url('/holidea/assets/images/common/bg_footer-sp.webp');
		background-position: right;
	}
	.l-info__logo {
		width: 100%;
	}
	.l-info__logo img {
		max-width: 187px;
	}
	.l-info__sns-item a {
		width: 40px;
		height: 40px;
	}
	.l-info__sns-caption {
		margin-top: 8px;
		font-size: 10px;
	}
	.l-info__nav {
		display: grid;
		gap: 32px;
		justify-content: flex-start;
		margin-inline: 0;
		margin-top: 48px;
	}
	.l-info__list {
		display: contents;
	}
	.l-info__list-item p,
	.l-info__list-item a {
		font-size: 17px;
	}
	.l-info__list-child {
		margin-top: 24px;
	}
	.l-info__list-child-item a {
		font-size: 14px;
	}
	.l-info__list-child-item {
		margin-top: 24px;
	}
	.c-btn-blown {
		max-width: 240px;
		padding: 11px;
		font-size: 13px;
	}
	.c-btn-blown svg {
		top: 50%;
		right: 16px;
		width: 17px;
		transform: translateY(-50%);
	}
	.c-card__splide-arrows button {
		top: 46%;
	}
	.alum-k-action {
		background-image: linear-gradient(180deg, rgba(250, 201, 167, 0.4) 0%, rgba(242, 205, 182, 0.4) 2.48%, rgba(242, 209, 189, 0.4) 3.67%), url('/holidea/assets/images/common/gradient_just-right-alum-k_bg_sp.webp');
	}
	.alum-k-action__wrapper {
		padding-block: 60px 64px;
	}
	.alum-k-action__title {
		font-size: 24px;
	}
	.alum-k-action__title-num {
		margin-bottom: 8px;
		font-size: 13px;
	}
	.alum-k-action__img {
		margin-top: 32px;
	}
	.alum-k-action__section {
		display: flex;
		flex-direction: column;
		padding-inline: 24px;
		padding-top: 48px;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__number {
		order: 1;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__title-sub {
		order: 2;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__lead {
		order: 3;
	}
	.alum-k-action__section:nth-child(2) .alum-k-action__lead + .alum-k-action__lead {
		order: 5;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__lead + .alum-k-action__lead {
		margin-top: 20px;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__number {
		order: 1;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__title-sub {
		order: 2;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__lead {
		order: 3;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__lead + .alum-k-action__lead {
		order: 4;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__lead + .alum-k-action__lead + .alum-k-action__lead {
		order: 5;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__lead + .alum-k-action__lead + .alum-k-action__lead + .alum-k-action__lead {
		order: 7;
		margin-top: 32px;
	}
	.alum-k-action__section:nth-child(3) .alum-k-action__list {
		display: contents;
	}
	.alum-k-action__number {
		padding-bottom: 8px;
	}
	.alum-k-action__title-sub {
		margin-block: 20px;
		font-size: 20px;
	}
	.alum-k-action__lead {
		font-size: 15px;
	}
	.alum-k-action__lead + .alum-k-action__lead {
		margin-top: 32px;
	}
	.alum-k-action__text {
		font-size: 15px;
	}
	.alum-k-action__images {
		margin-top: 32px;
	}
	.alum-k-action__list {
		margin-top: 32px;
	}
	.alum-k-action__item {
		padding: 20px 24px 24px;
		margin-top: 32px;
	}
	.alum-k-action__term {
		padding-bottom: 16px;
		font-size: 15px;
	}
	.alum-k-action__description p {
		font-size: 13px;
	}
	.alum-k-action__description .note {
		margin-top: 12px;
		font-size: 10px;
	}
	.alum-k-action__description img {
		margin-top: 16px;
	}
	.p-alum-k-head {
		padding: 68px 0 0;
	}
	.p-alum-k-head__title {
		padding: 0 12px 0 24px;
		font-size: 26px;
	}
	.p-alum-k-intro__wrapper {
		display: block;
		padding-inline: 0;
		padding-top: 48px;
		padding-bottom: 64px;
	}
	.p-alum-k-intro__text {
		margin-inline: 32px 28px;
	}
	.p-alum-k-intro__text p {
		font-size: 15px;
		line-height: 2.4;
	}
	.p-alum-k-nav {
		width: 100%;
		padding-inline: 32px;
		margin-top: 56px;
	}
	.p-alum-k-nav__title {
		font-size: 18px;
	}
	.p-alum-k-nav__list {
		display: block;
		width: 100%;
		padding-inline: 0;
		margin-top: 14px;
	}
	.p-alum-k-nav__item::before {
		width: 20px;
	}
	.p-alum-k-nav__link {
		grid-template-columns: 56px 1fr;
		padding-right: 16px;
	}
	.p-alum-k-nav__num {
		top: 6px;
	}
	.p-alum-k-nav__img {
		width: 56px;
		height: 56px;
	}
	.p-alum-k-nav__text {
		font-size: 15px;
	}
	.p-alum-k-nav__arrow {
		width: 14px;
		height: 14px;
	}
	.p-alum-k-nav__arrow::before {
		width: 6px;
		height: 6px;
	}
	.p-alum-k-nav__subnav {
		display: grid;
		row-gap: 6px;
	}
	.p-alum-k-nav__subnav-item:nth-of-type(n + 2) {
		margin-top: 0;
	}
	.p-alum-k-nav__subnav-link {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		padding: 14px 16px;
	}
	.p-alum-k-what {
		background-image: linear-gradient(180deg, rgba(252, 218, 210, 0.5) 0.28%, rgba(250, 226, 220, 0.5) 3.99%, rgba(245, 215, 208, 0.5) 7.04%), url('/holidea/assets/images/common/gradient_cinderella-alum-k_bg_sp.webp');
	}
	.p-alum-k-what__wrapper {
		padding-block: 60px 64px;
	}
	.p-alum-k-what__title {
		font-size: 24px;
	}
	.p-alum-k-what__title-num {
		margin-bottom: 8px;
		font-size: 13px;
	}
	.p-alum-k-what__img {
		margin-top: 58px;
	}
	.p-alum-k-what__section {
		padding: 48px 24px 0;
	}
	.p-alum-k-what__number {
		padding-bottom: 8px;
		border-bottom: 1px solid var(--brown30per);
	}
	.p-alum-k-what__title-sub {
		margin-block: 20px;
		font-size: 20px;
	}
	.p-alum-k-what__lead {
		font-size: 15px;
	}
	.p-alum-k-what__text {
		margin-top: 20px;
		font-size: 15px;
	}
	.p-alum-k-what__note {
		font-size: 10px;
	}
	.p-alum-k-what__flex {
		gap: 16px;
		justify-content: center;
		margin-top: 16px;
	}
	.p-course-faq {
		padding: 48px 24px 32px;
	}
	.p-course-faq__wrapper {
		padding-inline: 20px;
	}
	.p-course-faq__head {
		padding-top: 0;
	}
	.p-course-faq__head h2 {
		padding-top: 0;
		font-size: 1.75rem;
		letter-spacing: 0.1em;
		line-height: 1.6;
	}
	.p-course-faq__main {
		margin-top: 40px;
	}
	.p-course-faq__detail {
		padding-inline: 8px;
		border-top: 1px solid var(--white20per);
	}
	.p-course-faq__question {
		gap: 10px;
		padding-block: 16px 32px;
	}
	.p-course-faq__question::before {
		top: 6px;
		font-size: 14px;
	}
	.p-course-faq__question-text {
		font-size: 15px;
	}
	.p-course-faq__btn {
		top: 6px;
		width: 14px;
		height: 14px;
	}
	.p-course-faq__btn::before,
	.p-course-faq__btn::after {
		width: 6px;
	}
	.p-course-faq__answer-inner {
		padding: 16px 20px;
		margin: 0 0 16px;
	}
	.p-course-faq__answer-inner:has(.p-course-faq__answer-atten) {
		padding-bottom: 18px;
	}
	.p-course-faq__answer-inner p {
		font-size: 13px;
	}
	.p-course-faq__answer-inner > a {
		font-size: 0.8125rem;
		letter-spacing: 0.04em;
		line-height: 1.4;
		margin-top: 4px;
	}
	.p-course-faq__answer-inner h3 {
		font-size: 0.8125rem;
		letter-spacing: 0.04em;
		line-height: 1.4;
	}
	.p-course-faq__answer-inner * + h3 {
		margin-top: 12px;
	}
	.p-course-faq__answer-inner .note {
		font-size: 0.6875rem;
		letter-spacing: 0.04em;
		line-height: 1.4;
		margin-top: 4px;
	}
	.p-course-faq {
		font-size: 0.75rem;
		letter-spacing: 0.04em;
		line-height: 1.4;
	}
	.p-course-set {
		padding-bottom: 64px;
		background-image: url('/holidea/assets/images/course/bg_course_set-sp.webp');
		background-size: cover;
	}
	.p-course-set__head {
		padding-top: 56px;
		text-align: center;
	}
	.p-course-set__title {
		font-size: 1.5rem;
		letter-spacing: -0.02em;
		line-height: 1.6;
	}
	.p-course-set__text {
		margin-top: 16px;
		font-size: 0.625rem;
		letter-spacing: 0.04em;
		line-height: 1.8;
	}
	.p-course-set__splide {
		margin-top: 40px;
	}
	.p-course-set__splide-arrows button {
		width: 44px;
		height: 44px;
		margin-inline: auto;
		background-color: var(--brown);
		opacity: 1;
	}
	.p-course-set__splide-arrows button:nth-of-type(1) img {
		rotate: 180deg;
	}
	.p-course-set .c-btn-blown {
		margin-top: 20px;
		text-align: center;
	}
	.p-course-merit {
		padding: 48px 24px 64px;
		background-image: linear-gradient(180deg, rgba(252, 216, 207, 0.5) 0.18%, rgba(250, 226, 220, 0.5) 4.05%, rgba(245, 215, 208, 0.5) 7.43%), url('/holidea/assets/images/common/gradient_cinderella2_bg_sp.webp');
	}
	.p-course-merit__title {
		font-size: 1.5rem;
		letter-spacing: -0.02em;
		line-height: 1;
	}
	.p-course-merit__item {
		min-height: auto;
		padding: 28px;
	}
	.p-course-merit__item::before {
		font-size: 10px;
	}
	.p-course-merit__item-num {
		font-size: 0.625rem;
		letter-spacing: 0;
		line-height: 1;
		font-weight: 400;
	}
	.p-course-merit__item-head {
		position: relative;
		gap: 16px;
		font-weight: 500;
		font-size: 0.9375rem;
		letter-spacing: 0.1em;
		line-height: 2.4;
	}
	.p-course-merit__item-icon {
		width: 56px;
		height: 56px;
	}
	.p-course-merit__item-title {
		font-size: 16px;
	}
	.p-course-merit__item-title sup {
		font-size: 10px;
	}
	.p-course-merit__item-main p {
		font-size: 0.8125rem;
		letter-spacing: 0.04em;
		line-height: 1.8;
		margin-top: 12px;
	}
	.p-course-merit__item-main span {
		display: block;
		font-size: 0.625rem;
		letter-spacing: 0.04em;
		line-height: 1.3;
		margin-top: 8px;
	}
	.p-course-merit__item-main span:nth-of-type(n + 2) {
		margin-top: 2px;
	}
	.p-course-merit__item-main--preview {
		height: 12px;
	}
	.p-course-merit__item-illust {
		display: block;
		margin-top: 20px;
	}
	.p-course-merit__item-btn {
		position: absolute;
		bottom: -12px;
		left: 50%;
		z-index: 2;
		display: block;
		padding-block: 7px;
		padding-inline: 16px 26px;
		color: var(--white);
		background-color: var(--brown);
		border: 1px solid transparent;
		border-radius: 60px;
		transform: translateX(-50%);
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.p-course-merit__item-btn--is-open {
		color: var(--brown);
		background-color: var(--white);
		border: 1px solid var(--brown);
	}
	.p-course-merit__item-btn-text {
		font-size: 0.625rem;
		letter-spacing: 0.04em;
		line-height: 1;
		display: block;
		font-weight: 400;
	}
	.p-course-merit__item-btn-cross {
		position: absolute;
		top: 50%;
		right: 6px;
		width: 12px;
		height: 12px;
		background-color: var(--white);
		border-radius: 99.999px;
		transform: translateY(-50%);
	}
	.p-course-merit__item-btn-cross--is-open {
		background-color: var(--brown);
		border-radius: 99.999px;
	}
	.p-science-banner__wrapper {
		padding: 20px;
	}
	.p-science-banner__link {
		max-width: 420px;
		aspect-ratio: 335/474;
		margin-inline: auto;
		background-image: url('/holidea/assets/images/inner/bg_banner-sp.webp');
		background-size: cover;
	}
	.p-science-banner__contnet {
		right: 0;
		bottom: 40px;
		left: 0;
	}
	.p-science-banner__contnet .c-btn-blown {
		margin-top: 24px;
	}
	.p-science-banner__text {
		font-size: 12px;
	}
	.p-science-banner__text img {
		width: 140px;
		margin: 8px auto 0;
	}
	.p-science-engineering {
		background-image: linear-gradient(180deg, rgba(250, 201, 167, 0.4) 0%, rgba(242, 205, 182, 0.4) 2.48%, rgba(242, 209, 189, 0.4) 3.67%), url('/holidea/assets/images/common/gradient_just-right_bg_sp.webp');
	}
	.p-science-engineering__wrapper {
		padding-block: 56px 64px;
	}
	.p-science-engineering__title {
		font-size: 30px;
	}
	.p-science-engineering__title-jp {
		margin-top: 8px;
		font-size: 15px;
	}
	.p-science-engineering__img {
		margin-top: 32px;
	}
	.p-science-engineering__section {
		padding-inline: 24px;
		padding-top: 48px;
	}
	.p-science-engineering__title-sub {
		margin-block: 20px;
		font-size: 20px;
	}
	.p-science-engineering__lead {
		font-size: 15px;
	}
	.p-science-engineering__images {
		margin-top: 32px;
	}
	.p-science-engineering__images-title {
		font-size: 24px;
	}
	.p-science-engineering__images-text {
		max-width: 292px;
		padding: 18px 30px;
		margin-inline: auto;
		margin-top: 16px;
		margin-bottom: 24px;
		font-size: 13px;
	}
	.p-science-engineering__list {
		margin-top: 32px;
	}
	.p-science-engineering__item {
		grid-template-columns: 1fr 90px;
		padding: 20px 20px 20px 30px;
	}
	.p-science-engineering__item::before {
		font-size: 10px;
	}
	.p-science-engineering__item-text {
		font-size: 13px;
	}
	.p-science-engineering__description {
		padding-inline: 16px;
		padding-top: 24px;
		font-size: 15px;
		line-height: 2.3;
	}
	.p-science-mv__en {
		font-size: 30px;
	}
	.p-science-mv__image {
		margin-top: 48px;
	}
	.p-science-mv__image > div:nth-of-type(1) {
		width: 61.8667%;
	}
	.p-science-mv__image > div:nth-of-type(2) {
		width: 29.6%;
	}
	.p-science-mv__image > div:nth-of-type(3) {
		right: 56px;
		bottom: -66px;
		width: 36.2667%;
	}
	.p-science-mv__illust {
		max-width: 266px;
		margin-top: 56px;
	}
	.p-science-mv__nav-list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
	}
	.p-science-mv__nav-link {
		width: 102px;
		height: 35px;
		font-size: 11px;
	}
	.p-science-mv__nav-arrow {
		width: 14px;
		height: 14px;
	}
	.p-science-promise {
		text-align: center;
	}
	.p-science-promise__wrapper {
		padding: 48px 24px 36px;
	}
	.p-science-promise__title {
		font-size: 24px;
	}
	.p-science-promise__text {
		margin-top: 16px;
		font-size: 13px;
		font-weight: 400;
	}
	.p-science-promise__term {
		font-size: 15px;
	}
	.p-science-promise__description .text {
		font-size: 12px;
	}
	.p-science-report__wrapper {
		padding: 56px 24px 64px;
	}
	.p-science-report__title {
		padding-bottom: 28px;
		font-size: 24px;
		font-weight: 600;
	}
	.p-science-report__text {
		font-size: 15px;
	}
	.p-science-report__text sup {
		font-size: 10px;
	}
	.p-science-report__text-note {
		margin-top: 8px;
		font-size: 10px;
	}
	.p-science-report__box-title {
		width: 80px;
	}
	.p-science-report__box-text {
		margin-top: 16px;
		font-size: 14px;
	}
	.p-science-report__profile {
		gap: 20px;
		padding-left: 3px;
		margin-top: 32px;
	}
	.p-science-report__profile-img {
		display: block;
		width: 80px;
		height: 80px;
		-o-object-fit: contain;
		object-fit: contain;
		border-radius: calc(infinity * 1px);
	}
	.p-science-report__profile-data dt {
		font-size: 13px;
	}
	.p-science-report__profile-data dt span {
		margin-left: 6px;
		font-size: 11px;
	}
	.p-science-report__profile-data dd {
		padding-top: 8px;
		margin-top: 8px;
		font-size: 10px;
		border-top: 1px solid var(--brown30per);
	}
	.p-science-skin {
		background-image: linear-gradient(180deg, rgba(252, 218, 210, 0.5) 0.28%, rgba(250, 226, 220, 0.5) 3.99%, rgba(245, 215, 208, 0.5) 7.04%), url('/holidea/assets/images/common/gradient_cinderella_bg_sp.webp');
	}
	.p-science-skin__wrapper {
		padding-block: 56px 64px;
	}
	.p-science-skin__title {
		font-size: 30px;
	}
	.p-science-skin__title-jp {
		margin-top: 8px;
		font-size: 15px;
	}
	.p-science-skin__img {
		margin-top: 32px;
	}
	.p-science-skin__section {
		padding: 48px 24px 0;
	}
	.p-science-skin__number {
		padding-bottom: 8px;
		border-bottom: 1px solid var(--brown30per);
	}
	.p-science-skin__title-sub {
		margin-block: 20px;
		font-size: 20px;
	}
	.p-science-skin__lead {
		font-size: 15px;
	}
	.p-science-skin__text {
		margin-top: 20px;
		font-size: 15px;
	}
	.p-science-skin__note {
		font-size: 10px;
	}
	.p-science-skin__flex {
		gap: 16px;
		justify-content: center;
		padding-inline: 4px;
		margin-top: 16px;
	}
	.p-science-skin__figure {
		margin-top: 24px;
	}
	.p-science-skin__figure figcaption {
		margin-top: 8px;
		font-size: 11px;
	}
	.p-science-skin__list {
		margin-top: 24px;
	}
	.p-science-skin__item {
		grid-template-columns: 1fr 104px;
		gap: 16px 20px;
		padding: 24px 20px;
	}
	.p-science-skin__item:nth-child(3) .p-science-skin__item-note {
		width: 104%;
	}
	.p-science-skin__item-content {
		display: contents;
	}
	.p-science-skin__item-title {
		grid-column: 1/3;
		font-size: 15px;
	}
	.p-science-skin__item-text {
		font-size: 13px;
	}
	.p-science-skin__item-note {
		font-size: 10px;
	}
	.p-science-skin__item-colmn2 .p-science-skin__item-figure {
		margin-top: -8px;
	}
	.p-science-skin__item-colmn2 .p-science-skin__item-note {
		margin-top: 20px;
	}
	.p-science-skin__item-img {
		grid-row: 2/3;
		grid-column: 2/3;
	}
	.p-loading__logo {
		width: 140px;
	}
	.p-top-lineup__head {
		display: block;
		padding-block: 64px 48px;
		padding-inline: 24px 15px;
	}
	.p-top-lineup__title {
		font-size: 30px;
	}
	.p-top-lineup__title-text {
		margin-top: 24px;
		font-size: 12px;
		letter-spacing: 0.08em;
	}
	.p-top-lineup__title-text span {
		font-size: 10px;
	}
	.p-top-lineup__title-text sup {
		font-size: 10px;
	}
	.p-top-lineup__grid {
		grid-template-columns: 1fr;
	}
	.p-top-lineup__item {
		width: 100%;
		height: auto;
	}
	.p-top-lineup__item .c-btn-blown {
		margin-top: 16px;
	}
	.p-top-lineup__item-continer {
		padding: 48px 0;
	}
	.p-top-lineup__item-tag {
		width: 80px;
		padding-block: 7px;
		font-size: 10px;
		line-height: 1;
	}
	.p-top-lineup__item-award {
		top: -14px;
		right: -52px;
		z-index: 3;
	}
	.p-top-lineup__item-award--toner {
		top: -32px;
		right: -48px;
	}
	.p-top-lineup__item-award--toner > img {
		width: 126px;
	}
	.p-top-lineup__item-award--toner .p-top-lineup__item-award-text {
		top: 40px;
		scale: 0.8;
	}
	.p-top-lineup__item-award-voice {
		width: 50px;
	}
	.p-top-lineup__item-award-cosme {
		width: 66px;
	}
	.p-top-lineup__item-award-text {
		scale: 0.8;
	}
	.p-top-lineup__item-award-text + * {
		margin-top: 8px;
	}
	.p-top-lineup__item-title {
		font-size: 17px;
		letter-spacing: 0.04em;
	}
	.p-top-lineup__item-wrap {
		width: 240px;
		height: 240px;
		margin-top: 20px;
	}
	.p-top-lineup__item-caption {
		margin-top: 24px;
	}
	.p-top-lineup__item-detail dt {
		font-size: 16px;
		letter-spacing: 0.175em;
	}
	.p-top-lineup__item-detail dd {
		margin-top: 13px;
		font-size: 11px;
		line-height: 1.6;
	}
	.p-top-lineup__item-detail dd:nth-of-type(n + 2) {
		margin-top: 8px;
	}
	.p-top-lineup__item-category {
		font-size: 11px;
	}
	.p-top-lineup__bottom {
		padding: 48px 20px;
	}
	.p-top-lineup__banner {
		max-width: 380px;
	}
	.p-top-lineup__banner .c-btn-blown {
		position: absolute;
		bottom: 11.904%;
		left: 51.6418%;
		width: 39.403%;
		padding: 6px 12px 6px 6px;
		margin-inline: auto;
		font-size: 10px;
	}
	.p-top-lineup__banner .c-btn-blown svg {
		right: 26px;
		width: 12px;
	}
	.p-top-lineup__banner-text {
		font-size: 20px;
	}
	.p-top-lineup__banner-text span {
		margin-bottom: 5px;
		font-size: 10px;
	}
	.p-top-links__link {
		gap: 20px;
	}
	.p-top-links__link-arrow {
		width: 51px;
		height: 51px;
	}
	.p-top-links__link-arrow img {
		width: 100%;
	}
	.p-top-links__detail {
		text-align: left;
	}
	.p-top-links__detail dt {
		font-size: 22px;
	}
	.p-top-links__detail dd {
		margin-top: 12px;
		font-size: 13px;
	}
	.p-top-message {
		background-image: url('/holidea/assets/images/top/bg_top-message-sp.webp');
	}
	.p-top-message__wrapper {
		padding: 64px 32px 80px;
	}
	.p-top-message__flex {
		flex-direction: column;
	}
	.p-top-message__left {
		display: contents;
	}
	.p-top-message__title {
		font-size: 13px;
	}
	.p-top-message__text {
		margin-top: 64px;
	}
	.p-top-message__text-title {
		font-size: 26px;
		line-height: 1.6;
	}
	.p-top-message__text-title span {
		font-size: 26px;
		line-height: 1.6;
	}
	.p-top-message__text-group {
		font-size: 15px;
		letter-spacing: 0.01em;
	}
	.p-top-message__text-group p {
		margin-top: 40px;
		letter-spacing: -0.03em;
		white-space: nowrap;
	}
	.p-top-message__trigger {
		margin-top: 32px;
		font-size: 12px;
		line-height: 1;
	}
	.p-top-message__right {
		width: 100%;
		margin-top: 56px;
	}
	.p-top-message__right.is-visible .p-top-message__right-image img {
		filter: blur(0);
		opacity: 1;
		transform: translateY(0);
	}
	.p-top-message__right-image {
		display: block;
		width: 100%;
		max-width: 311px;
		height: 452px;
		margin-inline: auto;
	}
	.p-top-message__right-img:nth-child(1) {
		top: 62px;
		left: 32px;
		width: 157px;
		height: 209px;
	}
	.p-top-message__right-img:nth-child(2) {
		top: 0;
		right: 57px;
		width: 84px;
		height: 138px;
	}
	.p-top-message__right-img:nth-child(3) {
		right: 22px;
		bottom: 114px;
		z-index: 1;
		width: 114px;
		height: 150px;
	}
	.p-top-message__right-img:nth-child(4) {
		right: 70px;
		bottom: 0;
		width: 128px;
		height: 84px;
	}
	.p-top-message__right-img img {
		width: 100%;
	}
	.p-top-message__banner {
		grid-template-columns: 68px 1fr;
		order: 1;
		width: calc(100% - 12px);
		max-width: 384px;
		margin: 72px auto 0;
	}
	.p-top-message__banner p {
		font-size: 13px;
	}
	.p-top-mv {
		height: 100svh;
	}
	.p-top-mv__slider img {
		height: 100svh;
	}
	.p-top-mv__list::before {
		height: 100px;
		background: linear-gradient(0deg, rgba(58, 54, 39, 0) 0%, rgba(58, 54, 39, 0.25) 100%);
	}
	.p-top-mv__list::after {
		background: linear-gradient(180deg, rgba(58, 54, 39, 0) 0%, rgba(58, 54, 39, 0.6) 100%);
	}
	.p-top-mv__pagination {
		position: absolute;
		right: 48px;
		bottom: 0;
		margin: 0;
	}
	.p-top-mv__pagination .current-slide {
		font-size: 13px;
	}
	.p-top-mv__pagination .separator {
		font-size: 11px;
	}
	.p-top-mv__pagination .total-slides {
		font-size: 11px;
	}
	.p-top-mv__group {
		bottom: 0;
		padding: 20px 16px 25px 24px;
	}
	.p-top-mv__left {
		width: 208px;
		padding-bottom: 8px;
	}
	.p-top-mv__left > img {
		bottom: -32px;
		left: 0;
	}
	.p-top-mv__right {
		margin-bottom: 3px;
	}
	.p-top-mv__right-scroller {
		gap: 4px;
		width: 100%;
		height: 100%;
		transform: rotate(90deg) translate(-50px, -46px);
	}
	.p-top-mv__right-scroller-text {
		height: auto;
		font-size: 10px;
	}
	.p-top-mv__right-scroller-arrow {
		width: 14px;
		height: 14px;
	}
	.p-top-mv__right-scroller-arrow img {
		display: block;
		width: 6px;
		height: 5px;
		transform: rotate(0deg);
	}
	.p-top-science__wrapper {
		flex-direction: column;
		grid-template-areas: 'title' 'image' 'text';
		gap: 0;
		justify-content: center;
		padding: 80px 32px;
	}
	.p-top-science__image {
		width: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-top: 56px;
	}
	.p-top-science__image.is-visible {
		filter: blur(0);
		opacity: 1;
		transform: translateY(0);
	}
	.p-top-science__title {
		margin-top: 0;
	}
	.p-top-science__title h2 {
		font-size: 30px;
	}
	.p-top-science__title.is-visible {
		filter: blur(0);
		opacity: 1;
		transform: translateY(0);
	}
	.p-top-science__text.is-visible .p-top-science__text-title {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.4s;
		transform: translateY(0);
	}
	.p-top-science__text.is-visible .p-top-science__text-text {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.6s;
		transform: translateY(0);
	}
	.p-top-science__text.is-visible .p-top-science__btn {
		filter: blur(0);
		opacity: 1;
		transition-delay: 0.8s;
		transform: translateY(0);
	}
	.p-top-science__text-title {
		font-size: 24px;
	}
	.p-top-science__text-text {
		margin-top: 20px;
		font-size: 14px;
		line-height: 1.8;
	}
	.p-top-science__btn {
		margin-top: 40px;
	}
	.p-top-science__btn-link {
		margin-left: auto;
		font-size: 12px;
		line-height: 1;
		letter-spacing: 0.04em;
	}
	.p-top-science__btn-arrow {
		width: 13px;
	}
	.u-pc-display {
		display: none !important;
	}
}

@media screen and (width <= 360px) {
	.p-top-message__text-group {
		font-size: clamp(12px, 4.167vw, 15px);
	}
}

@media (hover: hover) and (pointer: fine) {
	.l-header__list-item > a:hover {
		background-position: left bottom;
		background-size: 100% 1px;
	}
	.l-header__list-item.--megamenu:hover .l-header__list-child {
		visibility: visible;
		opacity: 1;
		transition:
			visibility 0.6s cubic-bezier(0.25, 1, 0.5, 1),
			opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.l-header__list-item-child > a:hover span {
		background-position: left bottom;
		background-size: 100% 1px;
	}
	.c-btn-blown {
		transition:
			background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
			color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.c-btn-blown:hover {
		background-color: var(--btn-brown-hover);
	}
	.c-btn-blown svg {
		transition: fill 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.c-card__splide-arrows button {
		transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.c-card__splide-arrows button:hover {
		background-color: #8c7169;
		opacity: 1 !important;
	}
	.p-course-faq__question:hover .p-course-faq__btn {
		opacity: 0.6;
	}
	.p-science-banner__link:hover .c-btn-blown {
		background-color: var(--btn-brown-hover);
	}
	.p-science-mv__nav-link:hover {
		background-color: var(--btn-brown-hover);
	}
	.p-top-lineup__item-image:hover .p-top-lineup__item-img {
		scale: 1.04;
	}
	.p-top-lineup__banner:hover .c-btn-blown {
		background-color: var(--btn-brown-hover);
	}
	.p-top-links__link:hover .p-top-links__link-arrow {
		background-color: rgba(255, 255, 255, 0.05);
		border-color: rgba(255, 255, 255, 0.05);
	}
	.p-top-links__link-arrow {
		transition:
			background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1),
			border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.p-top-message__banner {
		transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	}
	.p-top-message__banner:hover {
		background-color: rgba(140, 113, 105, 0.8);
	}
	.p-top-mv__right-scroller-text p:hover {
		background-position: left bottom;
		background-size: 100% 1px;
	}
}

@media (prefers-reduced-motion: no-preference) {
	:where(html:focus-within) {
		scroll-behavior: auto;
	}
}

@media screen and (-ms-high-contrast: none) {
	.splide__slide:focus-visible {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__slide:focus {
		border: 3px solid #0bf;
	}
	.splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
		border-color: #0bf;
	}
}
.st-Menu_Product[data-astro-cid-h3tvttwl] .brand[data-astro-cid-h3tvttwl] ul[data-astro-cid-h3tvttwl] {
	justify-content: flex-start !important;
}
.common-header[data-astro-cid-h3tvttwl]:not(.abc) {
	display: none;
}
.Entry__comment-desc___17fDl[data-astro-cid-h3tvttwl],
.EntryModal__img-tags___e2BEQ[data-astro-cid-h3tvttwl] {
	display: none;
}
.CommentForm__sign-in-pane___GMJ6S[data-astro-cid-h3tvttwl] {
	visibility: hidden;
}
.common-header_logo[data-astro-cid-h3tvttwl] a[data-astro-cid-h3tvttwl] {
}
.common-header_logo[data-astro-cid-h3tvttwl] .name[data-astro-cid-h3tvttwl] {
	font-size: 16px !important;
}
.common-header[data-astro-cid-h3tvttwl] a[data-astro-cid-h3tvttwl]::before {
	content: none;
}
@media only screen and (width <= 600px) {
	.MasonryWrapper__grid-sizer___13-uZ[data-astro-cid-h3tvttwl],
	.grid-item[data-astro-cid-h3tvttwl].Entry__entry___25Jvq {
		width: calc(50% - 20px) !important;
	}
}
.block-cookie-consent[data-astro-cid-emaed67g] {
	flex-direction: column;
}
.block-cookie-consent--btn[data-astro-cid-emaed67g] {
	text-align: center;
}
header[data-astro-cid-emaed67g] .banner-202404-wrapper[data-astro-cid-emaed67g] {
	margin: 2rem 0;
}
