@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	position: relative;
	height: 85px;
	padding: 15px;
	background: #fff;
	text-align: left;
}
/* お問い合わせ */
#header .contact a {
	display: block;
}
#header .contact a img {
	vertical-align: middle;
}
/*サブページのみ*/
#header h1.title.sub {
	width: 450px;
	height: 100%;
	display: flex;
	align-items: center;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		position: absolute;
		width: 100%;
		background: none;
		z-index: 10;
		overflow: hidden;
	}
	#header .contact {
		display: block;
		position: fixed;
		right: -10px;
		top: 10px;
		margin-left: 40px;
		line-height: 1.2;
	}
	#header .contact a {
		width: 109px;
		height: 109px;
		background: #d8d065;
		border-radius: 50%;
		position: relative;
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	#header .contact .btn a {
		margin-bottom: 10px;
	}
	#header .contact a:hover {
		background: #d6cac5;
		filter:alpha(opacity=100);
		-moz-opacity: 1;
		opacity: 1;
	}
	#header .contact a::before {
		content: "";
		border: 1px solid #fff;
		border-radius: 50%;
		width: calc(100% - 6px);
		height: calc(100% - 6px);
		position: absolute;
		top: 2px;
		left: 2px;
		display: block;
		z-index: 0;
	}
	#header .contact a .img {
		display: block;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 27px;
		margin: 0 auto 5px;
	}
	#header .contact .tel a img {
		width: 23px;
	}
	#header .contact a .txt {
		display: block;
		font-size: 16px;
		font-weight: bold;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: var(--color-primary); }
	#header .contact .tel a { background: #d8d065; }
	#header .contact .btn a { background: #d8d065; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 50px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
	}
	/* タイトル */
	#header h1.title.sub {
		width: 230px;
		height: 100%;
		padding: 10px;
		display: flex;
		align-items: center;
	}
	#header h1.title.sub img {
		object-fit: contain;
		object-position: left;
		width: 100%;
		height: 100%;
		max-width: none;
	}
	/* お問い合わせ */
	#header .contact p {
		margin-right: 1px;
	}
	#header .contact .tel a,
	#header .contact .btn a {
		width: 46px;
		height: 50px;
		padding: 0 10px;
		/* 縦方向中央揃え */
		display: flex;
		align-items: center;
		justify-content: center;
	}
	#header .contact .tel a {
		padding: 0 12px;
	}
	#header .contact .txt {
		display: none;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#header h1.title.sub {
		width: 220px;
	}
}
@media only screen and (max-width: 320px){ /* スマホ */
	#header h1.title.sub {
		width: 180px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#menu {
	position: absolute;
	top: 15px;
	right: -60px;
	margin-left: auto;
	width: 706px;
	background: rgba(255,255,255,0.5);
	padding: 10px;
	border-radius: 20px;
}
#menu ul {
	border-radius: 20px;
	background: #fff;
	display: flex;
	column-gap: 30px;
	padding: 13px 30px 13px;
}
#menu li a {
	display: block;
	color: var(--color-primary);
	font-size: 16px;
	text-decoration: none;
}
#menu li.on a,
#menu li a:hover {
	color: #7fbaaa;
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	overflow: hidden;
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl img {
	width: 100%;
}
#sub_ttl {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 300px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}
#sub_ttl span {
	color: #8E6D5F;
	font-size: 50px;
	font-weight: 400;
	text-shadow: 0px 0px 10px #fff, 0px 0px 10px #fff, 0px 0px 20px #fff, 0px 0px 20px #fff, 0px 0px 30px #fff;
	padding-top: 74px;
}
#sub_ttl.access {
	background-image: linear-gradient(rgba(242,237,235,0.5)), url("../img/access/bg-title.jpg");
}
#sub_ttl.trainer {
	background-image: linear-gradient(rgba(242,237,235,0.5)), url("../img/trainer/bg-title.jpg");
}
#sub_ttl.program {
	background-image: linear-gradient(rgba(242,237,235,0.5)), url("../img/program/bg-title.jpg");
}
#sub_ttl.contact {
	background-image: linear-gradient(rgba(242,237,235,0.5)), url("../img/contact/bg-title.jpg");
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		height: 180px;
	}
	#sub_ttl span {
		font-size: 30px;
		padding-top: 0px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		height: 130px;
	}
	#sub_ttl span {
		font-size: 25px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#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;
	margin-bottom: 40px;
	font-size: 23px;
	font-family: var(--font-sans);
	font-weight: 500;
	text-align: center;
}
#container h3.sub::after {
	display: block;
	width: 50px;
	height: 2px;
	margin: 15px auto 0;
	background: var(--color-primary);
	content: "";
}
#container h3.sub02 {
	font-size: 45px;
	color: var(--color-primary);
	font-weight: bold;
	background: url("../img/top/bg-info.png") no-repeat center left;
	padding: 0.5em 0 0.2em 0.8em;
	margin-bottom: 0.8em;
}
@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;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
	#container h3.sub02 {
		font-size: 28px;
		background-size: 70px auto;
		padding: 0.8em 0 0.4em 0.8em;
		margin-bottom: 0.5em;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#wrap, #footer {
		min-width: 320px;
	}
	#container h3.sub {
		margin-bottom: 20px;
		font-size: 20px;
	}
	#container h3.sub02 {
		font-size: 25px;
		background-size: 65px auto;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	font-size: 14px;
	line-height: 1.6;
}
#footer .bg {
	position: relative;
	padding: 83px 0;
	background: url("../img/bg-footer.png") no-repeat center top / cover;
}
#footer p {
	text-align: center;
}
#footer p.ttl {
	margin-bottom: 50px;
}
#footer p.ttl a img {
	width: 393px;
}
/*営業時間*/
#footer .box_hours {
	display: flex;
	flex-wrap: wrap;
	width: 550px;
	color: var(--color-primary);
	margin: 1em auto 0;
}
#footer .box_hours .txt_01 {
	margin-right: 1em;
}
#footer .box_hours dl {
	display: flex;
}
#footer .box_hours dl dt{
	width: 75px;
	background-color: #fff;
	color: var(--color-primary);
	border: 1px solid #7FBAAA;
	border-radius: 20px;
	margin-right: 0.5em;
}
#footer .box_hours dl+dl {
	margin-top: 0.3em;
}
/* リンク */
#footer .link {
	background: #7fbaaa;
	padding: 19px 0;
}
#footer .link ul li {
	display: inline;
	margin-right: 30px;
	list-style: none;
}
#footer .link ul li a {
	color: #FFF;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
