@charset "utf-8";
/*
Theme Name: morinagakodomo
Theme URI: https://morinagakodomo.com
Version: 1.0
*/

/* common
---------------------------------------------------------------------------*/
:root {
	--color-blue: #00A3DF;
	--color-orange: #F39700;
	--color-text: #44311A;
	--color-bg: #F3F4EB;
	--color-border-gray: #E2E2E2;
	--color-border-yellow-light: #FDE07E;
	--color-border-yellow: #E8E9DB;
	--color-yellow-light: #FEF5D7;
	--color-yellow: #FBCE38;
	--font-gothic-jp: "dnp-shuei-gothic-gin-std", 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	--font-sans-en: "mundial-narrow-variable", sans-serif;
	--font-sans-en-300: "wght" 300;
	--font-sans-en-400: "wght" 400;
	--font-sans-en-500: "wght" 500;
	--font-sans-en-600: "wght" 600;

	--easeInSine     : cubic-bezier(0.47, 0, 0.745, 0.715);
	--easeOutSine    : cubic-bezier(0.39, 0.575, 0.565, 1);
	--easeInOutSine  : cubic-bezier(0.445, 0.05, 0.55, 0.95);
	--easeInQuad     : cubic-bezier(0.55, 0.085, 0.68, 0.53);
	--easeOutQuad    : cubic-bezier(0.25, 0.46, 0.45, 0.94);
	--easeInOutQuad  : cubic-bezier(0.455, 0.03, 0.515, 0.955);
	--easeInCubic    : cubic-bezier(0.55, 0.055, 0.675, 0.19);
	--easeOutCubic   : cubic-bezier(0.215, 0.61, 0.355, 1);
	--easeInOutCubic : cubic-bezier(0.645, 0.045, 0.355, 1);
	--easeInQuart    : cubic-bezier(0.895, 0.03, 0.685, 0.22);
	--easeOutQuart   : cubic-bezier(0.165, 0.84, 0.44, 1);
	--easeInOutQuart : cubic-bezier(0.76, 0, 0.24, 1);
	--easeInQuint    : cubic-bezier(0.755, 0.05, 0.855, 0.06);
	--easeOutQuint   : cubic-bezier(0.23, 1, 0.32, 1);
	--easeInOutQuint : cubic-bezier(0.86, 0, 0.07, 1);
	--easeInExpo     : cubic-bezier(0.95, 0.05, 0.795, 0.035);
	--easeOutExpo    : cubic-bezier(0.19, 1, 0.22, 1);
	--easeInOutExpo  : cubic-bezier(1, 0, 0, 1);
	--easeInCirc     : cubic-bezier(0.6, 0.04, 0.98, 0.335);
	--easeOutCirc    : cubic-bezier(0.075, 0.82, 0.165, 1);
	--easeInOutCirc  : cubic-bezier(0.785, 0.135, 0.15, 0.86);
	--easeInBack     : cubic-bezier(0.6, -0.28, 0.735, 0.045);
	--easeOutBack    : cubic-bezier(0.175, 0.885, 0.32, 1.275);
	--easeInOutBack  : cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
	overflow-y: scroll;
	background-color: var(--color-bg);
	color: var(--color-text);
	font-size: 14px;
	font-family: var(--font-gothic-jp);
	font-weight: 500;
	line-height: 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none !important;
	min-height: 100vh;
	min-height: 100dvh;
	min-height: -webkit-fill-available;
	-webkit-tap-highlight-color: transparent;
}

body.noscroll { position: fixed; width: 100%; }

::-moz-selection { background: #EBEBEB; color: var(--color-text); }
::selection { background: #EBEBEB; color: var(--color-text); }

p { font-size: 14px; line-height: 2.1; letter-spacing: 0.05em; margin-bottom: 1em; }
p:last-child { margin-bottom: 0 !important; }
address,i { font-style: normal; }
img { max-width: none; }

.block { display: inline-block !important; }
.wide { display: none !important; }
.narrow { display: inline-block !important; }

/* #loading
------------------------------------*/
#loading {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 110px;
	height: 110px;
	margin: -40px 0 0 -55px;
	z-index: 9999;
	opacity: 0;
}

#loading.left-top {
	/*position: absolute;*/
	top: 29px;
	left: 19px;
	margin: 0;
	z-index: 1;
}

body.top #loading.left-top { position: absolute; z-index: 3; }

#loading.left-top > div {
	transform: scale(0.63);
	transform-origin: left top;
}

#loading .type {
	position: absolute;
	bottom: -24px;
	left: 4px;
	width: calc(100% - 8px);
	margin-left: -140px;
	opacity: 0;
}

#loading .type img { width: 100%; }

#loading .logo { position: relative; width: 100px; margin: 0 auto 23px; opacity: 0; }
#loading .mouth { position: absolute; top: 47px; left: 42px; }
#loading .mouth img { transition: .1s ease-out; }
#loading .mouth2 { position: absolute; top: 4px; left: 3px; opacity: 0; }
#loading.ongoing .mouth1 { opacity: 0; }
#loading.ongoing .mouth2 { opacity: 1; }

#loading .eye { position: absolute; top: 29px; width: 14px; height: 14px; }
#loading .eye i { display: block; width: 14px; height: 14px; transform-origin: center center; }

#loading.ongoing .eye1 i { animation: loading-eye1 .45s infinite linear; }
#loading.ongoing .eye2 i { animation: loading-eye2 .45s infinite linear; }
@keyframes loading-eye1 { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes loading-eye2 { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

#loading .eye i img {
	display: block;
	position: absolute;
	top: 3px;
	left: 3px;
	transform-origin: center center;
	transition: .25s var(--easeOutCubic);
}
#loading.ongoing .eye i img { animation: loading-eye-img 3s infinite linear; }
@keyframes loading-eye-img { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

#loading .eye1 { left: 30px; }
#loading .eye2 { right: 30px; transform: scaleX(-1); }
#loading .txt { display: flex; white-space: nowrap; }
#loading .txt > img { display: inline-block; margin-right: 9px; width: 75px; }
#loading .txt .dot { transform: translateY(2px); }

#loading .txt .dot i {
	display: inline-block;
	background-color: var(--color-text);
	border-radius: 50%;
	width: 3px;
	height: 3px;
	margin-right: 4px;
}

#loading .txt .dot i:nth-of-type(1) { animation: loading-dot1 1.2s infinite .4s linear; }
#loading .txt .dot i:nth-of-type(2) { animation: loading-dot2 1.2s infinite .4s linear; }
#loading .txt .dot i:nth-of-type(3) { animation: loading-dot3 1.2s infinite .4s linear; }
#loading .txt .dot i:nth-of-type(4) { animation: loading-dot4 1.2s infinite .4s linear; }
@keyframes loading-dot1 {
	0% { transform: translateY(0); }
	10% { transform: translateY(-5px); }
	20% { transform: translateY(0); }
}
@keyframes loading-dot2 {
	0% { transform: translateY(0); }
	8% { transform: translateY(0); }
	18% { transform: translateY(-5px); }
	28% { transform: translateY(0); }
}
@keyframes loading-dot3 {
	0% { transform: translateY(0); }
	16% { transform: translateY(0); }
	26% { transform: translateY(-5px); }
	36% { transform: translateY(0); }
}
@keyframes loading-dot4 {
	0% { transform: translateY(0); }
	24% { transform: translateY(0); }
	34% { transform: translateY(-5px); }
	44% { transform: translateY(0); }
}

/* color
------------------------------------*/
.blue { color: var(--color-blue); }
.orange { color: var(--color-orange); }

/* txt
------------------------------------*/
.btn-link a,
footer .logo h3, .footer-inner h2, .footer-inner address > span, .footer-inner address > a span, .footer-inner address .tel,
.footer-inner nav li a,
.sns-footer .txt span, .copyright span,
.title-page span, .title-section span, .sec-lead h2, .sec-lead p,
.table-common th > span, .table-common td > span,
.dl-line > div > dt > span, .dl-line > div > dd > span, .dl-line > div > dd p,

.top-lead h2 span, .top-lead p,
.top-program .txt h2, .top-program .txt h3, .top-program .txt p, .top-program .list h4, .top-program .list h3,
.top-nav li h2 span,
.top-atelier .inner h2 span, .top-atelier .inner p,
.footer-img .copy span,

.about-policy h2 span, .about-policy h3, .about-policy > p, .about-policy .inner li,
.about-message .txt h4, .about-message .txt p,
.about-section .inner h3, .about-section .inner p,
.about-gallery figcaption, .slider-gallery figcaption span,
.program-class h3, .program-class > p, .class-list li em, .class-list li strong,
.class-point .inner .txt h4, .class-point .inner .txt p,
.program-section-lead .inner h2, .program-section-lead .inner h3, .program-section-lead .inner p,
.program-select h2, .program-select li h3 span, .program-select li figcaption span, .program-select .inner .txt p,
.program-atelier-list .inner h3, .program-atelier-list .inner p,
.program-english .txt h2, .program-english .txt p,
.program-steam .txt h4, .program-steam .txt p,
.program-team .sec-inner h2, .program-team .sec-inner p,
.lesson-atelier .txt p,
.gallery-title h2,
.lesson-sanbi .txt p, .lesson-sanbi .txt .name, .lesson-sanbi .img p, .lesson-sanbi .img p,
.lesson-sports .txt h3, .lesson-sports .txt h4, .lesson-sports .txt p,
.food-point h2 span, .food-point .inner1 .txt h3, .food-point .inner1 .txt p, .food-point .inner2 h3, .food-point .inner2 p,
.food-section .inner .txt p, .food-cooking .kondate figcaption,
.daily-event .event h3, .daily-event .event h4, .event1 .txt p, .event2 .txt p, .event-year h3, .event-year dd,
.daily-schedule .inner h3 span, .daily-schedule dt span, .daily-schedule dd span,
.daily-festival h3, .daily-festival p,
.sick-lead .box h3, .sick-lead .box h4, .sick-lead .box p, .sick-lead .box li,
.sick-lead > p,
.sick-flow dt, .sick-flow dd h3, .sick-flow dd p,
.sick-object .sec-inner h3, .sick-object .sec-inner .dot-list,
.sick-not .box .dot-list li, .sick-not .attention-list li,
.guide-section > p, .guide-system .inner .txt,
.guide-system .inner .txt h3, .guide-system .inner .txt p,
.guide-care .sec-inner h3, .guide-care .sec-inner > div p, .guide-care .sec-inner .attention-list,
.guide-contact .tel,
.access-info .txt h2, .access-info .txt address, .access-info .txt .tel,
.privacy-section dd p, .privacy-section .inner p,
.privacy-section .box-line h3, .privacy-section .box-line .dot-list li,
.privacy-section .inner h3, .privacy-section .inner p, .privacy-contact h2 {
	display: inline-block;
	width: 96%;
	transform: scaleX(1.04);
	transform-origin: left center;
}

.dot-list li, .attention-list li {
	display: block !important;
}

.table-common th > span, .table-common td > span,
.about-policy h2 span, .about-policy h3, .about-policy > p, .about-policy .inner li, .top-atelier .inner h2 span,
.program-select li h3 span,
.daily-schedule .inner h3 span, .daily-schedule dd span,
.food-point h2 span, .food-point .inner2 h3,
.guide-contact .title-section span {
	transform-origin: center center;
}

.sec-lead p,
.dl-line > div > dd, .dl-line > div > dd p,
.about-policy > p, .about-message .txt p, .about-section .inner p,
.program-class > p, .class-point .inner .txt p, .program-section-lead .inner p, .program-select .inner .txt p,
.program-atelier-list .inner p, .program-english .txt p, .program-technology .txt p, .program-steam .txt p, .program-team .sec-inner p,
.lesson-sanbi .img p,
.food-point .inner1 .txt p, .food-section .inner .txt p,
.daily-festival p,
.guide-system .inner .txt p,
.sick-lead .box p, .sick-flow dd p,
.guide-section > p,
.privacy-section dd p, .privacy-section .inner p {
	text-align: justify;
}

.about-message .txt p br,
.sick-lead .box p br, .sick-flow dd p br {
	display: none;
}

/* link
------------------------------------*/
a { color: var(--color-text); text-decoration: none; -webkit-transform: translateZ(0); }

p a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

/* .btn
------------------------------------*/
.btn-link a {
	display: block;
	border-radius: 6px;
	padding: 13px 13px 10px 13px;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.05em;
	text-align: center;
	white-space: nowrap;
}

.btn-link.blue a { background-color: var(--color-blue); }
.btn-link.orange a { background-color: var(--color-orange); }

.btn-link a i {
	display: inline-block;
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 18px;
	height: 18px;
	margin-right: 7px;
	vertical-align: middle;
	transform: translateY(-1px) scaleX(0.96);
}

.btn-link.blue a i { background-image: url(img/share/ico-arrow-blue.svg); }
.btn-link.orange a i { background-image: url(img/share/ico-arrow-orange.svg); }

.btn-link a { width: auto; }
.btn-set .btn-link { display: inline-block; margin: 0 10px 12px 0; }
.btn-set .btn-link a { padding-top: 12px; }
.btn-set .btn-link a i { width: 18px; height: 18px; transform: translateY(-1px) scaleX(0.96); }

/* .gnav
------------------------------------*/
.gnav li { margin-bottom: 9px; }

.gnav li a {
	display: inline-block;
	background: url(img/share/ico-arrow-link.svg) no-repeat left top 4px;
	padding: 5px 5px 5px 23px;
}

.gnav li a img.size-l { display: none; }

/* .btn-nav
------------------------------------*/
.btn-nav {
	position: fixed;
	z-index: 10000;
	opacity: 0;
}

.btn-nav,
.modal-close {
	top: 0;
	right: 0;
	padding: 28px 22px;
}

.btn-nav > div,
.modal-close > div {
	position: relative;
	background-color: #FFFFFF;
	filter: drop-shadow(1px 4px 7px rgba(187, 175, 150, 0.08));
	border-radius: 50%;
	width: 58px;
	height: 58px;
	padding-top: 21px;
}

.btn-nav > div > div, .btn-nav span,
.modal-close > div > div, .modal-close span {
	display: block;
	transition: .15s ease-out;
}

.btn-nav > div > div,
.modal-close > div > div {
	position: relative;
	width: 30px;
	height: 16px;
	margin: 0 auto;
}

.btn-nav span,
.modal-close span {
	position: absolute;
	left: 0;
	border-radius: 2px;
	width: 100%;
	height: 2px;
	-webkit-transform: translateZ(0);
}

.btn-nav span:nth-of-type(1),
.modal-close span:nth-of-type(1) { top: 0; background-color: var(--color-orange); }
.btn-nav span:nth-of-type(2),
.modal-close span:nth-of-type(2) { top: 7px; background-color: var(--color-blue); }
.btn-nav span:nth-of-type(3) { bottom: 0; background-color: var(--color-orange); }

/* .btn-nav.active
------------------------------------*/
.btn-nav.active span:nth-of-type(1),
.modal-close span:nth-of-type(1) { transform: translateY(7px) rotate(-25deg); }
.btn-nav.active span:nth-of-type(2),
.modal-close span:nth-of-type(2) { transform: translateY(0px) rotate(25deg); }
.btn-nav.active span:nth-of-type(3) { animation: active-menu-bar03 .4s forwards; opacity: 0; }
@-webkit-keyframes active-menu-bar03 {100%{ height: 0; }}
@keyframes active-menu-bar03 {100%{ height: 0; }}

/* .nav
------------------------------------*/
.nav {
	display: none;
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--color-yellow);
	width: 100%;
	height: 100dvh;
	white-space: nowrap;
	z-index: 9999;
	opacity: 0;
}

