@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;
}

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; letter-spacing: 0.12em; 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: inline-block !important; }
.narrow { display: none !important; }

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

body.top #loading { left: 50%; }

#loading .logo { position: relative; width: 141px; margin: 0 auto 35px; opacity: 0; }
#loading .logo > img { width: 100%; }
#loading .mouth { position: absolute; top: 72px; left: 60px; }
#loading .mouth img { transition: .1s ease-out; }
#loading .mouth1 { width: 20px; }
#loading .mouth2 { width: 15px; position: absolute; top: 4px; left: 3px; opacity: 0; }
#loading.ongoing .mouth1 { opacity: 0; }
#loading.ongoing .mouth2 { opacity: 1; }

#loading .eye {
	position: absolute;
	top: 40px;
	width: 21px;
	height: 21px;
}

#loading .eye i {
	display: block;
	width: 21px;
	height: 21px;
	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: 4px;
	left: 4px;
	width: 11px;
	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: 42px; }
#loading .eye2 { right: 42px; transform: scaleX(-1); }
#loading .txt { display: flex; white-space: nowrap; margin-right: -12px; }
#loading .txt > img { display: inline-block; width: 119px; margin-right: 12px; }
#loading .txt .dot { transform: translateY(5px); }

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

#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(-7px); }
	20% { transform: translateY(0); }
}
@keyframes loading-dot2 {
	0% { transform: translateY(0); }
	8% { transform: translateY(0); }
	18% { transform: translateY(-7px); }
	28% { transform: translateY(0); }
}
@keyframes loading-dot3 {
	0% { transform: translateY(0); }
	16% { transform: translateY(0); }
	26% { transform: translateY(-7px); }
	36% { transform: translateY(0); }
}
@keyframes loading-dot4 {
	0% { transform: translateY(0); }
	24% { transform: translateY(0); }
	34% { transform: translateY(-7px); }
	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;
}

.dl-line > div > dt span, .dl-line > div > dd span, .dl-line > div > dd p,
.dot-list li, .attention-list li {
	width: auto !important;
}

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

.table-common th > span, .table-common td > span,
.top-lead p, .top-program .list h4, .top-program .list h3, .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 {
	transform-origin: center center;
}

.program-select .program-section-lead .inner .btn-link a,
.program-team .btn-link a {
	width: 96%;
}

/* link
------------------------------------*/
a { color: var(--color-text); text-decoration: none; transition: .15s ease-out; -webkit-transform: translateZ(0); }
.hover { cursor: pointer; transition: .15s ease-out; }
a:hover,.hover:hover { text-decoration: none; opacity: 0.6; }

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

/* .btn
------------------------------------*/
.btn-link a {
	display: inline-block;
	border-radius: 6px;
	padding: 14px 16px 11px 18px;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.08em;
	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: 22px;
	height: 22px;
	margin-right: 8px;
	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-right: 16px; }

/* .gnav
------------------------------------*/
.gnav { display: flex; }
.gnav ul:first-of-type { margin-right: 20px; }
.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: 40px;
	right: 40px;
	background-color: #FFFFFF;
	filter: drop-shadow(1px 4px 7px rgba(187, 175, 150, 0.08));
	border-radius: 50%;
	width: 96px;
	height: 96px;
	cursor: pointer;
}

.btn-nav > div,
.modal-close > div {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

.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: 50px;
	height: 24px;
	margin: 38px auto 0;
}

.btn-nav span,
.modal-close span {
	position: absolute;
	left: 0;
	border-radius: 3px;
	width: 100%;
	height: 3px;
	-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: 11px; 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(11px) 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: 44.5%;
	background: var(--color-yellow);
	width: 55.5%;
	min-width: 688px;
	height: 100vh;
	white-space: nowrap;
	z-index: 9999;
	opacity: 0;
}

@media (max-width: 1240px) {
	.nav { left: inherit; right: 0; }
}

.nav .inner { width: 100%; height: 100vh; }

.nav .inner-s {
	position: absolute;
	top: calc((100vh - 20px) / 2);
	left: 50%;
	transform: translate(-50%,-50%) !important;
	z-index: 3;
}

.nav .gnav { margin-bottom: 40px; }
.nav .gnav ul:first-of-type { margin-right: 30px; }
.nav .gnav li { margin-bottom: 16px; }

.nav .gnav li a {
	background-position: left top 1px;
	background-size: 36px auto;
	padding: 7px 15px 15px 48px;
}

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

.nav .footer-inner h2 { margin-bottom: 8px; font-size: 16px; }
.nav .footer-inner nav { margin-bottom: 35px; }
.nav .footer-inner nav li a { font-size: 13px; }
.nav .footer-inner address { font-size: 16px; }
.nav .footer-inner address > span { margin-bottom: 10px; font-size: 14px; letter-spacing: 0.1em; }
.nav .footer-inner address > a i { transform: translateY(3px); }
.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: 16px; }

.nav .footer-inner .btn-recruit { top: -40px; right: -50px; left: inherit; }
.nav .footer-inner .btn-recruit img { display: none; }
.nav .footer-inner .btn-recruit img.size-l { display: block; }

.nav .footer-inner .sns-footer { top: inherit; bottom: 0; right: -30px; }
.nav .footer-inner .sns-footer ul { position: static; }
.nav .footer-inner .sns-footer ul li { margin-right: 10px; }
.nav .footer-inner .sns-footer ul li a img { margin-left: 0; }
.nav .footer-inner .sns-footer .txt,
.nav .footer-inner .sns-footer .hand > img { display: none !important; }

.nav .copyright {
	position: absolute;
	bottom: -2px;
	left: 13px;
	background: url(img/share/bg-nav3.svg) no-repeat left top / 99% auto;
	width: 100%;
	height: 131px;
	padding: 3.5vw 0 0 74px;
	font-size: 14px;
	letter-spacing: 0.1em;
	font-variation-settings: var(--font-sans-en-500);
	z-index: 1;
}

.nav .bg1 { position: absolute; top: 0; left: -10%; width: 100%; height: 100%; z-index: 2; }
.nav .bg1 img { width: auto; min-width: 100%; height: auto; min-height: 100%; }
.nav .bg2 { position: absolute; top: 1.5%; left: 2.2%; width: 100%; height: 100%; z-index: 0; }
.nav .bg2 img { width: auto; min-width: 86%; height: auto; min-height: 100%; }

@media (max-width: 1380px), (max-height: 860px) {
	.btn-nav { top: 25px; right: 25px; }
	.nav .gnav li a { background-size: 34px auto; padding-left: 44px; padding-bottom: 10px; }
	.nav .gnav li img { width: auto; height: 21px; }
	.nav .footer-inner .btn-recruit { top: -50px; right: -70px; }
	.nav .copyright { bottom: -20px; }
}
@media (max-height: 800px) {
	.nav { overflow-y: scroll; }
	.nav::-webkit-scrollbar { width: 0; }
	.nav::-webkit-scrollbar-track { background: none; }
	.nav::-webkit-scrollbar-thumb { background: none; }
	.nav .inner { position: relative; overflow: hidden; height: 800px; }
	.nav .inner-s { top: 170px; transform: translate(-50%,0) !important; }
}


/* wrap
---------------------------------------------------------------------------*/
#wrap { min-width: 1240px; }

header .logo,
.title-page,
header .sns { margin-left: -120px; }


