/* --------------------------------------------------------------------------------
reset
-------------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
	font: inherit;
	border: none;
	margin: 0px;
	padding: 0px;
}
html {
	-webkit-text-size-adjust: none;
	-webkit-tap-highlight-color: transparent;
}
a {
	text-decoration: none;
	color: inherit;
}
ul,
ol {
	list-style: none;
}
table {
	border-collapse: collapse;
}
iframe,
img,
svg,
video {
	display: block;
}
img {
	max-width: 100%;
	height: auto;
}



/* --------------------------------------------------------------------------------
essential
-------------------------------------------------------------------------------- */

html {
	font-size: 16px;
}
body {
	text-align: justify;
	overflow-wrap: break-word;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	font-feature-settings: "palt";
	line-height: 2rem;
	color: #555555;
	letter-spacing: 0.05em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
a.underline {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
a.color {
	transition: 0.25s color ease;
}
a.color:hover {
	color: #9d9d9d;
}
h1 {
	font-size: 1.75rem;
}
h2 {
	font-size: 1.5rem;
}
h3 {
	font-size: 1.25rem;
}
h4,
h5,
h6 {
	font-size: 1rem;
}
p.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
p:empty:before {
	content: none;
}
span.required {
	color: #7ebdc3;
}
*.indent {
	text-indent: -1em;
	padding-left: 1em;
}



/* --------------------------------------------------------------------------------
form
-------------------------------------------------------------------------------- */

input:where([type=text], [type=email], [type=number], [type=password], [type=search], [type=button], [type=submit]),
button,
textarea,
select {
	max-width: 100%;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	outline: none;
	border-radius: 5px;
	appearance: none;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
textarea,
select {
	vertical-align: top;
	color: #555555;
	border: none;
	background-color: #efefef;
}
input:where([type=text], [type=email], [type=number], [type=password], [type=search]),
select {
	height: 50px;
	padding: 0px 15px;
}
input:where([type=button], [type=submit]),
button {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 50px;
	text-align: center;
	font-weight: 500;
	color: #ffffff;
	cursor: pointer;
	background-color: #e89f92;
	transition: 0.25s background-color ease;
}
input:where([type=button], [type=submit]):hover,
button:hover {
	background-color: #555555;
}
input:where([type=radio], [type=checkbox]),
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	width: 25px;
	height: 25px;
}
input:where([type=radio], [type=checkbox]),
label.alternate {
	margin-right: 5px;
}
input:where([type=radio], [type=checkbox]) {
	position: relative;
	vertical-align: middle;
	transform: translateX(-9999px);
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate {
	cursor: pointer;
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	position: absolute;
	content: "";
}
input:where([type=radio], [type=checkbox])::before,
input:where([type=radio], [type=checkbox])::after {
	transform: translate(9999px, -1px);
}
input:where([type=radio], [type=checkbox])::before,
label.alternate input:where([type=radio], [type=checkbox]) + span {
	background-color: #efefef;
}
input:where([type=radio], [type=checkbox])::after,
label.alternate input:where([type=radio], [type=checkbox]) + span::before {
	opacity: 0;
	transition: 0.25s opacity ease;
}
input:where([type=radio], [type=checkbox]):checked::after,
label.alternate input:where([type=radio], [type=checkbox]):checked + span::before {
	opacity: 1;
}
input[type=radio]::before,
input[type=radio]::after,
label.alternate input[type=radio] + span,
label.alternate input[type=radio] + span::before {
	border-radius: 50%;
}
input[type=radio]::after,
label.alternate input[type=radio] + span::before {
	width: 12px;
	height: 12px;
	left: calc(50% - calc(12px * 0.5));
	top: calc(50% - calc(12px * 0.5));
	background-color: #e89f92;
}
input[type=checkbox]::before,
label.alternate input[type=checkbox] + span {
	border-radius: 5px;
}
input[type=checkbox]::after,
label.alternate input[type=checkbox] + span::before {
	width: 10px;
	height: 15px;
	left: calc(calc(50% - calc(10px * 0.5)) + 1px);
	top: calc(50% - calc(15px * 0.5));
	border-right: 2px solid #e89f92;
	border-bottom: 2px solid #e89f92;
}
input[type=checkbox]::after {
	transform: translate(calc(9999px - 1px), -3px) rotate(45deg);
}
@-moz-document url-prefix() {
	input[type=radio],
	input[type=checkbox] {
		transform: translate(0px, -1px);
	}
}
label {
	display: inline-block;
	vertical-align: text-top;
}
label.alternate input:where([type=radio], [type=checkbox]) {
	display: none;
}
label.alternate input:where([type=radio], [type=checkbox]) + span {
	display: block;
	position: relative;
	cursor: pointer;
}
label.alternate input[type=checkbox] + span::before {
	transform: translate(-1px, -3px) rotate(45deg);
}
textarea {
	padding: 10px 15px;
}
select {
	padding-right: 40px;
	background-image: url(../images/arrow-select.svg);
	background-repeat: no-repeat;
	background-position: right 15px center;
	background-size: auto 10px;
}
::placeholder {
	color: #9d9d9d;
}
form#searchform label.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}



/* --------------------------------------------------------------------------------
icon
-------------------------------------------------------------------------------- */

@font-face {
	font-family: "icon";
	src: url("../fonts/icon.woff") format("woff");
	font-weight: normal;
	font-style: normal;
}
i.icon {
	font-family: "icon";
	line-height: 1em;
}
i.icon-tel::before {
	content: "\e900";
}
i.icon-mail::before {
	content: "\e901";
}
i.icon-download::before {
	content: "\e902";
}



/* --------------------------------------------------------------------------------
misc
-------------------------------------------------------------------------------- */

br.small {
	display: none;
}
br.large {
	display: inline;
}
img.small {
	display: none;
}
img.large {
	display: block;
}
hr {
	height: 0px;
	border: none;
	border-bottom: 1px solid #efefef;
	margin: 20px 0px;
}
iframe:where([src*="youtube.com"], .wp-embedded-content),
video {
	width: 100%;
}
iframe[src*="youtube.com"],
video {
	aspect-ratio: 16 / 9;
	height: auto;
}
mark {
	margin: 0px 5px;
	padding: 0px 5px;
	background-color: #f8f8f8;
	border-radius: 5px;
}



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

div#page {
	position: relative;
	overflow: hidden;
}
body:not(.home) div#page {
	padding-top: 100px;
}
div#trigger {
	position: absolute;
	top: 50svh;
	pointer-events: none;
}
h2.headline {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
}
h2.headline span {
	font-size: 1rem;
}
p.button-default,
p.button-default > * {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
p.button-default {
	text-align: center;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
}
p.button-default > *,
p.button-default > * > * {
	position: relative;
}
p.button-default > * {
	align-items: center;
	width: 240px;
	height: 50px;
	color: #e89f92;
	border: 1px solid #e89f92;
	background-color: #ffffff;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
p.button-default > *:hover {
	background-color: #fff3f0;
}
p.button-wide > *,
p.button-large > * {
	width: 320px;
}
p.button-large,
p.button-alternate {
	font-size: 1rem;
}
p.button-large > * {
	height: 80px;
	border-radius: 40px;
}
p.button-alternate > * {
	justify-content: flex-start;
	height: 80px;
	padding-left: 20px;
	border-radius: 5px;
}
p.button-arrow > *::before {
	display: inline-block;
	width: 6.5px;
	height: 9px;
	margin-right: 10px;
	background-color: #e89f92;
	content: "";
	transition: 0.25s background-color ease;
	transform: translateY(1px);
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
p.button-default i.icon {
	font-weight: 400;
}
p.button-default i.icon-download {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 30px;
	height: 30px;
	right: 9px;
	top: calc(50% - 15px);
	font-size: 0.75rem;
	color: #ffffff;
	background-color: #e89f92;
	border-radius: 50%;
	transition: 0.25s color ease;
}
p.button-default > *:hover i.icon-download {
	color: #fff3f0;
}
p.button-large i.icon-download,
p.button-alternate i.icon-download {
	width: 40px;
	height: 40px;
	right: 19px;
	top: calc(50% - 20px);
	font-size: 1rem;
}
p:where(.diagram, .image) {
	overflow: hidden;
}
p:where(.diagram, .illust, .image) img {
	width: 100%;
}
p.image-zoom img {
	transition: 0.375s transform ease;
}
a:hover p.image-zoom img,
p.image-zoom a:hover img {
	transform: scale(1.0375);
}
p.illust-move-01 img {
	animation: illust-move-01 ease-in-out infinite forwards;
}
p.illust-move-02 img {
	animation: illust-move-02 ease-in-out infinite forwards;
}
p.illust-move-03 img {
	animation: illust-move-03 ease-in-out infinite forwards;
}
p.illust-move-04 img {
	animation: illust-move-04 ease-in-out infinite forwards;
}
p.illust-move-05 img {
	animation: illust-move-05 linear infinite forwards;
}
p.illust-move-06 img {
	animation: illust-move-06 ease-in-out infinite forwards;
}
p.illust-move-07 img {
	animation: illust-move-07 ease-in-out infinite forwards;
}
p.illust-move-08 img {
	animation: illust-move-08 ease-in-out infinite forwards;
}
p.illust-time-01 img {
	animation-duration: 4s;
}
p.illust-time-02 img {
	animation-duration: 4.5s;
}
p.illust-time-03 img {
	animation-duration: 5s;
}
p.illust-time-04 img {
	animation-duration: 5.5s;
}
p.illust-time-05 img {
	animation-duration: 6s;
}
@keyframes illust-move-01 {
	0%, 100% { transform: translate(0px, 0px); }
	50% { transform: translate(12.5px, 0px); }
}
@keyframes illust-move-02 {
	0%, 100% { transform: translate(0px, 0px); }
	50% { transform: translate(0px, 12.5px); }
}
@keyframes illust-move-03 {
	0%, 100% { transform: translate(0px, 0px); }
	50% { transform: translate(10px, 10px); }
}
@keyframes illust-move-04 {
	0%, 100% { transform: translate(0px, 0px); }
	50% { transform: translate(-10px, 10px); }
}
@keyframes illust-move-05 {
	0%, 100% { transform: translate(0px, 0px); }
	25% { transform: translate(7.5px, 7.5px); }
	50% { transform: translate(15px, 0px); }
	75% { transform: translate(7.5px, 7.5px); }
}
@keyframes illust-move-06 {
	0%, 100% { transform: rotate(-5deg); }
	50% { transform: rotate(5deg); }
}
@keyframes illust-move-07 {
	0%, 100% { transform: translate(0px, 0px) rotate(7.5deg); }
	50% { transform: translate(10px, 5px) rotate(-2.5deg); }
}
@keyframes illust-move-08 {
	0%, 100% { transform: translate(0px, 0px) rotate(-5deg); }
	50% { transform: translate(5px, 10px) rotate(5deg); }
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce),
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce) > * {
	opacity: 0;
	transition-duration: 1.25s;
}
*.scroll:where(.fade, .fade-slide, .fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each, .fade-each-slide, .fade-each-zoom, .fade-each-bounce).active > * {
	opacity: 1;
}
*.scroll.fade,
*.scroll.fade-each > * {
	transition-property: opacity;
	transition-timing-function: ease-in-out;
}
*.scroll.fade-slide,
*.scroll.fade-each-slide > * {
	transition-property: opacity, transform;
	transition-timing-function: ease-in-out, ease;
}
*.scroll.fade-slide-left,
*.scroll.fade-each-slide-left > * {
	transform: translate(40px, 0px);
}
*.scroll.fade-slide-right,
*.scroll.fade-each-slide-right > * {
	transform: translate(-40px, 0px);
}
*.scroll.fade-slide-up,
*.scroll.fade-each-slide-up > * {
	transform: translate(0px, 40px);
}
*.scroll.fade-slide-down,
*.scroll.fade-each-slide-down > * {
	transform: translate(0px, -40px);
}
*.scroll.fade-slide.active,
*.scroll.fade-each-slide.active > * {
	transform: translate(0px, 0px);
}
*.scroll:where(.fade-zoom, .fade-bounce),
*.scroll:where(.fade-each-zoom, .fade-each-bounce) > * {
	transition-property: opacity, transform;
}
*.scroll:where(.fade-zoom, .fade-bounce).active,
*.scroll:where(.fade-each-zoom, .fade-each-bounce).active > * {
	transform: scale(1);
}
*.scroll.fade-zoom,
*.scroll.fade-each-zoom > * {
	transition-timing-function: ease-in-out, ease;
	transform: scale(0.875);
}
*.scroll.fade-zoom.active,
*.scroll.fade-each-zoom.active > *,
*.scroll.fade-bounce.active,
*.scroll.fade-each-bounce.active > * {
	transform: scale(1);
}
*.scroll.fade-bounce,
*.scroll.fade-each-bounce > * {
	transition-timing-function: ease-in-out, linear(0, 0.016, 0.063 9.1%, 0.25, 0.563, 1, 0.813 45.5%, 0.766, 0.75, 0.766, 0.813 63.6%, 1 72.7%, 0.953, 0.938, 0.953, 1, 0.984, 1);
	transform: scale(0.75);
}
*.split-text {
	opacity: 0;
}
html.active *.split-text {
	opacity: 1;
}
*.split-text > * {
	display: inline-block;
}
*.delay-01 {
	transition-delay: calc(0.125s * 1);
}
*.delay-02 {
	transition-delay: calc(0.125s * 2);
}
*.delay-03 {
	transition-delay: calc(0.125s * 3);
}
*.delay-04 {
	transition-delay: calc(0.125s * 4);
}
*.delay-05 {
	transition-delay: calc(0.125s * 5);
}
*.delay-06 {
	transition-delay: calc(0.125s * 6);
}
*.delay-07 {
	transition-delay: calc(0.125s * 7);
}
*.delay-08 {
	transition-delay: calc(0.125s * 8);
}
*.delay-09 {
	transition-delay: calc(0.125s * 9);
}
*.delay-10 {
	transition-delay: calc(0.125s * 10);
}
div.grecaptcha-badge {
	z-index: 1;
	bottom: 140px !important;
}



/* --------------------------------------------------------------------------------
header
-------------------------------------------------------------------------------- */

header#header {
	position: relative;
	z-index: 100;
}
header#header *#logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100px;
	left: 0px;
	top: 0px;
	z-index: 10;
	padding: 0px 0px 5px 20px;
	background-color: #ffffff;
}
body.admin-bar header#header *#logo {
	top: 32px;
}
header#header *#logo a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header *#logo img {
	width: calc(394px * 0.75);
}
header#header nav#navi {
	position: fixed;
	right: 40px;
	top: 30px;
	z-index: 20;
}
body.admin-bar header#header nav#navi {
	top: 62px;
}
header#header nav#navi > ul {
	display: flex;
	flex-wrap: wrap;
}
header#header nav#navi > ul > li {
	font-size: 0.9375rem;
	font-weight: 500;
}
header#header nav#navi > ul > li:not(:last-child) {
	margin-right: 40px;
}
header#header nav#navi > ul > li:where(.home, .news, .document, .recruit) {
	display: none;
}
header#header nav#navi > ul > li > a,
header#header nav#navi > ul > li span.illust {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
header#header nav#navi > ul > li > a {
	height: 40px;
}
header#header nav#navi > ul > li span.illust {
	height: 30px;
	margin-right: 15px;
}
header#header nav#navi > ul > li span.illust img {
	transition: 0.25s transform ease;
}
header#header nav#navi > ul > li> a:hover span.illust img {
	transform: rotate(-15deg);
}
header#header nav#navi > ul > li.about span.illust img {
	width: calc(43px * 0.5);
}
header#header nav#navi > ul > li.feature span.illust img {
	width: calc(34px * 0.5);
}
header#header nav#navi > ul > li.class span.illust img {
	width: calc(49px * 0.5);
}
header#header nav#navi > ul > li.letter span.illust img {
	width: calc(61px * 0.5);
}
header#header nav#navi > ul > li.contact span.illust img {
	width: calc(54px * 0.5);
}
header#header nav#navi > ul > li div.nest {
	display: none;
}
header#header div.button-wrapper {
	display: none;
}