.nav .inner {
	overflow-x: hidden;
	overflow-y: scroll;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	opacity: 0;
}

.nav .inner-s {
	position: relative;
	padding: 135px 0 0 55px;
	z-index: 3;
	opacity: 0;
}

.nav .gnav { margin-bottom: 34px; }
.nav .gnav li { margin-bottom: 6px; }

.nav .gnav li a {
	background-position: left top 3px;
	background-size: 22px auto;
	padding: 5px 15px 15px 30px;
}

.nav .gnav li a img { display: none; }
.nav .gnav li a img.size-l { display: block; height: 18px; }

.nav .footer-inner h2 { margin-bottom: 9px; font-size: 14px; font-weight: 600; }
.nav .footer-inner nav { margin-bottom: 32px; }
.nav .footer-inner nav li a { font-size: 13px; font-weight: 600;}
.nav .footer-inner address { margin-bottom: 34px; font-size: 14px; font-weight: 600; }
.nav .footer-inner address > span { margin-bottom: 9px; font-size: 13px; letter-spacing: 0.03em; }
.nav .footer-inner address > a { margin-bottom: 11px; line-height: 1.7; }
.nav .footer-inner address > a i { vertical-align: top; transform: translateY(4px); }
.nav .footer-inner address > a i img { display: none; }
.nav .footer-inner address > a i img.yellow { display: block; }
.nav .footer-inner address .tel { font-size: 14px; }

.nav .footer-inner .btn-recruit {
	display: inline-block;
	position: static;
	margin-left: -46px;
	transform: rotate(10deg);
}

.nav .footer-inner .btn-recruit img { display: none; }
.nav .footer-inner .btn-recruit img.size-l { display: block; width: 216px; }

.nav .footer-inner .sns-footer-sp { top: inherit; bottom: 24px; right: 32px; }
.nav .footer-inner .sns-footer-sp li { margin-left: 16px; }

.nav .copyright {
	position: relative;
	background: url(img/share/bg-nav3.svg) no-repeat left 6px top / 97% auto;
	width: 100%;
	height: 70px;
	margin: 28px 0 0;
	padding: 6vw 0 0 10vw;
	font-size: 10px;
	letter-spacing: 0.1em;
	font-variation-settings: var(--font-sans-en-500);
	z-index: 2;
}

.nav .bg1 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.nav .bg1 img {
	width: auto;
	min-width: 100%;
	height: auto;
	min-height: 100%;
	margin: 6% 0 0 -52%;
}

.nav .bg2 {
	position: fixed;
	top: 13px;
	left: 2%;
	width: 100%;
	z-index: 0;
}

.nav .bg2 img {
	width: auto;
	min-width: 86%;
	height: auto;
	min-height: 100%;
}


/* wrap
---------------------------------------------------------------------------*/
.main-img.hidden { opacity: 0 !important; }
#mainContents.hidden { opacity: 0 !important; transform: none !important; }

header .logo,
.title-page { margin-left: -90px; }
.title-page { opacity: 0; }
#wrap.transition .main-img a { pointer-events: none; }


/* header
---------------------------------------------------------------------------*/
header .logo { position: absolute; top: 28px; left: 22px; z-index: 3; }
body:not(.top) header .logo { position: fixed; z-index: 1; }
header .logo img { width: 64px; }
.header-inner { position: relative; }
header .sns { display: none; }


/* footer
---------------------------------------------------------------------------*/
footer {
	position: relative;
	background-color: var(--color-bg);
	width: 100%;
	margin: 0;
	padding: 180px 8.5% 32px;
	white-space: nowrap;
	opacity: 0;
	z-index: 1;
}

.footer-inner { position: relative; }

footer .logo {
	width: 88px;
	margin: 0 0 44px 1px;
	text-align: center;
}

footer .logo h3 {
	margin: 0 0 16px 2px;
	font-size: 10px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.24em;
	text-indent: -5px;
}

footer .logo a { display: block; }
footer .logo a img { width: 100%; }
footer .logo a img.logo-wide { display: none !important; }

.footer-inner h2 {
	margin-bottom: 5px;
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.1em;
}

.footer-inner nav { margin-bottom: 27px; }

.footer-inner nav li a {
	font-size: 11px;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

.footer-inner address {
	margin-bottom: 28px;
	font-size: 13px;
}

.footer-inner address > span {
	display: block;
	margin-bottom: 10px;
	font-size: 12px;
	letter-spacing: 0.04em;
}

.footer-inner address > span i { padding-right: 2px; }
.footer-inner address > a { display: inline-block; margin-bottom: 14px; }
.footer-inner address > a i { display: inline-block; margin-right: 5px; }
.footer-inner address > a i img.yellow { display: none; }

.footer-inner address > a span {
	letter-spacing: 0.06em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

footer .footer-inner address > a span br { display: none; }
.footer-inner address .tel { display: block; font-size: 13px; letter-spacing: 0.04em; }

.footer-inner .btn-recruit { position: absolute; top: 28px; left: 136px; }
.footer-inner .btn-recruit img { width: 176px; }

.footer-inner .btn-recruit .size-l { display: none; }
footer .gnav { display: none !important; }

.sns-footer-sp { display: flex !important; position: absolute; top: 176px; right: 6px; }
.sns-footer-sp li { margin-left: 8px; }
.sns-footer-sp li img.white { display: none; }
.nav .sns-footer-sp li img { display: none; }
.nav .sns-footer-sp li img.white { display: block; }

.copyright {
	display: block;
	margin: 0 0 2px 2px;
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-400);
	font-size: 12px;
	letter-spacing: 0.08em;
}

/* footer .sns-footer
------------------------------------*/
.sns-footer ul li i { display: none; }

footer .sns-footer ul li i {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	pointer-events: none;
}

footer .sns-footer ul li i img {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 15px;
}

footer .sns-footer ul li a {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 35px;
	height: 35px;
}

footer .sns-footer ul li a img { margin-top: 27px; }


/* contents
---------------------------------------------------------------------------*/

/* .main-img
------------------------------------*/
.main-img { overflow: hidden; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: 0; opacity: 0; }
.main-img .mask { position: absolute; top: 0; right: 0; background-color: var(--color-bg); width: 0; height: 100%; z-index: 10; }

.main-img .slick-slider { height: 100%; }
.main-img .slick-slider .slick-track,
.main-img .slick-slider .slick-list { width: 100% !important; height: 100%; }

.main-img .inner { position: absolute !important; top: 0 !important; left: 0 !important; width: 100%; height: 100%; opacity: 0; }
.main-img .inner:first-of-type { opacity: 1; }
.main-img .inner img { position: relative; object-fit: cover; width: 100%; height: 100%; z-index: 0; }

.main-img .inner:nth-of-type(1) img { object-position: 50% 100%; }
.main-img .inner:nth-of-type(2) img { object-position: 50% 100%; }
.main-img .inner:nth-of-type(3) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(4) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(5) img { object-position: 50% 100%; }
.main-img .inner:nth-of-type(6) img { object-position: 50% 100%; }
.main-img .inner:nth-of-type(7) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(8) img { object-position: 50% 75%; }
.main-img .inner:nth-of-type(9) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(10) img { object-position: 50% 25%; }
.main-img .inner:nth-of-type(11) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(12) img { object-position: 50% 50%; }
.main-img .inner:nth-of-type(13) img { object-position: 50% 75%; }
.main-img .inner:nth-of-type(14) img { object-position: 50% 75%; }
.main-img .inner:nth-of-type(15) img { object-position: 50% 75%; }
.main-img .inner:nth-of-type(16) img { object-position: 50% 75%; }
.main-img .inner:nth-of-type(17) img { object-position: 100% 75%; }

/* #mainContents
------------------------------------*/
#mainContents {
	display: block;
	position: relative;
	width: 100%;
	margin: 100dvh 0 0;
	text-align: left;
	z-index: 2;
}