/* header
---------------------------------------------------------------------------*/
header .logo { position: fixed; top: 39px; left: 18px; z-index: 3; }
header .logo img { width: 64px; }

.header-inner {
	position: fixed;
	top: 0;
	left: -120px;
	background-color: #FFFFFF;
	width: 100px;
	height: 100vh;
	margin: 0;
	padding: 0;
	z-index: 1;
}

header .sns { position: fixed; bottom: 33px; left: 32px; z-index: 3; }
header .sns li { margin-top: 10px; }


/* footer
---------------------------------------------------------------------------*/
footer {
	width: 100%;
	margin: 0;
	padding: 200px max(3.4vw, 35px) max(3.4vw, 35px);
	white-space: nowrap;
	opacity: 0;
}

.footer-inner { position: relative; }

footer .logo {
	width: 88px;
	margin: 0 0 34px 4px;
	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%; }
body.top footer .logo a img,
footer .logo a img.logo-wide { display: none; }
body.top footer .logo a img.logo-wide { display: block; }

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

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

.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 { font-size: 14px; }

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

.footer-inner address > span i { padding-right: 2px; }
.footer-inner address > a { display: inline-block; margin-bottom: 13px; }
.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-inner address > a span br { display: none; }

.footer-inner address .tel {
	display: block;
	font-size: 13px;
	letter-spacing: 0.05em;
}

.footer-inner .btn-recruit { position: absolute; top: 0; left: 114px; }
.footer-inner .btn-recruit .size-l { display: none; }

.sns-footer { position: absolute; top: 8px; right: 4px; }

.sns-footer .txt {
	position: absolute;
	top: -32px;
	right: 0;
	/*transform: rotate(-16deg) !important;*/
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.12em;
	transform-origin: center center;
	white-space: nowrap;
}

.sns-footer ul {
	display: flex;
	position: absolute;
	top: 53px;
	left: 55px;
	z-index: 1;
}

.sns-footer ul li {
	position: relative;
	overflow: hidden;
	background-color: #FFFFFF;
	border-radius: 50%;
	width: 35px;
	height: 35px;
	margin-right: 16px;
}

.sns-footer ul li a {
	display: block;
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}

.sns-footer ul li a img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%) !important;
	margin-left: 1px;
}

.sns-footer .hand { mix-blend-mode: multiply }

.footer-btm {
	position: absolute;
	bottom: 0;
	right: -5px;
}

footer .gnav { margin-bottom: 15px; }

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

/* 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; }
footer .sns-footer .txt { opacity: 0; }

@media (max-width: 1420px) {
	body:not(.top) footer { padding-right: 36px; padding-left: 36px; }
	body:not(.top) footer .logo { margin-left: 6px; }
	body:not(.top) .footer-inner h2 { font-size: 13px; }
	body:not(.top) .footer-inner address { font-size: 13px; }
	body:not(.top) .footer-inner address > a span { letter-spacing: 0.03em; }
	body:not(.top) footer .gnav ul:first-of-type { margin-right: 18px; }
	body:not(.top) footer .gnav li a { background-position: left top 3px; padding-right: 2px; padding-left: 22px; }
	body:not(.top) footer .gnav img { width: auto; height: 13px; }
	body:not(.top) .copyright { font-size: 13px; }
}

/* body.top footer
------------------------------------*/
body.top footer { padding: 340px 5% 4.5%; }

body.top footer .footer-inner {
	position: relative;
	padding: 0 0 0 min(24%, 305px);
}

body.top footer .footer-inner > nav {
	position: absolute;
	bottom: 0;
	left: min(24%, 305px);
	margin: 0;
}

body.top footer .logo {
	position: absolute;
	bottom: 0;
	left: 0;
	width: auto;
	margin: 0;
}

body.top footer .logo h3 {
	margin: 0 0 22px 4px;
	font-size: 12px;
	letter-spacing: 0.22em;
	white-space: nowrap;
}

body.top footer .logo h3 span { display: inline-block; padding: 0 4px; }
body.top footer .logo h3 br { display: none; }

body.top footer .logo a img { width: 236px; }

body.top footer .footer-inner .btn-recruit {
	position: absolute;
	top: -127px;
	left: min(calc(24% + 225px), 535px);
}

body.top footer .footer-inner h2 {
	margin-bottom: 25px;
	font-size: 17px;
	line-height: 1.8;
	letter-spacing: 0.08em;
}

body.top footer .footer-inner address { padding-bottom: 34px; }
body.top footer .footer-inner address > span { display: inline-block; width: auto; margin-right: 6px; }

body.top .sns-footer { top: -195px; right: 10px; }

body.top .footer-btm {
	bottom: -5px;
	right: 0;
	padding-right: 7.5%;
}

body.top .footer-inner .gnav { margin: 0; }
body.top .footer-inner .gnav ul:first-of-type { margin-right: 30px; }
body.top .footer-inner .gnav li a { width: auto; padding: 5px 10px 11px 23px; }
body.top .footer-inner .gnav li a img { height: 16px; }

body.top footer .copyright {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 12px;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

body.top footer .copyright i { display: none; }

@media (max-width: 1380px) {
	body.top footer { padding-right: 3%; padding-left: 4%; }
	body.top footer .logo a img { width: 226px; }
	body.top footer .footer-inner h2,
	body.top footer .footer-inner address,
	body.top footer .footer-inner > nav { margin-left: -10px; }
	body.top footer .footer-inner h2 { font-size: 16px; }
	body.top footer .footer-inner address { font-size: 13px; }
	body.top .footer-btm { padding-right: 6%; }
	body.top .footer-inner .gnav ul:first-of-type { margin-right: 25px; }
}


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

/* .main-img
------------------------------------*/
.main-img {
	overflow: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 44.5%;
	min-width: 552px;
	height: 100%;
	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 a { pointer-events: none; }

.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: 0;
	padding: 0 0 0 44.5%;
	text-align: left;
	z-index: 1;
}

#wrap.left #mainContents { padding-left: 0; }
#mainContents.modal { margin: 0; transform: none !important; z-index: 10000; }
.contents { opacity: 0; }

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

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

#accessContents {
	padding-top: 80px;
}

#lessonContents .contents-wide,
#dailyContents,
#food-educationContents,
#aboutContents .contents-wide,
#programContents .contents-wide,
#sick-childcareContents,
#guideContents,
#privacyContents,
#accessContents {
	padding-right: max(5.5%, 85px);
	padding-left: max(5.5%, 85px);
}

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

#sick-childcareContents .contents-inner,
#guideContents .contents-inner {
	max-width: 700px;
}

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

/* .title-page
------------------------------------*/
.title-page {
	position: fixed;
	top: 50%;
	left: 40px;
	transform: translateY(-50%);
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.2em;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
	z-index: 3;
}

.title-page a { pointer-events: none; }

/* media query
-----------------------------------*/
@media (max-height: 780px) {
	header .logo {
		top: 20px;
	}
	.title-page {
		margin-top: 2px;
		padding-left: 2px;
		font-size: 16px;
	}
}
@media (max-height: 600px) {
	.title-page {
		top: 300px;
	}
	header .sns {
		top: 474px;
	}
}

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

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

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

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

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

/* .sec-lead
------------------------------------*/
.sec-lead h2 {
	margin-bottom: 25px;
	font-size: 35px;
	font-weight: 600;
	line-height: 1.65;
	letter-spacing: 0.16em;
	text-align: center;
}

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

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