/* コピーライト */
#copyright {
	color: #FFF;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .bg {
		padding: 50px 0 30px;
		background-image: url("../img/bg-footer-tbs.png");
		border-radius: 50% 50% 0 0 / 80px 80px 0 0;
	}
	#footer p.ttl {
		margin-bottom: 20px;
	}
	#footer p.ttl a img {
		width: 250px;
	}
	#footer .link {
		background: #7fbaaa;
		padding: 10px 0;
	}
	#copyright {
		width: 100%;
		font-size: 10px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .bg {
		border-radius: 50% 50% 0 0 / 60px 60px 0 0;
	}
	#footer .box_hours {
		display: block;
		width: 100%;
	}
	#footer .box_hours .txt_01 {
		margin-right: 1em;
		margin: 0 0 0.5em;
	}
	#footer .box_hours dl {
		align-items: flex-start;
		justify-content: space-between;
		width: 230px;
		margin: 0 auto;
	}
	#footer .box_hours dl dd {
		text-align: left;
	}
	#footer .box_hours dl+dl {
		margin-top: 0.6em;
	}
	
}
@media only screen and (max-width: 320px){ /* スマホ */
	#footer .address {
		font-size: 13px;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
/* 枠のマージン・パディング */
.mt { margin-top: 100px; }
.mb { margin-bottom: 100px; }
.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; }
}