body.top #mainContents { margin-top: 0; }
.sp-btm { width: 100%; height: 100dvh; }
#mainContents.modal { margin: 0; transform: none !important; z-index: 10000; }
#mainContents > div { position: relative; background: var(--color-bg); }
/*#wrap.transition .main-img.first + #mainContents > div { background: none; }*/
.contents { opacity: 0; }

#programContents,
#lessonContents,
#dailyContents,
#food-educationContents {
	padding-top: 100px;
}

#sick-childcareContents,
#guideContents,
#accessContents,
#privacyContents {
	padding-top: 100px;
}

#lessonContents .contents-wide,
#dailyContents,
#food-educationContents,
#aboutContents .contents-wide,
#programContents .contents-wide,
#sick-childcareContents,
#guideContents,
#privacyContents,
#accessContents {
	padding-right: 9vw;
	padding-left: 9vw;
}

.contents-inner { width: 100%; margin: 0 auto; }

.pic-in, .pic-in-first { display: block; opacity: 0; }

/* .title-page
------------------------------------*/
.title-page {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.title-page a { display: block; padding: 18px; }

/* .title-section
------------------------------------*/
.title-section {
	position: relative;
	margin-bottom: 24px;
	padding-left: 32px;
}

.title-section .ico {
	display: block;
	position: absolute;
	top: 0;
	left: 1px;
}

.title-section .ico i {
	display: inline-block;
	border-style: solid;
	border-width: 3px;
	border-radius: 50%;
	width: 12px;
	height: 12px;
}

.title-section .ico .blue { border-color: var(--color-blue); }
.title-section .ico .orange { border-color: var(--color-orange); margin-left: -2px; }

.title-section span {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

/* .sec-lead
------------------------------------*/
.sec-lead h2 {
	margin: -5px auto 15px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.16em;
	text-align: center;
}

.sec-lead h2 .size-s {
	display: inline-block;
	padding-left: 5px;
	font-size: 11px;
	letter-spacing: 0.13em;
	transform: translateY(-1px);
}

.sec-lead h2 .let { letter-spacing: 0.1em; }

.sec-lead figure,
.slider-lead { margin-top: 25px; }

.sec-lead figure img,
.slider-lead .inner img { width: 100%; }

/* .dot-list
------------------------------------*/
.dot-list li {
	position: relative;
	margin: 0 0 6px 2px;
	padding-left: 11px;
	font-size: 13px;
	line-height: 1.7;
	letter-spacing: 0.07em;
}

.dot-list li:last-of-type { margin-bottom: 0; }
.dot-list li:before { display: block; content: '・'; position: absolute; top: 0; left: 0; }

.dot-list.color li:before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	background-color: var(--color-orange);
	border-radius: 50%;
	width: 4px;
	height: 4px;
}

.dot-list .size-s { padding-left: 2px; font-size: 11px; }
.dot-list br + .size-s { display: inline-block; margin-right: -8px; margin-left: -2px; }

/* .attention-list
------------------------------------*/
.attention-list li {
	position: relative;
	margin: 0 0 4px;
	padding-left: 16px;
	font-size: 12px;
	font-weight: 600;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.attention-list li:last-of-type { margin-bottom: 0; }
.attention-list li:before { display: block; content: '※'; position: absolute; top: 0; left: 0; }

/* .dl-line
------------------------------------*/
.dl-line {
	margin-right: -5px;
	margin-left: -5px;
}

.dl-line > div {
	border-top: 1px solid var(--color-border-gray);
	margin-bottom: 25px;
	padding: 13px 5px 0;
}

.dl-line > div:last-of-type { margin-bottom: 0; }

.dl-line > div > dt {
	margin-bottom: 20px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.dl-line > div > dd {
	padding-left: 24px;
}

.dl-line > div > dd,
.dl-line > div > dd p {
	line-height: 1.9;
	letter-spacing: 0.05em;
}

.dl-line > div > dd p {
	display: block;
	font-size: 13px;
	margin-bottom: 6px;
}

.dl-line > div > dd .btn-link.narrow { margin: 0 0 28px; }
.dl-line > div > dd .btn-link.narrow a { width: auto; padding-bottom: 10px; }

/* .dl-year
------------------------------------*/
.dl-year > div { margin-bottom: 12px; }
.dl-year > div:last-of-type { margin-bottom: 0; }
.dl-year dt { margin-bottom: 4px; font-size: 12px; }
.dl-year dd { line-height: 1.85; text-align: justify; }
.dl-year dd br { display: none; }

/* .dl-staff
------------------------------------*/
.dl-staff > div { display: flex; margin-bottom: 2px; }
.dl-staff > div:last-of-type { margin-bottom: 0; }
.dl-staff > div:not(:has(dt)) { margin-top: 12px; }
.dl-staff dt { padding-right: 30px; }
.dl-staff dt + dd { text-align: right; }
.dl-staff dd dl:nth-of-type(2) dt { width: 75px; min-width: 75px; }
.dl-staff dd dl:first-of-type dd { width: 100%; text-align: right; }
.dl-staff dd span.size-s { display: block; margin-top: -2px; font-size: 12px; }

/* .table-common
------------------------------------*/
.table-common { overflow: hidden; border-radius: 6px; width: 100%; text-align: center; }

.table-common tr:last-of-type th:first-of-type { border-radius: 0 0 0 6px; }
.table-common tr:last-of-type td:last-of-type { border-radius: 0 0 6px 0; }

.table-common th,
.table-common td {
	border-right: 1px solid var(--color-border-yellow);
	border-bottom: 1px solid var(--color-border-yellow);
	padding: 11px 2px 9px 4px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.08em;
	vertical-align: middle;
}

.table-common tr:first-of-type th:last-of-type,
.table-common tr td:last-of-type { border-right: none; }
.table-common tr:last-of-type th,
.table-common tr:last-of-type td { border-bottom: none; }

.table-common th {
	background-color: var(--color-yellow-light);
	padding-right: 6px;
	padding-left: 8px;
	white-space: nowrap;
}

.table-common tr:first-of-type th {
	background-color: var(--color-yellow);
	border-right: 1px solid var(--color-border-yellow-light);
	border-bottom: none;
	padding: 14px 4px 12px 3px;
}

.table-common tr:first-of-type th:first-of-type { padding-right: 1px; }

.table-common tr:first-of-type th strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
}

.table-common tr:first-of-type th em {
	display: block;
	margin-top: -2px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.table-common th.vat { padding-top: 18px; vertical-align: top; }

.table-common th.vertical {
	padding-right: 7px;
	letter-spacing: 0.5em;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.table-common th.prl { padding-right: 5px; padding-left: 7px; }
.table-common th .size-s { display: block; font-size: 11px; }

.table-common td { background-color: #FFFFFF; }

.table-common td .line {
	display: inline-block;
	background-color: var(--color-text);
	width: 16px;
	height: 1px;
	vertical-align: middle;
}

.table-common td:has(.dot-list) { padding-left: 30px; text-align: left; }
.table-common td .size-s { display: block; font-size: 11px; }

.table-common td a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

.table-common td .dot-list { display: inline-block; text-align: left; vertical-align: top; }
.table-common td .dot-list + .dot-list { margin-left: 30px; }
.table-common td .dot-list li .size-s { display: inline-block; font-size: 11px; }

.table-common td dl { display: inline-block; text-align: left; }
.table-common td dl > div { display: flex; margin-bottom: 3px; }
.table-common td dl > div:last-of-type { margin-bottom: 0; }

.table-common td dt {
	width: 105px;
	min-width: 105px;
	padding-right: 20px;
	white-space: nowrap;
}


/* page top
---------------------------------------------------------------------------*/
#topContents {
	overflow: hidden;
	padding-top: 100dvh;
}

.topContents-inner {
	position: relative;
	background-color: var(--color-bg);
	padding-top: 70px;
	z-index: 2;
}

/* .top-img
------------------------------------*/
.top-img { position: fixed; top: 0; left: 0; overflow: hidden; width: 100%; height: 100dvh; z-index: 0; }
.top-img.btm { height: 100vh !important; }

.top-img .logo,
.top-img .sns { display: none !important; }

.top-img .slick-slider { height: 100%; }
.top-img .slick-slider .slick-track,
.top-img .slick-slider .slick-list { width: 100% !important; height: 100%; }

.top-img .inner { position: absolute !important; top: 0 !important; left: 0 !important; width: 100%; height: 100%; opacity: 0; }
.top-img .inner:first-of-type { opacity: 1; }
.top-img .inner img { position: relative; object-fit: cover; width: 100%; height: 100%; z-index: 0; }

.top-img .inner:nth-of-type(1) img { object-position: 50% 100%; }
.top-img .inner:nth-of-type(2) img { object-position: 50% 65%; }
.top-img .inner:nth-of-type(3) img { object-position: 50% 10%; margin-top: 118px; }
.top-img.btm .inner:nth-of-type(3) img { margin-top: 0; }
.top-img .inner:nth-of-type(4) img { object-position: 50% 50%; }
.top-img .inner:nth-of-type(5) img { object-position: 50% 90%; }
.top-img .inner:nth-of-type(6) img { object-position: 50% 70%; }

.top-img .mask { display: none !important; }

/* .top-lead
------------------------------------*/
.top-lead {
	position: relative;
	width: 241px;
	margin: 0 auto 80px;
	z-index: 2;
}

.top-lead h2 {
	margin-bottom: 54px;
	font-size: 29px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-align: center;
	white-space: nowrap;
	opacity: 0;
}

.top-lead h2 span {
	display: block;
	width: auto;
	margin-bottom: 20px;
}

.top-lead p {
	margin-bottom: 14px;
	font-size: 14px;
	line-height: 2.4;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.top-lead .btn-set { margin: 20px 0 0 -14px; white-space: nowrap; }
.top-lead .btn-set .btn-link { margin: 0 10px; }
.top-lead .btn-set .btn-link span { display: inline-block; transform: translateY(1px); }

.top-lead > img,
.top-lead > picture { display: block; position: absolute; }
.top-lead > picture img { width: 100%; }
.top-lead .img1 { top: 528px; right: calc(50% - 162px); width: 84px; }
.top-lead .img2 { top: 154px; right: calc(50% - 176px); width: 96px; }
.top-lead .img3 { top: 110px; left: calc(50% - 224px); width: 86px; }
.top-lead .img4 { top: 458px; left: calc(50% - 196px); width: 54px; }

.top-lead .pic { top: -135px; right: calc(105px - 50vw); width: 95px; transform-origin: right bottom; opacity: 0; }

/* .top-img-scroll
------------------------------------*/
#topContents .infiniteslide_wrap { margin-left: -3000px; }
.top-img-scroll { display: flex; align-items: flex-start !important; width: 100%; margin-bottom: 75px; }
.top-img-scroll .img { margin-right: 13px; }
.top-img-scroll .img img { border-radius: 4px; width: 127px; height: auto; }
.top-img-scroll .img1 { margin-top: 45px; }
.top-img-scroll .img2 { margin-top: 1px; }
.top-img-scroll .img3 { margin-top: 68px; }
.top-img-scroll .img4 { margin-top: 25px; }
.top-img-scroll .img5 { margin-top: 42px; }
.top-img-scroll .img6 { margin-top: 1px; }
.top-img-scroll .img7 { margin-top: 62px; }

/* .top-program
------------------------------------*/
.top-program {
	position: relative;
	background: radial-gradient(60vw 1600px, #F5EFCF 65%, #F5F3C2 80%);
	margin: 0 15px 75px;
	padding: 70px 28px 45px;
}

.top-program .pic1 { position: absolute; top: -40px; right: 10px; }
.top-program .pic1 img { width: 230px; }
.top-program .pic2 { position: absolute; top: -33px; right: 13px; }
.top-program .pic2 img { width: 46px; }

.top-program .txt {
	position: relative;
	margin-bottom: 35px;
	z-index: 1;
}

.top-program .txt .pic {
	position: absolute;
	top: -6px;
	right: -32px;
	width: 126px;
	z-index: -1;
}

.top-program .txt h2 {
	margin-bottom: 22px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.19em;
}

.top-program .txt h3 {
	margin-bottom: 22px;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.75;
	letter-spacing: 0.18em;
	white-space: nowrap;
}

.top-program .txt p {
	display: block;
	padding: 0 2px;
	font-size: 14px;
	line-height: 2.15;
	letter-spacing: 0.06em;
	text-align: justify;
}

.top-program .list {
	position: relative;
	align-self: flex-start;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 15px;
	margin: 0 -5px;
	text-align: center;
	white-space: nowrap;
}

.top-program .list figure { margin-bottom: 14px; }
.top-program .list figure img { width: 100%; }

.top-program .list h4 {
	display: block;
	margin-bottom: 9px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.05em;
}

.top-program .list h3 {
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.04em;
}

.top-program .txt .btn-link { display: none; }
.top-program .btn-link { margin: 35px -5px 0; }
.top-program .btn-link a { width: 96%; font-size: 14px; }

/* .top-nav
------------------------------------*/
.top-nav { position: relative; margin: 0 auto 80px; padding: 0 8.5vw; }
.top-nav ul { position: relative; z-index: 1; }
.top-nav li:not(:last-of-type) { margin-bottom: 25px; }
.top-nav li a { display: block; position: relative; }

.top-nav li .pic1 { position: absolute; bottom: -12px; left: -10px; }
.top-nav li .pic1 img { width: 74px; }
.top-nav li .pic2 { position: absolute; top: -11px; right: 5px; }
.top-nav li .pic2 img { width: 37px; }
.top-nav li .pic3 { position: absolute; bottom: -14px; right: -16px; }
.top-nav li .pic3 img { width: 74px; }
.top-nav li .pic4 { position: absolute; bottom: -52px; right: -22px; }
.top-nav li .pic4 img { width: 65px; }

.top-nav li h2 {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-bg);
	border-radius: 0 0 9px 0;
	padding: 2px 8px 10px 4px;
	z-index: 2;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.top-nav li h2:before,
.top-nav li h2:after {
	display: block;
	content: '';
	position: absolute;
	background: url(img/share/radius.svg) no-repeat;
	background-size: 9px;
	width: 9px;
	height: 9px;
}

.top-nav li h2:before { top: 0; right: -9px; }
.top-nav li h2:after { bottom: -9px; left: 0; }

.top-nav li h2 span {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.06em;
}

.top-nav li h2 i {
	display: inline-block;
	background: url(img/share/ico-arrow-link2.svg) no-repeat left top / 100% auto;
	width: 22px;
	height: 22px;
	margin: 7px 0 0 -1px;
}

.top-nav li img { border-radius: 9px; width: 100%; }

.top-nav .logo {
	position: absolute;
	top: -89px;
	left: 50%;
	transform: translateX(-50%);
	width: 143px;
	z-index: 0;
}

/* .top-atelier
------------------------------------*/
.top-atelier { width: 100%; margin-bottom: 100px; }

.top-atelier .inner h2 {
	position: relative;
	background: url(img/top/img-atelier.webp) no-repeat left 26% top / 208%;
	margin-bottom: 35px;
	padding: 100px 0;
	font-weight: 600;
	font-size: 19px;
	line-height: 1.8;
	letter-spacing: 0.12em;
	text-align: center;
}

.top-atelier .inner h2 span {
	background-color: #FFFFFF;
	width: auto;
	padding: 8px 18px 8px 21px;
}

.top-atelier .inner h2 .pic1 { position: absolute; top: -66px; left: 2px; }
.top-atelier .inner h2 .pic1 img { width: 110px; }
.top-atelier .inner h2 .pic2 { position: absolute; bottom: -58px; right: -5px; }
.top-atelier .inner h2 .pic2 img { width: 92px; }

.top-atelier .inner .txt { position: relative; padding: 0 8.5vw; }

.top-atelier .inner p {
	display: block;
	padding: 0 5px;
	font-size: 14px;
	line-height: 2.05;
	letter-spacing: 0.06em;
	text-align: justify;
}

.top-atelier .inner .btn-link { margin: 32px 0 0; }
.top-atelier .inner .btn-link a { width: 96%; }

.top-atelier .inner .pic3 { position: absolute; bottom: -136px; left: -52px; }
.top-atelier .inner .pic3 span { display: block; transform: rotate(42deg); }
.top-atelier .inner .pic3 img { width: 180px; }

/* .top-access
------------------------------------*/
.top-access { position: relative; padding: 0 7.5vw; }
.top-access .map-wrap .map iframe { width: 100%; height: 320px; }
.top-access .footer-inner { margin: 15px 0 0 2px; white-space: nowrap; }
.top-access .footer-inner address > a { display: block; }
.top-access .footer-inner address > a br { display: none; }
.top-access figure { display: none; }
.top-access .pic { position: absolute; bottom: -90px; right: 10px; }
.top-access .pic img { width: 100px; }

/* .footer-img
------------------------------------*/
.footer-img { position: relative; width: 100%; margin-top: 130px; }

.footer-img .copy {
	position: absolute;
	top: -59px;
	left: 8.5%;
	font-size: 23px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.14em;
	z-index: 1;
	opacity: 0;
}

.footer-img .img {
	position: relative;
	overflow: hidden;
	margin: 0 -10% 0 -2%;
	transform-origin: center bottom;
	z-index: 0;
}

.footer-img .mask {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: calc(100% + 1px);
	z-index: 1;
}

.footer-img .mask .rect { transform: scale(0); }
.footer-img .mask .rect0 { transform-origin: center center; transform: scale(0); }
.footer-img .mask .rect1 { transform-origin: 14% 38%; }
.footer-img .mask .rect2 { transform-origin: 24% 40%; }
.footer-img .mask .rect3 { transform-origin: 34% 34%; }
.footer-img .mask .rect4 { transform-origin: 42% 34%; }
.footer-img .mask .rect5 { transform-origin: 50% 44%; }
.footer-img .mask .rect6 { transform-origin: 58% 38%; }
.footer-img .mask .rect7 { transform-origin: 66% 38%; }
.footer-img .mask .rect8 { transform-origin: 86% 36%; }

.footer-img .img img { width: 100%; }
.footer-img .img2 { position: absolute; top: 0; left: 0; opacity: 0; }


/* page about
---------------------------------------------------------------------------*/
#aboutContents { overflow: hidden; padding-top: 100px; }

/* .about-section
------------------------------------*/
.about-build .about-section { padding: 0 9.5vw; }
.about-section figure { margin: 0 -9.5vw 32px; }
.about-section figure img { width: 100%; }

.about-section .inner h3 {
	margin-bottom: 18px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.14em;
	text-align: center;
}

/* .about-policy
------------------------------------*/
.about-policy {
	position: relative;
	margin: 0 auto 160px;
	padding: 0 9.5vw;
	text-align: center;
}

.about-policy h2 {
	position: relative;
	display: inline-block;
	margin-bottom: 16px;
	padding: 0 18px 0 18px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.13em;
	text-align: center;
	white-space: nowrap;
}

.about-policy h2:before,
.about-policy h2:after {
	display: block;
	content: '';
	position: absolute;
	top: -2px;
	background: url(img/share/pic-brackets.svg) no-repeat;
	width: 7px;
	height: 16px;
}

.about-policy h2:before { left: 0; }
.about-policy h2:after { right: 0; transform: scaleX(-1); }

.about-policy h3 {
	margin-bottom: 18px;
	font-size: 18px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.12em;
	text-indent: 10px;
}

.about-policy .inner { margin: 45px 0 0; text-align: left; }
.about-policy .inner h4 { margin-bottom: 30px; }
.about-policy .inner ol { margin-left: 6px; }

.about-policy .inner li {
	position: relative;
	padding-left: 28px;
	margin-bottom: 14px;
}

.about-policy .inner li,
.about-policy .inner li p {
	font-size: 14px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.13em;
	white-space: nowrap;
}

.about-policy .inner li i {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	color: var(--color-orange);
}

.about-policy .inner .btn-link { margin: 21px -5px 0; }
.about-policy .inner .btn-link a { width: 96%; }

/* .about-img-scroll
------------------------------------*/
.about-img-scroll { display: flex; margin-bottom: 100px; }
.about-img-scroll img { width: 89px; }
.about-img-scroll .img1 { margin: 50px 40px 0 0; }
.about-img-scroll .img2 { margin: 0 35px 0 0; }
.about-img-scroll .img3 { margin: 75px 43px 0 0; }
.about-img-scroll .img4 { margin: 28px 65px 0 0; }
.about-img-scroll .img5 { margin: 47px 49px 0 0; }
.about-img-scroll .img6 { margin: 0 43px 0 0; }
.about-img-scroll .img7 { margin: 69px 45px 0 0; }

/* .about-message
------------------------------------*/
.about-message,
.about-build .about-section {
	position: relative;
	width: 100%;
	margin: 0 auto;
}

.about-message {
	margin-bottom: 60px;
	padding: 0 9.5vw;
	margin-top: -125px;
	padding-top: 125px;
}

.about-message h3 {
	position: absolute;
	top: -12px;
	right: -75px;
	z-index: 2;
}

.about-message h3 .txt {
	display: block;
	position: absolute;
	top: 98px;
	left: -5px;
}

.about-message .sec-inner { position: relative; z-index: 0; }
.about-message .sec-inner .img { width: 100%; margin-bottom: 32px; }
.about-message .sec-inner .img img { width: 100%; }

.message-anime {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
	margin-bottom: 19px;
	padding-bottom: 150%;
	transform-origin: center bottom;
}

.message-anime figure {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 110%;
	transform: translateX(-50%);
}

.about-message .sec-inner .img .message-anime img {
	position: relative;
	display: block;
	width: 100%;
	transform-origin: center bottom;
}

.message-anime .img1 { z-index: 2; }
.message-anime .img2 { z-index: 1; }
.message-anime .img3 { z-index: 0; }

.about-message .txt h4 {
	margin: 0 0 28px 4px;
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: 0.16em;
	text-align: center;
}

.about-message .txt .name { margin-top: 14px; }
.about-message .txt .name img { height: 14px; }
.about-message .txt + figure { margin: 42px 0 0; }
.about-message .txt + figure img { border-radius: 4px; width: 100%; }

/* .about-build
------------------------------------*/
.about-build {
	margin-bottom: 120px;
	margin-top: -115px;
	padding-top: 115px;
}

.about-build .inner { position: relative; }

.about-build .inner .pic1 { display: block; position: absolute; top: -45px; left: calc(50% - 88px); }
.about-build .inner .pic1 img { width: 77px; }
.about-build .inner .pic2 { display: block; position: absolute; top: -48px; right: calc(50% - 84px); }
.about-build .inner .pic2 img { width: 72px; }

/* .about-gallery
------------------------------------*/
.about-gallery {
	width: 100%;
	margin: 45px auto 0;
	padding: 0 5vw;
}

.about-gallery figure img { width: 100%; }

.about-gallery figcaption {
	padding-top: 8px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.07em;
}

.about-gallery .column1 {
	position: relative;
	margin-bottom: 30px;
}

.about-gallery .column2,
.about-gallery .column3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 22px 10px;
}

.about-gallery .column2 { margin-bottom: 22px; }
.about-gallery .column3 { grid-template-columns: 1fr 1fr 1fr; }

.about-gallery .pic-zoom {
	position: absolute;
	bottom: -32px;
	left: calc(50% - 2px);
	transform: translateX(-50%) scale(0.6) !important;
	z-index: 1;
}

.about-gallery .pic-zoom-inner > img { width: 108px; }

.about-gallery .pic-zoom i {
	display: block;
	position: absolute;
	top: 64px;
	left: 23px;
	z-index: 1;
}

.about-gallery .pic-zoom i img { width: 15px; }

/* .about-gallery-modal
------------------------------------*/
.about-gallery-modal {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--color-bg);
	width: 100%;
	height: 100dvh;
	z-index: 10001;
	z-index: -999;
	opacity: 0;
	pointer-events: none;
}

.about-gallery-modal.active { z-index: 11000; pointer-events: auto; }

.modal-arrow {
	position: absolute;
	bottom: 15px;
	z-index: 2;
	pointer-events: none;
}

.modal-prev { left: 17px; }
.modal-arrow img { width: 30px; }
.modal-prev img { display: block; transform: scaleX(-1); }
.modal-next { right: 17px; }

.modal-close { position: absolute; z-index: 3; opacity: 0; }

/* .slider-gallery
------------------------------------*/
.slider-gallery { position: relative; z-index: 0; opacity: 0; }

.slider-gallery .slick-track,
.slider-gallery .inner {
	width: 100% !important;
  height: 100dvh !important;
}

.slider-gallery .slick-arrow {
	position: absolute;
	top: 0;
	/*background: url(img/share/ico-arrow-modal.svg) no-repeat center center;*/
	width: 50%;
	height: 100%;
	text-indent: -9999px;
	z-index: 2;
}

.slider-gallery .slick-prev { left: 0; transform: scaleX(-1); }
.slider-gallery .slick-next { right: 0; }

.slider-gallery .inner { position: absolute !important; top: 0 !important; left: 0 !important; }

.slider-gallery .inner figure {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: calc(100% - 0);
	height: 100%;
	max-height: calc(100% - 120px);
}

.slider-gallery .inner figure img {
	display: block;
	/*border-radius: 10px;*/
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	-webkit-backface-visibility: hidden;
}

.slider-gallery figcaption {
	position: absolute;
	bottom: -9px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #FFFFFF;
	border-radius: 20px;
	padding: 4px 32px 3px 32px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.08em;
	white-space: nowrap;
	z-index: 1;
}

.slider-gallery figcaption:before,
.slider-gallery figcaption:after {
	display: block;
	content: '';
	position: absolute;
	top: 7px;
	border-radius: 50%;
	width: 5px;
	height: 5px;
}

.slider-gallery figcaption:before { left: 7px; background-color: var(--color-blue); }
.slider-gallery figcaption:after { right: 7px; background-color: var(--color-orange); }

/* .slider-gallery-thum
------------------------------------*/
.slider-gallery-thum {
	position: absolute !important;
	bottom: 10px;
	left: 0;
	text-align: center;
	transform-origin: center center;
	transform: scale(0.75) !important;
	z-index: 1;
	opacity: 0;
}

.slider-gallery-thum,
.slider-gallery-thum .slick-track,
.slider-gallery-thum .slick-list { width: 100% !important; }
.slider-gallery-thum .slick-track { transform: none !important; }

.slider-gallery-thum .inner {
	position: relative;
	display: inline-block !important;
	float: none;
	overflow: hidden;
	width: 34px !important;
	height: 34px !important;
	margin: 0 4px;
}

.slider-gallery-thum .inner > div {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	overflow: hidden;
	border-radius: 2px;
	width: 34px;
	height: 24px;
	transition: .25s var(--easeOutCubic);
}

.slider-gallery-thum .inner.slick-current > div {
	border-radius: 50%;
	height: 34px;
	transition: .25s var(--easeOutCubic);
}

.slider-gallery-thum .inner img {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
	width: 51px;
	height: 34px;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}

/* .about-dayservice
------------------------------------*/
.about-dayservice { margin-bottom: 100px; }
.about-dayservice .title-section { margin-bottom: 20px; margin-left: -4vw; }
.about-dayservice figure { margin-bottom: 34px; }

.about-dayservice .inner h3 {
	width: calc(100% + 20px);
	margin: 0 -20px 20px;
	font-size: 17px;
	line-height: 1.95;
	letter-spacing: 0.12em;
	white-space: nowrap;
}

/* .about-outline
------------------------------------*/
.about-outline figure { margin: 0 -9vw 30px; }
.about-outline .title-section { margin-left: -5px; }
.about-outline .dl-line > div { margin-bottom: 14px; }
.about-outline .dl-staff dt { min-width: 120px; }
.about-outline .dl-staff dt + dd { min-width: 35px; text-align: right; }
.about-outline .btn-set { margin: 40px 0 0; }
.about-outline .btn-set .btn-link a { font-size: 14px; }


/* page program
---------------------------------------------------------------------------*/
#programContents .sec-lead { position: relative; margin-bottom: 33px; }
#programContents .sec-lead h2 { margin-bottom: 5px; }
#programContents .sec-lead .pic1 { position: absolute; bottom: -30px; left: -9px; }
#programContents .sec-lead .pic1 img { width: 70px; }
#programContents .sec-lead .pic2 { position: absolute; bottom: -25px; right: 0; }
#programContents .sec-lead .pic2 img { width: 70px; }

/* .program-class
------------------------------------*/
.program-class {
	margin: 0 auto 60px;
}

.program-class h3 {
	width: 100%;
	margin: 0 -10px 38px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.9;
	letter-spacing: 0.18em;
	text-align: center;
	white-space: nowrap;
}

.class-list {
	margin: 0 -32px 25px;
	text-align: center;
	white-space: nowrap;
}

.class-list li {
	display: inline-block;
	position: relative;
	padding: 0 28px;
	text-align: center;
}

.class-list li:after {
	display: block;
	content: '';
	position: absolute;
	top: 57px;
	right: -60px;
	background-position: left bottom;
	background-repeat: repeat-x;
	width: 117px;
	height: 3px;
	transform: rotate(-90deg);
}

.class-list li:last-of-type:after { display: none; }
.class-list li:nth-child(odd):after { background-image: url(img/share/line-dot-orange.svg); }
.class-list li:nth-child(even):after { background-image: url(img/share/line-dot-blue.svg); }

.class-list li em {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.65;
	letter-spacing: 0.06em;
}

.class-list li strong {
	display: block;
	font-size: 25px;
	line-height: 1.4;
	letter-spacing: 0.18em;
}

.class-point {
	margin-top: 40px;
}

.class-point .inner {
	margin-bottom: 45px;
}

.class-point .inner:last-of-type {
	background: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.class-point .inner figure {
	width: 84%;
	margin: 0 auto 30px;
}

.class-point .inner figure img {
	width: 100%;
}

.class-point .inner .txt h4 {
	margin-bottom: 17px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.12em;
}

.class-point .inner .txt p {
	font-size: 13px;
	letter-spacing: 0.1em;
}

/* .program-section-lead
------------------------------------*/
.program-section-lead figure {
	margin: 0 -9vw 38px;
}

.program-section-lead figure img {
	width: 100%;
}

.program-section-lead .inner {
	position: relative;
}

.program-section-lead .inner h2 {
	margin-bottom: 16px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-align: center;
}

.program-section-lead .inner h3 {
	margin-bottom: 17px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.85;
	letter-spacing: 0.12em;
	text-align: center;
}

/* .program-circle
------------------------------------*/
.program-circle { margin-bottom: 60px; }
.program-circle .program-section-lead figure { margin-bottom: 42px; }
.program-circle .program-section-lead .inner .pic { position: absolute; top: -74px; left: calc(50% - 106px); }
.program-circle .program-section-lead .inner .pic img { width: 213px; }

/* .program-learning
------------------------------------*/
.program-learning { margin-bottom: 60px; }
.program-learning .program-section-lead p { letter-spacing: 0.04em; }
.program-learning .program-section-lead .inner .pic1 { position: absolute; top: -51px; left: -5px; }
.program-learning .program-section-lead .inner .pic1 img { width: 51px; }
.program-learning .program-section-lead .inner .pic2 { position: absolute; top: -64px; right: 8px; }
.program-learning .program-section-lead .inner .pic2 img { width: 29px; }

/* .program-select
------------------------------------*/
.program-select {
	margin-bottom: 100px;
}

.program-select h2 {
	margin-bottom: 40px;
	text-align: center;
	white-space: nowrap;
}

.program-select h2 em {
	display: block;
	margin-bottom: 24px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.45em;
}

.program-select h2 strong {
	display: block;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.program-select ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 18px;
	margin: 0 -5px 40px;
}

.program-select li {
	position: relative;
}

.program-select li h3 {
	position: absolute;
	top: 27.5vw;
	left: -6px;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	padding: 14px 0 0 2px;
	color: #FFFFFF;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-align: center;
	white-space: nowrap;
	z-index: 1;
}

.program-select li:nth-of-type(1) h3 {
	padding-left: 1px;
	letter-spacing: -0.06em;
}

.program-select li:nth-of-type(1) h3 { background-color: #DF6D53; }
.program-select li:nth-of-type(2) h3 { background-color: #1B9DC0; }
.program-select li:nth-of-type(3) h3 { background-color: #2E975E; }
.program-select li:nth-of-type(4) h3 { background-color: #F3AA2B; }

.program-select li figure {
	position: relative;
	margin: 0;
	z-index: 0;
}

.program-select li figure img {
	border-radius: 4px;
	width: 100%;
}

.program-select li figcaption {
	padding: 6px 0 0 39px;
	text-align: left;
	z-index: 1;
}

.program-select li figcaption span {
	width: auto;
	font-size: 10px;
	line-height: 1.6;
	letter-spacing: 0.04em;
}

.program-select .program-section-lead {
	margin-bottom: 60px;
}

.program-select .program-section-lead > figure {
	margin: 0 0 34px;
}

.program-select .program-section-lead .inner .pic { position: absolute; top: -65px; left: -15px; }
.program-select .program-section-lead .inner .pic img { width: 140px; }

.program-select .program-section-lead .inner .btn-link {
	margin-top: 14px;
}

/* .program-atelier
------------------------------------*/
.program-atelier {
	margin-bottom: 100px;
}

.program-atelier .program-section-lead figure {
	margin-bottom: 32px;
}

.program-atelier .program-section-lead .inner {
	text-align: center;
}

.program-atelier .program-section-lead .inner > .pic { position: absolute; top: -42px; left: -18px; }
.program-atelier .program-section-lead .inner > .pic img { width: 56px; }

.program-atelier .program-section-lead .inner h3 {
	display: inline-block;
	position: relative;
	width: auto;
	margin-bottom: 24px;
}

.program-atelier .program-section-lead .inner h3 span {
	position: relative;
	z-index: 2;
}

.program-atelier .program-section-lead .inner h3 .pic1 {
	position: absolute;
	bottom: -2px;
	left: 11px;
	overflow: hidden;
	width: 0;
	height: 16px;
	z-index: 0;
}

.program-atelier .program-section-lead .inner h3 .pic1 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 165px;
	transform: scaleY(0.7);
}

.program-atelier .program-section-lead .inner h3 .pic2 {
	display: block;
	position: absolute;
	bottom: 2px;
	right: -54px;
	width: 70px;
	transform-origin: left bottom;
	z-index: 1;
	opacity: 0;
}

.program-atelier-list {
	margin-top: 50px;
}

.program-atelier-list .inner {
	margin-bottom: 45px;
}

.program-atelier-list .inner:last-of-type {
	margin-bottom: 0;
}

.program-atelier-list .inner figure {
	margin-bottom: 22px;
}

.program-atelier-list .inner figure img {
	width: 100%;
}

.program-atelier-list .inner h3 {
	margin-bottom: 12px;
	color: var(--color-orange);
	font-size: 15px;
	line-height: 1.7;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-align: center;
}

.program-atelier-list .inner p {
	font-size: 13px;
	line-height: 1.95;
}

.btn-lesson-art {
	margin: 75px 0 0;
}

.btn-lesson-art a {
	display: block;
	position: relative;
	background-color: var(--color-orange);
	border-radius: 5px;
	width: 100%;
	padding: 14px 30px 10px;
	text-align: center;
	white-space: nowrap;
}

.btn-lesson-art a em {
	display: block;
	position: absolute;
	top: -32px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.4em;
}

.btn-lesson-art a strong {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.btn-lesson-art a i {
	display: inline-block;
	background-image: url(img/share/ico-arrow-orange.svg);
	background-position: left top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	width: 21px;
	height: 21px;
	margin-right: 7px;
	vertical-align: middle;
	transform: translateY(-2px) scaleX(0.96);
}

.btn-lesson-art a i:last-of-type {
	display: none;
}

/* .program-english
------------------------------------*/
.program-english,
.program-technology {
	margin-bottom: 70px;
	padding: 0 5px;
}

.program-english figure,
.program-technology figure {
	position: relative;
	margin-bottom: 30px;
}

.program-english figure img,
.program-technology figure img {
	width: 100%;
}

.program-english .txt h2,
.program-technology .txt h2 {
	margin-bottom: 15px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.13em;
	text-align: center;
}

/* .program-technology
------------------------------------*/
.program-technology { margin-bottom: 75px; padding: 0; }
.program-technology figure img { width: 100%; }
.program-technology figure .pic { position: absolute; bottom: -50px; left: -16px; width: auto; transform: rotate(8deg); }

/* .program-steam
------------------------------------*/
.program-steam {
	position: relative;
	background: #FFFFFF;
	width: 100%;
	margin-bottom: 60px;
	padding: 70px 7vw 50px;
}

.program-steam:before {
	display: block;
	content: '';
	position: absolute;
	top: 11px;
	left: 11px;
	background: url(img/share/bg-dot-beige.svg) repeat-x left 2px top;
	width: calc(100% - 22px);
	height: 11px;
}

.program-steam .slider-steam {
	margin-bottom: 75px;
}

.program-steam .slider-steam .inner {
	position: relative;
	overflow: hidden;
	height: 0;
	padding-bottom: 86vw;
}

.program-steam .slider-steam img {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 6px;
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.program-steam .slider-steam .inner:nth-of-type(1) img { object-position: 90% 50%; }
.program-steam .slider-steam .inner:nth-of-type(2) img { object-position: 84% 50%; }
.program-steam .slider-steam .inner:nth-of-type(3) img { object-position: 74% 50%; }
.program-steam .slider-steam .inner:nth-of-type(4) img { object-position: 61% 50%; }

.program-steam .sec-inner {
	position: relative;
}

.program-steam h2 {
	margin-bottom: 42px;
	padding-right: 5px;
	text-align: center;
}

.program-steam h2 > img:nth-of-type(1) {
	display: block;
	position: absolute;
	top: -152px;
	left: 50%;
	transform: translateX(-50%);
	width: 156px;
}

.program-steam h3 {
	display: none;
}

.program-steam .txt {
	padding: 0 10px;
}

.program-steam .txt h4 {
	margin: 0 0 38px 5px;
	font-size: 16px;
	font-weight: 600;
	line-height: 2.1;
	letter-spacing: 0.16em;
	text-align: center;
}

.program-steam .txt h3 {
	display: block;
	margin-bottom: 35px;
	text-align: center;
}

.program-steam .txt p {
	letter-spacing: 0.06em;
}

/* .program-team
------------------------------------*/
.program-team > figure {
	margin-bottom: 32px;
}

.program-team > figure img {
	width: 100%;
}

.program-team .sec-inner {
	position: relative;
}

.program-team .sec-inner .pic1 { position: absolute; top: -49px; right: 10px; transform: rotate(10deg); }
.program-team .sec-inner .pic1 img { width: 76px; }
.program-team .sec-inner .pic2 { position: absolute; top: -28px; left: 8px; width: 80px; }

.program-team .sec-inner h2 {
	margin-bottom: 19px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.85;
	letter-spacing: 0.13em;
	text-align: center;
	white-space: nowrap;
}

.program-team .sec-inner .inner {
	padding: 0 35px;
}

.program-team .btn-link {
	margin: 10px -2px 0;
}

.program-team .btn-link,
.program-team .btn-link a {
	display: block;
}

.program-team .btn-link a {
	width: 96%;
}

.program-select,
.program-english,
.program-technology {
	margin-right: auto;
	margin-left: auto;
}


/* page lesson
---------------------------------------------------------------------------*/
#lessonContents {
	overflow: hidden;
}

#lessonContents .title-section {
	margin-bottom: 36px;
	padding-left: 44px;
}

#lessonContents .title-section .ico {
	top: 2px;
}

#lessonContents .title-section .ico i {
	border-width: 4px;
	width: 17px;
	height: 17px;
}

#lessonContents .title-section span {
	font-size: 18px;
}

#lessonContents .sec-lead {
	margin-bottom: 60px;
}

#lessonContents .sec-lead h2 {
	margin-bottom: 0;
}

#lessonContents .sec-lead h2 .size-s {
	margin-right: -58px;
}

.btn-instagram i {
	display: inline-block;
	margin-right: 11px;
	vertical-align: middle;
}

.btn-instagram span {
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-400);
	font-size: 15px;
	letter-spacing: 0.12em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}

/* .lesson-atelier
------------------------------------*/
.lesson-atelier {
	margin: 0 auto 80px;
}

.lesson-atelier .txt {
	position: relative;
	margin-bottom: 52px;
}

.lesson-atelier .txt:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 35px;
	right: -5px;
	background: url(img/share/pic-line1.svg) no-repeat left top / 100% auto;
	width: 145px;
	height: 200px;
	transform: rotate(-16deg);
	z-index: -1;
}