.sec-lead p {
	padding: 0 28px;
	line-height: 2.35;
	text-align: justify;
}

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

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

/* .dot-list
------------------------------------*/
.dot-list li {
	position: relative;
	margin: 0 0 6px 3px;
	padding-left: 15px;
	font-size: 14px;
	line-height: 1.6;
	letter-spacing: 0.1em;
}

.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: 12px; }

/* .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 > div {
	display: flex;
	border-top: 1px solid var(--color-border-gray);
	margin-bottom: 25px;
	padding: 11px 0 0 5px;
}

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

.dl-line > div > dt {
	width: 120px;
	min-width: 120px;
	padding: 7px 20px 0 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

.dl-line > div > dd,
.dl-line > div > dd p {
	font-size: 14px;
	line-height: 1.9;
	letter-spacing: 0.08em;
}

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

.dl-line > div > dd .btn-link { margin-top: 26px; }

/* .dl-year
------------------------------------*/
.dl-year > div { display: flex; margin-bottom: 9px; }
.dl-year > div:last-of-type { margin-bottom: 0; }
.dl-year dt { width: 60px; min-width: 60px; margin-right: 18px; }

/* .dl-staff
------------------------------------*/
.dl-staff { display: inline-block; vertical-align: top; }
.dl-staff:not(:last-of-type) { margin-right: 48px; }
.dl-staff > div { display: flex; margin-bottom: 4px; }
.dl-staff:first-of-type > div { justify-content: space-between; }
.dl-staff > div:last-of-type { margin-bottom: 0; }
.dl-staff dt { padding-right: 30px; }
.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; }

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

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

.table-common th,
.table-common td {
	border-right: 1px solid var(--color-border-yellow);
	border-bottom: 1px solid var(--color-border-yellow);
	padding: 12px 2px 9px 4px;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.11em;
	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: 7px;
	padding-left: 7px;
	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 strong {
	display: block;
	font-size: 14px;
	font-weight: 600;
}

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

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

.table-common th.vertical {
	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: 40px; }
.table-common td .dot-list li { margin-bottom: 7px; font-size: 13px; line-height: 1.8; }
.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;
}

@media (max-width: 1340px) {
	.table-common th,
	.table-common td { letter-spacing: 0.07em; }
	.table-common td:has(.dot-list) { padding-left: 22px; }
	.table-common td .dot-list + .dot-list { margin-left: 12px; }
	.table-common td .dot-list li { letter-spacing: 0.08em; }
}


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

/* .top-img
------------------------------------*/
.top-img { position: relative; overflow: hidden; width: 100%; height: 100vh; margin-bottom: 60px; z-index: 0; }

.top-img .logo { position: absolute; top: 42px; left: 52px; z-index: 2; }
.top-img .logo img { width: 140px; }

.top-img .sns { position: absolute; bottom: 30px; left: 40px; z-index: 2; }
.top-img .sns li a { display: block; padding: 5px; }

.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% 100%; }
.top-img .inner:nth-of-type(3) img { object-position: 50% 50%; }
.top-img .inner:nth-of-type(4) img { object-position: 50% 100%; }
.top-img .inner:nth-of-type(5) img { object-position: 50% 50%; }
.top-img .inner:nth-of-type(6) img { object-position: 100% 100%; }

.top-img .mask {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: var(--color-bg);
	width: 100%;
	/*height: 120px;*/
	height: 0;
	z-index: 1;
}

/* .top-lead
------------------------------------*/
.top-lead {
	position: relative;
	margin: 0 auto 140px;
	text-align: center;
	z-index: 2;
}

.top-lead h2 {
	margin-bottom: 46px;
	font-size: 44px;
	font-weight: 600;
	letter-spacing: 0.16em;
	white-space: nowrap;
	opacity: 0;
}

.top-lead h2 span {
	width: auto;
	padding: 0 8px;
}

.top-lead p {
	margin-bottom: 8px;
	font-size: 19px;
	font-weight: 600;
	line-height: 2.7;
	letter-spacing: 0.11em;
}

.top-lead .btn-set { margin-top: 32px; }
.top-lead .btn-set .btn-link { margin: 0 11px; }
.top-lead .btn-link a { font-size: 18px; }

.top-lead > img,
.top-lead > picture { display: block; position: absolute; }
.top-lead .img1 { top: 134px; left: calc(50% - 551px); }
.top-lead .img2 { top: 403px; left: calc(50% - 573px); }
.top-lead .img3 { top: 138px; right: calc(50% - 563px); }
.top-lead .img4 { top: 493px; right: calc(50% - 532px); }

.top-lead .pic { top: -220px; right: 35px; transform-origin: right bottom; opacity: 0; }

/* .top-img-scroll
------------------------------------*/
#topContents .infiniteslide_wrap { margin-left: -3000px; }
.top-img-scroll { display: flex; width: 100%; margin-bottom: 160px; }
.top-img-scroll .img { margin-right: 85px; }
.top-img-scroll .img img { border-radius: 8px; }
.top-img-scroll .img1 { margin-top: 83px; }
.top-img-scroll .img2 { margin-top: 1px; }
.top-img-scroll .img3 { margin-top: 125px; }
.top-img-scroll .img4 { margin-top: 47px; }
.top-img-scroll .img5 { margin-top: 79px; }
.top-img-scroll .img6 { margin-top: 1px; }
.top-img-scroll .img7 { margin-top: 115px; }