/* home
-------------------------------------------------------------------------------- */

body.home header#header *#logo {
	background-color: transparent;
	opacity: 0;
	transition: 0.25s background-color ease, 1.25s opacity ease-in-out;
}
body.home div.cover-01 header#header *#logo {
	opacity: 1;
}
body.home div.scroll header#header *#logo {
	background-color: #ffffff;
}
body.home header#header nav#navi {
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease;
}
body.home div:where(.cover-04, .scroll, .menu-header) header#header nav#navi {
	pointer-events: auto;
	opacity: 1;
}



/* --------------------------------------------------------------------------------
cover
-------------------------------------------------------------------------------- */

div#cover {
	position: relative;
	height: 100svh;
	min-height: 800px;
	overflow: hidden;
	background-color: #fff3f0;
}
body.admin-bar #cover {
	height: calc(100svh - 32px);
}
div#cover div.main {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	padding: 80px 0px 40px 0px;
}
body.admin-bar div#cover div.main {
	top: 32px;
}
div.main div#cover {
	visibility: hidden;
}
div#cover div.main :where(p.illust, h1) {
	position: absolute;
	z-index: 10;
}
div#cover div.main :where(p.illust, div.image, div.navi),
div#cover div.sub p#button-scroll {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div.cover-01 div#cover div.main p.illust,
div.cover-02 div#cover div.main div.image,
div.cover-03 div#cover div.main div:where(.image, .navi),
div.cover-04 div#cover div.sub p#button-scroll {
	opacity: 1;
}
div#cover div.main p.illust {
	offset-rotate: 0deg;
  animation: cover-illust 5.75s ease-in-out 1 forwards;
}
div#cover div.main p.illust-01 {
	width: 81px;
	right: 140px;
	top: 30px;
	transition-delay: calc(0.25s * 1);
  offset-path: path("M271.59,23.97C234.67-1.45,178.51-9.1,133.13,15.51,67.61,51.05,80.05,106.28.05,114.74");
}
@keyframes cover-illust {
	0% { offset-distance: 0%; }
	100% { offset-distance: 100%; }
}
div#cover div.main p.illust-02 {
	width: 85px;
	right: 10px;
	top: 190px;
	transition-delay: calc(0.25s * 2);
  offset-path: path("M254.16,72.79c-46.38,88.46-143.91,60.94-164.85,3.85C72.39,30.49,36.27,8.95.11.49");
}
div#cover div.main p.illust-03 {
	width: 49px;
	left: 240px;
	bottom: 90px;
	transition-delay: calc(0.25s * 3);
  offset-path: path("M327.12,1.7c-30,22.17-63.97,42.75-125.38,45.38-46.92,2.01-66.92-15.38-98.46-32.31S31.74-4.22.2,9.62");
}
div#cover div.main p.illust-04 {
	width: 34px;
	right: 100px;
	bottom: 190px;
	transition-delay: calc(0.25s * 4);
  offset-path: path("M201.19,20.43c58.25,88,4.01,151.58-54.75,157-65,6-95.84,1.8-130-57C-8.55,77.43-5.57,24.43,35.43.43");
}
div#cover div.main p.illust-05 {
	width: 43px;
	left: -160px;
	bottom: 230px;
	transition-delay: calc(0.25s * 5);
  offset-path: path("M28.92.32C-8.08,45.1-2.91,79.95,10.67,111.1c15.25,35,50.25,86,81.25,94,35.94,9.28,83,0,106-18s28-41,60-49");
}
div#cover div.main p.illust-06 {
	width: 48px;
	left: 160px;
	bottom: 180px;
	transition-delay: calc(0.25s * 6);
  offset-path: path("M243.37.49c-28,6-22.22,29.52-38,58-11.85,21.39-36,31-59,28s-41.59-20.88-53-33c-16-17-44.27-26.09-68-11C-4.82,61.69-3.58,87.61,8.37,138.66");
}
div#cover div.main div.image {
	position: relative;
	width: calc(100vw - 120px);
	height: calc(100svh - 160px);
	overflow: hidden;
	border-radius: 50%;
}
div#cover div.main div.image p.row,
div#cover div.main div.image p.row span {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px
}
div#cover div.main div.image p.row span {
	display: block;
	animation-duration: 6.75s;
	animation-timing-function: linear;
	animation-iteration-count: 1;
	animation-fill-mode: forwards;
}
div#cover div.main div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#cover div.main div.image p.row-top img {
	object-position: center top;
}
div#cover div.main div.image p.row span.zoom {
	animation-name: cover-image;
}
@keyframes cover-image {
	0% { transform: scale(1); }
	100% { transform: scale(1.0625); }
}
div#cover div.main div.navi {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: center;
	position: fixed;
	height: 100%;
	top: 0px;
	right: 34px;
}
div#cover div.main div.navi p.button {
	width: 6px;
	height: 6px;
	border: 1px solid #9d9d9d;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