#lessonContents .lesson-atelier .txt .title-section {
	margin-bottom: 30px;
}

.lesson-atelier .txt p {
	margin-bottom: 12px;
	padding-left: 2px;
	line-height: 2.35;
	letter-spacing: 0.12em;
}

.lesson-atelier figure {
	margin: 0 -4vw;
}

.lesson-atelier figure img {
	width: 100%;
}

.lesson-atelier figure picture:not(:last-of-type) {
	display: block;
	margin-bottom: 10px;
}

/* .lesson-gallery
------------------------------------*/
.lesson-gallery {
	display: flex;
	flex-wrap: wrap;
	margin-top: 100px;
	margin-bottom: 60px;
}

.gallery-title {
	order: 2;
	position: relative;
	width: 275px;
	margin: -16px auto 0;
	z-index: 2;
}

.gallery-title h2 {
	margin-bottom: 16px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-align: center;
}

.gallery-title h3 {
	margin-left: 2px;
}

.gallery-title h3 img {
	width: 100%;
}

.gallery-title > img {
	display: block;
	width: 112px;
	margin: 0 auto 20px;
}

.gallery-slide-wrap {
	order: 1;
	overflow: hidden;
	width: 100%;
}

.infiniteslide_wrap {
	overflow: initial !important;
	transform-origin: right center;
	margin-left: -200px;
	opacity: 0;
}

