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

/* common
---------------------------------------------------------------------------*/
@import url("css/easing.css");

:root {
	--color-text: #444444;
	--color-bg: #FCF7D9;
	--color-bg-white: #FFFDEE;
	--color-border: #000000;

	--color-green: #1C8507;
	--color-yellow-green: #56A546;
	--color-yellow: #FDDC00;
	--color-red: #CF4C1E;
	--color-red-light: #D06C49;
	
	--font-gothic-jp-d: 'FOT-筑紫A丸ゴシック Std D', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	--font-gothic-jp-b: 'FOT-筑紫A丸ゴシック Std B', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	--font-gothic-jp-e: 'FOT-筑紫A丸ゴシック Std E', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'Hiragino Sans', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
	--font-gothic-en: 'AvenirNextLTPro-Medium', sans-serif;

	--width-min: 360px;
	--width-mid: 375;
	--width-max: 9999px;
	--size-max-over: max(calc(100vw/var(--width-mid)), calc(var(--width-min)/var(--width-mid)));
}

html {
	font-size: clamp(calc(var(--width-min)/var(--width-mid)), calc(100vw/var(--width-mid)), calc(var(--width-max)/var(--width-mid)));
}

body {
	overflow-y: scroll;
	background-color: var(--color-bg);
	color: var(--color-text);
	font-family: var(--font-gothic-jp-d);
	font-size: 15rem;
	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: 15rem; line-height: 2; letter-spacing: 0.08em; margin-bottom: 1em; }
p:last-child { margin-bottom: 0 !important; }
address,i { font-style: normal; }
img { max-width: none; }
figure img { width: 100%; }

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

/* #loading
------------------------------------*/
#loading { display: none !important; }
/*#loading {
	display: block;
	opacity: 1;
	position: fixed;
	top: 50vh;
	left: 50vw;
	border: 4rem solid var(--color-red-light);
	border-top-color: transparent;
	border-radius: 50%;
	width: 22rem;
	height: 22rem;
	margin: -11rem 0 0 -11rem;
	z-index: 99999;
	animation: spin .4s infinite linear;
}
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }*/

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

.line { display: inline-block; position: relative; padding-bottom: 1rem; line-height: 1; }
.line:after { display: block; content: ''; position: absolute; bottom: 0; left: 0; background-color: var(--color-text); width: 100%; height: 1px; }

/* .btn
------------------------------------*/
.btn-link a {
	display: inline-block;
	background: var(--color-red-light);
	border-radius: 80rem;
	padding: 9rem 18rem 11rem 20rem;
	color: #FFFFFF;
	font-family: var(--font-gothic-jp-b);
	font-size: 16rem;
	letter-spacing: 0.1em;
	text-align: center;
}

/* .btn-nav
------------------------------------*/
.btn-nav {
	position: fixed;
	top: 0;
	right: 0;
	box-sizing: border-box;
	padding: 46rem 30rem;
	z-index: 10000;
}

.btn-nav .pic {
	position: absolute;
	top: 27rem;
	left: 22rem;
	transition: .2s var(--easeInOutBack);
}

.btn-nav.active .pic {
	margin-top: 10rem;
	opacity: 0;
	transition: .2s var(--easeOutCubic);
}

.btn-nav .pic img {
	width: 77rem;
}

.btn-nav div, .btn-nav span {
	display: block;
	box-sizing: border-box;
	transition: .2s var(--easeOutQuart);
}

.btn-nav div {
	position: relative;
	width: 54rem;
	height: 12rem;
}

.btn-nav span {
	position: absolute;
	left: 0;
	border-radius: 3rem;
	width: 100%;
	height: 3rem;
	-webkit-transform: translateZ(0);
}

.btn-nav span:nth-of-type(1) { top: 0; background-color: var(--color-yellow-green); }
.btn-nav span:nth-of-type(2) { bottom: 0; background-color: var(--color-red-light); }

/* .btn-nav.active
------------------------------------*/
.btn-nav.active span:nth-of-type(1) { transform: translateY(5rem) rotate(12deg); }
.btn-nav.active span:nth-of-type(2) { transform: translateY(-4rem) rotate(-12deg); }

/* .nav-sp
------------------------------------*/
.nav-sp {
	position: fixed;
	top: 85rem;
	right: 18rem;
	background: #FFFFFF;
	box-shadow: 3rem 4rem 4rem rgba(0, 0, 0, 0.06);
	border-radius: 12rem;
	z-index: 9999;
	display: none;
	opacity: 0;
}

.nav-sp .inner {
	padding: 19rem 0 11rem;
}

.gnav li a {
	display: block;
	padding: 5rem 18rem 11rem;
}

.gnav li span {
	display: inline-block;
	position: relative;
	padding-bottom: 2rem;
}

.gnav li span:after {
	display: block;
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
}

