@charset "utf-8";
*, *::before, *::after {box-sizing: border-box;}
* {margin: 0;padding: 0;}
html {color-scheme: light dark;}
body {
  min-height: 100dvh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
	font-family:"Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Meiryo", sans-serif;
  color: #333;
  overflow-x: hidden;
	background-color: #FFF;
}
img, picture, video, canvas, svg {display: block;max-width: 100%;}
input, button, textarea, select {font: inherit;}
ol, ul {list-style: none;}
p, h1, h2, h3, h4, h5, h6 {overflow-wrap: break-word;}


/* --- ヘッダー：常時固定 --- */
.site-header {
	position: fixed;
	top: 2rem;
	left: 0;
	right: 0;
	width: 97%;
	height: 5rem;
	margin: auto;
	background: #fff;
	border-radius: 0.7em;
	z-index: 2500;
	box-shadow: 0 2px 3px rgba(0,0,0,0.1);
	transition: all 0.3s ease;
}
/* スクロール時 */
.site-header.is-scrolled {
	top: 1rem;
	background: rgba(255, 255, 255, 1);
	height: 3.5rem;
}
.site-header .header-inner {
	height: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 1.5rem;
}
.site-header .logo {
	width: auto;
}
.site-header .logo img {
	height: auto;
	width: 330px;
	max-width: 100%;
	transition: all 0.3s ease;
}
.site-header.is-scrolled  .logo img {
	width: 200px;
}
.header-right {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.pc-nav ul {
	display: flex;
	gap: 2dvw;
	list-style: none;
	white-space: nowrap;
}
.pc-nav a {
	text-decoration: none;
	color: #333;
	font-size: 1em;
	font-weight: 600;
	border-bottom: 1px solid #FFF;
	transition: all 0.3s ease;
}
.pc-nav a:hover {
	border-bottom: 1px solid #333;
}

.burgers {
	display: flex;
	align-items: center;
	margin-left: 2em;
	padding: 0.5em 0 0.5em  1.5em;
	border-left: 1px solid #CCC;
}
.burger-btn {
	width: 25px;
	height: 1.5em;
	background: none;
	position: relative;
	z-index: 2500;
	cursor: pointer;
	border: none;
}
.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0em;
  transition: 0.3s;
}
.burger-btn span:nth-child(1) { top: 2px; }
.burger-btn span:nth-child(2) { top: 10px; }
.burger-btn span:nth-child(3) { top: 18px; }

/* 開いた時のアニメーション */
.burger-btn.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-btn.is-active span:nth-child(2) { opacity: 0; }
.burger-btn.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --- バーガーメニュー本体（ドロワー） --- */
.drawer-nav {
	position: fixed;
	top: 0;
	right: -100%;
	width: 300px;
	height: 100dvh;
	background: hsla(0,0%,100%,0.90);
	z-index: 1500;
	transition: 0.3s;
	padding: 150px 40px;
	overflow-y: auto;
  -webkit-overflow-scrolling: touch;
	transition: all 0.3s ease;
}
.drawer-nav.is-scrolled {
	padding: 110px 40px;
}
.drawer-nav.is-active { right: 0; }
.drawer-nav ul { list-style: none; }
.drawer-nav li { margin-bottom: 20px; }
.drawer-nav a { text-decoration: none; color: #333; font-size: 1.0rem;font-weight: 500; }
.nav_bans {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 2rem 10%;
	background-color: hsla(0,0%,0%,0.80);
	color: #FFF;
}
.address span {
	display: block;
}
.sp_menu_main {
	display: none;
}

.nav_address {
	width: 100%;
}
.nav_address span {
	display: block;
	font-size: 0.9rem;
	line-height: 1.5;
}
.nav_address span.address {
	margin-bottom: 1.0rem;
}
.nav_address span.telephone {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1rem;
}
.nav_address span.telephone img {
	width: 1.3em;
	margin: 0.3rem 0.5rem 0 0;
}
.nav_address span.telephone a {
	color: #FFF;
	text-decoration: none;
	font-size: 1.6rem;
	font-weight: 900;
	line-height: 1;
}
.nav_address span.opentime {
	margin-bottom: 1.0rem;
}
.nav_address ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 5%;
}
.nav_address ul li {
	margin: 0;
}

