@charset "utf-8";
/* ------------------------------------------------------------
	element
------------------------------------------------------------ */
html {
	position: relative;
	overflow-x: hidden;
	line-height: 1.8;
	scroll-behavior: smooth;
	font-feature-settings: "palt"1;
	letter-spacing: 0.035em;
	overflow-wrap: anywhere;
	word-break: normal;
	line-break: strict;
}
html:has(.is-opened) {
	overflow: hidden;
}
/* @font-face でローカルフォントを優先 */
@font-face {
	font-family: "Local Noto Sans JP";
	src: local("Noto Sans JP");
}
html, html * {
	box-sizing: border-box;
}
body {
	font-family: "Helvetica Neue", "Helvetica", "Arial", "Local Noto Sans JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
	color: #333;
}
strong, h1, h2, h3, h4, h5, h6, dt, b, .bold {
	font-weight: bold;
}
a {
	color: #1558d6;
}
@media (hover : hover) {
	a:hover {
		color: #1a0dab;
		text-decoration: underline;
	}
}
a:active {
	color: #1a0dab;
	text-decoration: underline;
}
a:visited {
	color: #671bc7;
}
a[href$=".pdf"]:after {
	content: " ";
	padding: 7px 0 7px 20px;
	background: url("../img/pdf-icon.png") left center/15px auto no-repeat;
}
p {
	margin: 0 0 10px;
}
table td:not(.course_about td) {
	border-top: none !important;
	border-bottom: none !important;
}
/* ------------------------------------------------------------
	header - logo
------------------------------------------------------------ */
header {
	width: 100%;
	z-index: 20;
	top: 0;
	background-color: rgba(255, 255, 255, .5);
	box-shadow: 0 1px 3px rgba(0, 0, 0, .1);
	margin-bottom: 0;
	min-height: 46px;
	padding: 5px 16px;
	position: fixed;
}
#page-form header {
	position: relative;
}
header > div {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#page-form header h1 img {
	aspect-ratio: 25 / 13;
	width: 100%;
	max-width: 300px;
	min-width: 150px;
}
/* ------------------------------------------------------------
	main-menu
------------------------------------------------------------ */
header .main-menu ul {
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	width: 100%;
	padding: 0 0 10px;
}
/*
#page-form header div:has(> .main-menu) {
	display: none
}
*/
/* ------------------------------------------------------------
	hamburger
------------------------------------------------------------ */
.menu-button {
	flex-direction: column;
	justify-content: center;
	align-items: center;
	row-gap: 3px;
	width: 34px;
	height: 34px;
	border: 1px solid #333333;
	border-radius: 2px;
	background-color: #ffffff;
	z-index: 30;
	position: fixed;
	left: 5px;
	top: 5px;
	display: none;
}
.menu-button__line, .menu-button::before, .menu-button::after {
	content: "";
	width: 14px;
	height: 2px;
	background-color: #666666;
	transition: transform 0.3s, opacity 0.3s;
}
.menu-button.is-opened .menu-button__line {
	opacity: 0;
}
.menu-button.is-opened::before {
	transform: translateY(5px) rotate(-45deg);
}
.menu-button.is-opened::after {
	transform: translateY(-5px) rotate(45deg);
}
#menuButtonLabel {
	display: none;
}
/* ------------------------------------------------------------
	hamburger_navigation
------------------------------------------------------------ */
#navigation {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	height: 100%;
	width: 100%;
	transition: .3s;
	transform: translateY(-100%);
	overflow: hidden;
}
#navigation:before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	transition: .5s;
	background: rgba(66,93,102,.5);
	mix-blend-mode: multiply;
	z-index: 0;
	opacity: 0;
}

.is-opened + #navigation:before {
	opacity: 1;
}

#navigation nav {
	height: fit-content;
	background: #d6f4ff;
	overflow: hidden;
	position: relative;
	z-index: 1;
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}