#aboutContents .infiniteslide_wrap {
	margin-left: -200px;
}

.gallery-slide {
	display: flex;
}

.gallery-slide .inner {
	margin-right: 16px;
}

.gallery-slide .inner img {
	width: auto;
	height: 195px;
}

/* .lesson-sanbi
------------------------------------*/
.lesson-sanbi {
	position: relative;
	margin-bottom: 85px;
}

.lesson-sanbi > figure.narrow {
	display: block !important;
	position: relative;
	margin-bottom: 40px;
}

.lesson-sanbi > figure.narrow .pic { position: absolute; top: -30px; left: -30px; }
.lesson-sanbi > figure.narrow img:not(.pic) { width: 100%; }

.lesson-sanbi .txt,
.lesson-sanbi .img {
	padding: 0 5px;
}

.lesson-sanbi .txt p,
.lesson-sports .txt p {
	display: block;
	width: auto;
	margin-bottom: 16px;
	font-size: 13px;
	line-height: 2.15;
	letter-spacing: 0.16em;
	white-space: nowrap;
}

.lesson-sanbi .txt .name {
	display: block;
	width: auto;
	margin: 40px 0 22px;
	font-size: 11px;
	letter-spacing: 0.16em;
}

.lesson-sanbi .txt .name em {
	padding-right: 14px;
	font-weight: 600;
}