@media screen and (max-width: 900px) {
	.drawer-nav {
		width: 100%;
		padding: 8.5rem 3rem;
		text-align: center;
	}
	.drawer-nav.is-scrolled {
		padding: 6rem 40px;
	}
	.drawer-nav > ul li {
		margin-bottom: 0.3em;
	}
	.sp_menu_main {
		display: block;
	}
	.address span {
		display: inline;
		margin-left: 0.5em;
	}
	.nav_address ul,
	.nav_address span.telephone {
		display: inline-flex;
	}
	.nav_address ul img {
		margin: 0 0.5em;
	}
	.nav_bans {
		padding: 1.5rem 10%;
	}
}


.title_waku {
	display: flex;
	align-items: center;
	width: 100%;
	margin-bottom: 1.5em;
	padding: 1em 1em 1em 1.3em;
	background-color: #f4f5f9;
	border-radius: 0.8em;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1;
}
.title_waku::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}

/* --- ヒーローエリア（スクロールで移動する背景） --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  padding-top: 8em; /* ヘッダー分 */
}
.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-text {
  height: 100%;
	width: fit-content;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 7%;
  color: #fff;
  text-shadow: 0 0 7px rgba(0,0,0,0.7);
	font-weight: 500;
}

.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: 1.3; margin-bottom: 2.0rem; letter-spacing: -0.1em; }
.hero-text p { font-size: clamp(1.15rem, 2vw, 1.6rem); line-height: 1.6; margin-bottom: 7.0rem; letter-spacing: 0.05em; }
.hero-icons {
	display: flex;
	justify-content: space-between;
}
.hero-icons span {
	width: 48%;
	padding: 0.6em;
	background-color: #2250e3;
	text-align: center;
	color: #FFF;
	font-size: clamp(0.9rem, 1vw, 1.1rem);
	letter-spacing: 0.1em;
	border-radius: 0.5em;
	text-shadow: none;
}

/* PCナビを消す */
@media screen and (max-width: 900px) {
  .pc-nav { display: none; } 
  .hero-text { width: 100%; max-width: 100%; text-align: center; padding: 0 20px; }
}



/* 共通ボタン */
.but_radius {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 100%;
	max-width: 16em;
	padding: 1em;
	background-color: #2250e3;
	color: #fff;
	text-decoration: none;
	border-radius: 50px;
	font-size: 1.1rem;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition: background-color 0.3s;
}
.but_radius::after {
  content: "";
  position: absolute;
  right: 0.8em;
  width: 2em;
  height: 2em;
  background-color: #0e345f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.but_radius::before {
  content: "";
  position: absolute;
  right: 1.6em;
  z-index: 1;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #FFF;
  border-right: 1px solid #FFF;
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  transition: transform 0.3s ease;
}
.but_radius:hover {
	background-color: #0e345f;
}
.but_radius:hover::before {
  transform: translateY(-50%) translateX(3px) rotate(45deg);
}

.but_radius.but_radius_orng {
	background-color: #ec691a;
}
.but_radius.but_radius_orng::after,
.but_radius.but_radius_orng:hover {
	background-color: #c75203;
}
@media screen and (max-width: 900px) {
	.but_radius {
		margin-right: auto;
		margin-left: auto;
	}
}


.head_titles {
	margin: auto;
	padding: 4rem 5% 3rem 5%;
	text-align: center;
}
.head_titles h2 {
	font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
	letter-spacing: 0.1em;
}
.head_titles h3 {
	font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
	color: #2250e3;
	letter-spacing: 0.05em;
}