.gnav li:nth-of-type(1) span:after { background-color: #EABC00; }
.gnav li:nth-of-type(2) span:after,
.gnav li:nth-of-type(4) span:after { background-color: var(--color-yellow-green); }
.gnav li:nth-of-type(3) span:after { background-color: var(--color-red-light); }

.gnav li img { width: auto; height: 15rem; }


/* #wrap
---------------------------------------------------------------------------*/
#wrap { min-width: var(--width-min); }
.bg-yellow-green { background: url(img/share/bg-green.jpg) repeat left top / 200rem auto; }
.bg-yellow { background-color: var(--color-yellow); }


/* header
---------------------------------------------------------------------------*/
header .logo { position: absolute; top: 34rem; left: 27rem; z-index: 10; opacity: 0; }
header .logo img { width: 130rem; }
header .gnav { display: none; }

.gnav .gnav-top,
body.top .gnav li:has(.gnav-top) a { display: none; }
body.top .gnav .gnav-top { display: block !important; }


/* .logo-anime
------------------------------------*/
.logo-anime { position: relative; padding: 24rem 0 0; z-index: 1; }

.logo-anime-path {
  position: absolute;
	top: 3rem;
	left: 4rem;
	transform-origin: left top;
	z-index: 3;
}

.logo-anime-path .path {
  offset-path: path("M1 79.0004C47.5 30.5002 205.5 -32.4998 315 92.5004C372 10.5002 559.5 -78.5 718 127");
  offset-rotate: 0deg;
  offset-distance: 0;
}

.logo-anime.anime .logo-anime-path .path { animation: logo-bounce 1s ease-out infinite; }
.logo-anime.anime-finish .logo-anime-path .path { animation: logo-bounce-finish 1s ease-out forwards; }

@keyframes logo-bounce {
  0% { offset-distance: 0; }
  90% { offset-distance: 100%; }
  100% { offset-distance: 100%; }
}
@keyframes logo-bounce-finish {
  0% { offset-distance: 0; }
  90% { offset-distance: 100%; }
  100% { offset-distance: 100%; }
}

.logo-anime-path .path img { width: 61px; height: auto; opacity: 0; }
.logo-anime.anime .logo-anime-path .path img { animation: logo-circle 1s ease-out infinite; opacity: 0; }

@keyframes logo-circle {
	0% { opacity: 0; }
	5% { opacity: 0; }
	10% { opacity: 1; }
	85% { opacity: 1; }
	95% { opacity: 0; }
	100% { opacity: 0; }
}

.logo-anime.anime-finish .logo-anime-path .path img {
	display: block;
	animation:
		logo-circle-finish .6s linear 0s forwards,
		logo-circle-finish2 1s ease-out .25s forwards;
}

@keyframes logo-circle-finish { 0% { opacity: 1; } 100% { opacity: 1; } }
@keyframes logo-circle-finish2 {
	0% { transform: scale(1); }
	50% { transform: scale(1); }
	60% { transform: scale(0.8); }
	75% { transform: scale(1.2); }
	100% { transform: scale(1); }
}

.logo-anime .logo-anime-bounce {
	overflow: hidden;
	position: absolute;
	top: 1rem;
	left: 2.5rem;
	z-index: 2;
	opacity: 0;
}

.logo-anime .logo-anime-bounce .bounce {
	width: 115rem;
	height: auto;
  stroke-dasharray: 250 750;
  stroke-dashoffset: 1000;
}

.logo-anime.anime .logo-anime-bounce .bounce {
  animation: logo-bounce-line 1s linear 0.3s infinite;
}

.logo-anime.anime-finish .logo-anime-bounce .bounce {
	stroke-dasharray: 1000 1000;
	animation: logo-bounce-line-finish 1s linear 0.1s forwards;
}

@keyframes logo-bounce-line { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }
@keyframes logo-bounce-line-finish { 0% { stroke-dashoffset: 1000; } 100% { stroke-dashoffset: 0; } }

.logo-anime .txt2 {
	position: absolute;
	bottom: 30rem;
	left: 45rem;
	width: 23rem;
	transform-origin: center bottom;
	z-index: 1;
}

.logo-anime.anime .txt2 { animation: logo-txt2 1s linear infinite; }
.logo-anime.anime-finish .txt2 { animation: logo-txt2-finish 1s linear forwards; }

@keyframes logo-txt2 {
	0% { transform: scaleY(1); }
	30% { transform: scaleY(1); }
	35% { transform: scaleY(0.85); }
	45% { transform: scaleY(1.1); }
	60% { transform: scaleY(0.95); }
	100% { transform: scaleY(1); }
}
@keyframes logo-txt2-finish {
	0% { transform: scaleY(1); }
	30% { transform: scaleY(1); }
	35% { transform: scaleY(0.85); }
	45% { transform: scaleY(1.1); }
	60% { transform: scaleY(0.95); }
	100% { transform: scaleY(1); }
}

.logo-anime .txt1 {
	position: relative;
	width: 129rem;
	z-index: 0;
}


/* footer
---------------------------------------------------------------------------*/
footer {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 130rem 27.5rem 50rem;
	white-space: nowrap;
	opacity: 0;
}

footer .inner1 { margin-bottom: 36rem; }

footer .inner1 .copyright {
	display: block;
	margin-bottom: 22rem;
	color: var(--color-green);
	font-size: 10rem;
	letter-spacing: 0.12em;
}

footer .inner1 .logo img { width: 182rem; margin-left: 2rem; }
footer .inner2 { margin-bottom: 22rem; }

footer .inner2 h2 {
	margin-bottom: 16rem;
	font-size: 14rem;
	line-height: 1.9;
	letter-spacing: 0.12em;
}

footer .inner2 address,
footer .inner2 .tel {
	font-size: 17rem;
	letter-spacing: 0.08em;
}

footer .inner2 address {
	position: relative;
	display: inline-block;
	margin-bottom: 16rem;
}

footer .inner2 address i { display: inline-block; margin-left: 8rem; transform: translateY(8rem); }
footer .inner2 address i img { width: 27rem; transform: translateY(-4rem); }
footer .inner2 .tel { display: inline-block; position: relative; }

footer .inner2 address:after,
footer .inner2 .tel:after {
	display: block;
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 0;
	background-color: var(--color-text);
	width: 100%;
	height: 1px;
}

footer .inner2 address:after { width: calc(100% - 37rem); }
footer .inner2 .tel span { padding-left: 2rem; font-size: 13rem; letter-spacing: 0.08em; }

footer .inner3 p { margin-bottom: 8rem; font-size: 11rem; letter-spacing: 0.07em; }
footer .inner3 h1 { margin-right: -2rem; font-size: 15rem; letter-spacing: 0.08em; }


/* contents
---------------------------------------------------------------------------*/
#mainContents { display: block; width: 100%; margin: 0 auto; padding: 0; text-align: left; }
/*#topContents { padding-top: 110rem; }*/
#newsContents { padding-top: 150rem; }
#newsContents.single,
#errorContents { padding-top: 170rem; }
.contents,
.fade-in,
.fade-in-title,
.fade-in-inner { opacity: 0; }


/* news archive
---------------------------------------------------------------------------*/
.news-list article { background: url(img/share/line-dot.svg) repeat-x left bottom / 7rem auto; }

.news-list article a {
	display: block;
	background: url(img/share/ico-arrow-down-yellow.svg) no-repeat right 25rem center / 36rem auto;
	padding: 19rem 5rem 18rem;
}

#topContents .news-list article a { background: none; }

.news-list time {
	display: block;
	margin: 0 0 7rem 1rem;
	color: var(--color-red-light);
	font-family: var(--font-gothic-en);
	font-size: 12rem;
	letter-spacing: 0.12em;
}

.news-list h3 {
	font-size: 16rem;
	line-height: 1.6;
	letter-spacing: 0.06em;
	text-decoration: underline;
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.1em;
	opacity: 0.8;
}

.top-news .news-list h3 { font-size: 15rem; }


/* news single
---------------------------------------------------------------------------*/
.news-area {
	margin: 0 auto 100rem;
	padding: 0 30rem;
}

/* .news-title
------------------------------------*/
.news-title,
.error-title { margin-bottom: 45rem; text-align: center; }

.news-title time,
.error-title em {
	display: inline-block;
	color: var(--color-red-light);
	font-family: var(--font-gothic-en);
	font-size: 13rem;
	letter-spacing: 0.13em;
}

.news-title h1,
.error-title h1 {
	margin-bottom: 10rem;
	color: var(--color-green);
	font-size: 19rem;
	line-height: 1.7;
	letter-spacing: 0.1em;
}

/* .news-main
------------------------------------*/
.news-main > * { font-family: var(--font-gothic-jp) !important; }

.news-main, .news-main h2, .news-main p {
	font-size: 15rem;
	line-height: 2;
	letter-spacing: 0.06em;
}

.news-main h2 { margin: 45rem 0 15rem; color: var(--color-green); font-size: 17rem; letter-spacing: 0.08em; }
.news-main > h2:first-child { margin-top: 0; }

.news-main p {
	margin-bottom: 24rem;
	text-align: justify;
	word-break: break-all;
}

.news-main p:last-child { margin-bottom: 0; }
.news-main a { text-decoration: underline; word-break: break-all; }
.news-main strong { font-weight: bold; }
.news-main em { font-style: italic; }
.news-main del { text-decoration: line-through; }

.news-main img {
	display: block;
	max-width: calc(100% + 0rem);
	height: auto;
	margin: 30rem 0 30rem !important;
}

.news-main .wp-caption { max-width: 100%; margin-bottom: 40rem; }
.news-main .wp-caption-text { margin: -30rem 0 0; font-size: 12rem; }

.news-main .gallery > dl { width: 49.5% !important; margin-right: 1% !important; }
.news-main .gallery > dl:nth-child(even) { margin-right: 0 !important; }
.news-main .gallery a { pointer-events: none; }
.news-main .gallery img { border: none !important; width: 100% !important; margin: 0 !important; }

.news-main ul, .news-main ol { margin: 30rem 0 30rem; }
.news-main ul li { list-style: disc; margin: 0 0 6rem 18rem; }
.news-main ol li { list-style: decimal; margin: 0 0 6rem 24rem; }
.news-main ul li:last-of-type,
.news-main ol li:last-of-type { margin-bottom: 0; }

.news-main blockquote { background: #F5F5F5; margin: 40rem 0; padding: 28rem 36rem; text-align: justify; }
.news-main blockquote p { font-size: 14rem; line-height: 1.9; }

.post-main iframe { width: 100%; height: calc(85vw * 0.5625); }

/* .news-table
------------------------------------*/
.news-table { margin-top: 60rem; }

.news-table h3 {
	margin: 60rem 0 20rem;
	color: var(--color-green);
	font-size: 17rem;
	line-height: 1.6;
	letter-spacing: 0.08em;
}

.news-table h3:first-child { margin-top: 0; }

.news-table table {
	box-sizing: border-box;
	background: url(img/share/line-dot.svg) repeat-x left top / 9rem auto;
	width: calc(100% + 10rem);
	margin: 0 -5rem 40rem;
	font-size: 15rem;
	line-height: 1.75;
	letter-spacing: 0.06em;
}

.news-table tr { background: url(img/share/line-dot.svg) repeat-x left bottom / 9rem auto; }

.news-table th,
.news-table td { padding-top: 15rem; padding-bottom: 17rem; }

.news-table th {
	position: relative;
	box-sizing: border-box;
	min-width: 105rem;
	padding-right: 20rem;
	padding-left: 5rem;
	text-align: left;
	vertical-align: top;
}

.news-table td { box-sizing: border-box; width: 100%; }
.news-table table.right td { text-align: right; }

.news-table-attention {
	margin-top: -22rem;
	font-size: 15rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

/* .news-link
------------------------------------*/
.news-table + .news-link { margin-left: -5rem; }
.news-link { margin-top: 30rem; }
.news-link li { display: inline-block; margin: 0 12rem 14rem 0; }
.news-link a { padding: 13rem 23rem 15rem 26rem; font-size: 15rem; }

/* .news-other
------------------------------------*/
.news-other { margin: 160rem auto 0; }


/* .wp-pagenavi
---------------------------------------------------------------------------*/
.wp-pagenavi {
	overflow: hidden;
	margin: 75rem 0 0;
	font-size: 16rem;
	text-align: center;
}

.wp-pagenavi a,
.wp-pagenavi .current {
	display: inline-block;
	position: relative;
	background-color: var(--color-bg-white);
	border-radius: 50%;
	width: 36rem;
	height: 36rem;
	margin: 0 4rem;
	padding: 9rem 0 0;
	white-space: nowrap;
}

.wp-pagenavi .current { background-color: var(--color-red-light); color: #FFFFFF; }

.wp-pagenavi .extend,
.wp-pagenavi a.first,
.wp-pagenavi a.last { display: none; }

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
	background-color: none;
	background: url(img/share/ico-arrow-line-black.svg) no-repeat center center / 10rem auto;
	border-radius: 0;
	width: 11rem;
	text-indent: -9999rem;
}

.wp-pagenavi a.previouspostslink { margin-right: 24rem; transform: scaleX(-1); }
.wp-pagenavi a.nextpostslink { margin-left: 18rem; }


/* page top
---------------------------------------------------------------------------*/
#topContents > .bg-yellow {
	position: relative;
	margin: 100em 0 0;
	padding: 0 0 135rem;
	font-size: var(--size-max-over);
}

#topContents > .bg-yellow:before {
	display: block;
	content: '';
	position: absolute;
	top: -98em;
	left: -20rem;
	background: url(img/top/bg-color1@2x.png) no-repeat left top / cover;
	width: calc(100% + 20rem);
	height: 98em;
	z-index: 0;
}

#topContents > .bg-yellow:after {
	display: block;
	content: '';
	position: absolute;
	bottom: -1rem;
	left: 0;
	background: url(img/top/bg-color2_sp.png) no-repeat left bottom / cover;
	width: 100%;
	height: 105em;
	z-index: 0;
}