/* .top-program
------------------------------------*/
.top-program {
	position: relative;
	display: flex;
	justify-content: space-between;
	background: radial-gradient(800px 1600px, #F5EFCF 60%, #F5F3C2 80%);
	width: 1252px;
	margin: 0 auto 100px;
	padding: 78px 78px 60px;
}

.top-program .pic1 { position: absolute; top: -125px; right: 85px; }
.top-program .pic1 img { width: 383px; }
.top-program .pic2 { position: absolute; top: -50px; left: 50px; }

.top-program .txt {
	position: relative;
	width: 424px;
	margin-top: 12px;
	z-index: 1;
}

.top-program .txt .pic { position: absolute; top: 53px; right: -107px; z-index: -1; }

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

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

.top-program .txt p {
	display: block;
	font-size: 18px;
	line-height: 2.2;
	letter-spacing: 0.11em;
	text-align: justify;
}

.top-program > .btn-link { display: none; }
.top-program .btn-link { margin-top: 45px; }

.top-program .btn-link a {
	padding: 16px 21px 13px 24px;
	font-size: 18px;
}

.top-program .list {
	align-self: flex-start;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 25px;
	width: 535px;
	text-align: center;
}

.top-program .list figure { margin-bottom: 23px; }

.top-program .list h4 {
	margin-bottom: 15px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.top-program .list h3 {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.07em;
}

/* .top-nav
------------------------------------*/
.top-nav { position: relative; width: 1200px; margin: 0 auto 160px; }
.top-nav ul { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 39px; }
.top-nav li a { display: block; position: relative; }

.top-nav li .pic1 { position: absolute; bottom: -30px; left: -30px; }
.top-nav li .pic2 { position: absolute; top: -26px; right: -12px; }
.top-nav li .pic3 { position: absolute; top: -40px; right: 100px; }
.top-nav li .pic4 { position: absolute; bottom: 4px; right: -58px; }

.top-nav li h2 {
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--color-bg);
	border-radius: 0 0 12px 0;
	padding: 6px 11px 12px 6px;
	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;
	width: 12px;
	height: 12px;
}

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

.top-nav li h2 span {
	font-size: 21px;
	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: 29px;
	height: 29px;
	margin-top: 8px;
}

.top-nav li img { border-radius: 12px; }

.top-nav .logo {
	position: absolute;
	top: -117px;
	right: 37px;
}

/* .top-atelier
------------------------------------*/
.top-atelier {
	background: url(img/top/img-atelier.webp) no-repeat center center / cover;
	width: 100%;
	margin-bottom: 150px;
	padding: 75px 0;
}

.top-atelier .inner {
	position: relative;
	background-color: #FFFFFF;
	width: 380px;
	margin: 0 auto;
	padding: 30px 35px 33px;
}

.top-atelier .inner h2 {
	position: relative;
	margin-bottom: 20px;
	color: var(--color-orange);
	font-weight: 600;
	font-size: 24px;
	line-height: 1.8;
	letter-spacing: 0.11em;
	text-align: center;
}

.top-atelier .inner h2 .pic1 { position: absolute; top: -164px; right: -166px; }
.top-atelier .inner h2 .pic1 img { width: 180px; }
.top-atelier .inner h2 .pic2 { position: absolute; bottom: -529px; left: -385px; }

.top-atelier .inner p {
	display: block;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.95;
	letter-spacing: 0.1em;
	text-align: justify;
}

.top-atelier .inner .btn-link { margin: 26px -2px 0; }
.top-atelier .inner .btn-link a { width: 96%; padding-bottom: 12px; font-size: 18px; }
.top-atelier .inner .btn-link a i { margin-top: -3px; }

.top-atelier .inner .pic3 { position: absolute; bottom: -104px; right: -84px; }

/* .top-access
------------------------------------*/
.top-access { position: relative; display: flex; justify-content: space-between; width: 1160px; margin: 0 auto; }
.top-access .map-wrap { width: 407px; min-width: 407px; }
.top-access .map-wrap .map iframe { width: 100%; height: 540px; }
.top-access .footer-inner { margin: 12px 0 0 2px; white-space: nowrap; }
.top-access .pic { position: absolute; bottom: -79px; right: -52px; }

/* .footer-img
------------------------------------*/
.footer-img { position: relative; width: 100%; margin-top: max(16%, 220px); }

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

.footer-img .img {
	position: relative;
	overflow: hidden;
	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 {
	will-change: transform;
	transform: translateZ(0);
  backface-visibility: hidden;
}
.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; }

@media (max-width: 1380px) {
	.top-nav { width: 1178px; }
	.top-nav ul { gap: 0 28px; }
}


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

/* .about-section
------------------------------------*/
.about-section figure { margin-bottom: 36px; }
.about-section figure img { width: 100%; }
.about-section .inner { padding: 0 20px; }

.about-section .inner h3 {
	margin-bottom: 26px;
	font-size: 21px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.21em;
	text-align: center;
}

.about-section .inner p {
	line-height: 2.2;
	letter-spacing: 0.1em;
	text-align: justify;
}

/* .about-policy
------------------------------------*/
.about-policy {
	position: relative;
	width: 544px;
	margin: 0 auto 160px;
}

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

.about-policy h2:before,
.about-policy h2:after {
	display: block;
	content: '';
	position: absolute;
	top: -1px;
	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: 20px;
	font-size: 25px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.18em;
}

.about-policy > p {
	font-size: 15px;
	line-height: 2.25;
	letter-spacing: 0.1em;
	text-align: justify;
}

.about-policy .inner {
	position: relative;
	margin: 35px 0 0;
	padding: 2px 0 0 85px;
}

.about-policy .inner h4 { position: absolute; top: 0; left: 0; }

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

.about-policy .inner li,
.about-policy .inner li p {
	font-size: 15px;
	line-height: 1.85;
	letter-spacing: 0.22em;
}

.about-policy .inner li i { display: block; position: absolute; top: 0; left: 0; }

.about-policy .inner .btn-link { margin: 18px 0 0 35px; }

.about-policy .pic { display: block; position: absolute; border-radius: 2px; z-index: 0; }
.about-policy .pic.blue { background-color: var(--color-blue); }
.about-policy .pic.orange { background-color: var(--color-orange); }
.about-policy .pic1 { top: -50px; left: -15px; width: 9px; height: 9px; transform: rotate(35deg); }
.about-policy .pic2 { top: 325px; left: -65px; width: 13px; height: 13px; transform: rotate(30deg); }
.about-policy .pic3 { top: 360px; right: -15px; width: 13px; height: 13px; transform: rotate(-45deg); }
.about-policy .pic4 { top: 540px; right: 95px; width: 8px; height: 8px; transform: rotate(15deg); }
.about-policy .pic5 { bottom: 35px; left: -5px; width: 11px; height: 11px; transform: rotate(45deg); }
.about-policy .pic6 { bottom: -35px; right: 5px; width: 10px; height: 10px; transform: rotate(-30deg); }

/* .about-img-scroll
------------------------------------*/
.about-img-scroll { display: flex; margin-bottom: 140px; }
.about-img-scroll .img1 { margin: 84px 67px 0 0; }
.about-img-scroll .img2 { margin: 0 59px 0 0; }
.about-img-scroll .img3 { margin: 125px 72px 0 0; }
.about-img-scroll .img4 { margin: 46px 108px 0 0; }
.about-img-scroll .img5 { margin: 78px 82px 0 0; }
.about-img-scroll .img6 { margin: 0 72px 0 0; }
.about-img-scroll .img7 { margin: 115px 90px 0 0; }

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

.about-message {
	margin-bottom: 100px;
	margin-top: -80px;
	padding-top: 80px;
}

.about-message .title-section { margin-bottom: 42px; }

.about-message h3 {
	position: absolute;
	top: -80px;
	right: -160px;
}

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

.about-message .sec-inner { display: flex; align-items: flex-end; }

.about-message .sec-inner .img {
	align-self: flex-start;
	width: 275px;
	min-width: 275px;
	margin-right: 46px;
}

.about-message .sec-inner .img > figure { transform-origin: center bottom; }
.about-message .sec-inner .img img { width: 100%; }

.message-anime {
	overflow: hidden;
	position: relative;
	width: 275px;
	height: 413px;
	margin-bottom: 19px;
	transform-origin: center bottom;
}

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

.about-message .sec-inner .img .message-anime img {
	position: relative;
	display: block;
	width: 301px;
	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-bottom: 16px;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.16em;
}

.about-message .txt p {
	margin-bottom: 9px;
	line-height: 2.05;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.about-message .txt .name { margin-top: 16px; }

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

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

.about-build .inner .pic1 { display: block; position: absolute; top: 0; left: calc(50% - 340px); }
.about-build .inner .pic2 { display: block; position: absolute; top: 15px; right: calc(50% - 325px); }

@media (max-width: 1380px) {
	.about-build .inner .pic1 { margin-left: 35px; }
	.about-build .inner .pic1 img { width: 120px; }
	.about-build .inner .pic2 { margin-right: 35px; }
	.about-build .inner .pic2 img { width: 110px; }
}

/* .about-gallery
------------------------------------*/
.about-gallery {
	width: 100%;
	max-width: 920px;
	margin: 70px auto 0;
}

.about-gallery figure { transition: .15s ease-out; cursor: pointer; }
.about-gallery figure:hover { opacity: 0.75; }
.about-gallery figure img { width: 100%; }

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

.about-gallery .column1 {
	position: relative;
	margin-bottom: 58px;
	padding: 0 40px;
}

.about-gallery .column2,
.about-gallery .column3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px 18px;
	padding: 0 75px;
}

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

.about-gallery .pic-zoom {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%) !important;
	z-index: 1;
	cursor: pointer;
}

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