#navigation nav:after {
	content: "";
	width: 1920px;
	aspect-ratio: 1 / 1;
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: -1;
	transition: .5s;
	translate: -50% -50%;
	rotate: 45deg;
	background: url("../img/bgimg.png");
	mix-blend-mode: luminosity;
	opacity: 0;
}
#navigation nav:after {
	opacity: 1;
}
#navigation nav ul {
	margin-top: 46px;
	position: relative;
	max-width: 1200px;
	margin: 68px auto 32px;
	padding: 28px 2.5% 48px;
	background: #f7fcff;
	width: 90%;
	border-radius: 10px;
	box-shadow: 0px 5px 5px 0px rgba(128, 128, 128, 0.2);
	display: flex;
	flex-direction: column;
	gap: 20px;
}
#navigation nav ul li {
	position: relative;
	text-align: center;
}
/*
#navigation nav ul li a {
	display: inline-block;
	padding: 16px;
	border-bottom: 1px solid #ccc;
	width: 90%;
	white-space: nowrap;
}
*/
@media (hover : hover) {
	#navigation nav ul li a:hover {
		opacity: .7;
	}
}
/* ------------------------------------------------------------
	content - main -  container
------------------------------------------------------------ */
main {
	position: relative;
}
#sitecontent {
	background: url(../img/bgimg.png);
	padding: 50px 0;
}
.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 30px clamp(1.25rem, -2.75rem + 8.33vw, 3.5rem);
	background: rgba(255, 255, 255, .8);
	width: 95%;
	position: relative;
	z-index: 0;
}
/* ------------------------------------------------------------
	footer
------------------------------------------------------------ */
footer {
	background: #f5f5f5;
	border-top: 3px solid #337ab7;
	padding: clamp(1.25rem, -0.083rem + 2.78vw, 2rem);
}
/* ------------------------------------------------------------
	heading
------------------------------------------------------------ */
h2 {
	font-size: clamp(1.866rem, 1.283rem + 1.944vw, 2.488rem);
}
h3 {
	font-size: clamp(1.555rem, 1.069rem + 1.620vw, 2.074rem);
}
h4 {
	font-size: clamp(1.296rem, 0.891rem + 1.350vw, 1.728rem);
}
h5 {
	font-size: clamp(1.08rem, 0.743rem + 1.125vw, 1.44rem);
}
h6 {
	font-size: clamp(0.9rem, 0.619rem + 0.938vw, 1.2rem);
}
.h3_schoolpage {
	position: relative;
	margin: 10px 0 36px calc(-36px + (-1 * (clamp(1.25rem, -2.75rem + 8.33vw, 3.5rem))));
	padding: 20px 30px 20px 160px;
	color: #fff;
	background-color: #6ec174;
	font-weight: bold;
}
:not(#page-form) .h3_schoolpage {
	margin: 10px 0 20px -6%;
}
.h3_schoolpage:before {
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	content: '';
	border-top: 10px solid #007508;
	border-left: 10px solid transparent;
}
.h3_schoolpage:after {
	content: "";
	display: inline-block;
	position: absolute;
	z-index: 1;
	border: none;
	background: url(../img/h2_chara.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 140px;
	height: 120px;
	top: -20px;
	left: 15px;
}
.h4_subpage {
	font-size: 20px;
	letter-spacing: 0.05em;
	position: relative;
	color: #333;
	line-height: 1.4;
	padding: 8px 16px;
	margin-bottom: 20px;
	border: none;
	font-weight: bold;
	background: #faee00;
}
h5 {
	position: relative;
	color: #337ab7;
	background: #ddeeff;
	line-height: 1.4;
	padding: 0.5em 0.5em 0.5em 0.8em;
	margin-bottom: 1em;
}
.h5_subpage {
	border-bottom: 1px solid #505050;
	width: 100%;
	display: block;
	padding-bottom: 7px;
	margin-top: 55px;
	margin-bottom: 10px;
	letter-spacing: 0.05em;
	background: transparent;
	color: #333
}
/* ------------------------------------------------------------
	sub_text_block - text_subpage - hosoku
------------------------------------------------------------ */
.sub_text_block {
	padding: 0;
	margin: 80px auto;
	position: relative;
}
main:has(#topimgbox) .sub_text_block:first-of-type {
	margin-top: 40px;
	font-size: 1.125rem;
}
.text_subpage {
	width: 95%;
	margin: auto;
}
.hosoku {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.hosoku p {
	display: inline-block;
	font-size: 15px;
	align-items: flex-start;
	margin: 0;
	line-height: 2;
}
/* ------------------------------------------------------------
	frontpage - topimgbox
------------------------------------------------------------ */
#topimgbox {
	padding-top: 69px;
}
#topimgbox, .page-header {
	background: url(../img/topimg_bg.png);
	margin-top: 0 !important;
	padding: 123.5px 0 20px 0;
}
#topimgbox img {
	max-width: 850px;
	display: block;
	margin: auto;
	aspect-ratio: 200 / 83;
	width: 100%;
}
/* ------------------------------------------------------------
	frontpage - information
------------------------------------------------------------ */
.merit {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	margin-bottom: 40px;
}
.merit > img {
	max-width: 300%;
	min-width: 180px;
	width: 30%;
}
.campaign-tit {
	position: relative;
	margin: 1rem -10px;
	padding: 1.25rem 2rem 1rem;
	background: #FF548D;
	font-size: 1.375em;
	font-weight: bold;
	color: #fff;
	letter-spacing: 0.125em;
	z-index: 2;
}
.campaign-tit:before, .campaign-tit:after {
	position: absolute;
	content: '';
}
.campaign-tit:before {
	bottom: -10px;
	left: 0;
	width: 0;
	height: 0;
	border-top: 10px solid #FFA2D2;
	border-left: 10px solid transparent;
}
.campaign-tit:after {
	right: 0;
	bottom: -10px;
	width: 0;
	height: 0;
	border-top: 10px solid #cc5490;
	border-right: 10px solid transparent;
}
.campaign-tit + p {
	width: 100%;
	background: #ffb3da;
	line-height: 2.2;
	margin-top: -10px;
	color: #663d52;
	padding: 3px 10px;
	letter-spacing: 0.05em;
	position: relative;
	z-index: 1;
}
.campaign-tit + p span {
	text-decoration: underline;
}
.campaign-day {
	padding: 1rem 2rem;
	background: #ffe6f3;
	font-size: 1.125em;
	border-radius: 5px;
	position: relative;
	margin: -25px 0 20px;
	z-index: 0;
	text-align: center;
}
.campaign-txt {
	font-size: 1.5em;
}
.campaign-day ~ .align-c a:has(img) {
	transition: .3s;
}
@media (hover : hover) {
	.campaign-day ~ .align-c a:has(img):hover {
		opacity: .5;
	}
}
.campaign-day ~ .align-c a:has(img):active {
	opacity: .5;
}
/* ------------------------------------------------------------
	frontpage - course_list
------------------------------------------------------------ */
#course_list {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(45%, 1fr));
	gap: 60px;
}
#course_list > div {
	font-size: 0.94rem;
	display: grid;
	grid-row: span 2;
	grid-template-rows: subgrid;
	gap: 20px 0;
}
div[class^="course_"] {
	background-color: #fff;
	margin: 0;
	position: relative;
	z-index: 1;
}
div[class^="course_"]::before, div[class^="course_"]::after {
	content: "";
	position: absolute;
	width: 100%;
}
div[class^="course_"]::before {
	border: 4px solid #000;
	z-index: -1;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
}
div[class^="course_"]::after {
	width: 100%;
	height: 100%;
	z-index: -2;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	scale: 1.075;
}
div[class^="course_"] * {
	color: #fff;
}
#course_list div .h4_subpage {
	color: #ffffff;
	font-size: clamp(1.25rem, 0.43vw + 0.98rem, 1.50rem);
	text-shadow: 3px 2px 0 #000, -1px -1px 0 #000, -1px 1px 0 #000, 1px -1px 0 #000, 0px 3px 0 #000, 0 -1px 0 #000, -1px 0 0 #000, 2px 0 0 #000;
	max-height: 92px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	word-break: keep-all;
	overflow-wrap: anywhere;
	line-break: strict;
	gap: 0 20px;
}
#course_list div .h4_subpage img {
	aspect-ratio: 12 / 7;
	max-width: 64px;
	min-width: 56px;
}
div[class^="course_"] .h5_subpage {
	border: none;
	font-weight: bold;
	margin: 0;
	padding: 1em 1em 0.75em;
	color: #333;
	text-shadow: 2px 2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, -2px -2px 1px #fff, 2px 0px 1px #fff, 0px 2px 1px #fff, -2px 0px 1px #fff, 0px -2px 1px #fff;
	border-bottom: 1px solid #000;
	word-break: keep-all;
	overflow-wrap: anywhere;
}
div[class^="course_"] .h5_subpage span {
	color: #333;
}
div[class^="course_"] .h5_subpage + div {
	padding: 16px 24px;
}
div[class^="course_"] .h5_subpage + div p.text_subpage {
	width: 100%;
}
.course_green-y::after {
	clip-path: polygon(5% 8%, 100% 0, 90% 100%, 0 90%);
	background: #90c31f;
}
.course_blue-s::after {
	clip-path: polygon(5% 8%, 95% 2%, 100% 100%, 0 90%);
	background: #00a0e9;
}
.course_pink::after {
	clip-path: polygon(0 8%, 100% 0, 95% 100%, 5% 95%);
	background: #e61874;
}
.course_orange::after {
	clip-path: polygon(5% 8%, 100% 0%, 95% 97%, 0% 100%);
	background: #f3a200;
}
.course_orange-v::after {
	clip-path: polygon(5% 1%, 95% 6%, 100% 96%, 0 100%);
	background: #ff8507;
}
.course_purple::after {
	clip-path: polygon(0 2%, 100% 6%, 95% 97%, 7% 100%);
	background: #8174cb;
}
.course_blue::after {
	clip-path: polygon(5% 8%, 100% 0, 90% 100%, 0 90%);
	background: #3b61cd;
}
ul.feature {
	margin: 16px 0;
}
ul.feature li {
	list-style: none;
}
ul.feature li:before {
	content: "●";
	display: inline-block;
	margin-right: 5px;
}
ul.feature.col-2, ul.feature.col-3, ul.feature.col-3-2 {
	display: flex;
	flex-wrap: wrap;
	gap: 24px 16px;
}
ul.feature.col-2 li {
	width: 47%;
}
/*
.yotei {
	padding: 20px 0 25px;
}
.yotei span {
	display: inline-block;
	padding: 0.5em 1em;
	background: rgba(255, 255, 255, .65);
	margin: auto;
	font-size: 2.0rem;
	color: red;
	font-weight: bold;
	border: #fff solid 3px;
}
*/
/* ------------------------------------------------------------
	frontpage - course_about(table)
------------------------------------------------------------ */
.course_about {
	border: 2px solid #000;
	font-size: 0.938em;
	margin: 20px auto 0;
	width: 100%;
}
.course_about th, .course_about td {
	padding: 15px;
	border: 1px solid #000;
	border-collapse: collapse;
}