#topContents > .bg-yellow-green { padding: 37rem 0 90rem; color: #FFFFFF; }


/* .top-main
------------------------------------*/
.top-main {
	position: relative;
	overflow: hidden;
	width: 100%;
	margin: 0;
	padding: 130rem 0 45rem;
	font-size: var(--size-max-over);
}


/* .top-main-img1
------------------------------------*/
.top-main-img1 { position: relative; width: calc(100% + 95rem); margin: 0 -55rem 50rem -40rem; z-index: 2; }
.slider-top1 figure {
	mask-image: url(img/top/mask-top-slide1_sp.png);
	mask-size: 0%;
	mask-position: center center;
	mask-repeat: no-repeat;
}

/*.top-main-img1 .img1 img { transform: translateY(-5rem); }*/
.top-main-img1 .img2 img { transform: translateY(-10rem) !important; }
.top-main-img1 .img3 img { transform: translateY(-12rem) !important; }
.top-main-img1 .img4 img { transform: translateY(-12rem) !important; }
.top-main-img1 .img5 img { transform: translateY(-8rem) !important; }

.top-main.anime-finish .slider-top1 figure { animation: slider-top1-mask .8s var(--easeInOutQuart) .7s forwards; }
@keyframes slider-top1-mask { to { mask-size: 100%; } }