.lesson-sanbi .txt .name strong {
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-300);
	font-size: 19px;
	letter-spacing: 0.07em;
}

.lesson-sanbi .img figure {
	display: none;
}

.lesson-sanbi .img p {
	margin-top: -5px;
	font-size: 12px;
	line-height: 1.95;
	letter-spacing: 0.06em;
}

.lesson-sanbi .btn-instagram {
	margin: 24px 0 0 -1px;
}

.lesson-sanbi .txt .pic { position: absolute; bottom: -90px; right: -15px; }
.lesson-sanbi .txt .pic img { width: 150px; }

/* .lesson-sports
------------------------------------*/
.lesson-sports > figure {
	margin-bottom: 70px;
}

.lesson-sports > figure img {
	width: 100%;
}

.lesson-sports .sec-inner {
	padding: 0 9.5vw;
}

.lesson-sports .txt {
	position: relative;
}

.lesson-sports .txt .pic { display: block; position: absolute; top: 110px; right: -5px; }
.lesson-sports .txt .pic img { width: 88px; transform: rotate(4deg); }

.lesson-sports .txt h3 {
	margin-bottom: 18px;
	color: var(--color-orange);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.13em;
}

.lesson-sports .txt h4 {
	margin: 0 0 20px -1px;
	font-size: 17px;
	line-height: 2.1;
	letter-spacing: 0.18em;
}