.course_about th {
	text-align: center;
	background: #00A29A;
	color: #fff;
	word-break: keep-all;
	overflow-wrap: break-word;
}
.course_about th:first-of-type {
	max-width: 120px;
	width: 10%;
}
.course_about th:nth-of-type(2) {
	width: 18%;
}
.course_about th:nth-of-type(3) {
	width: 22%;
}
.sp-course_about {
	display: none;
}
/* ------------------------------------------------------------
	frontpage - step
------------------------------------------------------------ */
.step {
	width: 100%;
	padding-left: 0;
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px !important;
	margin-left: -15px;
	overflow: hidden;
	padding: 0 4px;
}
.step li {
	/*display: inline-block;*/
	margin: 0 .5em 0 1em;
	list-style: none;
	/*width: 30%;*/
	padding: 1em;
	text-decoration: none;
	color: #fff;
	position: relative;
	width: 100%;
}
.step li:before,.step li:after {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	z-index: -1;
	height: calc(100% + 2px);
	display: inline-block;
}
.step li:before {
	width: 20px;
	left: -18px;
	background: #ddd;
	clip-path: polygon(100% 0, 100% 100%, 0% 100%, 45% 50%, 0% 0%);
}
.step li:after {
	width: 20px;
	right: -18px;
	clip-path: polygon(0% 0%, 50% 0%, 100% 50%, 50% 100%, 0% 100%);

}
.step li:first-of-type,
.step li:first-of-type:before,
.step li:first-of-type::after {
	background: #7ec53c;
}
.step li:nth-of-type(2),
.step li:nth-of-type(2):before,
.step li:nth-of-type(2):after{
	background: #00a29a;
}
.step li:last-of-type,
.step li:last-of-type:before {
	background: #036eb8;
}
.step li:last-of-type:after {
	content: none;
}