div#cover div.main div.navi p.button:not(:last-child) {
	margin-bottom: 6px;
}
div#cover div.main div.navi p.button:hover,
div#cover div.main div.navi p.button.active {
	background-color: #9d9d9d;
}
div#cover div.main h1 {
	left: 60px;
	bottom: 160px;
}
div#cover div.main h1 span.row {
	display: flex;
	flex-wrap: wrap;
	transform-origin: left center;
}
div#cover div.main h1 span.row i {
	display: block;
	padding: 10px;
	background-color: #ffffff;
	opacity: 0;
	transition: 1s opacity ease-in-out, 1s transform ease, 1s clip-path ease;
	transform: translateX(-30px);
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
div.cover-03 div#cover div.main h1 span.row i {
	opacity: 1;
	border-radius: 5px;
	transform: translateX(0px);
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
div#cover div.main h1 span.row-01 {
	transform: rotate(-25deg);
}
div#cover div.main h1 span.row-01 i {
	transition-delay: 1.25s;
}
div#cover div.main h1 span.row-01 img {
	width: 319px;
}
div#cover div.main h1 span.row-02 {
	transform: translate(80px, -17.5px) rotate(-15deg);
}
div#cover div.main h1 span.row-02 i {
	transition-delay: 1.375s;
}
div#cover div.main h1 span.row-02 img {
	width: 372px;
}
div#cover div.sub {
	position: absolute;
	width: 100%;
	height: 180px;
	left: 0px;
	bottom: -2px;
	z-index: 1;
}
div#cover div.sub::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-color: #ffffff;
	content: "";
	transition: 1.25s transform ease;
	transform: translateY(100%);
	mask: url(../images/mask-01.svg) no-repeat center top;
	mask-size: 100% 100%;
}
div.cover-03 div#cover div.sub::before,
div#cover.sub div.sub::before {
	transform: translateY(0%);
}
div#cover div.sub p#button-scroll {
	position: absolute;
	left: calc(50% - 20px);
	bottom: 25px;
	z-index: 1;
	pointer-events: none;
	animation: button-scroll 3.75s linear infinite forwards;
}
@keyframes button-scroll {
	0% { transform: translateY(0px); }
	50% { transform: translateY(10px); }
	100% { transform: translateY(0px); }
}
div.cover-04 div#cover div.sub p#button-scroll {
	pointer-events: auto;
}
div#cover div.sub p#button-scroll a {
	display: block;
	width: 40px;
	height: 40px;
	color: #e89f92;
	transition: 0.25s color ease;
}
div#cover div.sub p#button-scroll a:hover {
	color: #9d9d9d;
}
div#cover div.sub p#button-scroll a::before,
div#cover div.sub p#button-scroll a::after {
	position: absolute;
	border-right: 1px solid #e89f92;
	content: "";
	transition: 0.25s border-color ease;
}
div#cover div.sub p#button-scroll a:hover::before,
div#cover div.sub p#button-scroll a:hover::after {
	border-color: #9d9d9d;
}
div#cover div.sub p#button-scroll a::before {
	height: 100%;
	left: calc(50% - 0.5px);
	top: 0px;
}
div#cover div.sub p#button-scroll a::after {
	width: 8px;
	height: 8px;
	left: calc(50% - 4px);
	bottom: 0px;
	border-bottom: 1px solid #e89f92;
	transform: rotate(45deg);
}



/* --------------------------------------------------------------------------------
title
-------------------------------------------------------------------------------- */

body:has(div#space-title) div#title,
div#space-title {
	height: 600px;
}
body:has(div#space-title) div#title {
	position: fixed;
	width: 100%;
	left: 0px;
	top: 100px;
}
body:has(div#space-title).admin-bar div#title {
	top: 132px;
}
body:has(div#space-title) div#title p.image {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
body:has(div#space-title) div#title.active p.image {
	opacity: 1;
}
body:has(div#space-title) div.main div#title p.image {
	visibility: hidden;
}
body:has(div#space-title) div#title p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
div#title h1 {
	text-align: center;
	font-size: 1.5rem;
	font-weight: 500;
}
body:not(:has(div#space-title)) div#title h1 {
	padding-top: 80px;
}
div#title h1 :where(span, i) {
	display: block;
}
div#title h1 i {
	opacity: 0;
	transition: 1.25s opacity ease-in-out;
}
div#title.active h1 i {
	opacity: 1;
}
div#title h1 i.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 65px;
	margin: 0px auto 10px auto;
}
div#title h1 i.text {
	transition-delay: 0.25s;
}
body.about div#title h1 i.illust img {
	width: 43px;
}
body.feature div#title h1 i.illust img {
	width: 34px;
}
body:where(.class, .schedule) div#title h1 i.illust img {
	width: 49px;
}
body.admission div#title h1 i.illust img {
	width: 53px;
}
body.letter div#title h1 i.illust img {
	width: 61px;
}
body.news div#title h1 i.illust img {
	width: 56px;
}
body.document div#title h1 i.illust img {
	width: 50px;
}
body.recruit div#title h1 i.illust img {
	width: 61px;
}
body.contact div#title h1 i.illust img {
	width: 54px;
}
body:has(div#space-title) div#title h1 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: absolute;
	width: 240px;
	height: 240px;
	left: calc(50% - 600px);
	top: 160px;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.875);
	border-radius: 50%;
}



/* --------------------------------------------------------------------------------
main
-------------------------------------------------------------------------------- */