.slider-top1 figure img { transform: translateY(-5rem) scale(0.6); }
.top-main.anime-finish .slider-top1 figure img { animation: slider-top1-img 1.4s var(--easeOutQuart) .7s forwards; }
@keyframes slider-top1-img { to { transform: translateY(-5rem) scale(1); } }


/* .top-main-img1 .arch
------------------------------------*/
.top-main-img1 .arch-wrap { position: absolute; top: -40em; left: 226em; z-index: 1; transform: scale(-0.6,0.6) rotate(2deg); }
.top-main-img1 .arch { position: absolute; top: 0; right: 0; z-index: 1; transform-origin: right top; }
.top-main-img1 .arch-line { overflow: hidden; position: relative; }
.top-main-img1 .arch-line .line { position: absolute; top: 0; right: 0; width: 172px; height: auto; }
.top-main-img1 .arch-line .path { width: 0; height: auto; opacity: 0; }

.top-main-img1 .arch .circle {
	position: absolute;
	top: 4px;
	right: 150px;
	offset-path: path("M179.048 26.2201C159.651 10.1944 133.979 0.981738 106.234 2.2365C60.8611 4.28849 18.5 33.5 2.00041 95.4999");
  offset-rotate: 0deg;
  offset-distance: 0;
	opacity: 0;
}

