@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans&family=Noto+Sans+JP:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yantramanav:wght@500&display=swap');
/* LOAD: NORMALIZE.CSS */
/* ============================== */
/*  CSS変数  */
/* ============================== */
:root {
	--text-color: #231815;
	--theme-color: #0c7bff;
	--theme-color-dark: #0060e8;
	--dark-blue: #0b3189;
	--light-blue: #f3f8ff;
	--red: #E1380D;
	--hover-bg: #f3f8ff;
	--link-color: #1a0dab;
	--light-gray: #f1f2f2;
	--x-margin: 2.66666666vw; /* 基本左右パディング Window-width:375px→10px */
	--y-margin-m: 35px;
	--y-margin-l: 50px;
	--y-margin-xl: 60px;
	--y-margin-rate: 0.6;
	--global-header-height: 55px;
	--content-width: 94.66666666vw;
	--font-sans: 'Noto Sans JP', sans-serif;
	--font-en: 'Yantramanav', sans-serif;
}
@media screen and (min-width: 1232px), print {
	:root {
		--x-margin: calc((100% - 1200px) / 2);
		--y-margin-m: 45px;
		--y-margin-l: 70px;
		--y-margin-xl: 85px;
		--content-width: 1200px;
		--global-header-height: 7.25em;
	}
}
/* ============================== */
/*  要素の基本設定  */
/* ============================== */
*, *::before, *::after {
	box-sizing: border-box;
}
html {
	word-break: break-word;
}
body {
	font-size: 16px;
	font-size: 100%;
	line-height: 1.5;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	color: var(--text-color);
	font-family: var(--font-sans);
	font-weight: 400;
}
h1, h2, h3, h4, h5, h6 {
	font-weight: 700;
	font-feature-settings: "palt"1;
	margin: 0 0 0.5em;
	font-size: 100%;
}
p {
	margin: 0;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
	border: none;
	border-top: 1px solid #ccc;
	margin: 1.5em 0;
	color: transparent;
}
ol, ul, li, dl, dt, dd {
	margin: 0;
	padding: 0;
}
ul {
	list-style-type: none;
}
table {
	border-collapse: collapse;
	width: 100%;
	margin: 0;
}
th, td {
	padding: 0.4em calc(1em - 1px);
	border: 1px solid #d6d6d6;
	text-align: left;
	vertical-align: middle;
}
th {
	font-weight: 700;
	background-color: #fafafa;
}
p, li, dt, dd, th, td {
	font-size: 14px;
	font-size: 87.5%;
}
li *, dd *, td * {
	font-size: 100%;
}
@media screen and (min-width: 1232px), print {
	p, li, dt, dd, th, td {
		font-size: 16px;
		font-size: 100%;
	}
}
caption {
	padding-top: .75em;
	padding-bottom: .75em;
	color: #6c757d;
	text-align: left;
	caption-side: bottom;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}
picture {
	width: 100%;
}
iframe {
	vertical-align: bottom;
}
figure {
	margin: 0;
}
address {
	font-style: normal;
}
strong, em {
	font-weight: 700;
}
sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sub {
	bottom: -.25em;
}
sup {
	top: -.5em;
}
a {
	color: var(--link-color);
}
@media (hover: hover) {
	a {
		transition: opacity 200ms, background-color 200ms, color 200ms;
	}
}
[type="submit"], [type="reset"], [type="button"], button {
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
	color: #fff;
	padding: .5em 1em;
	border-radius: 0.3em;
}
[type="text"], [type="email"], [type="search"], [type="tel"], [type="url"], [type="password"], textarea {
	font-size: 16px;
	font-size: 100%;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #d6d6d6;
	border-radius: .2em;
	padding: .25em .5em;
	width: 100%;
	vertical-align: bottom;
	transition: 200ms;
	line-height: 1.3;
}
textarea {
	height: 180px;
	line-height: 1.5;
}
input:focus, textarea:focus {}
[type="text"]:focus, [type="email"]:focus, [type="search"]:focus, [type="tel"]:focus, [type="url"]:focus, [type="password"]:focus, textarea:focus,select:focus {
	background-color: #fffff6;
}
/* 読み上げソフト用 */
.reader {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	width: 1px;
	height: 1px; /* 0にすると読み込みしない場合がある */
}
/* ============================== */