main,
main section,
main section div.inner-section {
	position: relative;
}
main {
	z-index: 1;
	background-color: #ffffff;
}
body:has(div#space-title) main section:first-child::before,
main section.cloud::before {
	position: absolute;
	width: 100%;
	height: 180px;
	left: 0px;
	top: -178px;
	content: "";
	mask: url(../images/mask-01.svg) no-repeat center top;
	mask-size: 100% 100%;
}
body:has(div#space-title) main section:first-child::before {
	background-color: #ffffff;
}
main section.cloud {
	background: linear-gradient(180deg, #fffbce 0%, #ffffff 100%);
}
main section.cloud::before {
	background-color: #fffbce;
	transform: scaleX(-1);
}
main section div.inner-section {
	width: 1000px;
	margin: 0px auto;
	padding: 120px 0px;
}
main section.cloud div.inner-section {
	padding-top: 60px;
}
main section:where(:last-child, .cloud-top) div.inner-section {
	padding-bottom: 300px;
}
body.single main section div.inner-section {
	width: 800px;
}
main section p.illust {
	position: absolute;
	z-index: 1;
}
main nav#navi-sub ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main nav#navi-sub ul li:not(:last-child) {
	margin-right: 20px;
}
main nav#navi-sub ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 240px;
	height: 65px;
	font-weight: 500;
	line-height: 1.25rem;
	color: #e89f92;
	border: 1px solid #e89f92;
	border-radius: 32.5px;
	transition: 0.25s background-color ease;
}
main nav#navi-sub ul li a:hover,
main nav#navi-sub ul li.active a {
	background-color: #fff3f0;
}
main div.block {
	position: relative;
}
main div.block:not(:last-child) {
	margin-bottom: 120px;
}
main div.slide,
main div.slide div.image {
	position: relative;
}
main div.slide:has(div.caption) {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main div.slide div.image {
	overflow: hidden;
}
main div.slide div.image p.row {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}
main div.slide div.image p.row img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.slide div:where(.caption, .caption-alternate) p.row {
	height: 0px;
	overflow: hidden;
}
main div.slide div:where(.caption, .caption-alternate) p.row.active {
	height: auto;
}
main div.slide div.caption p.row span {
	display: block;
}
main div.slide div.navi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	position: absolute;
	width: 100%;
	bottom: -26px;
}
main div.slide div.navi p.button {
	width: 6px;
	height: 6px;
	border: 1px solid #9d9d9d;
	cursor: pointer;
	border-radius: 50%;
	transition: 0.25s background-color ease;
}
main div.slide div.navi p.button:not(:last-child) {
	margin-right: 6px;
}
main div.slide div.navi p.button:hover,
main div.slide div.navi p.button.active {
	background-color: #9d9d9d;
}
main div.slide div.pager {
	width: 90px;
}
main div.slide div.pager p.button {
	position: absolute;
	width: 40px;
	height: 40px;
	bottom: 0px;
	border: 1px solid #9d9d9d;
	cursor: pointer;
	border-radius: 20px;
	transition: 0.25s background-color ease;
}
main div.slide div.pager p.button:hover {
	background-color: #efefef;
}
main div.slide div.pager p.button::before {
	position: absolute;
	width: 8px;
	height: 8px;
	left: calc(50% - 4px);
	top: calc(50% - 4px);
	border-right: 1px solid #9d9d9d;
	border-top: 1px solid #9d9d9d;
	content: "";
	transform: translateX(-2px) rotate(45deg);
}
main div.slide div.pager p.button-prev {
	left: 0px;
	transform: scaleX(-1);
}
main div.slide div.pager p.button-next {
	right: 0px;
}
main div.slide p.number {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	height: 40px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.5rem;
	color: #9d9d9d;
}
main div.slide p.number span {
	display: block;
}
main div.slide p.number span.current::after {
	content: "/";
}
main div.banner-wrapper {
	position: relative;
	padding: 80px 0px 180px 0px;
	background-color: #fff3f0;
}
main div.banner-wrapper p.illust {
	position: absolute;
	width: 85px;
	right: calc(50% + 380px);
	top: calc(50% - 20px);
}
main div.banner {
	width: 500px;
	margin: 0px auto;
}
main div.banner a,
main div.banner div.text {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main div.banner a {
	overflow: hidden;
	border-radius: 20px;
	background-color: #ffffff;
	box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.075);
}
main div.banner p.image {
	width: 240px;
}
main div.banner div.text {
	justify-content: center;
	width: calc(100% - 240px);
}
main div.banner div.text h3 {
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	color: #e89f92;
	transition: 0.25s color ease;
}
main div.banner a:hover div.text h3 {
	color: #9d9d9d;
}
main div.banner div.text h3::before {
	display: inline-block;
	width: 6.5px;
	height: 9px;
	margin-right: 10px;
	background-color: #e89f92;
	content: "";
	transition: 0.25s background-color ease;
	transform: translateY(-1px);
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
main div.banner a:hover div.text h3::before {
	background-color: #9d9d9d;
}
main ul.bullet li,
main article.common div.body ul li {
	position: relative;
	padding-left: 20px;
}
main ul.bullet li::before,
main article.common div.body ul li::before {
	position: absolute;
	width: 6px;
	height: 6px;
	left: 4px;
	top: 14px;
	background-color: #555555;
	content: "";
	border-radius: 50%;
}
main ol.decimal,
main article.common div.body ol {
	padding-left: 20px;
}
main ol.decimal li,
main article.common div.body ol li {
	list-style-type: decimal;
}
main article.common header {
	text-align: left;
	margin-bottom: 60px;
}
main article.common header h1 {
	font-size: 1.5rem;
	font-weight: 500;
	margin-bottom: 40px;
}
main article.common header div.category-created,
main article.common header div.category-created p.category {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
main article.common header div.category-created p.category {
	justify-content: center;
	width: 75px;
	height: 25px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: #ffffff;
	margin-right: 20px;
	background-color: #e89f92;
	border-radius: 12.5px;
}
main article.common header div.category-created p.created {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main article.common div.body a {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 0.1em;
}
main article.common div.body :where(h1, h2, h3, h4, h5, h6, strong) {
	font-weight: 700;
}
main article.common div.body em {
	font-style: italic;
}
main article.common div.body blockquote {
	padding: 20px;
	background-color: #f8f8f8;
	border-radius: 5px;
}
main article.common div.body table {
	width: 100%;
}
main article.common div.body table :where(th, td) {
	border: 1px solid #efefef;
	padding: 10px;
}
main article.common div.body table th {
	background-color: #f8f8f8;
}
main article.common div.body img {
	border-radius: 20px;
}
main article.common div.body img.alignleft {
	margin-left: 0px;
	margin-right: auto;
}
main article.common div.body img.alignright {
	margin-left: auto;
	margin-right: 0px;
}
main article.common div.body img.aligncenter {
	margin-left: auto;
	margin-right: auto;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button) {
	display: inline-block;
	height: 50px;
	text-decoration: none;
	font-size: 1rem;
	line-height: 50px;
	color: #ffffff;
	padding: 0px 20px;
	background-color: #555555;
	border-radius: 25px;
	transition: 0.25s background-color ease;
}
main article.common div.body :where(a.wp-block-button__link, a.wp-block-file__button):hover {
	background-color: #9d9d9d;
}
main :where(div#pager, nav#navi-article) {
	margin-top: 80px;
}
main div#pager,
main nav#navi-article ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main div#pager {
	margin-bottom: -10px;
}
main div#pager :where(span.current, a),
main nav#navi-article ul li a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.25rem;
	color: #e89f92;
	border: 1px solid #e89f92;
	transition: 0.25s color ease, 0.25s background-color ease;
}
main div#pager span.current {
	color: #ffffff;
	background-color: #e89f92;
}
main div#pager a:hover,
main nav#navi-article ul li a:hover {
	background-color: #fff3f0;
}
main div#pager :where(span.current, a) {
	width: 40px;
	height: 40px;
	margin: 0px 5px 10px 5px;
	border-radius: 20px;
}
main div#pager a:where(.prev, .next) {
	display: none;
}
main nav#navi-article ul {
	position: relative;
	width: 480px;
	margin: 0px auto;
}
main nav#navi-article ul li:where(.prev, .list, .next) a {
	height: 50px;
	border-radius: 25px;
}
main nav#navi-article ul li:where(.prev, .next) {
	position: absolute;
	top: 0px;
}
main nav#navi-article ul li:where(.prev, .next) a {
	width: 110px;
}
main nav#navi-article ul li.prev {
	left: 0px;
}
main nav#navi-article ul li.prev a::before,
main nav#navi-article ul li.next a::after {
	display: inline-block;
	width: 6.5px;
	height: 9px;
	background-color: #e89f92;
	content: "";
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
main nav#navi-article ul li.prev a::before {
	margin-right: 10px;
	transform: translateY(1px) scaleX(-1);
}
main nav#navi-article ul li.next {
	right: 0px;
	transform: translateY(1px);
}
main nav#navi-article ul li.next a::after {
	margin-left: 10px;
}
main nav#navi-article ul li.list a {
	width: 240px;
}

/* home
-------------------------------------------------------------------------------- */