.top-main.anime-finish .top-main-img1 .arch-line .path { animation: top-main-img1-arch-line .6s var(--easeOutCubic) .7s forwards; }
@keyframes top-main-img1-arch-line { to { width: 172px; } }

.top-main-img1 .arch .circle img { width: 23px; }
.top-main.anime-finish .top-main-img1 .arch .circle { animation: top-main-img1-arch-circle .6s var(--easeOutCubic) .7s forwards; }
@keyframes top-main-img1-arch-circle { to { offset-distance: 100%; opacity: 1; } }


/* .top-main-img2
------------------------------------*/
.top-main-img2 { position: absolute; top: 440em; right: -56em; width: 216em; z-index: 0; }
.slider-top2 figure {
	mask-image: url(img/top/mask-top-slide2_sp.png);
	mask-size: 0;
	mask-position: center center;
	mask-repeat: no-repeat;
}

.top-main-img2 .img1 img { margin: -6rem 0 0 -4rem; }
.top-main-img2 .img2 img { margin: 0 0 0 -8rem; transform: none !important; }
.top-main-img2 .img3 img { margin: 0 0 0 -8rem; transform: none !important; }
.top-main-img2 .img4 img { margin: 0 0 0 -10rem; transform: none !important; }
.top-main-img2 .img5 img { margin: 0 0 0 -17rem; transform: none !important; }

.top-main.anime-finish .slider-top2 figure { animation: slider-top2-mask .8s var(--easeOutQuart) 1.1s forwards; }
@keyframes slider-top2-mask { to { mask-size: 100%; } }

.slider-top2 figure img { transform: scale(0.9); }
.top-main.anime-finish .slider-top2 figure img { animation: slider-top2-img 1.4s var(--easeOutQuart) 1.1s forwards; }
@keyframes slider-top2-img { to { transform: scale(1); } }


/* .top-main-img2 .arch
------------------------------------*/
.top-main-img2 .arch-wrap { position: absolute; top: 34em; left: -128em; transform: scale(0.6) rotate(-2deg); }
.top-main-img2 .arch { position: absolute; top: 0; left: 0; width: 180px; z-index: 1; transform-origin: left top; }
.top-main-img2 .arch-line { overflow: hidden; position: relative; }
.top-main-img2 .arch-line .line { position: absolute; top: 0; right: 0; width: 180px; height: auto; }
.top-main-img2 .arch-line .path { width: 0; height: auto; opacity: 0; }

.top-main-img2 .arch .circle {
	position: absolute;
	top: 32px;
	left: -4px;
	offset-path: path("M172.5 103.5C167.5 61.5 144.32 33.4747 120.767 18.7573C82.2495 -5.31119 34.8119 -2.27207 2.31992 22.9805");
  offset-rotate: 0deg;
  offset-distance: 100%;
	opacity: 0;
}

.top-main.anime-finish .top-main-img2 .arch-line .path { animation: top-main-img2-arch-line .8s var(--easeOutCubic) 1s forwards; }
@keyframes top-main-img2-arch-line { to { width: 180px; } }