.main_lr_photo {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.main_lr_photo .content {
	width: 50%;
}
.main_lr_photo .content_in {
	box-sizing: content-box;
	max-width: 580px;
	padding: 0 10%;
}
.main_lr_photo .content_in.left {
	float: right;
}
.main_lr_photo .content h4 {
	margin-bottom: 1em;
	font-size: 2.2rem;
	font-size: clamp(1.4rem, 1.24rem + 0.8vw, 2.2rem);
	color: #2250e3;
	letter-spacing: 0.05em;
}
.main_lr_photo .content p {
	margin-bottom: 3em;
	font-size: 1.1rem;
	line-height: 2;
	letter-spacing: 0.05em;
	font-weight: 500;
}
.main_lr_photo .photo {
	width: 50%;
}
.main_lr_photo .photo img {
	width: 100%;
}
.main_lr_photo .photo.right img {
	border-radius: 5rem 0 0 5rem;
}
.main_lr_photo .photo.left img {
	border-radius: 0 5rem 5rem 0;
}
@media screen and (max-width: 900px) {
	.main_lr_photo {
		flex-wrap: wrap;
	}
	.main_lr_photo div:first-child {
		margin-bottom: 2em;
	}
	.main_lr_photo .content {
		width: 100%;
	}
	.main_lr_photo .content_in {
		max-width: 100%;
	}
	.main_lr_photo .content_in.left {
		float: none;
	}
	.main_lr_photo .photo {
		width: 100%;
	}
	.main_lr_photo .photo.right {
		text-align: right;
	}
	.main_lr_photo .photo.right img {
		width: 90%;
		margin: 0 0 0 auto;
	}
	.main_lr_photo .photo.left {
		text-align: left;
	}
	.main_lr_photo .photo.left img {
		width: 90%;
		margin: 0 auto 0 0;
	}
}

/* Footer */
.box_jgra {
	padding: 2.5em 5%;
	background-color: #e6e6e6;
	text-align: center;
}
.box_jgra a {
	display: inline-block;
	margin: auto;
}
.foot_gmap {
	width: 100%;
	height: 55dvh;
	filter: grayscale(100%);
	vertical-align: top;
}

.box_foot_add {
	width: 100%;
	padding: 0 5%;
	background-color: #2d2d2d;
	color: #FFF;
}
.box_foot_add_in {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1610px;
	margin: auto;
}
.box_address {
	width: 65%;
	padding: 5.5rem 0;
	border-right: 1px solid #000;
}
.box_address h3 {
	margin-bottom: 2rem;
}
.box_address span {
	display: block;
	font-size: 1.2rem;
	line-height: 1;
}
.box_address span.address {
	margin-bottom: 1.6rem;
}
.box_address span.telephone {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-bottom: 1rem;
}
.box_address span.telephone img {
	margin: 0.5rem 0.5rem 0 0;
}
.box_address span.telephone a {
	color: #FFF;
	text-decoration: none;
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.1em;
}
.box_address span.opentime {
	margin-bottom: 2rem;
}
.box_address ul {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 2%;
}
.box_foot_menu {
	width: 35%;
	padding: 5.5rem 0 5.5rem 5%;
}
.box_foot_menu ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.box_foot_menu ul li {
	width: 50%;
	margin-bottom: 2em;
}
.box_foot_menu ul li a {
	font-size: 1.2em;
	color: #FFF;
	text-decoration: none;
	border-bottom: 1px solid #2d2d2d;
	transition: all 0.3s ease;
}
.box_foot_menu ul li a:hover {
	border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 900px) {
	.box_address {
		width: 100%;
		border-right: none;
		text-align: center;
	}
	.box_address h3 img {
		margin: auto;
	}
	.box_address span.telephone {
		display: inline-flex;
		margin: 0 auto 1rem auto;
	}
	.box_address span.opentime {
		line-height: 1.3;
	}
	.box_address ul {
		display: inline-flex;
		margin: 0 auto 1rem auto;
	}
	.box_address li {
		padding: 0 0.5em;
	}
	.box_foot_menu {
		display: none;
	}
}

.box_foot_end {
	width: 100%;
	padding: 3rem 5%;
	background-color: #2d2d2d;
	color: #FFF;
	border-top: 1px solid #000;
}
.box_foot_end_in {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1610px;
	margin: auto;	
}
.box_foot_end ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
}
.box_foot_end ul li a {
	display: inline-block;
	margin-right: 2em;
	font-size: 0.95em;
	color: #999999;
	text-decoration: none;
	transition: all 0.3s ease;
}
.box_foot_end ul li a:hover {
	color: #FFF;
}
.copyright {
	font-size: 0.95em;
	color: #999999;
}
@media screen and (max-width: 900px) {
	.box_foot_end ul {
		display: none;
	}
	.copyright {
		text-align: center;
		margin: auto;
	}
	.copyright span {
		display: block;
		margin: auto;
	}
}



/* Under */
.box_under_main {
	position: relative;
	width: 100%;
	height: calc(23dvw + 200px);
	background-color: #2250e3;
}
.box_under_main .pannavi {
	position: absolute;
	top: 8rem;
	left: 3%;
	z-index: 100;
}
.box_under_main .pannavi ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #FFF;
}
.box_under_main .pannavi li {
	display: flex;
}
.box_under_main .pannavi li::before {
	display: block;
	content: "ー";
	margin: 0 0.8em;
	opacity: 0.6;
}
.box_under_main .pannavi li:first-child::before {
	display: none;
}
.box_under_main .pannavi a {
	color: #FFF;
	text-decoration: none;
	opacity: 0.6;
	transition: all 0.3s ease;
}
.box_under_main .pannavi a:hover {
	opacity: 1;
}
.box_under_main .pannavi .nowpage {
	opacity: 1;
}

