@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 100px;
	padding: 15px;
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	object-position: left;
	width: 100%;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		position: absolute;
		width: 100%;
		z-index: 1;
		padding: 0;
		align-items: flex-start;
	}
	#header h1.title {
		width: 310px;
		height: 100px;
		background: #fffade;
		padding-left: 10px;
		border-radius : 0px 0px 30px 0px;
		box-shadow: 2px 2px 5px rgba(199,178,153,0.6);
	}
	#header h1.title img {
		width: 274px;
	}
	#header .contact {
		width: 365px;
		display: flex;
		margin-left: 25px;
		background: #2c75ad;
		color: #fff;
		border-radius : 0px 0px 0 30px;
	}
	#header .contact p {
		height: 80px;
	}
	#header .contact .tel {
		border-right: 1px solid #fff;
		width: calc(100% - 81px);
	}
	#header .contact a {
		color: #fff;
		height: 100%;
	}
	#header .contact .tel a {
		display: flex;
		align-items: center;
		font-size: 13px;
		font-weight: normal;
		padding-left: 18px;
		line-height: 1.2;
	}
	#header .contact a .maru {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		border-radius: 50%;
		margin-right: 10px;
	}
	#header .contact a .maru img {
		width: 18px;
	}
	#header .contact .tel a .no {
		font-size: 28px;
		font-weight: bold;
		font-family: var(--font-mpr);
	}
	#header .contact .btn {
		width: 80px;
		padding-top: 10px;
	}
	#header .contact .btn a {
		font-weight: normal;
		text-align: center;
	}
	#header .contact .btn a .maru {
		margin: 0 auto;
	}
	#header .contact .btn a img {
		width: 20px;
	}
}
@media only screen and (max-width: 1250px) {
	#header h1.title {
		width: 280px;
	}
	#header h1.title img {
		width: 250px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-primary); }
	#header .contact .tel a { background: var(--color-primary); }
	#header .contact .btn a { background: var(--color-primary); }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fffade;
		z-index: 9997;
	}
	#header h1.title {
		width: 200px;
		height: 100%;
		padding: 10px;
	}
	#header h1.title img {
		width: 100%;
	}
	/* お問い合わせ */
	#header .contact .tel, #header .contact .btn {
		margin-right: 1px;
	}
	#header .contact .tel a,
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 4px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact a .maru {
		width: 36px;
		height: 36px;
		display: flex;
		align-items: center;
		justify-content: center;
		background: #fff;
		border-radius: 50%;
	}
	#header .contact a .maru img {
		width: 18px;
	}
	#header .contact .tel .info,
	#header .contact .btn .info {
		display: none;
	}
}
@media only screen and (max-width: 320px){
	#header h1.title {
		width: 180px;
		padding-left: 5px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	margin-left: auto;
	margin-top: 25px;
}
#menu ul {
	display: flex;
	column-gap: 25px;
}
#menu li a {
	display: block;
	color: #534741;
	font-size: 16px;
	text-decoration: none;
	font-weight: normal;
	font-family: var(--font-sans);
	position: relative;
}
#menu li.on a,
#menu li a:hover {
	color: var(--color-primary);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu li.on a::before,
#menu li a:hover::before {
	content: "";
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--color-primary);
}
#menu ul li.dsp_tbs {
	display: none;
}
@media only screen and (max-width: 1250px) {
	#menu ul {
		column-gap: 10px;
	}
	#menu li a {
		font-size: 15px;
	}
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	background: url("../img/bg-sub-title.png") no-repeat top / 100% auto;
}
#sub_ttl {
	height: 530px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
#sub_ttl.contact {
	height: 440px;
}
#sub_ttl.course,#sub_ttl.gallery,#sub_ttl.archive,#sub_ttl.info {
	height: 400px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl.about,
	#sub_ttl.contact,
	#sub_ttl.course,
	#sub_ttl.gallery,
	#sub_ttl.archive,
	#sub_ttl.info {
		height: auto;
		padding-top: 20px;
	}
	#sub_ttl.about img,
	#sub_ttl.contact img,
	#sub_ttl.course img,
	#sub_ttl.gallery img,
	#sub_ttl.archive img {
		width: 50%;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl.about,
	#sub_ttl.contact,
	#sub_ttl.course,
	#sub_ttl.gallery,
	#sub_ttl.archive,
	#sub_ttl.info {
		padding-top: 10px;
	}
	#sub_ttl.about img,
	#sub_ttl.contact img,
	#sub_ttl.course img,
	#sub_ttl.gallery img,
	#sub_ttl.archive img,
	#sub_ttl.info img {
		width: 80%;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