.step li span {
	position: relative;
	display: inline-flex;
	align-items: center;
	padding-bottom: 2px;
}
.step li span:before {	
	content: "";
	display: inline-block;
	margin-right: 8px;
	color: #fff;
	font-size: 1.25rem;
}
.step li:first-of-type span:before {	
	content: "\2460";
}
.step li:nth-of-type(2) span:before {	
	content: "\2461";
}
.step li:last-of-type span:before {	
	content: "\2462";
}

/* ------------------------------------------------------------
	frontpage - qa
------------------------------------------------------------ */
.qa *, .qa *:after, .qa *:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.qa dt, .qa dd {
	position: relative;
	padding: 15px 20px;
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
	border-radius: 0.3em;
	border: none;
}
.qa dt {
	margin: 0 3em 1em 3em;
	background: #ffe0b2;
}
.qa dd {
	margin: 0 3em 3em 3em;
	background: #b2ebf2;
	word-break: auto-phrase;
}
/* 吹き出し */
.qa dt::before, .qa dd::before {
	position: absolute;
	z-index: 99;
	top: 0.5em;
	display: inline-block;
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
}
/* 質問吹き出し */
.qa dt::before {
	left: -0.5em;
	border-width: 5px 8.7px 5px 0;
	border-color: transparent #ffe0b2 transparent transparent;
}
/* 答え吹き出し */
.qa dd::before {
	right: -0.5em;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #b2ebf2;
}
/* アイコン */
.qa dt::after, .qa dd::after {
	font-size: 1.2em;
	position: absolute;
	top: -5px;
	color: #ffffff;
	border-radius: 50%;
	display: inline-block;
	width: 40px;
	height: 40px;
	line-height: 1.2em;
}
/* ?アイコン */
.qa dt::after {
	left: -55px;
	margin: 0 0.5em 0 0;
	padding: 9px 13px;
	content: 'Q';
	background: #f57c00;
}
/* !アイコン */
.qa dd::after {
	right: -55px;
	margin: 0 0 0 0.5em;
	padding: 9px 14px;
	content: 'A';
	background: #0097a7;
}
/* ------------------------------------------------------------
	subpage
------------------------------------------------------------ */
.page-header {
	color: #333;
	padding-top: 0;
	min-height: 220px;
	max-height: 260px;
	position: relative;
}
.page-header .container {
	background: transparent;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
}
h2.page-header_pageTitle {
	background-color: transparent;
	padding: 14px 15px 10px;
	border: none;
}
.page-header_pageTitle, h2.page-header_pageTitle:first-child {
	margin: 30px 0 25px;
	font-size: 32px;
	line-height: 1.5;
	word-break: keep-all;
	overflow-wrap: break-word;
}
/* ------------------------------------------------------------
	subpage - form
------------------------------------------------------------ */
input,select,textarea {
	padding: 3px 8px;
	border-radius: 3px;
}
input[type="text"], input[type="tel"], input[type="email"], textarea, select {
	border: 1px solid #999;
	background: #fff;
}
input[type="text"], input[type="tel"], input[type="email"], textarea {
	font-size: 0.875em;
}
td input[type="text"]:last-of-type {
	margin-right: 10px;
}
input.s_button, input.r_button {
	margin: 10px;
	padding: 8px 20px;
	cursor: pointer;
	font-size: 1.125rem;
	border: 1px solid #666;
	background: #f5f5f5;
}
table.form {
	width: 100%;
	margin: 0 0 20px;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	border-top: 1px solid #aaa;
}
table.form th {
	width: 30%;
	text-align: center;
	padding: 16px 24px;
	border-bottom: 1px solid #aaa;
	font-weight: normal;
	vertical-align: middle;
}
table#form.form th {
	padding-left: 24px;
}
table.form th:before {
	content: "●";
}
table.form th span {
	padding: 3px 10px;
	/*	background: linear-gradient(transparent 50%, #bfe9f7 30%);*/
}
table.form td {
	padding: 16px 24px;
	text-align: left;
	border-bottom: 1px solid #aaa;
	line-height: 1.8;
}
table.form td input + p {
	margin: 8px auto;
}
table.form td label {
	display: block;
}
table.form td input + p:has(input[type="radio"]) {
	display: flex;
	gap: 16px 32px;
}
table.form .attention {
	color: red;
	font-size: 80%;
	padding-left: 1em;
	text-indent: -1em;
}
table.form .attention br {
	display: block !important;
}
table.form .address {
	width: 95%;
}
table.form td:last-child {
	padding: 30px;
	text-align: left;
	border-bottom: 1px solid #aaa !important;
}
table.form td span.bold.red {
	display: inline;
}