.about-gallery .pic-zoom i {
	display: block;
	position: absolute;
	top: 64px;
	left: 23px;
	z-index: 1;
	transition: .4s var(--easeOutQuart);
}

.about-gallery .pic-zoom:hover i { transform: rotate(360deg); }
.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: 100vh;
	z-index: 10001;
	z-index: -999;
	opacity: 0;
	pointer-events: none;
}

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

.slider-gallery .slick-prev,
.slider-gallery .slick-next { transition: .15s ease-out; cursor: pointer; }

.slider-gallery .slick-prev:hover,
.slider-gallery .slick-next:hover {
	/*opacity: 0.75 !important;*/
}

.modal-arrow {
	position: absolute;
	top: calc(50% - 45px);
	z-index: 2;
	pointer-events: none;
	opacity: 0;
}

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

.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: 100vh !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% - 140px);
	height: 100%;
	max-height: calc(100% - 120px);
	margin-top: -30px;
}

.slider-gallery .inner figure img {
	display: block;
	border-radius: 20px;
	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: 3px 32px 4px 32px;
	font-size: 12px;
	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: 4px;
	left: 0;
	text-align: center;
	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: 54px !important;
	height: 54px !important;
	margin: 0 6px;
	transition: .15s ease-out;
	cursor: pointer;
}

.slider-gallery-thum .inner:hover { opacity: 0.75; }

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

.slider-gallery-thum .inner.slick-current > div {
	border-radius: 50%;
	height: 54px;
	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: 81px;
	height: 54px;
	-webkit-backface-visibility: hidden;
	image-rendering: -webkit-optimize-contrast;
}

/* .about-dayservice
------------------------------------*/
.about-dayservice { margin-bottom: 120px; }
.about-dayservice figure { margin-bottom: 34px; }

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

/* .about-outline
------------------------------------*/
.about-outline { position: relative; padding-top: 50px; }
.about-outline .title-section { position: absolute; top: 0; left: 0; white-space: nowrap; }
.about-outline figure { margin-bottom: 70px; }
.about-outline .dl-line { padding: 0 20px; }
.about-outline .dl-line > div { margin-bottom: 18px; }
.about-outline .btn-set { margin: 55px 0 0 20px; white-space: nowrap; }

@media (max-width: 1380px) {
	.about-policy { width: 480px; }
	.about-policy .inner { padding-left: 75px; }
	.about-message,
	.about-build .about-section,
	.about-gallery .column1 { width: 84%; }
	.about-gallery .column1 { margin-right: auto; margin-left: auto; padding: 0; }
	.about-message h3 { top: -180px; }
	.about-message .txt p { line-height: 2; letter-spacing: 0.05em; text-align: justify; white-space: inherit; }
	.about-message .txt p br { display: none; }
	.about-outline .btn-set { margin-left: 0; }
}


/* page program
---------------------------------------------------------------------------*/
#programContents { overflow: hidden; }
#programContents .sec-lead { position: relative; margin-bottom: 50px; }
#programContents .sec-lead h2 { margin-bottom: 15px; }
#programContents .sec-lead .pic1 { position: absolute; bottom: -49px; left: -25px; }
#programContents .sec-lead .pic2 { position: absolute; bottom: -38px; right: -4px; }

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

.program-class h3 {
	width: 100%;
	margin: 0 -10px 28px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.15em;
	text-align: center;
	white-space: nowrap;
}

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

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

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

.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: 9px;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.14em;
}

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

.program-class > p {
	padding: 0 10px;
	font-size: 15px;
	line-height: 2.25;
	letter-spacing: 0.1em;
	text-align: justify;
}

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

.class-point .inner {
	display: flex;
	align-items: center;
	background: url(img/share/line-dot-beige.svg) repeat-x left bottom;
	margin-bottom: 35px;
	padding: 0 10px 35px;
}

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

.class-point .inner figure {
	align-self: flex-start;
	margin-right: 36px;
}

.class-point .inner .txt h4 {
	margin-bottom: 17px;
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.15em;
}

.class-point .inner .txt p {
	line-height: 1.9;
	text-align: justify;
}

/* .program-section-lead
------------------------------------*/
.program-section-lead figure {
	margin-bottom: 35px;
}

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

.program-section-lead .inner {
	position: relative;
	padding: 0 5px;
}

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

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

.program-section-lead .inner p {
	line-height: 2.2;
	text-align: justify;
}

/* .program-circle
------------------------------------*/
.program-circle { margin-bottom: 80px; }
.program-circle .program-section-lead figure { margin-bottom: 65px; }
.program-circle .program-section-lead .inner .pic { position: absolute; top: -111px; left: calc(50% - 178px); }

/* .program-learning
------------------------------------*/
.program-learning { margin-bottom: 100px; }
.program-learning .program-section-lead .inner .pic1 { position: absolute; top: -72px; left: 20px; }
.program-learning .program-section-lead .inner .pic2 { position: absolute; top: -100px; right: 30px; }

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

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

.program-select h2 em {
	display: inline-block;
	margin-right: 18px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.4em;
	transform: translateY(-3px);
}

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

.program-select ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px 50px;
	margin-bottom: 54px;
	padding: 0 10px;
}

.program-select li {
	position: relative;
}

.program-select li h3 {
	position: absolute;
	top: -18px;
	left: -34px;
	border-radius: 50%;
	width: 73px;
	height: 73px;
	padding: 27px 0 0;
	color: #FFFFFF;
	font-size: 19px;
	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-top: 29px;
	font-size: 15px;
	letter-spacing: 0.04em;
}

.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-bottom: 0;
	z-index: 0;
}

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

.program-select li figcaption {
	position: absolute;
	bottom: 13px;
	right: -10px;
	text-align: right;
	white-space: nowrap;
	z-index: 1;
}

.program-select li figcaption span {
	display: inline-block;
	background-color: #FFFFFF;
	width: auto;
	margin-top: 4px;
	padding: 4px 3px 4px 5px;
	font-size: 12px;
	letter-spacing: 0.06em;
}

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

.program-select .program-section-lead > figure {
	margin-bottom: 46px;
}

.program-select .program-section-lead .inner .pic { position: absolute; top: -90px; left: -14px; }

.program-select .program-section-lead .inner h2 {
	margin-bottom: 30px;
}

.program-select .program-section-lead .inner .btn-link,
.program-select .program-section-lead .inner .btn-link a {
	display: block;
}

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

/* .program-atelier
------------------------------------*/
.program-atelier {
	margin-bottom: 105px;
	margin-top: -90px;
	padding-top: 90px;
}

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

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

.program-atelier .program-section-lead .inner > .pic { position: absolute; top: -105px; left: -25px; }

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

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

.program-atelier .program-section-lead .inner h3 .pic1 {
	position: absolute;
	bottom: -14px;
	left: 222px;
	overflow: hidden;
	/*width: 197px;*/
	width: 0;
	height: 22px;
	z-index: 0;
}

.program-atelier .program-section-lead .inner h3 .pic1 img {
	position: absolute;
	top: 0;
	left: 0;
	width: 197px;
}

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