.box_under_main_ttl {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	height: 100%;
	width: 100%;
	margin: auto;
	padding: 10rem 5%;
	color: #FFF;
	z-index: 50;
}
.box_under_main_ttl .main_title {
	width: 100%;
	max-width: 1610px;
	margin: auto;
}
.box_under_main_ttl .main_title h1 {
	margin: 0;
	line-height: 1;
	font-size: clamp(2rem, 1.136rem + 3.636vw, 5.5rem);
}
.box_under_main_ttl .main_title h2 {
	display: flex;
	align-items: center;
	margin: 3em 0 1em 0;
	line-height: 1;
	font-size: clamp(1rem, 0.879rem + 0.518vw, 1.5rem);
	letter-spacing: 0.1em;
}
.box_under_main_ttl .main_title h2::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #FFF;
	border-radius: 100%;
}
.box_under_main .main_image {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(50% - 1610px / 2 + 1200px);
	background-position: right top;
	background-repeat: no-repeat;
	background-size: 70% 95%;
	z-index: 1;
	text-align: right;
}
.box_under_main .main_image img {
	width: 100%;
	height: auto;
	margin: 0 0 0 auto;
	border-radius: 0 0 0 5dvw;
}
@media screen and (max-width: 1200px) {
	.box_under_main .pannavi {
		display: none;
	}
.box_under_main_ttl .main_title h2 {
	margin: 1em 0 1em 0;
}
	.box_under_main .main_image {
		left: 25%;
		width: auto;
		height: 95%;
	}
	.box_under_main .main_image img {
		width: auto;
		height: 100%;
		object-fit: cover;
	}
}


/* COMPANY */
.main_company {
	width: 100%;
	background-color: #FFF;
}
.main_company .note {
	display: flex;
	align-items: center;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
}
.main_company .note::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}
.main_company h2 {
	padding-bottom: 1.0rem;
	margin-bottom: 1rem;
	font-size: clamp(1.6rem, 1.329rem + 1.143vw, 2.7rem);
	font-weight: 800;
	color: #2250e3;
	border-bottom: 1px solid #dfdfdf;
}

.box_company_top_in {
	width: 100%;
	padding: 5em 5% 5em 5%;
	text-align: center;
}
.box_company_top_in p {
	color: #2250e3;
	font-weight: bold;
	font-size: clamp(1rem, 0.852rem + 0.623vw, 1.6rem);
	line-height: 2;
}
.box_company_top img {
	width: 100%;
}

.box_company_mid {
	width: 100%;
	padding: 5em 5% 1em 5%;
	background-color: #f4f5f9;
}
.box_company_mid_in {
	width: 100%;
	max-width: 1330px;
	margin: auto;
}
.box_company_mid img {
	margin: 3em auto;
	border-radius: 1.5em;
}
.box_company_mid .tables {
	width: 100%;
	margin-bottom: 4em;
	overflow: hidden;
	border-radius: 1.5em;
}
.box_company_mid .tables table {
	width: 100%;
	border-collapse: collapse;
	border: none;
}
.box_company_mid .tables th,
.box_company_mid .tables td {
	border-top: 1px solid #cbcbcb;
	padding: 1em 2%;
	text-align: left;
}
.box_company_mid .tables th {
	background-color: #2250e3;
	color: #FFF;
	font-weight: bold;
}
.box_company_mid .tables td.th {
	background-color: #e0e3ef;
	font-weight: bold;
}
.box_company_mid .tables td {
	background-color: #FFF;
}
.box_company_mid .tables .top_border_none th,
.box_company_mid .tables .top_border_none td{
	border-top: none;
}

.box_company_accs {
	width: 100%;
	padding: 5em 5% 6em 5%;
	background-color: #fff;
}
.box_company_accs_in {
	width: 100%;
	max-width: 1330px;
	margin: auto;
}
.box_company_accs p {
	margin: 2em 0;
}
.box_company_accs iframe {
	height: 50dvh;
	width: 100%;
	margin: 0 auto;
	border-radius: 1.5em;
	overflow: hidden;
}