table.form input, table.form select {
-webkit-appearance: auto; 
 appearance: auto;
}
table.form input[type="checkbox"],table.form input[type="checkbox"] ~ * {
	display: inline-block;
}
button[disabled], html input[disabled] {
	opacity: .5;
}
.postal-code {
	margin-bottom: 10px;
}
table#form + .m_auto.flex {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px 24px;
}
/* ------------------------------------------------------------
	button
------------------------------------------------------------ */
a.button {
	text-align: center;
	padding: 0.8em 1.5em;
	display: inline-block;
	background: #FC6500;
	border-radius: 50px;
	color: #fff;
	font-size: 18px;
	transition: 0.3s;
	margin: 10px auto 0;
	border: 2px solid #FC6500;
	box-shadow: 0px 5px 0px 0px #c14d00;
}
a.button:visited,
a.contact_b:visited,
a.taiken_b:visited {
	color: #fff;
}
.main-menu li:last-of-type .button, a.taiken_b {
	background: #11AB5E;
	border: 2px solid #11AB5E;
	box-shadow: 0px 5px 0px 0px #078647;
}

a.button.taiken_b.orange {
	background: #FC6500;
	border: 2px solid #FC6500;
	box-shadow: 0px 5px 0px 0px #c14d00;
}

@media (hover: hover) {
	a.button:hover, a.contact_b:hover {
		background: #fff;
		color: #FC6500;
		box-shadow: none;
	}
	.main-menu li:last-of-type a.button:hover, a.taiken_b:hover {
		background: #fff;
		color: #11AB5E;
		border: 2px solid #11AB5E;
		box-shadow: none;
	}
	a.button.taiken_b.orange:hover {
		background: #fff;
		color: #FC6500;
		box-shadow: none;
	}
}
a.button:active, a.contact_b:active {
	background: #fff;
	color: #FC6500;
	border: 2px solid #FC6500;
}
.main-menu li:last-of-type a.button:active, a.taiken_b:active {
	background: #fff;
	color: #11AB5E;
	border: 2px solid #11AB5E;
}