.program-atelier-list {
	position: relative;
	margin-top: 50px;
	padding: 0 5px;
	z-index: 1;
}

.program-atelier-list:after {
	display: block;
	content: '';
	position: absolute;
	top: 15px;
	right: 15px;
	background: url(img/share/pic-line2.svg) no-repeat;
	width: 275px;
	height: 535px;
	z-index: -1;
}

.program-atelier-list .inner {
	display: flex;
	align-items: center;
	margin-bottom: 35px;
}

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

.program-atelier-list .inner figure {
	align-self: flex-start;
	width: 160px;
	min-width: 160px;
	margin-right: 35px;
}

.program-atelier-list .inner h3 {
	margin-bottom: 17px;
	color: var(--color-orange);
	font-size: 17px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.program-atelier-list .inner p {
	line-height: 1.95;
	letter-spacing: 0.06em;
	text-align: justify;
}

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

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

.btn-lesson-art a em {
	display: inline-block;
	margin-right: 19px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-decoration: underline;
	text-decoration-color: #FFFFFF;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.4em;
	transform: translateY(-3px);
}

.btn-lesson-art a strong {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.14em;
}

.btn-lesson-art a i {
	display: inline-block;
	margin: -10px 0 0px 22px;
	transform: translateY(5px);
}

/* .program-english
------------------------------------*/
.program-english,
.program-technology {
	display: flex;
	align-items: flex-end;
	margin-bottom: 90px;
	padding: 0 5px;
}

.program-english figure,
.program-technology figure {
	align-self: flex-start;
	margin-right: 36px;
}

.program-english .txt {
	transform: translateY(5px);
}

.program-english .txt h2,
.program-technology .txt h2 {
	margin-bottom: 12px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.14em;
}

.program-english .txt p,
.program-technology .txt p {
	line-height: 2.2;
	letter-spacing: 0.1em;
	text-align: justify;
}

/* .program-technology
------------------------------------*/
.program-technology {
	/*align-items: flex-start;*/
	margin-bottom: 120px;
	padding: 0;
}

.program-technology figure {
	position: relative;
	margin-right: 55px;
}

.program-technology figure .pic { position: absolute; top: -28px; left: -34px; }

.program-technology .txt {
	padding-top: 10px;
}

.program-technology .txt h2 {
	font-size: 21px;
	text-align: center;
}

/* .program-steam
------------------------------------*/
.program-steam {
	position: relative;
	background: #FFFFFF;
	border-radius: 6px;
	/*width: 644px;*/
	width: 90%;
	max-width: 800px;
	margin: 0 auto 120px;
	padding: 72px 32px 50px;
}

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

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

.program-steam .slider-steam img {
	border-radius: 6px;
	width: 100%;
}

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

.program-steam h2 {
	margin-bottom: 36px;
	text-align: right;
}

.program-steam h2 > img:nth-of-type(1) {
	display: block;
	position: absolute;
	top: -120px;
	left: -20px;
}

.program-steam h3 {
	margin-bottom: 42px;
	text-align: center;
}

.program-steam .txt h3 {
	display: none;
}

.program-steam .txt h4 {
	margin-bottom: 24px;
	font-size: 19px;
	font-weight: 600;
	line-height: 2;
	letter-spacing: 0.14em;
	text-align: center;
}

.program-steam .txt p {
	padding: 0 20px;
	line-height: 2.1;
	letter-spacing: 0.06em;
	text-align: justify;
}

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

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

.program-team .sec-inner {
	position: relative;
	width: 580px;
	margin: 0 auto;
}

.program-team .sec-inner .pic1 { position: absolute; top: -93px; left: calc(50% - 261px); }
.program-team .sec-inner .pic2 { position: absolute; top: -70px; right: calc(50% - 235px); }

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

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

.program-team .sec-inner p {
	line-height: 2.3;
	text-align: justify;
}

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

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

@media (max-width: 1480px) {
	.btn-lesson-art {
		margin-right: -22px;
		margin-left: -22px;
	}
	.btn-lesson-art a {
		padding-left: 26px;
		padding-right: 26px;
	}
	.btn-lesson-art a em {
		margin-right: 0;
		letter-spacing: 0.1em;
	}
	.btn-lesson-art a strong {
		font-size: 18px;
		letter-spacing: 0.08em;
	}
	.btn-lesson-art a i {
		margin-left: 16px;
	}
	.btn-lesson-art a i img {
		width: 27px;
	}
}
@media (max-width: 1420px) {
	.program-section-lead .inner h3 {
		font-size: 20px;
	}
	.program-select h2 em {
		font-size: 14px;
		letter-spacing: 0.08em;
	}
	.program-select h2 strong {
		font-size: 21px;
		letter-spacing: 0.06em;
	}
	.program-atelier-list {
		padding: 0;
	}
	.program-atelier-list .inner h3 {
		font-size: 16px;
	}
	.program-atelier-list .inner p {
		letter-spacing: 0.04em;
	}
	.program-english figure,
	.program-technology figure {
		width: 38%;
		min-width: 38%;
		margin-right: 45px;
	}
	.program-english figure img,
	.program-technology figure img {
		width: 100%;
	}
	.program-english .txt {
		transform: translateY(0);
	}
	.program-steam {
		width: 620px;
	}
	.class-point .inner {
		padding-right: 5px;
		padding-left: 5px;
	}
	.program-team .sec-inner h2 {
		font-size: 22px;
		letter-spacing: 0.1em;
	}
}

.program-select,
.program-english,
.program-technology {
	max-width: 700px;
	margin-right: auto;
	margin-left: auto;
}


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

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

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

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

.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 {
	display: flex;
	justify-content: space-between;
	max-width: 760px;
	margin: 0 auto 130px;
	padding-right: 4%;
	padding-left: 4%;
}

.lesson-atelier .txt {
	position: relative;
	padding-top: 2px;
	z-index: 1;
}

.lesson-atelier .txt:after {
	display: block;
	content: '';
	position: absolute;
	top: 58px;
	left: 30px;
	background: url(img/share/pic-line1.svg) no-repeat;
	width: 230px;
	height: 320px;
	z-index: -1;
}

.lesson-atelier .txt p {
	line-height: 2.35;
	letter-spacing: 0.11em;
}

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

/* .lesson-gallery
------------------------------------*/
.lesson-gallery {
	margin-bottom: 95px;
}

.gallery-title {
	position: relative;
	width: 75%;
	min-width: 540px;
	max-width: 800px;
	margin: 0 auto 25px;
}

.gallery-title h2 {
	margin-bottom: 28px;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.2em;
}

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

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

.gallery-title > img {
	display: block;
	position: absolute;
	top: -45px;
	right: 30px;
}

.gallery-slide-wrap {
	overflow: hidden;
	width: 100%;
	margin-bottom: 80px;
}

.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: 25px; }

/* .lesson-sanbi
------------------------------------*/
.lesson-sanbi {
	display: flex;
	margin-bottom: 130px;
}

.lesson-sanbi .txt {
	order: 2;
	position: relative;
}

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

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

.lesson-sanbi .txt .name em {
	padding-right: 12px;
	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.1em;
}

.lesson-sanbi .img {
	order: 1;
	width: 42%;
	min-width: 32%;
	max-width: 277px;
	margin-right: 45px;
}

.lesson-sanbi .img figure { position: relative; }