/* FACILITY */
.main_facility {
	width: 100%;
	background-color: #FFF;
}
.main_facility_top {
	width: 100%;
	padding: 5em 5% 5em 5%;
	background-color: #0D0E12;
	border-bottom: 5px solid #eb691a;
}
.main_facility_top_p {
	display: flex;
	align-content: space-between;
	align-items: center;
	width: 100%;
	margin: 0 auto 3em auto;
}
.main_facility_top_p img {
	width: 50%
}
.main_facility_top_b {
	margin: 0 auto;
	text-align: center;
}
.main_facility_top_b h2 {
	margin-bottom: 0.5em;
	font-size: clamp(1.2rem, 1.101rem + 0.416vw, 1.6rem);
	font-weight: bold;
	color: #eb691a;
}
.main_facility_top_b p {
	margin-bottom: 2em;
	font-size: clamp(1.2rem, 1.101rem + 0.416vw, 1.6rem);
	font-weight: bold;
	color: #FFF;
}
.main_facility_top_b a {
	margin: 0 auto;
}

.main_facility_mid {
	width: 100%;
	padding: 0;
	background-color: #FFF;
}
.main_facility_mid_text {
	width: 100%;
	padding: 5em 5% 5em 5%;
	text-align: center;
}
.main_facility_mid_text p {
	color: #2250e3;
	font-weight: bold;
	font-size: clamp(1rem, 0.852rem + 0.623vw, 1.6rem);
	line-height: 2;
}
.main_facility_mid_p img {
	width: 100%;
}

.box_facility_failitys {
	width: 100%;
	padding: 5em 5% 1em 5%;
	background-color: #FFF;
}
.box_facility_failitys_in {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
	width: 100%;
	max-width: 1330px;
	margin: auto;
}
.box_facility_failitys article {
	margin-bottom: 3em;
}
.box_facility_failitys article img {
	aspect-ratio: 4 / 3;
	width: 100%;
	margin-bottom: 1.5em;
	object-fit: cover;
	border-radius: 1em;
}
.box_facility_failitys article p {
	margin-bottom: 1em;
}
.box_facility_failitys article.wcol {
	width: 100%;
}
.box_facility_failitys article.ocol {
	width: 48%;
}
.box_facility_failitys article .wphotos {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.box_facility_failitys article .wphotos img {
	width: 48%;
}
@media screen and (max-width: 900px) {
	.box_facility_failitys article.ocol {
		width: 100%;
	}
	.box_facility_failitys article .wphotos {
		flex-wrap: wrap;
	}
	.box_facility_failitys article .wphotos img {
		width: 100%;
	}
}

.box_facility_prices {
	width: 100%;
	padding: 5em 5% 5em 5%;
	background-color: #f4f5f9;
}
.box_facility_prices_in {
	width: 100%;
	max-width: 1330px;
	margin: auto;
}
.box_facility_prices .note {
	display: flex;
	align-items: center;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
}
.box_facility_prices .note::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}
.box_facility_prices h2 {
	padding-bottom: 1.0rem;
	margin-bottom: 1rem;
	font-size: clamp(1.6rem, 1.329rem + 1.143vw, 2.7rem);
	font-weight: 800;
	color: #2250e3;
	border-bottom: 1px solid #dfdfdf;
}
.box_facility_prices .tables {
	margin-bottom: 4em;
}
.box_facility_prices .tables table {
	width: 100%;
	margin-bottom: 1em;
	border-collapse: collapse;
}
.box_facility_prices .tables th,
.box_facility_prices .tables td {
	border: 1px solid #cbcbcb;
	padding: 1em 2%;
	text-align: left;
}
.box_facility_prices .tables th {
	background-color: #2250e3;
	color: #FFF;
	font-weight: bold;
}
.box_facility_prices .tables td.th {
	background-color: #e0e3ef;
	font-weight: bold;
}
.box_facility_prices .tables td {
	background-color: #FFF;
}
.box_facility_prices .flier {
	text-align: center;
}
.box_facility_prices .flier img {
	margin: auto;
}