.lesson-sports .btn-instagram {
	margin: 30px 0 0 -1px;
}

.lesson-sports .sec-inner figure {
	position: relative;
	margin: 55px -1vw 0;
}

.lesson-sports .sec-inner figure img { display: block; width: 100%; }
.lesson-sports .sec-inner figure > img:nth-of-type(1) { width: 48.5%; margin: 0 0 31% -3%; }
.lesson-sports .sec-inner figure > img:nth-of-type(2) { width: 48.5%; position: absolute; top: 13.5%; right: -5%; }
.lesson-sports .sec-inner figure picture { margin: 0 0 0 14px; }


/* page food-education
---------------------------------------------------------------------------*/
#food-educationContents .sec-lead h2 {
	font-size: 24px;
}

#food-educationContents .sec-lead figure {
	margin-right: -3%;
	margin-left: -3%;
}

/* .food-point
------------------------------------*/
.food-point {
	margin: 35px auto 80px;
}

.food-point h2 {
	margin-bottom: 38px;
	font-size: 18px;
	font-weight: 600;
	line-height: 2.05;
	letter-spacing: 0.13em;
	text-align: center;
	white-space: nowrap;
}

.food-point h2 span {
	display: inline-block;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3em;
}

.food-point .inner1 {
	margin-bottom: 45px;
}

.food-point .inner1 figure {
	margin-bottom: 30px;
}

.food-point .inner1 figure img {
	display: block;
	width: 100%;
}

.food-point .inner1 figure picture:not(:last-of-type) {
	display: block;
	margin-bottom: 10px;
}

.food-point .inner1 .txt h3 {
	margin: 28px 0 12px;
	color: var(--color-orange);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.12em;
}

.food-point .inner1 .txt {
	text-align: justify;
}

.food-point .inner1 .txt p.inline {
	display: inline;
}

.food-point .inner1 .txt p.inline + p:not(.inline) {
	display: block;
	margin-top: 10px;
}

.food-point .inner2 {
	margin-bottom: 45px;
}

.food-point .inner2 > div:not(:last-child) {
	margin-bottom: 35px;
}

.food-point .inner2 figure {
	margin: 0 -5px 30px;
}

.food-point .inner2 figure img {
	width: 100%;
}

.food-point .inner2 h3 {
	margin-bottom: 18px;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-align: center;
}

.food-point .inner2 p {
	padding: 0 8px;
	font-size: 13px;
	line-height: 1.95;
	text-align: justify;
}

/* .food-section
------------------------------------*/
.food-section > figure {
	margin: 0 -9vw 32px;
}

.food-section > figure img {
	width: 100%;
}

.food-section .inner .txt {
	margin-bottom: 32px;
}

.food-section .inner > figure img {
	width: 100%;
}

/* .food-cooking
------------------------------------*/
.food-cooking {
	margin-bottom: 80px;
}

.food-cooking .kondate {
	background-color: #FFFFFF;
	margin: 0 -5px;
	padding: 25px 25px 22px;
}

.food-cooking .kondate figure img {
	width: 100%;
}

.food-cooking .kondate figcaption {
	display: block;
	margin: 12px 0 0;
	font-size: 12px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}


/* page daily
---------------------------------------------------------------------------*/
#dailyContents .sec-lead {
	margin-bottom: 60px;
}

#dailyContents .sec-lead p {
	letter-spacing: 0.06em;
}

/* .daily-event
------------------------------------*/
.daily-event {
	margin-bottom: 80px;
}

.daily-event .event > figure {
	margin-right: -9vw;
	margin-left: -9vw;
}

.daily-event .event > figure img {
	width: 100%;
}

.daily-event .inner {
	position: relative;
}

.daily-event .event h3 {
	margin: 35px 0 12px;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.daily-event .event h4 {
	width: auto;
	color: var(--color-orange);
	font-size: 15px;
	font-weight: 600;
	line-height: 2.1;
	letter-spacing: 0.2em;
	text-decoration: underline;
	text-decoration-color: var(--color-yellow);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3em;
}

/* .event1
------------------------------------*/
.event1 {
	margin-bottom: 80px;
}

.event1 h4 {
	margin: 0 0 0 4px;
}

.event1 .img-set {
	position: relative;
	margin-bottom: 35px;
}

.event1 .pic { position: relative; margin: -37% -10% 0 0; z-index: 1; }
.event1 .pic img { width: 100%; }

.event1 .img1 { text-align: right; }
.event1 .img1 img { width: 87%; }

.event1 .txt { margin: 0 0 30px; text-align: justify; }
.event1 .txt p { margin-bottom: 8px; }

.event1 .img2 { display: flex; justify-content: space-between; margin: 0 -8px; }
.event1 .img2 img { align-self: flex-start; width: 48.2%; }

/* .event2
------------------------------------*/
.event2 .pic { position: absolute; top: -11%; right: -9%; width: 51%; }
.event2 .pic img { width: 100%; }
.daily-event .event2 h4 { margin: 0 0 20px; letter-spacing: 0.16em; }
.event2 .txt { text-align: justify; }

/* .event-year
------------------------------------*/
.event-year {
	position: relative;
	margin-top: 42px;
	padding-top: 52px;
}

.event-year:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: -9vw;
	background-color: var(--color-text);
	width: calc(100% + 18vw);
	height: 1px;
	opacity: 0.2;
}