main section#home-misc div.inner-section {
	padding-top: 60px;
}
main section#home-misc div.block {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	position: relative;
}
main section#home-misc div.block:not(:last-child) {
	margin-bottom: 120px;
}
main section#home-misc div.block div.text :where(h2, p.description, p.button-default),
main section#home-misc div.block div.slide {
	opacity: 0;
	transition: 1.25s opacity ease-in-out, 1.25s transform ease;
	transform: translateY(40px);
}
main section#home-misc div.block.active div.text :where(h2, p.description, p.button-default),
main section#home-misc div.block.active div.slide {
	opacity: 1;
	transform: translateY(0px);
}
main section#home-misc div.block div.text {
	width: calc(100% - 500px);
	padding-top: 120px;
}
main section#home-misc div.block div.text h2.headline {
	color: #e89f92;
	margin-bottom: 40px;
	transition-delay: 0.5s;
}
main section#home-misc div.block div.text p.description {
	font-weight: 500;
	text-align: center;
	transition-delay: 0.75s;
	margin-bottom: 60px;
}
main section#home-misc div.block div.text p.description span {
	display: block;
}
main section#home-misc div.block div.text p.description span:not(:last-child) {
	margin-bottom: 20px;
}
main section#home-misc div.block div.text p.description span.main {
	font-size: 1.25rem;
}
main section#home-misc div.block div.text p.button-default {
	transition-delay: 1s;
}
main section#home-misc div.block div.slide {
	width: 500px;
}
main section#home-misc div.block div.slide div.image {
	aspect-ratio: 500 / 580;
	border-radius: 50%;
}
main section#home-misc div.block-about p.illust {
	width: calc(226px * 0.875);
	left: 0px;
	bottom: -40px;
}
main section#home-misc div.block-feature {
	flex-direction: row-reverse;
}
main section#home-misc div.block-feature p.illust-01 {
	width: calc(50px * 0.75);
	right: 80px;
	bottom: 10px;
}
main section#home-misc div.block-feature p.illust-02 {
	width: calc(111px * 0.5);
	right: 0px;
	bottom: -10px;
}
main section#home-misc div.block-feature p.illust-03 {
	width: calc(175px * 0.625);
	right: 50px;
	bottom: -80px;
}
main section#home-misc div.block-class p.illust-01 {
	width: 81px;
	left: -40px;
	top: 240px;
}
main section#home-misc div.block-class p.illust-02 {
	width: 85px;
	right: -20px;
	bottom: -80px;
}
main section#home-misc div.block-class p.description span.sub {
	font-size: 1.125rem;
}
main section#home-letter-news div.block-wrapper {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-right: calc(50% - 50vw);
}
main section#home-letter-news div.block {
	position: relative;
	margin-bottom: 0px;
}
main section#home-letter-news div.block div.header {
	margin-bottom: 40px;
}
main section#home-letter-news div.block-letter {
	width: calc(100% - 400px);
}
main section#home-letter-news div.block-letter p.illust {
	width: 61px;
	left: 200px;
	top: -60px;
}
main section#home-letter-news div.block-letter div.header {
	width: 270px;
}
main section#home-letter-news div.block-letter div.slide {
	position: relative;
}
main section#home-letter-news div.block-letter div.slide div.list {
	overflow: hidden;
	padding-bottom: 60px;
}
main section#home-letter-news div.block-letter div.slide div.list div.inner-list {
	display: flex;
	flex-wrap: wrap;
	width: 9999px;
}
main section#home-letter-news div.block-letter div.slide div.list div.row {
	width: 270px;
	margin-right: 20px;
	padding: 20px;
	background-color: #ffffff;
	border-radius: 20px;
	box-shadow: 2.5px 2.5px 5px rgba(0, 0, 0, 0.075);
}
main section#home-letter-news div.block-letter div.slide div.list div.row p.image {
	aspect-ratio: 230 / 170;
	margin-bottom: 10px;
}
main section#home-letter-news div.block-letter div.slide div.list div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main section#home-letter-news div.block-letter div.slide div.list div.row p.created {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
main section#home-letter-news div.block-letter div.slide div.list div.row h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	transition: 0.25s color ease;
}
main section#home-letter-news div.block-letter div.slide div.list div.row a:hover h3 {
	color: #9d9d9d;
}
main section#home-letter-news div.block-letter div.slide p.line,
main section#home-letter-news div.block-letter div.slide div.pager,
main section#home-letter-news div.block-letter div.slide p.number {
	display: none;
	position: absolute;
}
main section#home-letter-news div.block-letter div.slide.active-alternate p.line,
main section#home-letter-news div.block-letter div.slide.active-alternate div.pager {
	display: block;
}
main section#home-letter-news div.block-letter div.slide p.line {
	width: 290px;
	height: 0px;
	left: 110px;
	bottom: -25.5px;
	border-bottom: 1px solid #efefef;
}
main section#home-letter-news div.block-letter div.slide p.line span {
	position: absolute;
	width: 0%;
	height: 0px;
	left: 0px;
	top: -1px;
	border-bottom: 3px solid #9d9d9d;
	content: "";
}
main section#home-letter-news div.block-letter div.slide div.pager {
	left: 0px;
	bottom: -45px;
}
main section#home-letter-news p.more {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	width: 600px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	pointer-events: none;
	transform: translateY(12.5px);
}
main section#home-letter-news p.more a {
	display: block;
	color: #9d9d9d;
	border-bottom: 1px solid #9d9d9d;
	pointer-events: auto;
	transition: 0.25s color ease, 0.25s border-color ease;
}
main section#home-letter-news p.more a:hover {
	color: #555555;
	border-color: #555555;
}
main section#home-letter-news div.block-news {
	width: 320px;
	margin-top: -120px;
	padding-top: 40px;
	transform: translateX(-80px);
}
main section#home-letter-news div.block-news p.illust {
	width: 136px;
	left: 40px;
	bottom: -20px;
}

/* about
-------------------------------------------------------------------------------- */

main section:where(#concept, #outline) div.inner-section {
	width: 800px;
}
main section#concept div.inner-section {
	padding-top: 60px;
}
main section#concept div.block {
	position: relative;
}
main section#concept div.block h2.headline,
main section#outline h2.headline {
	color: #e89f92;
}
main section#concept div.block h2.headline {
	margin-bottom: 40px;
}
main section#concept div:where(.block-basic, .block-childcare) p.description {
	text-align: center;
	font-size: 1.25rem;
	font-weight: 500;
	line-height: 2.25rem;
}
main section#concept div.block-basic p.illust-01 {
	width: 226px;
	left: calc(50% + 220px);
	top: -60px;
}
main section#concept div.block-basic p.illust-02 {
	width: 61px;
	right: calc(50% + 260px);
	bottom: -60px;
}
main section#concept div.block-goal {
	margin-left: -100px;
	margin-right: -100px;
}
main section#concept div.block-goal ul,
main section#concept div.block-goal ul li {
	display: flex;
	flex-wrap: wrap;
}
main section#concept div.block-goal ul {
	margin: 0px -20px -20px 0px;
}
main section#concept div.block-goal ul li {
	justify-content: center;
	align-items: center;
	width: calc(50% - 20px);
	height: 180px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0px 20px 20px 0px;
	background-color: #fff3f0;
	border-radius: 20px;
}
main section:where(#outline, #access) h2.headline {
	margin-bottom: 50px;
}
main section#outline div.list div.row {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5rem;
	border-bottom: 1px solid #efefef;
	padding: 25px 20px;
}
main section#outline div.list div.row:first-child {
	border-top: 1px solid #efefef;
}
main section#outline div.list div.row p.label {
	width: 200px;
	font-weight: 500;
}
main section#outline div.list div.row p.body {
	width: calc(100% - 200px);
}
main section#access div.column {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
main section#access div.column div:where(.left, .right) {
	width: calc(50% - 20px);
	text-align: center;
}
main section#access div.column div.left p.image,
main section#access div.column div.right div.map {
	border-radius: 20px;
	margin-bottom: 20px;
}
main section#access div.column div.left h3 {
	font-size: 1rem;
}
main section#access div.column div.right div.map {
	overflow: hidden;
}
main section#access div.column div.right div.map iframe {
	width: 100%;
	height: 320px;
}
main section#access div.column div.right p.google-maps {
	font-size: 0.75rem;
	line-height: 1.25rem;
}

/* feature
-------------------------------------------------------------------------------- */

main section:where(#initiative, #support) h2.headline {
	margin-bottom: 50px;
}
main section#initiative div.inner-section {
	padding-top: 60px;
}
main section#initiative h2.headline {
	color: #e89f92;
}
main section#initiative div.block-summary p.illust-01 {
	width: 111px;
	left: calc(50% + 360px);
	top: -210px;
}
main section#initiative div.block-summary p.illust-02 {
	width: 50px;
	left: calc(50% + 470px);
	top: -240px;
}
main section#initiative div.block-summary ul {
	width: 700px;
	margin: 0px auto;
}
main section#initiative div.block-summary ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 120px;
	text-align: center;
	font-weight: 500;
	background-color: #fff3f0;
	border-radius: 60px;
}
main section#initiative div.block-summary ul li:not(:last-child) {
	margin-bottom: 20px;
}
main section#initiative div.block-detail p.illust {
	width: 175px;
	left: calc(50% + 340px);
	top: -60px;
}
main section#initiative div.block-detail div.segment {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
main section#initiative div.block-detail div.segment:nth-child(2n) {
	margin-left: -85px;
}
main section#initiative div.block-detail div.segment:nth-child(2n+1) {
	flex-direction: row-reverse;
	margin-right: -85px;
}
main section#initiative div.block-detail div.segment:not(:last-child) {
	margin-bottom: 120px;
}
main section#initiative div.block-detail div.segment :where(p.image, div.slide, div.image-alternate) {
	width: 585px;
}
main section#initiative div.block-detail div.segment p.image,
main section#initiative div.block-detail div.segment div.slide div.image,
main section#initiative div.block-detail div.segment div.image-alternate p.row {
	border-radius: 20px;
}
main section#initiative div.block-detail div.segment div.slide div.image,
main section#initiative div.block-detail div.segment div.image-alternate p.row {
	overflow: hidden;
}
main section#initiative div.block-detail div.segment div.body {
	width: calc(100% - 665px);
	padding-top: 80px;
}
main section#initiative div.block-detail div.segment div.body div.text:not(:last-child) {
	margin-bottom: 40px;
}
main section#initiative div.block-detail div.segment div.body div.text :where(h3, h4) {
	font-weight: 500;
	color: #e89f92;
}
main section#initiative div.block-detail div.segment div.body div.text h3 {
	font-size: 1.5rem;
	margin-bottom: 40px;
}
main section#initiative div.block-detail div.segment div.body div.text h4 {
	font-size: 1.125rem;
	margin-bottom: 10px;
}
main section#initiative div.block-detail div.segment div.body div.text p.description:not(:last-child) {
	margin-bottom: 40px;
}
main section#initiative div.block-detail div.segment-04 div.image-alternate p.row:not(:last-child) {
	margin-bottom: 40px;
}
main section#initiative div.block-detail div.segment-04 div.image-alternate p.row-01 {
	width: 455px;
}
main section#initiative div.block-detail div.segment-04 div.image-alternate p.row-02 {
	width: 395px;
	margin-left: auto;
}
main section#initiative div.block-detail div.segment div.slide div.image {
	aspect-ratio: 585 / 405;
}
main section#initiative div.block-detail div.segment-07 div.image-alternate p.row-01 {
	margin-bottom: 120px;
}
main section#initiative div.block-detail div.segment-07 div.image-alternate p.row-02 {
	width: 330px;
	margin: 0px 40px 0px auto;
}
main section#initiative div.block-detail div.segment-07 div.image-alternate p.row-03 {
	width: 275px;
	margin: -60px auto 0px 60px;
}
main section#initiative div.block-detail div.segment-07 div.body p:where(.image-01, .image-02) {
	display: none;
}
main section#initiative div.block-detail div.segment-07 div.body p.image-03 {
	width: 245px;
	margin: 80px 0px 0px auto;
}
main section#support div.inner-section {
	width: 900px;
}
main section#support div.list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -60px -60px 0px;
}
main section#support div.list div.row {
	width: calc(50% - 60px);
	border: 1px solid #efefef;
	margin: 0px 60px 60px 0px;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#support div.list div.row h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	height: 100px;
	text-align: center;
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.625rem;
}
main section#support div.list div.row div.text {
	font-size: 0.9375rem;
	line-height: 1.625rem;
	padding: 40px;
}
main section#support div.list div:where(.row-03, .row-04) div.text p.description {
	min-height: calc(2rem * 4);
}
main section#support div.list div.row div.text p.description:not(:last-child) {
	margin-bottom: 20px;
}