/* SCHOOL */
.main_school {
	width: 100%;
	background-color: #FFF;
}
.box_school {
	width: 100%;
	padding: 5em 5% 5em 5%;
}
.box_school_in {
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
}
.box_school .note {
	display: flex;
	align-items: center;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
}
.box_school .note::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}
.box_school h2 {
	padding-bottom: 1.0rem;
	margin-bottom: 1rem;
	font-size: clamp(1.6rem, 1.329rem + 1.143vw, 2.7rem);
	font-weight: 800;
	color: #2250e3;
	border-bottom: 1px solid #dfdfdf;
}
.box_school .text {
	margin-bottom: 1em;
}
.box_school_top_cont {
	margin: 3em 0 2em 0;
}
.box_school_top_cont .but_radius {
	max-width: 20em;
	margin-bottom: 1.5em;
}
.box_school_top_cont .tel {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 2em;
	font-weight: bold;
}
.box_school_top_cont .tel small {
	margin: 0.2em 0.3em 0 0;
	font-size: 1.1em;
}
.box_school_top_cont .tel a {
	font-size: 2em;
	text-decoration: none;
	color: #333;
}
.box_school_top_mid {
	text-align: center;
}
.box_school_top_mid img {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	border-radius: 1.5rem;
}

.box_school_plan {
	width: 100%;
	padding: 4em 5% 4em 5%;
	background-color: #d4c2d4;
	text-align: center;
}
.box_school_plan_in {
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
}
.box_school_plan_in > h3 {
	font-size: clamp(1.2rem, 1.052rem + 0.623vw, 1.8rem);
	font-weight: bold;
}
.box_school_plan_in > h2 {
	margin-bottom: 2rem;
	font-size: clamp(1.9rem, 1.481rem + 1.766vw, 3.6rem);
	font-weight: bold;
}
.box_school_plan_in > p {
	margin-bottom: 3em;
	text-align: left;
	font-weight: bold;
}
.box_school_plan_in > .button {
	text-align: center;
}
.box_school_plan_in > .button a.but_radius {
	max-width: 20em;
	margin: auto;
}
.box_school_plan_lists {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_school_plan_lists .box_school_plan_list {
	width: 48%;
	margin-bottom: 3em;
	background-color: #FFF;
	border-radius: 1.0rem;
	overflow: hidden;
	line-height: 1;
}
.box_school_plan_lists .box_school_plan_list .blue {
	background-color: #d0edfd;
}
.box_school_plan_lists .box_school_plan_list .pink {
	background-color: #efab9f;
}
.box_school_plan_lists .box_school_plan_list .green {
	background-color: #93d59c;
}
.box_school_plan_lists .box_school_plan_list .yellow {
	background-color: #fbe795;
}
.box_school_plan_lists header {
	position: relative;
	padding: 2.0rem 2.3rem 2.4rem 2.3rem;
}
.box_school_plan_lists header p {
	padding-bottom: 0.8em;
	font-size: 1.1em;
	font-weight: bold;
}
.box_school_plan_lists header h4 {
	font-size: clamp(1.8rem, 1.627rem + 0.727vw, 2.5rem);
	font-weight: bold;
}
.box_school_plan_lists header small {
	position: absolute;
	bottom: 1em;
	left: 0;
	right: 0;
	margin: auto;
	font-size: 0.9em;
	font-weight: bold;
}
.box_school_plan_lists main {
	padding: 1rem 1rem 1.5rem 1rem;
}
.box_school_plan_lists main > div strong {
	font-family: "Bahnschrift", "DIN Alternate", sans-serif;
	font-size: clamp(2.5rem, 1.883rem + 2.597vw, 5rem);
	font-weight: 900;
	color: #e9546b;
}
.box_school_plan_lists main > div small {
	font-size: 2em;
	font-weight: 900;
	color: #e9546b;
}
.box_school_plan_lists main > div span {
	font-size: 1.2em;
	font-weight: 900;
}
.box_school_plan_lists main > p {
	font-weight: bold;
}
@media screen and (max-width: 900px) {
	.box_school_plan_lists .box_school_plan_list {
		width: 108%;
		margin-bottom: 2rem;
	}
}
.box_teach {
	padding-bottom: 0;
	background-color: #f4f5f9;
}
.school_teach {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 2em 0;
}
.school_teacher {
	width: 48%;
	padding-bottom: 4em;
	line-height: 1;
}
.school_teach img {
  width: 100%;
  height: auto;
	margin-bottom: 1em;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1em;
}
.school_teach h3 {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
	font-size: clamp(1.2rem, 1.052rem + 0.623vw, 1.8rem);
}
.school_teach h3 small {
	margin: 0.2em 0 0 1em;
	font-size: 1.0rem;
	color: #2250e3;
}
.school_teacher > p {
	margin: 0 0 1rem 0;
	padding: 0 0 1rem 0;
	font-size: 1rem;
	font-weight: 500;
	border-bottom: 1px solid #dfdfdf;
}
.school_teacher .tnote p {
	margin: 0 0 0.8rem 0;
	font-size: 1rem;
}
.school_teacher > a {
	max-width: 19em;
	margin: 2em auto 0 auto;
}
@media screen and (max-width: 900px) {
	.school_teacher {
		width: 108%;
		padding-bottom: 4em;
		line-height: 1;
	}
}

.box_seishunschool h2 {
	margin-bottom: 2rem;
}
.box_seishunschool p {
	margin-bottom: 2rem;
}
.box_seishunschool a {
	margin: auto;
	max-width: 20em;
}




/* CONTACT */
.box_contact {
	width: 100%;
	padding: 5em 5% 9em 5%;
	background-color: #FFF;
}
.box_contact_tel {
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
}
.box_contact_tel .note {
	display: flex;
	align-items: center;
	font-size: 0.9em;
	font-weight: 600;
	line-height: 1;
}
.box_contact_tel .note::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}
.box_contact_tel h2 {
	padding-bottom: 1.0rem;
	margin-bottom: 1rem;
	font-size: clamp(1.6rem, 1.329rem + 1.143vw, 2.7rem);
	font-weight: 800;
	color: #2250e3;
	border-bottom: 1px solid #dfdfdf;
}
.box_contact_tel .text {
	font-size: 1em;
	font-weight: 500;
}
.box_contact_tel .telephone {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 2.5rem 0;
	font-weight: 900;
	font-size: clamp(3rem, 2.630rem + 1.558vw, 4.5rem);
}
.box_contact_tel .telephone img {
	width: 0.6em;
	height: auto;
	margin: 0.2em 0.1em 0 0;
}
.box_contact_tel .telephone a {
	text-decoration: none;
	color: #2250e3;
	line-height: 1;
}
.box_contact_tel .times {
	font-size: 0.9em;
	font-weight: 500;
}