.event-year h3 {
	margin-bottom: 33px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.event-year dl > div {
	display: flex;
	margin-bottom: 12px;
}

.event-year dt {
	width: 43px;
	min-width: 43px;
}

.event-year dt img {
	width: 33px;
}

.event-year dd {
	padding-top: 4px;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.event-year dd .size-s {
	padding-left: 3px;
	font-size: 11px;
}

/* .daily-schedule
------------------------------------*/
.daily-schedule {
	margin-bottom: 80px;
}

.daily-schedule .sec-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 8px;
	margin: 35px -4% 0 0;
	padding: 0 0 0 20px;
}

.daily-schedule .inner h3 {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 40px;
	padding-top: 20px;
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.11em;
	text-align: center;
	white-space: nowrap;
	z-index: 1;
}

.daily-schedule .inner h3:after {
	display: block;
	content: '';
	position: absolute;
	top: 2px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	width: 120px;
	height: 88px;
	z-index: -1;
}

.daily-schedule .inner:nth-of-type(1) h3:after { background-color: var(--color-blue); }
.daily-schedule .inner:nth-of-type(2) h3:after { background-color: var(--color-orange); }

.daily-schedule dl {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 6px;
	z-index: 2;
}

.daily-schedule dl > div {
	position: relative;
}

.daily-schedule dt {
	position: absolute;
	top: 6px;
	left: -38px;
	width: 30px;
	font-size: 10px;
	letter-spacing: 0.02em;
	text-align: right;
	white-space: nowrap;
}

.daily-schedule dd {
	display: flex;
	align-items: center;
	background: linear-gradient(to left, #CCCCCC 50%, #FFFFFF 50%, #FFFFFF 100%) left bottom;
	background-repeat: repeat-x;
	background-size: 4px 1px;
	height: 58px;
	font-size: 12px;
	line-height: 1.6;
	letter-spacing: 0.1em;
	text-align: center;
}

.daily-schedule dl > div:last-of-type dd {
	background: none;
}

.daily-schedule dd > span {
	display: inline-block;
	transform-origin: left center;
}

/* .daily-festival
------------------------------------*/
.daily-festival figure {
	margin: 0 -9vw 30px;
}

.daily-festival figure img {
	width: 100%;
}

.daily-festival h3 {
	margin-bottom: 20px;
	color: var(--color-orange);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.85;
	letter-spacing: 0.15em;
	text-align: center;
}

.daily-festival p {
	letter-spacing: 0.04em;
}


/* page sick-childcare
---------------------------------------------------------------------------*/

/* .sick-lead
------------------------------------*/
.sick-lead {
	margin-bottom: 80px;
}

.sick-lead > p {
	text-align: justify;
}

.sick-lead > p a i {
	display: inline-block;
	margin: 0 3px 0 2px;
	transform: translateY(-6px);
}

.sick-lead .box {
	position: relative;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin: 15px -10px 60px;
	padding: 44px 30px 22px;
}

.sick-lead .box:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 10px;
	background-color: var(--color-yellow);
	border-radius: 5px;
	width: calc(100% - 20px);
	height: 5px;
}

.sick-lead .box h3,
.sick-lead .box h4 {
	display: block;
}

.sick-lead .box h3 {
	margin-bottom: 15px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.sick-lead .box h4 {
	margin-top: 32px;
	margin-bottom: 22px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.sick-lead .box p {
	display: block;
	line-height: 2;
}

.sick-lead .box li {
	margin-bottom: 8px;
	letter-spacing: 0.08em;
}

.sick-lead .box li .size-s {
	display: block;
	padding-top: 2px;
	font-size: 12px;
}

.sick-lead > figure {
	margin-bottom: 25px;
}

.sick-lead > figure img {
	width: 100%;
}

.sick-lead .dl-line {
	margin: 20px -10px 0;
}

.sick-lead .dl-line dd dd.left {
	margin-top: 5px;
	text-align: left;
}

.sick-lead .dl-line dd dd .size-s {
	display: block;
	font-size: 12px;
}

.sick-lead .dl-line dd ol {
	margin-bottom: 10px;
}

.sick-lead .dl-line dd ol li {
	margin-bottom: 1px;
	font-size: 13px;
	letter-spacing: 0.12em;
}

.sick-lead .dl-line dd p:has(.size-s) {
	margin-bottom: 18px;
}

.sick-lead .dl-line dd p .size-s {
	display: block;
	font-size: 12px;
}

/* .sick-flow
------------------------------------*/
.sick-flow {
	margin-bottom: 80px;
}

.sick-flow .title-section {
	margin-bottom: 40px;
}

.sick-flow dl > div {
	margin-bottom: 28px;
}

.sick-flow dl > div:last-of-type {
	margin-bottom: 0;
}

.sick-flow dt {
	margin: 0 0 20px 1px;
	color: var(--color-orange);
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-600);
	font-size: 12px;
	letter-spacing: 0.08em;
}

.sick-flow dd {
	padding-left: 20px;
}

.sick-flow dd h3 {
	margin-bottom: 7px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

.sick-flow dd p {
	font-size: 13px;
	line-height: 2;
}

/* .sick-object
------------------------------------*/
.sick-object {
	margin-bottom: 75px;
}

.sick-object .title-section {
	margin-bottom: 24px;
}

.sick-object .sec-inner {
	display: flex;
	border-top: 1px solid var(--color-border-gray);
	margin-bottom: 30px;
	padding-top: 20px;
}

.sick-object .sec-inner h3 {
	width: 75px;
	min-width: 75px;
	padding-top: 5px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.sick-object .sec-inner h3 strong,
.sick-object .sec-inner h3 em {
	display: block;
	font-weight: 600;
}

.sick-object .sec-inner h3 strong {
	margin-bottom: 10px;
}

.sick-object .sec-inner h3 em {
	font-size: 12px;
	letter-spacing: 0.05em;
}

.sick-object .sec-inner .dot-list:has(li.size-l) li:nth-child(even),
.sick-object .sec-inner .dot-list:not(:has(li.size-l)) li:nth-child(odd) {
	padding-right: 12px;
}

.sick-object .sec-inner .dot-list {
	width: 100%;
}

.sick-object .sec-inner .dot-list li {
	margin-bottom: 4px;
	letter-spacing: 0.05em;
}

.sick-object .sec-inner .dot-list li.size-l {
	width: 100% !important;
}

/* .sick-not
------------------------------------*/
.sick-not .box {
	background-color: #FFFFFF;
	border-radius: 10px;
	margin: 25px -2px 20px;
	padding: 28px 25px 22px 25px;
}

.sick-not .box .dot-list li {
	margin-bottom: 6px;
	line-height: 1.7;
}

.sick-not .box .dot-list:first-of-type {
	margin-right: 38px;
	white-space: nowrap;
}

.sick-not .box .attention-list {
	margin-bottom: 18px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
	white-space: nowrap;
}

.sick-not .attention-list li {
	display: block;
	font-weight: 500;
	line-height: 1.8;
}

.sick-not > .attention-list li {
	letter-spacing: 0.03em;
	text-align: justify;
}

.sick-not > .attention-list li br { display: none; }


/* page guide
---------------------------------------------------------------------------*/
.guide-section > p { letter-spacing: 0.05em; }

.guide-section .table-wrap {
	overflow-x: scroll;
	margin-right: -9vw;
	margin-left: -9vw;
	padding-right: 9vw;
	padding-left: 9vw;
}

.guide-section .table-common { width: calc(100% + 10px); margin: 18px -5px 0; }

/* .guide-outline
------------------------------------*/
.guide-outline { margin-bottom: 80px; }

.guide-outline .table-common tr:first-of-type th:not(:first-of-type) {
	width: 27%;
	padding-top: 11px;
	padding-bottom: 6px;
	line-height: 1.3;
}

_::-webkit-full-page-media, _:future, :root .guide-outline .table-common tr:first-of-type th:not(:first-of-type) {
	padding-top: 10px;
	padding-bottom: 8px;
}

.guide-outline .table-common tr:first-of-type th strong { font-size: 13px; }
.guide-outline .table-common tr:first-of-type th em { margin-top: 2px; }
.guide-outline .table-common td { padding-top: 18px; padding-bottom: 16px; }

/* .guide-system
------------------------------------*/
.guide-system { margin-bottom: 80px; }
.guide-system .inner { margin-bottom: 40px; }
.guide-system .inner figure { margin-bottom: 25px; }
.guide-system figure img { width: 100%; }
.guide-system .inner .txt { padding: 0 5px; }

.guide-system .inner .txt h3 {
	margin-bottom: 13px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

.guide-system .inner .txt p { letter-spacing: 0.03em; }

/* .guide-certified
------------------------------------*/
.guide-certified { margin-bottom: 90px; }
.guide-certified .table-common { min-width: 540px; }
.guide-certified .table-common th { white-space: nowrap; }
.guide-certified .table-common tr:first-of-type th:not(:nth-of-type(1)) { width: 30%; }
.guide-certified .table-common td:has(.dot-list) { padding-top: 25px; padding-bottom: 25px; }

/* .guide-care
------------------------------------*/
.guide-care { margin-bottom: 80px; }
.guide-care .title-section { margin-bottom: 55px; }
.guide-care .sec-inner { margin-bottom: 55px; }

.guide-care .sec-inner h3 {
	margin-bottom: 14px;
	font-size: 	17px;
	font-weight: 600;
	letter-spacing: 0.11em;
}

.guide-care .sec-inner .table-common { margin-top: 10px; }

.guide-care .sec-inner .table-common th,
.guide-care .sec-inner .table-common td { font-size: 14px; }

.guide-care .sec-inner .table-common th:first-of-type,
.guide-care .sec-inner .table-common td:first-of-type {
	width: 65%;
	padding-left: 25px;
	text-align: left;
}

.guide-care .sec-inner .table-common td { letter-spacing: 0.1em; }
.guide-care .sec-inner .attention-list { margin: 12px 0 0 2px; }

/* .guide-contact
------------------------------------*/
.guide-contact {
	background: #FFFFFF;
	box-shadow: 0px 4px 0px #CBCCBF;
	border-radius: 6px;
	margin: 0 -20px;
	padding: 35px 25px 28px;
	text-align: center;
	white-space: nowrap;
}

.guide-contact .title-section { margin-bottom: 25px; padding-left: 0; }

.guide-contact .title-section span {
	font-size: 19px;
	letter-spacing: 0.15em;
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 0.3em;
}

.guide-contact .title-section i { display: none; }

.guide-contact .tel {
	margin-left: -6px;
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-400);
	font-size: 19px;
	letter-spacing: 0.07em;
}

.guide-contact .tel span { font-size: 14px; }
.guide-contact .btn-link { margin-top: 20px; }


/* page access
---------------------------------------------------------------------------*/

/* ,access-info
------------------------------------*/
.access-info .map {
	overflow: hidden;
	position: relative;
	width: calc(100% + 14px);
	height: 0;
	margin: 0 -7px 30px;
	padding-bottom: calc(100% + 14px);
}

.access-info .map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.access-info .txt { margin-bottom: 60px; }

.access-info .txt h2 {
	margin-bottom: 18px;
	font-size: 12px;
	line-height: 2;
	letter-spacing: 0.1em;
}

.access-info .txt address {
	margin-bottom: 13px;
	font-size: 14px;
	letter-spacing: 0.08em;
}

.access-info .txt address span {
	display: block;
	margin-bottom: 5px;
	font-size: 13px;
	letter-spacing: 0.1em;
}

.access-info .txt address a {
	line-height: 1.6;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.15em;
}

.access-info .txt .tel {
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-400);
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.access-info .txt .btn-link { margin: 24px 0 0 -1px; }
.access-info .info figure { margin: 0 -7px; }
.access-info .info figure img { width: 100%; }


/* page privacy
---------------------------------------------------------------------------*/
#privacyContents p { font-size: 13px; }

/* .privacy-section
------------------------------------*/
.privacy-section { margin-top: 60px; padding: 0 0 0 6px; }
.privacy-section dl { margin-bottom: 50px; }
.privacy-section dl > div { display: flex; margin-bottom: 30px; }
.privacy-section dl > div:last-of-type { margin-bottom: 0; }

.privacy-section dt {
	width: 32px;
	min-width: 32px;
	padding-top: 6px;
}

.privacy-section dd p,
.privacy-section .inner p {
	line-height: 2.05;
}

.privacy-section .box-line {
	position: relative;
	margin: 12px 0 22px 5px;
	padding: 4px 0 0 22px;
}

.privacy-section .box-line:before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-yellow);
	border-radius: 3px;
	width: 3px;
	height: calc(100% - 2px);
	opacity: 0.6;
}

.privacy-section .box-line h3 {
	margin-bottom: 15px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.privacy-section .box-line .dot-list li:before {
	display: block;
	content: '';
	position: absolute;
	top: 8px;
	left: 1px;
	background-color: var(--color-text);
	border-radius: 50%;
	width: 3px;
	height: 3px;
}

.privacy-section .inner {
	margin-bottom: 35px;
	padding-left: 32px;
}

.privacy-section .inner h3 {
	margin: 0 0 15px -32px;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.privacy-contact { margin: 40px 0 0 32px; }

.privacy-contact h2 {
	margin-bottom: 10px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.95;
	letter-spacing: 0.08em;
}

.privacy-contact p {
	font-size: 12px;
	line-height: 1.8;
}