.lesson-sanbi .img .pic { position: absolute; top: -25px; left: -35px; }

.lesson-sanbi .img figure img:not(.pic) {
	display: block;
	width: 100%;
	margin-bottom: 17px;
}

.lesson-sanbi .img p {
	margin-top: -5px;
	font-size: 12px;
	line-height: 1.75;
	letter-spacing: 0.06em;
	text-align: justify;
	opacity: 0.8;
}

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

.lesson-sanbi .txt .pic { position: absolute; bottom: 90px; right: -85px; z-index: -1; }

/* .lesson-sports
------------------------------------*/
.lesson-sports {
	width: 100%;
	margin: 0 auto;
}

.lesson-sports > figure {
	margin-bottom: 90px;
}

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

.lesson-sports .sec-inner {
	display: flex;
	justify-content: space-between;
	max-width: 880px;
	margin: 0 auto;
	padding: 0 12% 0 11%;
}

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

.lesson-sports .txt .pic { display: block; position: absolute; top: 57px; left: 235px; }

.lesson-sports .txt h2 {
	margin-bottom: 45px;
}

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

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

.lesson-sports .txt p {
	line-height: 2.3;
	white-space: nowrap;
}

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

.lesson-sports .sec-inner figure img { display: block; }
.lesson-sports .sec-inner figure > img:nth-of-type(1) { margin: 28px 0 30px; }
.lesson-sports .sec-inner figure > img:nth-of-type(2) { margin: 0 0 26px 77px; }
.lesson-sports .sec-inner figure picture { margin: 0 0 0 14px; }

@media (max-width: 1420px) {
	.lesson-atelier {
		padding-right: 0;
		padding-left: 2%;
	}
	.lesson-atelier .txt p {
		letter-spacing: 0.1em;
		line-height: 2.3;
	}
	.lesson-atelier figure {
		width: 224px;
		min-width: 224px;
		margin-top: 55px;
	}
	.lesson-atelier figure img {
		width: 100%;
	}
}


/* page food-education
---------------------------------------------------------------------------*/

/* .food-point
------------------------------------*/
.food-point {
	margin: 52px auto 100px;
}

.food-point h2 {
	margin-bottom: 55px;
	font-size: 21px;
	font-weight: 600;
	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.4em;
}

.food-point .inner1 {
	display: flex;
	margin-bottom: 80px;
	padding: 0 22px;
}

.food-point .inner1 figure {
	width: 33%;
	min-width: 33%;
	margin-right: 45px;
}

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

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

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

.food-point .inner1 .txt p {
	margin-bottom: 8px;
	line-height: 2.05;
	letter-spacing: 0.13em;
	text-align: justify;
}

.food-point .inner2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 30px;
}

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

.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 h2 {
	margin-bottom: 30px;
}

.food-section > figure {
	margin-bottom: 60px;
}

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

.food-section .inner {
	display: flex;
	justify-content: space-between;
	padding: 0 20px 0 25px;
}

.food-section .inner .txt {
	padding-right: 50px;
}

.food-section .inner .txt p {
	margin-bottom: 9px;
	line-height: 2.05;
	text-align: justify;
}

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

.food-cooking .inner .txt {
	padding-right: 45px;
}

.food-cooking .kondate {
	align-self: flex-start;
	background-color: #FFFFFF;
	padding: 15px 15px 15px;
}

.food-cooking .kondate figcaption {
	display: block;
	margin: 17px 7px 0;
	font-size: 13px;
	line-height: 1.9;
	letter-spacing: 0.12em;
}

@media (max-width: 1380px) {
	.food-point .inner1 .txt p,
	.food-section .inner .txt p {
		margin-bottom: 6px;
		line-height: 2;
		letter-spacing: 0.06em;
	}
	.food-point .inner1 {
		padding-right: 12px;
		padding-left: 12px;
	}
	.food-section .inner {
		padding: 0 10px;
	}
	.food-cooking .inner .txt {
		padding-right: 40px;
	}
	.food-cooking .kondate figure img {
		width: 185px;
	}
}


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

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

.daily-event .title-section {
	margin-bottom: 30px;
}

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

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

.daily-event .event h3 {
	margin: -25px 0 32px -14px;
	font-size: 49px;
	font-weight: 600;
	letter-spacing: 0.1em;
}

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

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

.event1 h4 {
	position: absolute;
	top: 24.5%;
	left: 3px;
	margin-top: -31px;
}

.event1 .img-set {
	position: absolute;
	bottom: 0;
	right: -5.6%;
	width: 53.5%;
	max-width: 353px;
}

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

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

.event1 .txt {
	margin: 0 346px 55px 6px;
	text-align: justify;
}

.event1 .txt p {
	margin-bottom: 8px;
	line-height: 2.1;
}

.event1 .img2 {
	display: flex;
	justify-content: space-between;
	/*width: 319px;*/
	margin-right: 328px;
	margin-left: 6px;
}

.event1 .img2 img {
	align-self: flex-start;
	width: 48.2%;
}

@media (max-width: 1439px) {
	.event1 .txt {
		margin-right: 51%;
		margin-bottom: 8%;
	}
	.event1 .txt p {
		letter-spacing: 0.06em;
	}
	.event1 .img2 {
		margin-right: 49%;
	}
	.event1 .img-set {
		right: -8%;
	}
	.event1 h4 {
		top: 20%;
	}
}
@media (max-width: 1340px) {
	.event1 h4 {
		top: 14%;
	}
}

/* .event2
------------------------------------*/
.event2 .pic { position: absolute; top: -60px; right: -40px; }

.daily-event .event2 h3 {
	margin-top: -21px;
	margin-bottom: 15px;
}

.daily-event .event2 h4 {
	margin: 0 0 30px 32px;
	line-height: 2;
}

.event2 .txt {
	padding: 0 22px;
	text-align: justify;
}

.event2 .txt p {
	line-height: 2.2;
}

@media (max-width: 1439px) {
	.event2 .pic {
		top: -20px;
		right: -60px;
	}
	.event2 .pic img {
		width: 281px;
	}
	.daily-event .event2 h3 {
		margin-bottom: 26px;
	}
	.daily-event .event2 h4 {
		margin-left: 20px;
		letter-spacing: 0.08em;
	}
}

/* .event-year
------------------------------------*/
.event-year {
	margin-top: 50px;
	padding: 0 22px;
}

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

.event-year .dl {
	display: flex;
	justify-content: space-between;
	max-width: 660px;
	padding: 0 15px;
}

.event-year dl:not(:last-of-type) {
	margin-right: 30px;
}

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

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

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

.event-year dd {
	padding-top: 7px;
	font-size: 15px;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.event-year dd .size-s {
	font-size: 13px;
	letter-spacing: 0.06em;
}

@media (max-width: 1439px) {
	.event-year .dl {
		padding: 0;
	}
}

/* .daily-schedule
------------------------------------*/
.daily-schedule {
	margin-bottom: 120px;
	padding: 0 22px;
}

.daily-schedule .sec-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 8px;
	padding: 0 0 0 42px;
}

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

.daily-schedule .inner h3:after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 50%;
	width: 202px;
	height: 192px;
	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: 25px;
	z-index: 2;
}

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

.daily-schedule dt {
	position: absolute;
	top: 6px;
	left: -50px;
	width: 36px;
	font-size: 12px;
	letter-spacing: 0.04em;
	text-align: right;
	white-space: nowrap;
}