#container h3.sub {
	position: relative;
	font-weight : bold;
	font-size : 39px;
	line-height : 54px;
	color : #534741;
	text-align: center;
	margin-bottom: 100px;
}
#container h3.sub::before {
	content: "";
	background: url("../img/course/ttl.png") no-repeat bottom center/100%;
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
	width: 406px;
	height: 45px;
}
#container h4.sub {
	font-size : 33px;
	color : #534741;
	margin-bottom: 20px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 50px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 23px;
	}
	#container h3.sub::before {
		width: 40%;
		height: 60%;
		bottom: -30px;
	}
	#container h4.sub {
		font-size: 22px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 30px;
		font-size: 25px;
		line-height: 1.8em;
	}
	#container h3.sub::before {
		width: 60%;
		bottom: -20px;
	}
	#container h4.sub {
		font-size: 125%;
	}
	#course #fee .taiken .ttl {
		font-size: 20px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
.cen_btn {
	display: flex;
	justify-content: center;
	align-items: center;
}
.btn01 a {
	width: 350px;
	height: 80px;
	display: inline-block;
	padding: 25px 15px;
	background: #2c75ad;
	color: #fff;
	position: relative;
	box-shadow: 3px 3px 7px rgba(83,71,65,0.62);
	font-size : 19px;
	border-radius: 20px;
	text-align: center;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
	@media only screen and (max-width: 640px) {
	.btn01 a  {
		width: 240px;
		height: 50px;
		font-size: 100%;
		padding: 13px 15px;
		}
	}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	background: var(--color-primary);
	font-size: 14px;
	line-height: 1.6;
}
#footer p {
	text-align: center;
}
/* お問い合わせ */
#footer .contact {
	width: 740px;
	margin: 0 auto;
	padding: 40px 0 60px;
}
#footer .contact .txt {
	color: #fff;
	font-size: 36px;
	margin-bottom: 20px;
}
#footer .contact li {
	width: 350px;
}
#footer .contact li a {
	height: 80px;
	padding: 10px;
	background: #fff;
	box-shadow: 3px 3px 7px rgba(83,71,65,0.6);
	color: var(--color-primary);
	font-size: 15px;
	line-height: 1.4;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
	font-weight: normal;
	border-radius: 20px;
	padding-left: 20px;
}
#footer .contact  li a .maru {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-primary);
	border-radius: 50%;
	margin-right: 15px;
}
#footer .contact li a .maru img {
	width: 23px;
	vertical-align: middle;
}
#footer .contact  li.tel a  {
	line-height: 1.1;
}
#footer .contact  li.tel a .no {
	font-size: 32px;
	font-weight: bold;
}
#footer .contact  li.btn a {
	font-size: 32px;
	font-weight: bold;
}
#footer .contact  li.btn img {
	width: 26px;
}
#footer .ttl_area {
	background: #ece2d6;
	font-weight: normal;
	padding: 34px 15px;
}
#footer .ttl_area .ttl {
	margin-bottom: 30px;
}
#footer .ttl_area .ttl a img {
	width: 200px;
}
/* リンク */
#footer .link {
	background: #534741;
	font-weight: normal;
	padding: 11px 0 10px;
}
#footer .link ul li {
	display: inline;
	margin-right: 20px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
	line-height: 1;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	font-size: 12px;
	color: #998675;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .contact {
		width: 620px;;
		padding: 20px 0 30px;
	}
	#footer .contact .txt {
		font-size: 25px;
	}
	#footer .contact li {
		width: 300px;
	}
	#footer .contact li a {
		font-size: 14px;
		padding: 5px;
		padding-left: 15px;
		height: 70px;
	}
	#footer .contact li a .maru {
		margin-right: 10px;
	}
	#footer .contact li.tel a .info {
		text-align: left;
	}
	#footer .contact li.tel a .no {
		font-size: 25px;
	}
	#footer .contact li.btn a {
		font-size: 23px;
	}
	#footer .ttl_area {
		padding: 25px 15px;
	}
	#footer .ttl_area .ttl {
		margin-bottom: 15px;
	}
	#footer .link {
		padding: 5px 0;
	}
	#copyright {
		width: 100%;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .contact {
		width: 100%;
	}
	#footer .contact .txt {
		font-size: 23px;
		margin-bottom: 10px;
	}
	#footer .contact li {
		width: 300px;
		margin: 0 auto;
	}
	#footer .contact li+li {
		margin-top: 15px;
	}
	#footer .contact li a {
		padding-left: 10px;
		height: 60px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.bg_dot::before { background: #fffade url(../img/slash.png); }
.bg_beige::before { background: #fffade; }
.mt { margin-top: 120px; }
.mb { margin-bottom: 80px; }
.mbs { margin-bottom: 30px; }
.pt { padding-top: 120px; }
.pb { padding-bottom: 120px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 50px;
	padding-top: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
}
@media only screen and (max-width: 640px){ /* スマホ */
	.tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	.tbl th,
	.tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