a.button.taiken_b.orange:active {
	background: #fff;
	color: #FC6500;
	border: 2px solid #FC6500;
}

.main-menu li a.button:before, .contact_b:before, .taiken_b:before {
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	margin-right: 8px;
}
.main-menu li:first-of-type a.button:before, .contact_b:before {
	content: '\f0e0';
}
.main-menu li:last-of-type a:before, .taiken_b:before {
	content: '\f15c';
}
/* ------------------------------------------------------------
	pagetop
------------------------------------------------------------ */
#page_top {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px 0;
	width: 160px;
	height: 80px;
	right: 0;
	bottom: 0;
	color: #fff;
	cursor: pointer;
	border: 0;
	background: #337ab7;
	transition: .2s;
	letter-spacing: 3px;
	font-weight: bold;
	border-radius: 100vmax 100vmax 0 0;
}
#page_top span {
	display: inline-block;
	margin: auto 0 8px;
}
#page_top:before {
	font-family: "Font Awesome 7 Free";
	font-weight: 900;
	content: "\f106";
	display: block;
	position: relative;
	font-size: 1.5rem;
	margin: auto 0 -20px;
	line-height: 0;
}
@media (hover : hover) {
	#page_top:hover {
		text-decoration: none;
		background: #00409f;
	}
}
/* ------------------------------------------------------------
	other
------------------------------------------------------------ */
.pt-0 {
	padding-top: 0 !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.ptb-0 {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}
.prl-0 {
	padding-right: 0 !important;
	padding-left: 0 !important;
}
.m_auto {
	margin-left: auto;
	margin-right: auto;
}
.mr-0 {
	margin: 0 0 0 auto;
}
.ml-0 {
	margin: 0 auto 0 0;
}
.gap20 {
	gap: 20px;
}
.small {
	font-size: smaller;
}
.red {
	color: red;
}
.gray {
	color: #999;
}
.orange {
	color: #FF6633;
}
.bold {
	font-weight: bold;
}
.align-l {
	text-align: left !important;
}
.align-c {
	text-align: center !important;
}
.align-r {
	text-align: right !important;
}
.nowrap {
	word-break: keep-all;
	overflow-wrap: break-word;
}
.bg_none {
	background: none !important;
}
.none {
	display: none;
}
.flexbox {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
.s_around {
	justify-content: space-around;
}
@media screen and (max-width: 992px) {
	/* header */
	#page-form header h1 {
		text-align: center;
	}
	#page-form header h1 img {
		max-width: 200px;
	}
/* ------------------------------------------------------------
	main-menu
------------------------------------------------------------ */
	header div.title_header {
		margin: 0 auto;
	}
	header div:has(> .main-menu) {
		display: none
	}
/* ------------------------------------------------------------
	hamburger
------------------------------------------------------------ */
	.menu-button {
		display: flex;
	}
/* ------------------------------------------------------------
	navigation
------------------------------------------------------------ */
	.is-opened + #navigation {
		display: block;
		transform: translateY(0);
	}