/* class
-------------------------------------------------------------------------------- */

main section#class div.inner-section {
	width: 900px;
	padding-top: 60px;
}
main section#class header {
	position: relative;
	margin-bottom: 120px;
}
main section#class header p.illust-01 {
	width: 81px;
	left: calc(50% + 400px);
	top: 40px;
}
main section#class header p.illust-02 {
	width: 85px;
	left: calc(50% + 460px);
	bottom: 120px;
}
main section#class h2.headline {
	color: #e89f92;
	margin-bottom: 50px;
}
main section#class div.block {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: flex-start;
}
main section#class div.block:nth-child(2n) {
	flex-direction: row;
}
main section#class div.block div.text {
	width: calc(100% - 510px);
}
main section#class div.block div.text div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -20px 20px -20px;
}
main section#class div.block div.text div.list div.row {
	width: 33.33%;
	text-align: center;
}
main section#class div.block div.text div.list div.row p.illust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: static;
	height: 75px;
}
main section#class div.block-01 div.text div.list div.row-01 p.illust img {
	width: 32px;
}
main section#class div.block-01 div.text div.list div.row-02 p.illust img {
	width: 35px;
}
main section#class div.block-02 div.text div.list div.row-01 p.illust img {
	width: 45px;
}
main section#class div.block-03 div.text div.list div.row-01 p.illust img {
	width: 53px;
}
main section#class div.block-03 div.text div.list div.row-02 p.illust img {
	width: 60px;
}
main section#class div.block-03 div.text div.list div.row-03 p.illust img {
	width: 68px;
}
main section#class div.block div.text div.list div.row h3 {
	font-size: 1.125rem;
	font-weight: 500;
	margin-bottom: 10px;
}
main section#class div.block div.text div.list div.row p.sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 30px;
	font-size: 0.75rem;
	font-weight: 500;
	line-height: 1rem;
	color: #ffffff;
	margin: 0px auto;
	background-color: #e89f92;
	border-radius: 15px;
}
main section#class div.block div.text div.list div.row p.sub span {
	display: inline-block;
	font-size: 1rem;
	margin-right: 2.5px;
	transform: translateY(-1px);
}
main section#class div.block div.slide {
	width: 450px;
}
main section#class div.block div.slide div.image {
	aspect-ratio: 450 / 300;
	border-radius: 20px;
}
main section#class div.block div.text-alternate {
	display: none;
}
main section#facility p.illust-01 {
	width: 76px;
	right: calc(50% + 460px);
	top: -50px;
}
main section#facility p.illust-02 {
	width: 79px;
	right: calc(50% + 360px);
	top: 0px;
}
main section#facility h2.headline {
	margin-bottom: 50px;
}
main section#facility p.map {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 80px;
	padding: 80px 0px;
	background-color: #ffffff;
	border-radius: 20px;
}
main section#facility p.map img {
	width: 930px;
}
main section#facility div.slide div.image {
	aspect-ratio: 700 / 450;
	width: 700px;
	border-radius: 20px;
}
main section#facility div.slide div.caption {
	width: calc(100% - 760px);
}
main section#facility div.slide div.caption p.row span:where(.place, .main) {
	font-weight: 500;
}
main section#facility div.slide div.caption p.row span.place {
	font-size: 1.75rem;
	color: #e89f92;
	margin-bottom: 40px;
}
main section#facility div.slide div.caption p.row span.main,
main section#facility div.slide div.caption p.row span.main i {
	display: flex;
	flex-wrap: wrap;
}
main section#facility div.slide div.caption p.row span.main i {
	align-items: center;
	height: 30px;
	line-height: 1rem;
	color: #ffffff;
	margin-bottom: 20px;
	padding: 0px 15px;
	background-color: #e89f92;
	border-radius: 15px;
}
main section#facility div.slide div.caption p.row span.description {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#facility div.slide :where(div.pager, p.number) {
	position: absolute;
	bottom: 20px;
}
main section#facility div.slide div.pager {
	left: 760px;
}
main section#facility div.slide div.pager p.button {
	border-color: #e89f92;
}
main section#facility div.slide div.pager p.button:hover {
	background-color: #fff3f0;
}
main section#facility div.slide div.pager p.button::before {
	border-color: #e89f92;
}
main section#facility div.slide p.number {
	left: 870px;
	color: #e89f92;
}

/* schedule
-------------------------------------------------------------------------------- */

main section#day div.inner-section {
	width: 900px;
	padding-top: 60px;
}
main section#day header {
	position: relative;
	margin-bottom: 120px;
}
main section#day header p.illust {
	width: 136px;
	left: calc(50% + 370px);
	top: -80px;
}
main section#day h2.headline {
	color: #e89f92;
	margin-bottom: 50px;
}
main section#day div.block {
	padding: 60px;
	border-radius: 20px;
}
main section#day div.block:not(:last-child) {
	margin-bottom: 60px;
}
main section#day div.block :where(h3, p.description) {
	text-align: center;
	margin-bottom: 40px;
}
main section#day div.block h3 {
	font-size: 1.5rem;
	font-weight: 500;
}
main section#day div.block div.slide div.image {
	aspect-ratio: 520 / 315;
	width: 520px;
	border-radius: 20px;
}
main section#day div.block div.slide div.caption {
	width: calc(100% - 580px);
	padding-top: 20px;
}
main section#day div.block div.slide div.caption p.row span {
	font-weight: 500;
}
main section#day div.block div.slide div.caption p.row span.time {
	margin-bottom: 10px;
}
main section#day div.block div.slide div.caption p.row span.main {
	font-size: 1.125rem;
}
main section#day div.block div.slide div.caption p.row span.main:not(:last-child) {
	margin-bottom: 10px;
}
main section#day div.block div.slide div.caption p.row span.note {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#day div.block div.slide div.caption-alternate {
	width: 520px;
	padding-top: 10px;
}
main section#day div.block div.slide div.caption-alternate p.row {
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding: 0px 20px;
}
main section#day div.block div.slide :where(div.pager, p.number) {
	position: absolute;
	top: 255px;
}
main section#day div.block div.slide div.pager {
	left: 580px;
}
main section#day div.block div.slide div.pager p.button {
	top: 0px;
	bottom: 0px;
}
main section#day div.block div.slide p.number {
	left: 690px;
}
main section#day div.block-01 {
	background-color: #fff3f0;
}
main section#day div.block-01 p.illust-01 {
	width: calc(32px * 1.125);
	right: calc(50% + 360px);
	top: 80px;
}
main section#day div.block-01 p.illust-02 {
	width:calc(35px * 1.125);
	left: calc(50% + 260px);
	top: -20px;
}
main section#day div.block-01 p.illust-03 {
	width: calc(45px * 1.125);
	left: calc(50% + 340px);
	top: 260px;
}
main section#day div.block-02 {
	background-color: #edf6ff;
}
main section#day div.block-02 p.illust-01 {
	width: calc(53px * 1.125);
	right: calc(50% + 340px);
	top: 60px;
}
main section#day div.block-02 p.illust-02 {
	width: calc(60px * 1.125);
	left: calc(50% + 340px);
	top: 140px;
}
main section#day div.block-02 p.illust-03 {
	width: calc(68px * 1.125);
	left: calc(50% + 280px);
	bottom: -30px;
}
main section#event h2.headline {
	margin-bottom: 40px;
}
main section#event p.description {
	text-align: center;
	margin-bottom: 60px;
}
main section#event div.block div.image {
	margin: 0px calc(50% - 50vw) 60px calc(50% - 50vw);
}
main section#event div.block div.image div.inner-image {
	display: flex;
	flex-wrap: wrap;
	width: 99999px;
}
main section#event div.block:nth-child(2n) div.image div.inner-image {
	margin-left: -205px;
}
main section#event div.block div.image-01 div.inner-image {
	animation: event-01 calc(12.5s * 1) linear infinite forwards;
}
main section#event div.block div.image-02 div.inner-image {
	animation: event-02 calc(12.5s * 2) linear infinite forwards;
}
main section#event div.block div.image-03 div.inner-image {
	animation: event-03 calc(12.5s * 3) linear infinite forwards;
}
main section#event div.block div.image-04 div.inner-image {
	animation: event-04 calc(12.5s * 4) linear infinite forwards;
}
main section#event div.block div.image-05 div.inner-image {
	animation: event-05 calc(12.5s * 5) linear infinite forwards;
}
main section#event div.block div.image-06 div.inner-image {
	animation: event-06 calc(12.5s * 6) linear infinite forwards;
}
main section#event div.block div.image-07 div.inner-image {
	animation: event-07 calc(12.5s * 7) linear infinite forwards;
}
main section#event div.block div.image-08 div.inner-image {
	animation: event-08 calc(12.5s * 8) linear infinite forwards;
}
main section#event div.block div.image-09 div.inner-image {
	animation: event-09 calc(12.5s * 9) linear infinite forwards;
}
main section#event div.block div.image-10 div.inner-image {
	animation: event-10 calc(12.5s * 10) linear infinite forwards;
}
main section#event div.block div.image-11 div.inner-image {
	animation: event-11 calc(12.5s * 11) linear infinite forwards;
}
main section#event div.block div.image-12 div.inner-image {
	animation: event-12 calc(12.5s * 12) linear infinite forwards;
}
main section#event div.block div.image-13 div.inner-image {
	animation: event-13 calc(12.5s * 13) linear infinite forwards;
}
main section#event div.block div.image-14 div.inner-image {
	animation: event-14 calc(12.5s * 14) linear infinite forwards;
}
main section#event div.block div.image-15 div.inner-image {
	animation: event-15 calc(12.5s * 15) linear infinite forwards;
}
@keyframes event-01 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 1)); }
}
@keyframes event-02 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 2)); }
}
@keyframes event-03 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 3)); }
}
@keyframes event-04 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 4)); }
}
@keyframes event-05 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 5)); }
}
@keyframes event-06 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 6)); }
}
@keyframes event-07 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 7)); }
}
@keyframes event-08 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 8)); }
}
@keyframes event-09 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 9)); }
}
@keyframes event-10 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 10)); }
}
@keyframes event-11 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 11)); }
}
@keyframes event-12 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 12)); }
}
@keyframes event-13 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 13)); }
}
@keyframes event-14 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 14)); }
}
@keyframes event-15 {
	0% { transform: translateX(0px); }
	100% { transform: translateX(calc(-410px * 15)); }
}
main section#event div.block div.image p.row {
	width: 405px;
	margin-right: 5px;
}
main section#event div.block div.text,
main section#event div.block div.text div.list:has(div.row:nth-child(2)) {
	display: flex;
	flex-wrap: wrap;
}
main section#event div.block div.text {
	margin-right: -20px;
}
main section#event div.block div.text h3 {
	width: 140px;
	font-size: 3rem;
	font-weight: 500;
	line-height: 3rem;
}
main section#event div.block div.text div.list {
	width: calc(100% - 140px);
}
main section#event div.block div.text div.list:has(div.row:nth-child(2)) div.row {
	width: calc(33.33% - 20px);
	margin-right: 20px;
}
main section#event div.block div.text div.list div.row p.month {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 65px;
	height: 30px;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1rem;
	border-width: 1px;
	border-style: solid;
	margin-bottom: 10px;
	border-radius: 15px;
}
main section#event div.block-01 div.text h3,
main section#event div.block-01 div.text div.list div.row p.month {
	color: #e89f92;
}
main section#event div.block-01 div.text div.list div.row p.month {
	border-color: #e89f92;
}
main section#event div.block-02 div.text h3,
main section#event div.block-02 div.text div.list div.row p.month {
	color: #57b540;
}
main section#event div.block-02 div.text div.list div.row p.month {
	border-color: #57b540;
}
main section#event div.block-03 div.text h3,
main section#event div.block-03 div.text div.list div.row p.month {
	color: #eaac63;
}
main section#event div.block-03 div.text div.list div.row p.month {
	border-color: #eaac63;
}
main section#event div.block-04 div.text h3,
main section#event div.block-04 div.text div.list div.row p.month {
	color: #67a2dd;
}
main section#event div.block-04 div.text div.list div.row p.month {
	border-color: #67a2dd;
}
main section#event div.block-05 div.text h3,
main section#event div.block-05 div.text div.list div.row p.month {
	color: #559da3;
}
main section#event div.block-05 div.text div.list div.row p.month {
	border-color: #559da3;
}