.top-main-img2 .arch .circle img { width: 23px; }
.top-main.anime-finish .top-main-img2 .arch .circle { animation: top-main-img2-arch-circle .7s var(--easeOutCubic) 1s forwards; }
.top-main.anime-finish .top-main-img2 .arch .circle img { animation: top-main-img2-arch-circle2 .9s linear 1.6s forwards; }
@keyframes top-main-img2-arch-circle { to { offset-distance: 0%; opacity: 1; } }
@keyframes top-main-img2-arch-circle2 {
  0% { transform: scale(1); }
	10% { transform: scale(0.8); }
	25% { transform: scale(1.2); }
	55% { transform: scale(1); }
	100% { transform: scale(1); }
}


/* .slider-top1 .slick-dots
------------------------------------*/
.slider-top1 .slick-dots { position: absolute; top: 552rem; right: 62rem; z-index: 10; }
.slider-top1 .slick-dots li { position: relative; width: 24rem; height: 24rem; }
.slider-top1 .slick-dots li:first-of-type:last-of-type { opacity: 0 !important; }

.slider-top1 .slick-dots button {
	position: relative;
	width: 100%;
	height: 100%;
	text-indent: -9999rem;
	transition: .15s ease-out;
}

.slider-top1 .slick-dots button:after {
	display: block;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #C3C3C3;
	border-radius: 50%;
	width: 6rem;
	height: 6rem;
}

.slider-top1 .slick-dots .slick-active button:after { background: #FF8282; }


/* .top-main txt
------------------------------------*/
.top-main-txt { position: relative; padding-left: 33rem; z-index: 1; }
.top-main-txt h3 { margin-bottom: 28em; }
.top-main-txt h3 img { width: 137em; }
.top-main-txt p { line-height: 2.2; letter-spacing: 0.11em; }

.top-main > h2,
.top-main-news { display: none; }

.top-main.anime-finish .slider-top1 .slick-dots { animation: top-main-fade .2s linear 1.4s forwards; }
@keyframes top-main-fade { to { opacity: 1; } }

.top-main-txt h3,
.top-main-txt p { transform: translateX(20rem); opacity: 0; }
.top-main.anime-finish .top-main-txt h3 { animation: top-main-fade2 .7s var(--easeOutCubic) 1.4s forwards; }
.top-main.anime-finish .top-main-txt p { animation: top-main-fade2 .7s var(--easeOutCubic) 1.55s forwards; }
@keyframes top-main-fade2 { to { transform: translateX(0); opacity: 1; } }


/* .top-philosophy
------------------------------------*/
.top-philosophy {
	position: relative;
	margin-bottom: 55rem;
	padding-top: 58rem;
}

.top-philosophy .pic1,
.top-philosophy .pic2 { display: none; }

.top-philosophy .inner1 { margin: 0 auto 40rem; }

.top-philosophy .inner1 h2 {
	margin-bottom: 14rem;
	text-align: center;
	white-space: nowrap;
}

.top-philosophy .inner1 h2 em {
	display: inline-block;
	position: relative;
	margin-bottom: 28rem;
	color: var(--color-green);
	font-family: var(--font-gothic-en);
	font-size: 15rem;
	letter-spacing: 0.3em;
	transform: translateX(2rem);
}

.top-philosophy .inner1 h2 em:after {
	display: block;
	content: '';
	position: absolute;
	bottom: -6rem;
	left: 0;
	background-color: var(--color-green);
	width: calc(100% - 2rem);
	height: 1px;
}

.top-philosophy .inner1 h2 strong {
	display: block;
	color: var(--color-green);
	font-family: var(--font-gothic-jp-b);
	font-size: 20rem;
	line-height: 1.9;
	letter-spacing: 0.12em;
}

.top-philosophy .inner1 p,
.top-philosophy .inner2 p {
	margin-bottom: 14rem;
	padding: 0 37.5rem;
	line-height: 1.95;
	letter-spacing: 0.06em;
	text-align: justify;
}

.top-philosophy .inner2 { text-align: center; }

.top-philosophy .inner2 h3 {
	margin-bottom: 16rem;
	color: var(--color-red);
	font-family: var(--font-gothic-jp-b);
	font-size: 20rem;
	line-height: 1.8;
	letter-spacing: 0.14em;
}

.top-philosophy .inner2 p br { display: none; }

/* .top-news
------------------------------------*/
.top-news {
	position: relative;
	background-color: var(--color-bg-white);
	border-radius: 25rem;
	width: calc(100% - 56rem);
	margin: 0 auto;
	padding: 35rem 25rem 32rem;
	z-index: 1;
}

.top-news h2 {
	margin: 0 0 25rem 5rem;
	color: var(--color-green);
	font-size: 18rem;
	letter-spacing: 0.14em;
}

.top-news .index { margin: 25rem 2rem 0; }
.top-news .index a { display: block; }

/* .top-support
------------------------------------*/
.top-support { position: relative; margin: 0 auto 100rem; }

.support-title { margin-bottom: 55rem; }
.support-title h2 { width: 228rem; margin: 0 auto 36rem; }
.support-title h2 img { width: 100%; }

.support-title p {
	padding: 0 59rem;
	font-size: 16rem;
	line-height: 2;
	letter-spacing: 0.06em;
	text-align: justify;
}

.support-list { padding: 0 40rem; }
.support-list .inner { position: relative; margin-bottom: 55rem; z-index: 1; }

.support-list figure { margin: 0 8rem -20rem;  }
.support-list figure img { border-radius: 8rem; }

.support-list h3,
.support-list p {
	display: inline-block;
	background-color: #FFFFFF;
	border: 1rem solid #000000;
	color: var(--color-text);
	font-family: var(--font-gothic-jp-b);
}

.support-list h3 {
	margin-bottom: -1rem;
	padding: 9rem 15rem 11rem 17rem;
	font-size: 17rem;
	line-height: 1;
	letter-spacing: 0.14em;
}

.support-list h4 {
	position: absolute;
	top: 0;
	left: -11rem;
	font-family: var(--font-gothic-en);
	font-size: 11rem;
	letter-spacing: 0.18em;
	font-feature-settings: 'palt' 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	white-space: nowrap;
}

.support-list p {
	padding: 11rem 16rem 14rem 18rem;
	font-size: 14rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
	text-align: justify;
}

.top-support > h3 {
	color: var(--color-bg-white);
	font-family: var(--font-gothic-jp-b);
	font-size: 17rem;
	line-height: 2.1;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-align: center;
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.35em;
}

/* .top-day
------------------------------------*/
.top-day {
	position: relative;
	margin: 0 auto 95rem;
	text-align: center;
}

.top-day h2 {
	display: inline-block;
	position: relative;
	margin: 0 0 58rem;
	padding: 0 0 0 82rem;
	text-align: center;
	white-space: nowrap;
}

.top-day h2 i { position: absolute; top: -4rem; left: 0; }
.top-day h2 i img { width: 64rem; }

.top-day h2 em {
	display: block;
	margin: 0 0 13rem;
	font-family: var(--font-gothic-en);
	font-size: 9rem;
	letter-spacing: 0.25em;
}

.top-day h2 strong {
	display: block;
	font-size: 22rem;
	letter-spacing: 0.28em;
}

.top-day .schedule {
	overflow-x: scroll;
	width: 100vw;
	padding-right: 20rem;
}
.top-day .schedule img { width: 815rem; }

.top-other-support .link { margin: 45rem 0 0; }

.top-other-support .link .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #1B6412;
	border-radius: 10rem;
	z-index: -1;
}