/* Legal */
.box_legal {
	width: 100%;
	padding: 5em 5% 9em 5%;
	background-color: #FFF;
}
.box_legal_in {
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.8;
}
.box_legal_in h2 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 0.5em;
}
.box_legal_in p {
	margin-bottom: 1em;
}
.box_legal_in ul {
	margin: 0 0 2em 1.7em;
}
.box_legal_in ul > li {
	margin-bottom: 1em;
	list-style: disc;
}
.box_legal_in ol {
	margin: 0 0 2em 1.7em;
}
.box_legal_in ol > li {
	margin-bottom: 1em;
	list-style: decimal;
}
.box_legal_in ol > li > ul {
	margin: 0 0 0 1.7em;
}

/* SITEMAP */
.box_sitemap {
	width: 100%;
	padding: 5em 5% 9em 5%;
	background-color: #f4f5f9;
}
.box_sitemap_in {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 1330px;
	margin: 0 auto;
	font-size: 1rem;
	line-height: 1.8;
}
.box_sitemap_in a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 48%;
	margin-bottom: 3rem;
	background-color: #FFF;
	border-radius: 1rem;
	overflow: hidden;
	text-decoration: none;
}
.box_sitemap_in a div:first-child {
	padding: 4em 0 4em 1.5em;
}
.box_sitemap_in a div:first-child h2 {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin: 0 0 0.8em 0;
	font-size: 0.9em;
	font-weight: 600;
	color: #333;
	line-height: 1;
}
.box_sitemap_in a div:first-child h2::before {
	content: "";
	display: inline-block;
	width: 0.3em;
	height: 0.3em;
	margin-right: 0.5em;
	background-color: #2250e3;
	border-radius: 100%;
}
.box_sitemap_in a div:first-child p {
	font-size: clamp(1.1rem, 1.001rem + 0.416vw, 1.5rem);
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #2250e3;
	line-height: 1;
}
.box_sitemap_in a div:last-child {
	height: 100%;
	width: 45%;
}
.box_sitemap_in a div:last-child img {
	width: auto;
	max-width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.3s ease;
}
.box_sitemap_in a:hover div:last-child img {
	height: 120%;
}
@media screen and (max-width: 900px) {
	.box_sitemap_in a {
		width: 100%;
		margin-bottom: 2rem;
	}
	.box_sitemap_in a div:first-child p {
		letter-spacing: 0;
	}
}