/* admission
-------------------------------------------------------------------------------- */

main section:where(#admission, #admission-alternate) div.inner-section {
	width: 800px;
}
main section#admission div.inner-section {
	padding: 60px 0px 300px 0px;
}
main section#admission p.description {
	text-align: center;
	margin-bottom: 60px;
}
main section#admission p.button-default {
	margin-bottom: 120px;
}
main section#admission h2.headline {
	color: #e89f92;
	margin-bottom: 50px;
}
main section#admission div.table-wrapper {
	overflow: hidden;
	border: 1px solid #efefef;
	border-radius: 20px;
}
main section#admission div.table-wrapper:not(:last-child) {
	margin-bottom: 60px;
}
main section#admission table {
	width: 100%;
}
main section#admission table :where(caption, th) {
	text-align: center;
	padding: 20px 0px;
}
main section#admission table :where(caption, th, td) {
	font-size: 0.9375rem;
	line-height: 1.625rem;
}
main section#admission table caption {
	border-bottom: none;
	background-color: #efefef;
}
main section#admission table tr:first-child :where(th, td) {
	border-top: 1px solid #efefef;
}
main section#admission table tr:not(:last-child) :where(th, td) {
	border-bottom: 1px solid #efefef;
}
main section#admission table :where(th, td:not(:last-child)) {
	border-right: 1px solid #efefef;
}
main section#admission table th {
	width: 240px;
}
main section#admission table td {
	padding: 20px;
}
main section#admission table td p:not(:last-child) {
	margin-bottom: 10px;
}
main section#admission table td p span {
	display: inline-block;
	width: 120px;
}
main section#admission-alternate div.list {
	margin-bottom: 40px;
}
main section#admission-alternate div.list div.row {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5rem;
	border-bottom: 1px solid #efefef;
	padding: 25px 20px;
}
main section#admission-alternate div.list div.row:first-child {
	border-top: 1px solid #efefef;
}
main section#admission-alternate div.list div.row p.label {
	width: 200px;
	font-weight: 500;
}
main section#admission-alternate div.list div.row p.body {
	width: calc(100% - 200px);
}
main section#admission-alternate div.list div.row p.body span.note.indent {
	display: block;
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section#admission-alternate p.description {
	text-align: center;
	margin-bottom: 60px;
}
main section#admission-alternate div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -10px -20px -10px;
}
main section#admission-alternate div.button-wrapper p.button-default {
	margin: 0px 10px 20px 10px;
}
main section#admission-alternate div:where(.block-fee, .block-preparation) h2.headline {
	margin-bottom: 50px;
}
main section#admission-alternate div.block-schedule h2.headline {
	margin-bottom: 40px;
}

/* letter
-------------------------------------------------------------------------------- */

main div.list-letter {
	display: flex;
	flex-wrap: wrap;
	text-align: left;
	margin: 0px -20px -60px 0px;
}
main div.list-letter div.row {
	width: calc(33.33% - 20px);
	margin: 0px 20px 60px 0px;
}
main div.list-letter div.row p.image {
	aspect-ratio: 320 / 210;
	margin-bottom: 10px;
	border-radius: 20px;
}
main div.list-letter div.row p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
main div.list-letter div.row :where(p.created, h3) {
	padding-left: 10px;
}
main div.list-letter div.row p.created {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
main div.list-letter div.row h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	transition: 0.25s color ease;
}
main div.list-letter div.row a:hover h3 {
	color: #9d9d9d;
}

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

main div.list-news div.row {
	text-align: left;
	border-bottom: 1px solid #efefef;
	padding: 20px 0px 20px 10px;
}
main div.list-news div.row:first-child {
	border-top: 1px solid #efefef;
}
main div.list-news div.row p.created {
	font-size: 0.75rem;
	line-height: 1.25rem;
}
main div.list-news div.row h3 {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.625rem;
	transition: 0.25s color ease;
}
main div.list-news div.row a:hover h3 {
	color: #9d9d9d;
}

/* document
-------------------------------------------------------------------------------- */

main section#document p.description {
	text-align: center;
	margin-bottom: 120px;
}
main section#document div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section#document p.button-default:not(:last-child) {
	margin-right: 20px;
}

/* recruit
-------------------------------------------------------------------------------- */

main section#recruit p:where(.description, .close, .summary) {
	text-align: center;
}
main section#recruit p.description {
	margin-bottom: 120px;
}
main section#recruit p.summary {
	margin-bottom: 60px;
}

/* form
-------------------------------------------------------------------------------- */