.top-other-support .link a {
	display: block;
	position: relative;
	color: #FFFFFF;
	white-space: nowrap;
	padding: 16rem 18rem 19rem 25rem;
	z-index: 1;
}

.top-other-support .link .ico {
	display: inline-block;
	margin-right: 16rem;
}

.top-other-support .link .ico img { width: 34rem; }

.top-other-support .link a span {
	display: inline-block;
	margin-right: 13rem;
	font-family: var(--font-gothic-jp-b);
	font-size: 20rem;
	letter-spacing: 0.14em;
	text-decoration: underline;
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.3em;
	transform: translateY(-7rem);
}

.top-other-support .link .arrow { display: inline-block; transform: translateY(2rem); }
.top-other-support .link .arrow img { width: 31rem; }

/* .top-other-support
------------------------------------*/
.top-other-support { padding: 0 37.5rem; }

.top-other-support h2 {
	margin-bottom: 40rem;
	font-family: var(--font-gothic-jp-b);
	font-size: 22rem;
	letter-spacing: 0.12em;
	text-align: center;
}

.other-support-list .inner:not(:last-of-type) { margin-bottom: 60rem; }
.other-support-list figure { margin-bottom: 30rem; }

.other-support-list h3 {
	margin-bottom: 20rem;
	font-size: 19rem;
	letter-spacing: 0.12em;
	text-align: center;
}