.daily-schedule dd {
	background: linear-gradient(to left, #CCCCCC 50%, #FFFFFF 50%, #FFFFFF 100%) left bottom;
	background-repeat: repeat-x;
	background-size: 4px 1px;
	height: 58px;
	padding: 23px 0 0;
	font-size: 14px;
	letter-spacing: 0.14em;
	text-align: center;
}

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

@media (max-width: 1380px) {
	.daily-schedule .inner h3 {
		font-size: 15px;
	}
	.daily-schedule .inner h3:after {
		width: 188px;
	}
}

/* .daily-festival
------------------------------------*/
.daily-festival figure {
	margin-bottom: 45px;
}

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

.daily-festival .txt {
	padding: 0 20px;
}

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

.daily-festival p {
	font-size: 15px;
	line-height: 2.25;
	text-align: justify;
}


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

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

.sick-lead > p {
	padding: 0 3px;
	line-height: 2.3;
	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: 35px 0 70px;
	padding: 42px 38px 22px 66px;
}

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

.sick-lead .box h3,
.sick-lead .box h4 {
	display: block;
	margin-left: -26px;
}

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

.sick-lead .box h4 {
	margin-top: 28px;
	margin-bottom: 18px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.12em;
}

.sick-lead .box p {
	display: block;
	letter-spacing: 0.1em;
}

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

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

.sick-lead > figure {
	width: calc(100% + 30px);
	margin: 0 -15px 32px;
}

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

.sick-lead .dl-line {
	margin-top: 40px;
}

.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: 2px;
	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: 100px;
}

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

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

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

.sick-flow dt {
	width: 80px;
	min-width: 80px;
	padding: 8px 0 0 2px;
	color: var(--color-orange);
	font-family: var(--font-sans-en);
	font-variation-settings: var(--font-sans-en-600);
	font-size: 14px;
	letter-spacing: 0.1em;
}

.sick-flow dd h3 {
	margin-bottom: 8px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 0.12em;
}

.sick-flow dd p {
	letter-spacing: 0.1em;
	text-align: justify;
}

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

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

.sick-object .sec-inner h3 {
	width: 20%;
	min-width: 20%;
	padding-top: 6px;
	padding-left: 2px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.16em;
}

.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: 14px;
}

.sick-object .sec-inner .dot-list {
	display: flex;
	flex-wrap: wrap;
}

.sick-object .sec-inner .dot-list li {
	width: 50% !important;
	margin-bottom: 7px;
	margin-left: 0;
	padding-left: 12px;
	letter-spacing: 0.06em;
}

.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 li.size-l {
	width: 100% !important;
}

/* .sick-not
------------------------------------*/
.sick-not .box {
	position: relative;
	display: flex;
	background-color: #FFFFFF;
	border-radius: 10px;
	margin: 0 -2px 18px;
	padding: 26px 30px 22px 30px;
}

.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 {
	position: absolute;
	bottom: 24px;
	left: 31px;
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
	white-space: nowrap;
}

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


/* page guide
---------------------------------------------------------------------------*/
.guide-section > p { padding: 0 3px; line-height: 2.3; text-align: justify; }
.guide-section .table-common { width: calc(100% + 10px); margin: 18px -5px 0; }

/* .guide-outline
------------------------------------*/
.guide-outline { margin-bottom: 100px; }
.guide-outline .table-common tr:first-of-type th:not(:first-of-type) { width: 28.8%; }
.guide-outline .table-common td { padding-top: 24px; padding-bottom: 21px; }

/* .guide-system
------------------------------------*/
.guide-system { margin-bottom: 120px; }
.guide-system .inner { display: flex; justify-content: space-between; margin-bottom: 40px; }
.guide-system .inner figure { margin-right: 30px; }
.guide-system .inner1 figure img,
.guide-system .inner3 figure img { width: 100%; }

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

.guide-system .inner .txt p {
	line-height: 2.15;
	letter-spacing: 0.04em;
	text-align: justify;
}

.guide-system .inner1 figure { min-width: 37%; }
.guide-system .inner1 .txt { margin-top: -0.6%; margin-right: 3%; }

.guide-system .inner2 figure { order: 2; margin-right: 0; margin-left: 50px; }
.guide-system .inner2 .txt { order: 1; }
.guide-system .inner2 .txt h3 { margin-bottom: 8px; }
.guide-system .inner2 .txt p { line-height: 2; }

.guide-system .inner3 figure { min-width: 56%; }
.guide-system .inner3 .txt { margin-right: 2.5%; }
.guide-system .inner3 .txt h3 { margin-bottom: 10px; text-align: center; }
.guide-system .inner3 .txt p { line-height: 2.05; letter-spacing: 0.01em; }

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

/* .guide-care
------------------------------------*/
.guide-care { margin-bottom: 85px; }

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

.guide-care .sec-inner h3 {
	width: 25%;
	min-width: 25%;
	padding-top: 8px;
	padding-left: 2px;
	font-size: 	14px;
	font-weight: 600;
	letter-spacing: 0.16em;
}

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

.guide-care .sec-inner .table-common th,
.guide-care .sec-inner .table-common td {
	padding-top: 18px !important;
	padding-bottom: 14px !important;
	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: 30px;
	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 {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	background-color: #FFFFFF;
	border-radius: 12px;
	margin: 0 -20px;
	padding: 36px 38px 38px;
	white-space: nowrap;
}

.guide-contact .title-section { margin-bottom: 17px; }

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

.guide-contact .tel span { font-size: 17px; }
.guide-contact .btn-link { transform: translateY(2px); }

@media (max-width: 1439px) {
	.guide-contact .btn-link a span span { display: none; }
}
@media (max-width: 1340px) {
	.table-common tr:first-of-type th em { font-size: 11px; }
	.guide-system .inner3 figure { min-width: 51%; }
	.guide-system .inner .txt h3 { font-size: 16px; letter-spacing: 0.08em; }
	.guide-system .inner .txt p { font-size: 13px; }
	.guide-contact { padding-left: 32px; }
	.guide-contact .tel { font-size: 17px; }
}


/* page access
---------------------------------------------------------------------------*/
#accessContents .contents-inner { max-width: 640px; }

/* ,access-info
------------------------------------*/
.access-info .map {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 0;
	margin-bottom: 60px;
	padding-bottom: 100%;
}

.access-info .map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.access-info .info { display: flex; justify-content: space-between; }
.access-info .txt { padding: 0 30px 0 15px; }

.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; }

/* media query
-----------------------------------*/
@media (max-width: 1340px) {
	.access-info .txt { padding: 0 30px 0 5px; }
}


/* page privacy
---------------------------------------------------------------------------*/
#privacyContents .guide-section > p { letter-spacing: 0.06em; }

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

.privacy-section dt {
	width: 40px;
	min-width: 40px;
	padding-top: 8px;
}

.privacy-section dd p,
.privacy-section .inner p {
	line-height: 2.3;
	letter-spacing: 0.06em;
	text-align: justify;
}

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

.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 {
	padding-left: 14px;
	font-size: 13px;
}

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

.privacy-section .inner { margin-bottom: 50px; }

.privacy-section .inner h3 {
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.7;
	letter-spacing: 0.15em;
}

.privacy-contact { margin-top: 70px; }

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

.privacy-contact p {
	font-size: 13px;
}


/* print
---------------------------------------------------------------------------*/
@media print {

}