main section.form div.inner-section {
	width: 800px;
}
main section.form div.header {
	text-align: center;
	border-bottom: 1px solid #efefef;
	margin-bottom: 80px;
	padding-bottom: 80px;
}
main section.form div.mw_wp_form_preview div.header {
	display: none;
}
main section.form div.header p.description {
	margin-bottom: 40px;
}
main section.form div.header div.tel,
main section.form div.header div.tel a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
main section.form div.header div.tel a {
	align-items: center;
	color: #e89f92;
}
main section.form div.header div.tel :where(i.icon, span),
main section.form div.header div.tel span i {
	display: block;
}
main section.form div.header div.tel i.icon {
	font-size: 3rem;
	margin-right: 5px;
}
main section.form div.header div.tel span i.number {
	font-size: 2rem;
	font-weight: 700;
}
main section.form div.header div.tel span i.time {
	font-size: 0.875rem;
}
main section.form div.form :where(h2, p.note) {
	text-align: center;
}
main section.form div.mw_wp_form_preview div.form :where(h2, p.note) {
	display: none;
}
main section.form div.form h2 {
	color: #e89f92;
	margin-bottom: 10px;
}
main section.form div.form p.note {
	margin-bottom: 40px;
}
main section.form div.form div.component-wrapper {
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component-wrapper {
	margin-bottom: 80px;
}
main section.form div.form div.component:not(:last-child) {
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.component {
	border-bottom: 1px solid #efefef;
	margin-bottom: 0px;
	padding: 20px 0px;
}
main section.form div.mw_wp_form_preview div.form div.component:first-child {
	border-top: 1px solid #efefef;
}
main section.form div.form div.component p.label {
	font-weight: 500;
	color: #e89f92;
	margin-bottom: 10px;
}
main section.form div.form div.component p.label span.require {
	font-size: 0.875rem;
	line-height: 1.5rem;
}
main section.form div.mw_wp_form_preview div.form div.component p.label span.require {
	display: none;
}
main section.form div.form div.component-radio-checkbox div.body {
	margin-bottom: -10px;
}
main section.form div.mw_wp_form_preview div.form div.component-radio-checkbox div.body {
	margin-bottom: 0px;
}
main section.form div.form div.component-horizontal div.body {
	display: flex;
	flex-wrap: wrap;
}
main section.form div.form div.component div.body :where(input:where([type=text], [type=email]), select, textarea) {
	width: 100%;
}
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field),
main section.form div.form div.component div.body span:where(.mwform-radio-field, .mwform-checkbox-field) > label {
	display: block;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field) {
	margin: 0px 0px 10px 0px;
}
main section.form div.form div.component-radio-checkbox div.body span:where(.mwform-radio-field, .mwform-checkbox-field):not(:last-of-type) {
	margin-right: 30px;
}
main section.form div.form div.component div.body span.error,
main section.form div.form div.agreement span.error {
	font-size: 0.875rem;
	line-height: 25px;
	color: #7ebdc3;
}
main section.form div.form div.component div.body span.error {
	width: 100%;
	padding-top: 5px;
}
main section.form div.form div.agreement {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 40px;
}
main section.form div.mw_wp_form_preview div.form div.agreement {
	display: none;
}
main section.form div.form div.agreement span.mwform-checkbox-field,
main section.form div.form div.agreement span.mwform-checkbox-field > label {
	display: block;
}
main section.form div.form div.agreement span.mwform-checkbox-field {
	margin-right: 5px;
}
main section.form div.form div.agreement span.mwform-checkbox-field-text {
	display: none;
}
main section.form div.form div.agreement span.error {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: -25px;
	text-align: center;
}
main section.form div.form div.action {
	display: flex;
	flex-wrap: wrap;
	margin-right: -20px;
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button) {
	width: calc(100% - 20px);
	height: 65px;
}
main section.form div.form div.action:has(*:nth-child(2)) :where(input:where([type=button], [type=submit]), button) {
	width: calc(50% - 20px);
}
main section.form div.form div.action :where(input:where([type=button], [type=submit]), button):not(:last-child) {
	margin-right: 20px;
}
main section.form div.mw_wp_form_complete p.description {
	text-align: center;
}



/* --------------------------------------------------------------------------------
footer
-------------------------------------------------------------------------------- */

footer#footer {
	position: relative;
	z-index: 1;
}
footer#footer p#button-admission {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 20;
	font-weight: 500;
 	font-size: 0.9375rem;
	line-height: 1.25rem;
}
footer#footer p#button-admission a {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100px;
	height: 100px;
	color: #e89f92;
}
footer#footer p#button-admission a::before {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	border: 1px solid #e89f92;
	background-color: #ffffff;
	content: "";
	border-radius: 50%;
	transition: 0.25s all ease;
}
footer#footer p#button-admission a:hover::before {
	width: calc(100% + 5px);
	height: calc(100% + 5px);
	left: -2.5px;
	top: -2.5px;
	background-color: #fff3f0;
}
footer#footer p#button-admission span {
	position: relative;
}
footer#footer p#button-page-top {
	position: absolute;
	right: 35px;
	bottom: 515px;
	z-index: 10;
	text-align: center;
	font-size: 0.75rem;
	line-height: 0.75rem;
}
footer#footer p#button-page-top a {
	display: block;
	position: relative;
	width: 40px;
	height: 50px;
	color: #9d9d9d;
	padding-bottom: 30px;
	transition: 0.25s color ease;
}
footer#footer p#button-page-top a:hover {
	color: #555555;
}
footer#footer p#button-page-top a::before,
footer#footer p#button-page-top a::after {
	position: absolute;
	border-right: 1px solid #9d9d9d;
	content: "";
	transition: 0.25s border-color ease;
}
footer#footer p#button-page-top a:hover::before,
footer#footer p#button-page-top a:hover::after {
	border-color: #555555;
}
footer#footer p#button-page-top a::before {
	width: 0px;
	height: 20px;
	left: calc(50% - 0.5px);
	bottom: 0px;
}
footer#footer p#button-page-top a::after {
	width: 8px;
	height: 8px;
	left: calc(50% - 4px);
	bottom: 12px;
	border-bottom: 1px solid #9d9d9d;
	transform: rotate(-135deg);
}
footer#footer div:where(.contact, .information-navi-footer) {
	position: relative;
}
footer#footer div:where(.contact, .information-navi-footer)::before {
	position: absolute;
	width: 100%;
	left: 0px;
	content: "";
}
footer#footer div.contact,
footer#footer div.contact::before {
	background-color: #fffbce;
}
footer#footer div.contact {
	text-align: center;
	padding: 20px 0px 120px 0px;
}
footer#footer div.contact::before {
	height: 180px;
	top: -178px;
	mask: url(../images/mask-01.svg) no-repeat center top;
	mask-size: 100% 100%;
}
footer#footer div.contact p.illust {
	position: absolute;
}
footer#footer div.contact p.illust-01 {
	width: 68px;
	right: calc(50% + 370px);
	top: calc(50% - 60px);
}
footer#footer div.contact p.illust-02 {
	width: 49px;
	right: calc(50% + 320px);
	top: calc(50% - 100px);
}
footer#footer div.contact p.illust-03 {
	width: 52px;
	left: calc(50% + 390px);
	top: calc(50% - 120px);
}
footer#footer div.contact h2 {
	margin-bottom: 20px;
}
footer#footer div.contact p.description {
	margin-bottom: 60px;
}
footer#footer div.contact div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer#footer div.contact p.button-default:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.contact p.button-default span,
footer#footer div.contact p.button-default span i {
	display: block;
}
footer#footer div.contact p.button-tel i.icon {
	font-size: 2rem;
	margin-right: 5px;
}
footer#footer div.contact p.button-tel span i.main {
	font-size: 1.5rem;
	padding: 2.5px 0px;
}
footer#footer div.contact p.button-tel span i.sub {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.25rem;
}
footer#footer div.contact p.button-mail i.icon {
	font-size: 1.75rem;
	margin-right: 15px;
}
footer#footer div.information-navi-footer,
footer#footer div.information-navi-footer::before {
	background-color: #ffffff;
}
footer#footer div.information-navi-footer {
	padding: 60px 0px 80px 0px;
}
footer#footer div.information-navi-footer::before {
	height: 60px;
	top: -58px;
	mask: url(../images/mask-02.svg) no-repeat center top;
	mask-size: 100% 100%;
}
footer#footer div.information-navi-footer div.inner-information-navi-footer,
footer#footer div.information-navi-footer nav#navi-footer div.list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer#footer div.information-navi-footer div.inner-information-navi-footer {
	width: 1000px;
	margin: 0px auto;
}
footer#footer div.information-navi-footer div.information {
	width: 420px;
	text-align: center;
}
footer#footer div.information-navi-footer div.information :where(h3, p.fax) {
	margin-bottom: 40px;
}
footer#footer div.information-navi-footer div.information h3 {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer#footer div.information-navi-footer div.information h3 img {
	width: calc(394px * 0.925);
}
footer#footer div.information-navi-footer div.information p.address {
	margin-bottom: 10px;
}
footer#footer div.information-navi-footer div.information div.button-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0px -40px;
}
footer#footer div.information-navi-footer div.information p.button-default:not(:last-child) {
	margin-right: 20px;
}
footer#footer div.information-navi-footer div.information p.button-default a {
	height: 65px;
	border-color: #efefef;
	border-radius: 5px;
}
footer#footer div.information-navi-footer div.information p.button-default a:hover {
	background-color: #efefef;
}
footer#footer div.information-navi-footer div.information p.button-chuo img {
	width: calc(362px * 0.425);
}
footer#footer div.information-navi-footer div.information p.button-corporation img {
	width: calc(372px * 0.425);
}
footer#footer div.information-navi-footer div.information p.privacy-policy {
	display: none;
}
footer#footer div.information-navi-footer nav#navi-footer {
	width: calc(100% - 580px);
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row {
	width: calc(50% - 30px);
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment:not(:last-child) {
	border-bottom: 1px solid #efefef;
	margin-bottom: 20px;
	padding-bottom: 20px;
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment p.headline {
	font-weight: 500;
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment  p.headline:not(:last-child) {
	margin-bottom: 10px;
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment p.headline-sub {
	font-size: 0.875rem;
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment ul li {
	position: relative;
	font-size: 0.875rem;
	padding-left: 15px;
}
footer#footer div.information-navi-footer nav#navi-footer div.list div.row div.segment ul li::before {
	position: absolute;
	width: 5px;
	height: 7px;
	left: 0px;
	top: 13.5px;
	background-color: #555555;
	content: "";
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
footer#footer div.fix,
footer#footer div.fix div.inner-fix p.image {
	height: 435px;
}
footer#footer div.fix {
	position: relative;
}
footer#footer div.fix div.inner-fix {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	clip-path: inset(0px);
}
footer#footer div.fix div.inner-fix p.image {
	position: fixed;
	width: 100%;
	left: 0px;
	bottom: 0px;
}
footer#footer div.fix div.inner-fix p.image img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
footer#footer p.copyright {
	position: absolute;
	width: 100%;
	left: 0px;
	bottom: 20px;
	z-index: 1;
	text-align: center;
	font-size: 0.625rem;
	line-height: 1rem;
	color: #ffffff;
}

/* home
-------------------------------------------------------------------------------- */

body.home footer#footer p#button-admission {
	pointer-events: none;
	opacity: 0;
	transition: 0.25s opacity ease-in-out;
}
body.home div:where(.cover-04, .scroll) footer#footer p#button-admission {
	pointer-events: auto;
	opacity: 1;
}