.other-support-list p {
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

/* .top-building
------------------------------------*/
.top-building {
	margin: 0 auto 70rem;
	padding: 125rem 37.5rem 0;
	text-align: center;
}

.top-building > h2 {
	margin-bottom: 20rem;
	color: var(--color-green);
	font-family: var(--font-gothic-jp-b);
	font-size: 25rem;
	line-height: 1.6;
	letter-spacing: 0.14em;
}

.top-building > h2 span { display: inline-block; position: relative; }
.top-building > h2 i { position: absolute; top: -60rem; right: 12rem; }
.top-building > h2 i img { width: 217rem; }

.top-building > p {
	font-size: 15rem;
	line-height: 2.05;
	letter-spacing: 0.015em;
	text-align: justify;
}

.top-building > p br { display: none; }

.building-list { margin-top: 40rem; text-align: left; }
.building-list .inner { margin-bottom: 30rem; }
.building-list figure { margin-bottom: 25rem; }

.building-list h3 {
	margin-bottom: 12rem;
	color: var(--color-yellow-green);
	font-family: var(--font-gothic-jp-b);
	font-size: 17rem;
	letter-spacing: 0.12em;
}

.building-list p {
	font-size: 14rem;
	line-height: 1.8;
	letter-spacing: 0.05em;
	text-align: justify;
}

/* .top-lunch
------------------------------------*/
.top-lunch { margin: 0 auto 110rem; }

.top-lunch > figure {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 0 17rem 40rem;
}

.top-lunch > figure picture:nth-of-type(1) { width: 100%; margin-bottom: 21rem; }
.top-lunch > figure picture:nth-of-type(2),
.top-lunch > figure picture:nth-of-type(3) { width: 47%; }

.top-lunch > .txt { text-align: center; }

.top-lunch > .txt h2 {
	margin-bottom: 20rem;
	color: var(--color-green);
	font-family: var(--font-gothic-jp-b);
	font-size: 22rem;
	line-height: 1.75;
	letter-spacing: 0.14em;
}

.top-lunch > .txt .fade-in-inner > p { padding: 0 37.5rem; }

.top-lunch > .txt p {
	font-size: 15rem;
	line-height: 1.9;
	letter-spacing: 0.05em;
	text-align: justify;
}

.top-lunch > .txt p br { display: none; }

.top-lunch .chef {
	background-color: #FFFFFF;
	border-radius: 20rem;
	margin: 48rem 20.5rem 0;
	padding: 35rem 37rem 40rem;
}

.top-lunch .chef figure { position: relative; width: 180rem; margin: 0 auto 22rem; }
.top-lunch .chef figure .img { width: 100%; }

.top-lunch .chef figure .pic {
	display: block;
	position: absolute;
	top: 150rem;
	left: 50%;
	transform: translateX(-50%);
	width: 196rem;
	margin-left: 4rem;
}

.top-lunch .chef figcaption {
	display: block;
	margin-top: 40rem;
	color: var(--color-yellow-green);
	font-family: var(--font-gothic-jp-b);
	font-size: 18rem;
	letter-spacing: 0.1em;
	white-space: nowrap;
	text-decoration: underline;
	text-decoration-thickness: 1rem;
	text-underline-offset: 0.3em;
}

.top-lunch .chef .txt { text-align: left; transform: translateY(2rem); }

.top-lunch .chef .txt p {
	margin-bottom: 12rem;
	line-height: 1.8;
	letter-spacing: 0.06em;
}

/* .top-slider-btm
------------------------------------*/
.top-slider-btm { overflow: hidden; width: 100%; }

.scroll-img { display: flex; align-items: flex-start !important; }
.scroll-img figure { margin-right: 20rem; }
.scroll-img figure img { border-radius: 6rem; }

.scroll-img figure.img1 { width: 145rem; min-width: 145rem; margin-top: 63rem; }
.scroll-img figure.img2 { width: 145rem; min-width: 145rem; margin-top: 81rem; }
.scroll-img figure.img3 { width: 145rem; min-width: 145rem; margin-top: 0rem; }
.scroll-img figure.img4 { width: 145rem; min-width: 145rem; margin-top: 99rem; }
.scroll-img figure.img5 { width: 145rem; min-width: 145rem; margin-top: 18rem; }
.scroll-img figure.img6 { width: 145rem; min-width: 145rem; margin-top: 118rem; }
.scroll-img figure.img7 { width: 180rem; min-width: 180rem; margin-top: 54rem; }
.scroll-img figure.img8 { width: 145rem; min-width: 145rem; margin-top: 96rem; }
.scroll-img figure.img9 { width: 216rem; min-width: 216rem; margin-top: 18rem; }


/* page news
---------------------------------------------------------------------------*/

/* .news-head
------------------------------------*/
.news-head {
	position: relative;
	margin-bottom: 40rem;
	text-align: center;
}

.news-head h1 {
	margin-bottom: 17rem;
	font-size: 23rem;
	line-height: 1.7;
	letter-spacing: 0.14em;
	text-align: right;
	padding-right: 42rem;
}

.news-head h1 a { color: var(--color-red-light); }

.news-head em,
.news-head .pic { display: none; }

/* .news-list-wrap
------------------------------------*/
.news-list-wrap:not(.top-news) {
	background: none;
	width: 100%;
	margin: 0 auto;
	padding: 0 17.5rem;
}

.news-list-wrap:not(.top-news) .news-list article {
	background: none;
	margin-bottom: 8rem;
}

.news-list-wrap .news-list article a {
	display: block;
	padding: 21rem 86rem 18rem 25rem;
}

.news-list-wrap:not(.top-news) .news-list article a {
	background-color: var(--color-bg-white);
}

.news-list-wrap.top-news {
	border-radius: 20rem;
	width: calc(100% - 35rem);
}

.news-list-wrap.top-news .news-list article a {
	background-position: right 5rem center;
	padding-right: 60rem;
	padding-left: 5rem;
}


/* page error
---------------------------------------------------------------------------*/
#errorContents .contents { text-align: center; }
#errorContents .error-txt { padding: 0 37.5rem; }
#errorContents .error-txt p { line-height: 1.9; letter-spacing: 0.04em; text-align: justify; }
#errorContents .error-txt p br { display: none; }
#errorContents .error-txt a { text-decoration: underline; text-decoration-thickness: 1rem; text-underline-offset: 0.1em; }


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

}