/* ------------------------------------------------------------
	content - container
------------------------------------------------------------ */
	.container {
		padding: 40px 5% 60px;
	}
/* ------------------------------------------------------------
	heading
------------------------------------------------------------ */
	.h3_schoolpage {
		margin-left: -36px;
		padding: 20px 32px 20px 110px;
	}
	.h3_schoolpage:after {
		width: 100px;
		height: 72px;
		top: 50%;
		left: 10px;
		translate: 0 -50%;
	}
	:not(#page-form) .h3_schoolpage {
		margin: 10px 0 40px -7%;
		word-break: keep-all;
		overflow-wrap: break-word;
	}
/* ------------------------------------------------------------
	sub_text_block - text_subpage - hosoku
------------------------------------------------------------ */
	.sub_text_block {
		padding: 0;
		margin: 40px auto;
	}
	.sub_text_block:first-of-type {
		margin-top: 0;
	}
	.hosoku {
		margin-bottom: 20px;
	}
	.hosoku p.text_subpage + p {
		margin: auto;
	}
/* ------------------------------------------------------------
	pageheader - topimgbox
------------------------------------------------------------ */
	#topimgbox {
		padding-top: 69px;
	}
/* ------------------------------------------------------------
	frontpage - information
------------------------------------------------------------ */
	.campaign-tit {
		letter-spacing: 0.05em;
	}
	.campaign-tit + p {
		font-size: 0.95em;
	}
	.campaign-day {
		font-size: 0.925em;
		padding: 1em;
		margin-bottom: 30px;
	}
/* ------------------------------------------------------------
	frontpage - course_list
------------------------------------------------------------ */
	#course_list {
		width: 95%;
		display: flex;
		flex-wrap: wrap;
		margin: 0 auto;
		gap: 40px;
	}
	#course_list > div {
		width: 100%;
		height: 100%;
		display: block;
	}
	div[class^="course_"] {
		border: 3px solid #000;
	}
	#course_list div .h4_subpage {
		margin-bottom: 10px;
		padding: 16px 16px 18px;
	}
	div[class^="course_"] .h5_subpage {
		font-size: 1.275em;
		padding-top: 1.0em;
	}
	div[class^="course_"]::before, div[class^="course_"]::after {
		content: none;
	}
	.course_green-y {
		background-color: #90c31f !important;
	}
	.course_blue-s {
		background-color: #00a0e9 !important;
	}
	.course_pink {
		background-color: #e61874 !important;
	}
	.course_orange {
		background-color: #f3a200 !important;
	}
	.course_purple {
		background-color: #8174cb !important;
	}
	.course_orange-v {
		background-color: #ff8507 !important;
	}
	.course_blue {
		background-color: #3b61cd !important;
	}
	ul.feature {
		display: block !important;
	}
	ul.feature li {
		width: auto !important;
		font-weight: bold;
	}
	/*
	.yotei span {
		font-size: 1.25em;
	}
	*/