/*  LAYOUT */
/* ============================== */
#page {
	width: 100%;
	max-width: 2000px;
	margin: 0 auto;
}
@media screen and (max-width: 767.98px) {
	.only-pc {
		display: none;
	}
}
@media screen and (min-width: 768px), print {
	.only-sp {
		display: none;
	}
}
.align-right {
	text-align: right;
}
.align-center {
	text-align: center;
}
.align-left {
	text-align: left;
}
/* ============================== */
/*  GLOBAL-HEADER */
/* ============================== */
.global-header {
	position: fixed;
	z-index: 110;
	width: 100%;
	background: #fff;
	height: var(--global-header-height);
	top: 0;
	left: 0;
}
.global-header a {
	text-decoration: none;
}
.page-content {
	padding-top: var(--global-header-height);
}
.site-id {
	margin: 0;
	line-height: 1;
	position: absolute;
	top: 0;
	left: var(--x-margin);
	height: 100%;
	width: 72%;
	max-width: 280px;
}
.site-id a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
}
@media screen and (min-width: 1232px), print {
	.site-id {
		max-width: none;
		width: 403px;
		left: 30px;
		top: 7px;
	}
	.site-id a {
		height: auto;
	}
}
/* ============================== */
/*  GLOBAL-HEADER SP-ONLY */
/* ============================== */
@media screen and (max-width: 1231.98px) {
	#header-nav-container {
		position: fixed;
		top: var(--global-header-height);
		left: -100vw;
		z-index: 130;
		height: calc(100vh - var(--global-header-height));
		overflow-y: scroll;
		background: rgba(12, 123, 255, 0.95);
		opacity: 0;
		width: 100vw;
		padding-top: 50px;
		transition: opacity 300ms, left 1ms 300ms, padding-top 1ms 300ms;
	}
	body.js-show-menu #header-nav-container {
		opacity: 1;
		left: 0;
		padding-top: 30px;
		transition: opacity 400ms, padding-top 300ms 50ms;
	}
	.global-nav {
		text-align: center;
		font-weight: 700;
	}
	.global-nav li {
		font-size: 15px;
		font-size: 93.75%;
	}
	.function-nav {
		padding-bottom: 120px;
		text-align: center;
		font-weight: 700;
	}
	.global-nav a, .function-nav a {
		color: #fff;
	}
	.global-nav > ul > li {
		margin-bottom: 22px;
	}
	.global-nav .contact {
		display: none;
	}
	.font-set {
		display: flex;
		color: #fff;
		align-items: center;
		justify-content: center;
		margin: 30px 0 30px;
	}
	.font-set p {
		font-size: 15px;
		font-size: 93.75%;
	}
	.font-set .buttons {
		display: flex;
		margin-left: 0.75em;
	}
	.font-set .buttons a {
		border: 1px solid #fff;
		padding: 0.5em 1.3em;
	}
	.font-set .buttons a:first-child {
		border-radius: 0.833333333333333em 0 0 0.833333333333333em;
	}
	.font-set .buttons a:last-child {
		border-radius: 0 0.833333333333333em 0.833333333333333em 0;
		border-left: none;
	}
	.function-nav .search-bar {
		font-size: 16px;
		font-size: 100%;
		position: relative;
		width: 300px;
		margin: 30px auto 30px;
		font-weight: 400;
	}
	.function-nav input[type="search"] {
		background: #efefef;
		border: 1px solid #efefef;
		padding: 0.25em 30px 0.25em 0.5em;
		border-radius: 0.833333333333333em
	}
	.function-nav .search-bar button {
		position: absolute;
		top: 0;
		right: 0.5em;
		height: 100%;
		width: 34px;
		padding: 6px;
		background: transparent;
	}
	.function-nav .search-bar button img {
		display: block;
	}
	.function-nav .about-reader a {
		padding-left: 1.25em;
		background: url("../img/ico_voice-wh.svg") no-repeat left center;
		background-size: 1em;
		padding-bottom: 0.1em;
	}
}
/*  TOGGLE BUTTON */
#main-menu-toggle {
	width: var(--global-header-height);
	height: var(--global-header-height);
	top: 0;
	right: 0;
	position: fixed;
	z-index: 140;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--theme-color);
	padding: 0 0 13px;
	border-radius: 0;
}
#main-menu-toggle .menu-label {
	text-transform: uppercase;
	font-size: 10px;
	line-height: 1;
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0.8em;
	color: #fff;
	text-align: center;
}
#main-menu-toggle .menu-icon, #main-menu-toggle .menu-icon::before, #main-menu-toggle .menu-icon::after {
	width: 30px;
	height: 2px;
	background-color: #fff;
}
#main-menu-toggle .menu-icon {
	position: relative;
	transition: 100ms;
}
#main-menu-toggle .menu-icon::before, #main-menu-toggle .menu-icon:after {
	content: "";
	position: absolute;
	transition: transform 100ms, top 100ms 100ms;
	left: 0;
	transform-origin: center;
}
#main-menu-toggle .menu-icon::before {
	top: -9px;
}
#main-menu-toggle .menu-icon::after {
	top: 9px;
}
/* TOGGLE BUTTON.js-clicked */
#main-menu-toggle.js-clicked .menu-icon {
	background-color: rgba(255, 255, 255, 0);
}
#main-menu-toggle.js-clicked .menu-icon::before, #main-menu-toggle.js-clicked .menu-icon::after {
	transition: transform 300ms 100ms, top 100ms;
}
#main-menu-toggle.js-clicked .menu-icon::before {
	top: 0;
	transform: rotate(45deg);
}
#main-menu-toggle.js-clicked .menu-icon::after {
	top: 0;
	transform: rotate(-45deg);
}
@media screen and (min-width: 1232px), print {
	#main-menu-toggle {
		display: none;
	}
}
/* ============================== */
/*  GLOBAL-HEADER PC-ONLY */
/* ============================== */
@media screen and (min-width: 1232px), print {
	.global-nav > ul {
		color: #323232;
		position: absolute;
		bottom: 0;
		right: 30px;
		display: flex;
	}
	.global-nav > ul > li {
		margin-left: 27px;
		font-size: 15px;
		font-size: 93.75%;
		font-weight: 700;
	}
	.global-nav > ul > li a {
		padding-bottom: 12px;
		display: block;
		color: inherit;
	}
	/*

  .global-nav .contact a {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    background: var(--theme-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em;
      
  }
            */
	.global-nav .contact {
		display: none;
	}
	.function-nav {
		position: absolute;
		top: 14px;
		right: 30px;
		display: flex;
		align-items: center;
		align-content: center;
		flex-wrap: wrap;
		justify-content: flex-end;
	}
	.font-set {
		display: flex;
		color: #909090;
		align-items: center;
	}
	.font-set p {
		font-size: 12px;
		font-size: 75%;
		font-weight: 700;
	}
	.font-set .buttons {
		display: flex;
		margin-left: 0.75em;
	}
	.font-set .buttons a {
		border: 1px solid #909090;
		padding: 0.25em 0.75em;
		color: inherit;
	}
	.font-set .buttons a:first-child {
		border-radius: 0.833333333333333em 0 0 0.833333333333333em;
	}
	.font-set .buttons a:last-child {
		border-radius: 0 0.833333333333333em 0.833333333333333em 0;
		border-left: none;
	}
	.function-nav .search-bar {
		position: relative;
		margin-left: 18px;
		width: 200px;
	}
	.function-nav input[type="search"] {
		font-size: 12px;
		font-size: 75%;
		background: #efefef;
		border: 1px solid #efefef;
		padding: 0.25em 30px 0.25em 0.5em;
		border-radius: 0.833333333333333em
	}
	.function-nav .search-bar button {
		position: absolute;
		top: 0;
		right: 0.5em;
		height: 100%;
		width: 24px;
		padding: 4px;
		background: transparent;
	}
	.function-nav .search-bar button img {
		display: block;
	}
	.global-nav ul a {
		position: relative;
	}
	.global-nav ul a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 0;
		background-color: #fff;
		transition: 300ms;
	}
	.global-nav ul a:hover::after {
		background-color: var(--theme-color);
		height: 3px;
	}
	.global-nav .contact a:hover {
		background-color: var(--theme-color-dark);
	}
	.font-set .buttons a:hover {
		background-color: var(--hover-bg);
	}
	.function-nav .about-reader {
		width: 100%;
		text-align: right;
		font-size: 87.5%;
		margin: 8px 0 0;
	}
	.function-nav .about-reader a {
		padding-left: 1.1em;
		background: url("../img/ico_voice-gy.svg") no-repeat left center;
		background-size: 1em;
		padding-bottom: 0.1em;
		color: #999999;
	}
	.function-nav .about-reader a:hover {
		text-decoration: underline;
	}
}
/* ============================== */
/*  BREADCRUMB-NAV */
/* ============================== */
nav.breadcrumb {
	margin: 25px var(--x-margin) 35px;
	color: #505050;
}
nav.breadcrumb ol {
	margin: 0;
	padding: 0;
	list-style-type: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
nav.breadcrumb li {
	margin: 0;
	padding: 0;
	display: flex;
	align-items: center;
	font-size: 13px;
	font-size: 81.25%;
}
nav.breadcrumb li:not(:last-child)::after {
	content: "";
	width: 0.5em;
	height: 0.5em;
	box-sizing: border-box;
	display: block;
	margin: 0 0.6em 0 0.35em;
	border-top: 1px solid var(--text-color);
	border-right: 1px solid var(--text-color);
	transform: rotate(45deg);
	position: relative;
	top: 0.07em;
}
nav.breadcrumb a {
	color: inherit;
}
nav.breadcrumb a:hover {
	color: var(--theme-color);
}
@media screen and (min-width: 1232px), print {
	nav.breadcrumb {
		margin: 40px var(--x-margin) 55px;
	}
	nav.breadcrumb li {
		font-size: 14px;
		font-size: 87.5%;
	}
}
/* ============================== */
/*  GLOBAL FOOTER */
/* ============================== */
/*  GO PAGETOP */
#go-pagetop a {
	position: fixed;
	z-index: 80;
	text-indent: -100vw;
	overflow: hidden;
	transition: 200ms ease;
	background-color: rgba(0, 0, 0, 0.4);
	width: 40px;
	height: 40px;
	bottom: 20px;
	right: var(--x-margin);
	display: block;
}
#go-pagetop a:hover {
	background-color: var(--theme-color);
}
#go-pagetop a::before {
	content: "";
	position: absolute;
	display: block;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	transform: rotate(45deg);
	left: calc(50% - 5px);
	top: calc(50% - 4px);
	width: 10px;
	height: 10px;
}
@media screen and (min-width: 768px), print {
	#go-pagetop a {
		width: 50px;
		height: 50px;
	}
	#go-pagetop a::before {
		width: 12.5px;
		height: 12.5px;
		left: calc(50% - 6.25px);
		top: calc(50% - 5px);
	}
}
@media screen and (min-width: 1232px), print {
	#go-pagetop a {
		width: 60px;
		height: 60px;
		right: 30px;
	}
	#go-pagetop a::before {
		width: 15px;
		height: 15px;
		left: calc(50% - 7.5px);
		top: calc(50% - 6px);
	}
}
.global-footer {
	padding: 30px var(--x-margin);
	background: #727171;
	color: #fff;
}
.global-footer a {
	color: inherit;
	text-decoration: none;
}
/* FOOTER-NAV */
.footer-nav {
	column-count: 2;
	column-gap: 19.5px;
	line-height: 1.5;
	margin: 0 0 50px;
}
.footer-nav .footer-nav-column {
	break-inside: avoid;
	margin-bottom: 32px;
}
.footer-nav-column:first-child .footer-nav-list li:nth-last-child(3) {
	margin-top: 32px;
}
.footer-nav-list li {
	position: relative;
	padding: 0;
	margin-bottom: 1em;
	font-size: 13px;
	font-size: 81.25%;
	display: block;
	padding-left: 1em;
	background: url("../img/shape_w1.svg") no-repeat top 0.5em left 0.25em;
	background-size: 0.5em;
}
.footer-nav-list.sns li {
	font-size: 12px;
	font-size: 75%;
	margin-bottom: 0.5em;
}
.footer-nav h6 {
	display: flex;
	align-items: center;
	font-size: 90%;
	font-weight: 700;
	margin: 0 0 0.5em;
}
.footer-nav h6:not(:first-child) {
	margin-top: 32px;
}
.footer-nav h6 .icon {
	width: 1em;
	display: block;
	margin-right: 0.333333em;
	line-height: 1;
}
/* FOOTER-ADDRESS */
.footer-address .logo {
	width: 100%;
	max-width: 355px;
	margin: 20px 0;
}
.footer-address p {
	line-height: 1.5;
	font-size: 13px;
	font-size: 81.25%;
}
.footer-address .tel-number, .footer-address .fax-number {
	display: inline-block;
	margin-top: 7px;
}
.footer-address .tel-number {
	margin-right: 1em;
}
.footer-address .tel-number a {
	border-bottom: 1px dashed #fff;
}
.footer-nav a:hover {
	text-decoration: underline;
}
.footer-sns a:hover {
	opacity: 0.75;
}
.copyright {
	font-size: 10px;
	font-size: 62.5%;
	line-height: 1.5;
	background: var(--orange);
	color: #fff;
	text-align: center;
	margin: 30px 0 0;
}
.copyright small {
	font-size: inherit;
}
@media screen and (min-width: 768px), print {
	.footer-nav {
		column-count: auto;
		column-gap: 0;
		margin: 0;
		display: flex;
		justify-content: space-between;
	}
	.footer-nav > div {
		width: auto;
	}
}
@media screen and (min-width: 1232px), print {
	.global-footer {
		padding: 50px var(--x-margin) 20px;
	}
	.footer-main {
		display: flex;
		flex-direction: row-reverse;
		justify-content: space-between;
	}
	.footer-nav {
		width: 768px;
		padding-top: 7px;
	}
	.footer-address .logo {
		width: 346px;
		max-width: none;
		margin: 0 0 24px;
	}
	.copyright {
		font-size: 12px;
		font-size: 75%;
		margin-top: 40px;
	}
}
/* ============================== */
/* FACILITY,EVENTS,LESSONSを探す */
/* ============================== */
.guide-nav {
	display: flex;
	margin-top: 80px;
}
.guide-nav > div {
	position: relative;
	width: 333.33333333%;
}
.guide-nav h2 {
	position: absolute;
	bottom: 10px;
	left: 0;
	color: #fff;
	line-height: 1.1;
	margin: 0;
	width: 100%;
	padding: 0 5px;
	font-size: 16px;
}
.guide-nav h2 .en {
	font-size: 20px;
	font-family: var(--font-en);
	display: block;
	font-weight: 500;
	text-transform: uppercase;
}
.guide-nav h2 .ja {
	font-size: 10px;
	font-size: 62.5%;
	display: block;
	font-weight: 400;
	width: calc(100% - 23px);
}
.guide-nav a::after {
	content: "";
	width: 18px;
	height: 18px;
	position: absolute;
	bottom: 5px;
	right: 5px;
	background: url("../img/arr_02wh.svg") no-repeat center;
}
@media screen and (min-width: 768px), print {
	.guide-nav {
		margin-top: 90px;
	}
	.guide-nav h2 {
		bottom: 13px;
		padding: 0 13px;
	}
	.guide-nav h2 .en {
		font-size: 42px;
	}
	.guide-nav h2 .ja {
		font-size: 13px;
		font-size: 81.25%;
		letter-spacing: 0.3em;
	}
	.guide-nav a::after {
		width: 30px;
		height: 10px;
		bottom: 13px;
		right: 13px;
	}
}
@media screen and (min-width: 1232px), print {
	.guide-nav {
		margin-top: 120px;
	}
	.guide-nav h2 {
		bottom: 20px;
		padding: 0 20px;
	}
	.guide-nav h2 .en {
		font-size: 70px;
	}
	.guide-nav h2 .ja {
		font-size: 22px;
	}
	.guide-nav a::after {
		width: 54px;
		height: 15px;
		bottom: 20px;
		right: 20px;
	}
}
@media (hover: hover) {
	.guide-nav a::after {
		transition: 300ms;
	}
	.guide-nav a:hover::after {
		right: 5px;
	}
}
/* ============================== */
/*  REPEATABLE */
/* ============================== */
.chapter-section {
	margin: var(--y-margin-xl) var(--x-margin);
}
.display-none {
	display: none;
}
a.dashed {
	border-bottom: 1px dashed var(--link-color);
}
/* 外部リンクアイコン */
.ex-link-icon {
	margin-left: 0.33333333em;
	width: 1em;
	line-height: 1;
	display: inline-block;
}
/* 見出し */
.heading-h1a {
	font-size: 22px;
	margin: 0 0 0.75em;
	padding: 0 0 0.2em;
	border-bottom: 3px solid var(--theme-color);
	color: var(--theme-color);
}
@media screen and (min-width: 768px), print {
	.heading-h1a {
		font-size: 24px;
	}
}
@media screen and (min-width: 1232px), print {
	.heading-h1a {
		font-size: 38px;
		border-bottom-width: 4px;
	}
}
.heading-h2a {
	font-size: 19px;
	font-size: 118.75%;
	margin: var(--y-margin-l) 0 1em;
	background-color: var(--theme-color);
	color: #fff;
	padding: 0.25em 0.75em;
}
.heading-h2a .num-b {
	display: inline-block;
	border-right: 0.1em solid rgba(255, 255, 255, 0.4);
	padding-right: 0.5em;
	margin-right: 0.75em;
	line-height: 1.2;
}
.heading-h2b {
	font-size: 19px;
	font-size: 118.75%;
	margin: var(--y-margin-m) 0 0.4em;
}
.heading-h2c {
	color: var(--theme-color);
	font-size: 19px;
	font-size: 118.75%;
	padding: 0 0 0.5em;
	border-bottom: 1px solid var(--theme-color);
	text-align: center;
	margin: 0 0 1.428571428571429em;
}
@media screen and (min-width: 768px), print {
	.heading-h2c {
		font-size: 24px;
	}
}
@media screen and (min-width: 1232px), print {
	.heading-h2a {
		font-size: 25px;
	}
	.heading-h2b {
		font-size: 25px;
	}
	.heading-h2c {
		font-size: 28px;
	}
}
.heading-h3a {
	font-size: 18px;
	font-size: 112.5%;
	margin: var(--y-margin-m) 0 0.4em;
}
.heading-h3b {

	font-size: 18px;
	font-size: 112.5%;
	margin: var(--y-margin-m) 0 0.4em;
}
.heading-h3b::before {
	content: "■";
	color: var(--theme-color);
	padding-right: 0.1em;
}
.heading-h4a {
	font-size: 16px;
	font-size: 100%;
	margin: 1em 0 0.3em;
}
.heading-h4b {
	font-size: 16px;
	font-size: 100%;
	margin: 1em 0 0.3em;
}
.heading-h4b::before {
	content: "●";
	font-size: 0.8em;
	position: relative;
	top: -0.1em;
	margin-right: 0.1em;
}
.heading-h5a {
	font-size: 15px;
	font-size: 93.75%;
	margin: 1em 0 0.4em;
}
.heading-h5b {
	font-size: 15px;
	font-size: 93.75%;
	margin: 1em 0 0.4em;
}
.heading-h5b::before {
	content: "■";
	color: var(--theme-color);
	padding-right: 0.1em;
}
@media screen and (min-width: 1232px), print {
	.heading-h3a {
		font-size: 22px;
	}
	.heading-h3b {
		font-size: 22px;
	}
	.heading-h4a {
		font-size: 19px;
	}
	.heading-h4b {
		font-size: 19px;
	}
	.heading-h5a {
		font-size: 16px;
		font-size: 100%;
	}
	.heading-h5b {
		font-size: 16px;
		font-size: 100%;
	}
}
#facility-detail .heading-h3a {
	/*heading-h2bに変更*/
	font-size: 19px;
	font-size: 118.75%;
	margin: var(--y-margin-m) 0 0.4em;
}
@media screen and (min-width: 1232px), print {
	#facility-detail .heading-h3a {
		/*heading-h2bに変更*/
		font-size: 25px;
	}
}
/* heading-h2a 内、白窓テキスト */
.heading-h2a .sub-text {
	background: #fff;
	color: var(--text-color);
	font-size: 70%;
	padding: 0.1em 0.55em;
	line-height: 1.2;
	margin-left: 0.5em;
	display: inline-block;
	position: relative;
	top: -0.16em;
}
/* アイコン付き見出し */
h2.add-news-icon, h2.add-facility-icon {
	color: var(--theme-color);
	font-size: 19px;
	font-size: 118.75%;
	padding: 2.8em 0 0.5em;
	border-bottom: 1px solid var(--theme-color);
	text-align: center;
	margin: 0 0 1.428571428571429em;
}
h2.add-news-icon {
	background: url("../img/ico_hd-news.svg") no-repeat center top;
	background-size: 2.2em;
}
h2.add-facility-icon {
	background: url("../img/ico_hd-facility.svg") no-repeat center top;
	background-size: 2.2em;
}
@media screen and (min-width: 768px), print {
	h2.add-news-icon, h2.add-facility-icon {
		padding-top: 3.5em;
	}
	h2.add-news-icon {
		background-size: 2.9em;
	}
	h2.add-facility-icon {
		background-size: 2.9em;
	}
	h2.add-news-icon, h2.add-facility-icon {
		font-size: 24px;
	}
}
@media screen and (min-width: 1232px), print {
	h2.add-news-icon, h2.add-facility-icon {
		font-size: 28px;
	}
}
/* ボタン */
a.button-1a {
	background: #fafafa;
	border: 1px solid #d6d6d6;
	border-radius: 7px;
	width: 100%;
	padding: 10px 30px 10px 10px;
	display: flex;
	position: relative;
	color: inherit;
	text-decoration: none;
}
a.button-1a:hover {
	background-color: #eaeaea;
}
a.button-1a::after {
	content: "";
	width: 8px;
	height: 8px;
	display: block;
	position: absolute;
	top: calc(50% - 4px);
	right: 10px;
	border-bottom: 1px solid var(--theme-color);
	border-right: 1px solid var(--theme-color);
	transform: rotate(45deg);
}
@media screen and (min-width: 1232px), print {
	a.button-1a {
		border-radius: 10px;
		padding: 15px 38px 15px 15px;
		color: var(--text-color);
	}
	a.button-1a::after {
		width: 11px;
		height: 11px;
		top: calc(50% - 5.5px);
		right: 15px;
	}
}
.button-1b {
	text-align: center;
	margin: var(--y-margin-l) 0 0;
	font-size: 15px;
	font-size: 93.75%; /*fontset*/
}
.button-1b a {
	text-align: center;
	color: var(--theme-color);
	padding: 1em 1.2em;
	display: inline-block;
	border: 1px solid var(--theme-color);
	font-weight: bold;
	text-decoration: none;
}
.button-1b a::before {
	content: "▶";
	font-size: 0.5em;
	position: relative;
	top: -0.25em;
	margin-right: 0.33333333em;
}
.button-1b a:hover {
	background: var(--theme-color);
	color: #fff;
}
@media screen and (min-width: 1232px), print {
	.button-1b {
		font-size: 16px;
		font-size: 100%; /*fontset*/
	}
}
/* 四角囲み数字 */
.num-a {
	font-size: 0.8em;
	border: 1px solid #555;
	display: inline-block;
	width: 1.15em;
	text-align: center;
	line-height: 1.15;
	margin-right: 0.1em;
}
/* テーブル関連 -  セルの幅 */
.w-10 {
	width: 10%;
}
.w-20 {
	width: 20%;
}
.w-30 {
	width: 30%;
}
.w-40 {
	width: 40%;
}
.w-50 {
	width: 50%;
}
.w-60 {
	width: 60%;
}
.w-70 {
	width: 70%;
}
.w-80 {
	width: 80%;
}
.w-90 {
	width: 90%;
}
.w-100 {
	width: 100%;
}
/* テーブル関連 -  テーブル内縦組みセル */
table .vertical {
	line-height: 1;
	padding-left: 1em;
	padding-right: 1em;
	min-width: calc(3em + 1px);
}
table .vertical span {
	writing-mode: vertical-rl;
	min-height: 5em;
}
/* テーブル関連 -  セルの色、ストライプテーブル */
table.stripe > tbody > tr:nth-child(odd) > td {
	/*background-color: #f8f8f8;*/
	background-color: rgba(0, 0, 0, 0.03);
}
table .th1, table.stripe > tbody > tr:nth-child(odd) > .th1 {
	background-color: var(--theme-color);
	color: #fff;
}
table .th2, table.stripe > tbody > tr:nth-child(odd) > .th2 {
	background-color: #f3f8ff;
	background-color: rgba(146, 191, 255, 0.15);
}
/* テーブル関連 - table-wrapper（左右スクロール） */
.table-wrapper {
	width: 100%;
	overflow-x: scroll;
}
.table-wrapper > *:not(.scroll-hint-icon-wrap) {
	min-width: 727px;
}
@media screen and (min-width: 768px), print {
	.table-wrapper {
		overflow: visible;
	}
}
.table-wrapper + .table-wrapper {
	margin-top: var(--y-margin-m);
}
/* scroll-hint overwrite */
.scroll-hint-icon {
	top: calc(50% - 32.5px) !important;
	height: 65px !important;
	padding: 15px 10px 10px 10px !important;
}
.scroll-hint-icon::before {
	width: 27px !important;
	height: 27px !important;
}
.scroll-hint-icon::after {
	top: 5px !important;
}
/* 脚注、表脚注 */
.footnote, .table-footnote {
	margin: 15px 0 0;
	font-size: 93%
}
/* リストのスタイル（括弧数字、米数字） */
ul.notice-list li {
	display: flex;
	line-height: 1.4;
}
ul.notice-list li:not(:first-child) {
	margin-top: 0.5em;
}
ul.notice-list + ul.notice-list {
	margin-top: 1em;
}
ul.notice-list + p {
	margin-top: 1em;
}
ul.notice-list span.num {
	display: block;
	flex: 0 0 2em;
}
ul.notice-list span.mark {
	display: block;
	flex: 0 0 3em;
}
/* リストのスタイル（箇条書き） */
ul.bullet-list-a li {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.4;
}
ul.bullet-list-a li::before {
	content: "・";
	width: 1em;
	text-align: center;
	display: inline-block;
	text-indent: 0;
}
ul.bullet-list-a li:not(:first-child) {
	margin-top: 0.5em;
}
ul.notice-list li strong, ul.bullet-list-a li strong {
	color: var(--red);
}
/* リストのスタイル（リンク）A */
ul.link-list-a li {
	line-height: 1.4;
	padding-left: 1.25em;
	background: url("../img/ico_link-a.svg") no-repeat left top 0.4em;
	background-size: 0.75em 0.75em;
}
ul.link-list-a li:not(:first-child) {
	margin-top: 0.75em;
}
ul.link-list-a li a {
	color: inherit;
	text-decoration: none;
}
ul.link-list-a li a:hover {
	border-bottom: 1px solid var(--text-color);
}
/* リストのスタイル（リンク）B（アクセスで使用）横並び */
ul.link-list-b {
	display: flex;
	flex-wrap: wrap;
}
ul.link-list-b li {
	padding: 0.25em 0 0.25em 1.1em;
	background: url("../img/ico_link-b.svg") no-repeat left center;
	background-size: 0.9em;
	margin-right: 2em;
}
ul.link-list-b li a {
	color: inherit;
	text-decoration: none;
}
ul.link-list-b li a:hover {
	border-bottom: 1px solid var(--text-color);
}
/* リストのスタイル（リンク）B　項目が1つのとき */
/*
p.link-list-b {
	padding: 0.25em 0 0.25em 1.1em;
	background: url("../img/ico_link-b.svg") no-repeat left center;
	background-size: 0.9em;
	margin-right: 2em;
}
p.link-list-b a {
	color: inherit;
}
p.link-list-b a:hover {
	border-bottom: 1px solid var(--text-color);
}
*/
/* リストのスタイル（リンク）C */
ul.link-list-c {
	margin: 1em 0;
}
ul.link-list-c:last-child {
	margin-bottom: 0;
}
ul.link-list-c li {
	padding: 0.2em 0 0.2em 1.1em;
	background: url("../img/ico_link-b.svg") no-repeat left center;
	background-size: 0.9em;
	margin-right: 2em;
}
ul.link-list-c li a {}
/* 表 */
dl.d-list-a dt {
	border: 1px solid #d6d6d6;
	padding: 0.25em 1em;
	background: #f3f8ff;
	font-weight: 700;
}
dl.d-list-a dd {
	border: 1px solid #d6d6d6;
	margin-top: -1px;
	padding: 0.25em 1em;
}
dl.d-list-a dd + dt {
	margin-top: 1em;
}
@media screen and (min-width: 768px), print {
	dl.d-list-a {
		display: flex;
		flex-wrap: wrap;
		border-bottom: 1px solid #d6d6d6;
	}
	dl.d-list-a dt {
		margin: 0;
		padding: 0.5em 1em;
		width: 50%;
		border-bottom: none;
		display: flex;
		align-items: center;
	}
	dl.d-list-a dd {
		margin: 0;
		padding: 0.5em 1em;
		width: 50%;
		border-left: none;
		border-bottom: none;
		display: flex;
		align-items: center;
	}
	dl.d-list-a dd + dt {
		margin: 0;
	}
}
/*  三点リーダーリスト */
dl.leader-list {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5;
}
dl.leader-list > dt {
	display: flex;
	align-items: center;
	width: 100%;
	margin-top: 0.25em;
}
dl.leader-list > dt::after {
	content: "";
	border-top: 2px dotted #888;
	flex: 1 1 auto;
}
dl.leader-list > dd {
	padding-left: 1em;
}
@media screen and (min-width: 1232px), print {
	dl.leader-list > dd {
		padding-left: 0;
		min-width: 8em;
		margin-top: 0.25em;
	}
	/* DT term 12em */
	dl.leader-list.dt-w12em > dt {
		width: 12em;
	}
	dl.leader-list.dt-w12em > dd {
		width: calc(100% - 12em);
	}
	/* DT term 15em */
	dl.leader-list.dt-w15em > dt {
		width: 15em;
	}
	dl.leader-list.dt-w15em > dd {
		width: calc(100% - 15em);
	}
	/* DT term 19em */
	dl.leader-list.dt-w19em > dt {
		width: 18em;
	}
	dl.leader-list.dt-w19em > dd {
		width: calc(100% - 19em);
	}
}
/* マウスホバーでイメージ拡大 */
@media (hover: hover) {
	a.hover-image-enlarge .image {
		overflow: hidden
	}
	a.hover-image-enlarge .image img {
		transition: 300ms;
	}
	a.hover-image-enlarge:hover .image img {
		transform: scale(1.1);
		opacity: 0.8;
	}
	a.hover-image-lighten:hover {
		opacity: 0.75;
	}
}
/* スポーツ協会関連ページ ヒーローイメージ */
.association-hero {
	position: relative;
	height: 26.666666666666667vw;
	max-height: 300px;
}
.association-hero .page-title {
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	padding: 2vw 8.6vw 4vw 10px;
	z-index: 1;
	overflow: hidden;
	height: 100%;
	width: 46%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.association-hero .page-title::before {
	width: 100%;
	height: 100%;
	background: var(--theme-color);
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	z-index: 0;
	transform: skewX(-18deg);
	transform-origin: top right;
}
.association-hero .page-title::after {
	width: 100%;
	height: 100%;
	background: url("../img/bg_logo.svg") no-repeat left center;
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	z-index: 0;
}
.association-hero .page-title > * {
	z-index: 2;
	position: relative;
}
/*
.association-hero .page-title .shoulder {
  font-size: 3vw;
  line-height: 1;
}*/
.association-hero .page-title h1 {
	font-size: 15px;
	font-size: 4vw;
	line-height: 1.3;
	margin: 8px 0 0;
}
.association-hero .page-title h1 .title_sub {
	font-size: 0.7em;
	display: block;
	margin-bottom: 0.25em
}
.association-hero .image {
	width: 63.6%;
	height: 100%;
	margin-left: auto;
}
.association-hero .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
@media screen and (min-width: 768px), print {
	.association-hero .page-title {
		padding: 2vw 8.6vw 4vw calc(var(--x-margin));
	}
	/*
  .association-hero .page-title .shoulder {
    font-size: 3vw;
  }
    */
	.association-hero .page-title h1 {
		font-size: 3.2vw;
		line-height: 1.3;
	}
	.association-hero .page-title h1 .title_sub {
		font-size: 0.55em;
	}
	.association-hero .facility-title h1 .em {
		font-size: 177.777777%;
		display: block;
	}
}
@media screen and (min-width: 1232px), print {
	.association-hero .page-title {
		padding: 10px 100px 40px calc(var(--x-margin));
	}
	/*
  .association-hero .page-title .shoulder {
    font-size: 36px;
  }
    */
	.association-hero .page-title h1 {
		font-size: 40px;
	}
}
@media screen and (min-width: 1600px) {
	.association-hero .page-title::after {
		background-position: left calc(50vw - 800px) center;
	}
}
/* 施設、イベント、教室を探すのヒーロー */
.search-hero {
	position: relative;
	height: 26.666666666666667vw;
	max-height: 300px;
}
.search-hero .page-title {
	color: #fff;
	position: absolute;
	top: 0;
	left: 0;
	padding: 2vw 8.6vw 4vw 10px;
	z-index: 1;
	overflow: hidden;
	height: 100%;
	width: 46%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.search-hero .page-title::before {
	width: 100%;
	height: 100%;
	background-color: var(--theme-color);
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	z-index: 0;
	transform: skewX(-18deg);
	transform-origin: top right;
}
.search-hero .page-title > * {
	z-index: 2;
	position: relative;
}
/*
.search-hero .page-title .shoulder {
  font-size: 3vw;
  line-height: 1;
}*/
.search-hero .page-title h1 {
	font-size: 15px;
	font-size: 4vw;
	line-height: 1.2;
	margin: 8px 0 0;
}
.search-hero .page-title h1 .en {
	font-size: 7vw;
	font-family: var(--font-en);
	display: block;
	font-weight: 500;
	text-transform: uppercase;
}
.search-hero .page-title h1 .ja {
	font-size: 3vw;
	display: block;
	font-weight: 400;
	letter-spacing: 0.3em;
}
.search-hero .image {
	width: 63.6%;
	height: 100%;
	margin-left: auto;
}
.search-hero .image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
}
.search-hero.lesson .page-title::before {
	background-color: #009d89
}
.search-hero.event .page-title::before {
	background-color: #e8ad3e
}
@media screen and (min-width: 768px), print {
	.search-hero .page-title {
		padding: 2vw 8.6vw 4vw calc(var(--x-margin));
	}
	.search-hero .page-title h1 .en {
		font-size: 7vw;
	}
	.search-hero .page-title h1 .ja {
		font-size: 2.2vw;
	}
}
@media screen and (min-width: 1232px), print {
	.search-hero .page-title {
		padding: 10px 100px 40px calc(var(--x-margin));
	}
	.search-hero .page-title h1 .en {
		font-size: 70px;
	}
	.search-hero .page-title h1 .ja {
		font-size: 22px;
	}
}
/* トラフィック図関連 */
.traffic-table {
	border: 1px solid #c5c5c5;
	padding: 9px 9px;
}
.traffic-table + h3 {
	margin-top: 2em;
}
.traffic-table .traffic-figure {
	margin: 10px 0;
}
.traffic-table .traffic-figure p:only-child {
	padding: 20px 0;
}
.traffic-table .traffic-footnote {
	border-top: 1px solid #c5c5c5;
	margin: 19px 0 calc(-9px + 8px);
	padding-top: 8px;
}
@media screen and (min-width: 1232px), print {
	.traffic-table {
		padding: 19px 19px;
	}
	.traffic-table + h3 {
		margin-top: 2.6em;
	}
	.traffic-table .traffic-figure {
		margin: 20px 0;
	}
	.traffic-table .traffic-footnote {
		margin: 39px 0 calc(-19px + 12px);
		padding-top: 12px;
	}
}
/* タブナビゲーション */
nav.tab-nav {
	margin: 0 var(--x-margin) var(--y-margin-m);
	border-bottom: 4px solid var(--theme-color);
}
nav.tab-nav ul.tab-list {
	display: flex;
	justify-content: space-around;
}
nav.tab-nav li {
	width: 100%;
	text-align: center;
	font-size: 13px;
	font-size: 81.25%;
	line-height: 1.2;
	font-weight: 700;
	font-feature-settings: "palt"1;
}
nav.tab-nav li:not(:first-child) {
	margin-left: 2px;
}
nav.tab-nav li a, nav.tab-nav li span {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	border-radius: 7px 7px 0 0;
	padding: 0.65em 0.5em;
	background-color: #e9e9e9;
	color: #838383;
	text-decoration: none;
}
nav.tab-nav li.selected span {
	background-color: var(--theme-color);
	color: #fff;
}
nav.tab-nav li a:hover {
	background-color: var(--theme-color);
	color: #fff;
}
@media screen and (min-width: 768px), print {
	nav.tab-nav li {
		font-size: 18px;
		font-size: 112.5%;
	}
}
@media screen and (min-width: 1232px), print {
	nav.tab-nav li {
		font-size: 24px;
	}
	nav.tab-nav li:not(:first-child) {
		margin-left: 5px;
	}
	nav.tab-nav li a, nav.tab-nav li span {
		border-radius: 10px 10px 0 0;
	}
}
.important-notice {
	color: var(--red);
	font-weight: bold;
	border: 1px solid var(--red);
	margin: 0 0 var(--y-margin-m);
	padding: 0.6em 1em;
}
.important-notice p {
	display: flex;
	align-items: flex-start;
}
.important-notice p::before {
	content: "";
	display: block;
	width: 1.388888888888889em;
	height: 1.388888888888889em;
	background: url("../img/ico_notice.svg") no-repeat center;
	margin-right: 0.5em;
	flex: 0 0 auto;
}
@media screen and (min-width: 768px), print {
	.important-notice {
		padding: 1em 1.5em;
	}
}
/* よくある質問のリスト */
.qa-list {
	border-bottom: 1px solid #d6d6d6;
}
.qa-list dt > a {
	border-top: 1px solid #d6d6d6;
	padding: 1.05em 1.7em 0.85em 0;
	display: flex;
	align-items: flex-start;
	position: relative;
	color: inherit;
	text-decoration: none;
}
.qa-list dt > a:hover {
	background-color: var(--hover-bg);
}
.qa-list dt:first-child {
	border-top: none;
}
.qa-list dd {
	padding: 0.85em 0 2em 1.5em;
	display: flex;
	align-items: flex-start;
}
.qa-list dt .icon, .qa-list dd .icon {
	background: var(--theme-color);
	color: #fff;
	font-size: 110%;
	min-width: 2em;
	padding: 0.2em 0.25em 0.16em;
	flex: 0 0 auto;
	text-align: center;
	margin-right: 1em;
	font-family: var(--font-en);
	margin-top: -0.2em;
}
.qa-list dd .icon {
	background: #777;
}
.qa-list dt > a::before, .qa-list dt > a::after {
	content: "";
	width: 1em;
	height: 2px;
	position: absolute;
	top: calc(50% - 1px);
	right: 0;
	background: var(--theme-color);
}
.qa-list dt > a::after {
	transform: rotate(90deg);
	transition: 200ms;
}
.qa-list dt > a.selected::after {
	transform: rotate(0);
}
@media screen and (min-width: 1232px), print {
	.qa-list dt {
		font-size: 18px;
		font-size: 112.5%;
	}
	.qa-list dd {
		padding-left: 3.3em;
	}
}
ul.notice-list-b li {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.4;
}
ul.notice-list-b li::before {
	content: "・";
	width: 1em;
	text-align: center;
	display: inline-block;
	text-indent: 0;
}
ul.notice-list-b li:not(:first-child) {
	margin-top: 0.5em;
}
/* ============================== */
/*  404 PAGE */
/* ============================== */
.not-found-page::after {
	content: "";
	position: absolute;
	top: var(--global-header-height);
	left: 0;
	width: 100%;
	height: 1px;
	background: #ddd;
}
.not-found-section {
	position: relative;
}
.not-found-section::before {
	content: "";
	position: absolute;
	top: calc(var(--y-margin-xl) * -1);
	right: 0;
	width: 100%;
	height: calc(100% + var(--y-margin-xl) + 80px);
	background: url("../img/mark_nespa.svg") no-repeat right bottom;
	z-index: -1;
}
@media screen and (min-width: 768px), print {
	.not-found-section::before {
		top: calc((var(--y-margin-xl) * -1) - 25px - 1.5em);
		height: calc(100% + var(--y-margin-xl) + 90px + 25px + 1.5em);
	}
}
@media screen and (min-width: 1232px), print {
	.not-found-section::before {
		top: calc((var(--y-margin-xl) * -1) - 40px - 1.5em);
		height: calc(100% + var(--y-margin-xl) + 120px + 40px + 1.5em);
	}
}
.not-found-section .body-copy {
	line-height: 1.8;
	margin-bottom: 60px;
}
.not-found-section .link-button {
	margin: 25px 0 0;
	font-size: 15px;
	font-size: 93.75%;
}
.not-found-section .link-button a {
	font-weight: 700;
	line-height: 1.5;
	padding: 0.48333333em 1em;
	border-radius: 1.2333333em;
	background: var(--theme-color);
	text-align: center;
	width: 12em;
	display: inline-block;
	color: #fff;
	text-decoration: none;
}
.not-found-section .link-button a:hover {
	background-color: var(--theme-color-dark);
}
/* Utilities */
.ml-2 {
	margin-left: 2em !important;
}
/* PCからのアクセスで電話番号リンクを無効にする */
a.js-invalid{
	pointer-events: none;
	border-bottom: none !important;
	text-decoration: none;
}