/* ------------------------------------------------------------
	frontpage - course_about(table)
------------------------------------------------------------ */
	.course_about {
		display: none;
	}
	.sp-course_about {
		display: block;
		margin: 32px auto;
	}
	.sp-course_about_name {
		background: #00A29A;
		color: #fff;
		padding: 10px;
		font-size: 1.125em;
		word-break: keep-all;
		overflow-wrap: anywhere;
		line-break: strict;
		border-radius: 4px;
		font-weight: normal;
	}
	.sp-course_about_name span {
		display: inline-block;
	}
	.sp-course_about h5 {
		margin: 24px 0 8px;
		font-size: 1.0em;
		font-weight: normal;
	}
	.sp-course_about_text {
		margin-bottom: 15px !important;
	}
/* ------------------------------------------------------------
	frontpage - step
------------------------------------------------------------ */
	.step {
		list-style-type: none;
		padding: 0;
		margin: 0 auto;
		flex-direction: column;
		max-width: 90%;
		min-width: 50%;
		gap: 8px 0;
	}
	.step li {
		display: block;
		width: 100%;
		padding-top: 0;
		position: relative;
		padding: 1em;
		margin: 0 auto 1em;
		text-align: center;
		color: #fff;
	}
	.step li:before, .step li:last-of-type:after {
		content: none;
	}
	.step li:after {
		content: "";
		display: block;
		position: absolute;
		bottom: -28px;
		width: 5%;
		height: 30px;
		left: 50%;
		right: 50%;
		top: auto;
		z-index: 1;
		clip-path: polygon(100% 50%, 50% 100%, 0% 50%);
	}
/* ------------------------------------------------------------
	frontpage - qa
------------------------------------------------------------ */
	.qa dt {
		margin-right: 10px;
		word-break: keep-all;
		overflow-wrap: break-word;
	}
	.qa dd {
		margin-left: 10px;
		font-size: 0.875em;
		line-height: 1.8;
	}
/* ------------------------------------------------------------
	subpage
------------------------------------------------------------ */
	.title_header img {
		max-width: 150px;
	}
	.page-header_pageTitle, h2.page-header_pageTitle:first-child {
		margin: 15px 0 10px;
		font-size: 22px;
	}
/* ------------------------------------------------------------
	subpage - form
------------------------------------------------------------ */
	table.form {
		width: 98%;
		margin: 20px auto 20px;
		border-collapse: collapse;
		border-spacing: 0;
		table-layout: fixed;
		border-top: none;
	}
	table.form tr:first-of-type th {
		padding-top: 50px;
	}
	table.form th {
		text-align: center;
		padding: 3px;
		width: 100%;
		display: block;
		border-bottom: 1px solid #aaa !important;
	}
	table.form td {
		text-align: center !important;
		display: block;
		border-bottom: none !important;
	}
	table.form td:last-child {
		padding: 16px 16px 48px;
		border-bottom: none !important;
	}
	table.form td:has(input[type="checkbox"]) {
		display: flex;
		gap: 8px;
		align-items: center;
	}
	table.form input[type="text"], textarea {
		display: block;
		margin: 0 auto;
	}
	table.form td input[type="text"] {
		width: 80%;
		margin: 5px auto;
		display: inline-block;
	}
	table.form td label {
		display: block;
		width: 80%;
		text-align: left;
		margin: 8px auto;
	}
	table.form td input[type="checkbox"] + label {
		margin: 8px 0px;
}
	table.form td span {
		display: block;
	}
	table.form td textarea {
		width: 100%;
	}
	table.form td p {
		margin: 8px 0;
		text-align: center;
	}
	table.form td input + p:has(input[type="radio"]) {
		width: 80%;
	}
	table.form td p.attention {
		text-align: left;
	}
	table.form td input + br {
		display: inline;
	}
	table.form td span.bold.red {
		display: block;
	}
	table.form td p.red {
		display: block;
		margin-top: 15px;
	}
	input.s_button, input.r_button {
		display: block;
		max-width: 200px;
		margin: 24px auto;
	}
/* ------------------------------------------------------------
	button
------------------------------------------------------------ */
	a.button {
		padding: 0.8em 1.3em;
		font-size: 1.0em;
		word-break: keep-all;
		overflow-wrap: break-word;
	}
/* ------------------------------------------------------------
	other
------------------------------------------------------------ */
	.sp_none {
		display: none !important;
	}
}