@charset "UTF-8";

/* ========================================================
  Reset
======================================================== */
*,*::before,*::after{
	box-sizing: border-box;
}
html {
	font-size: 62.5%;	/* 1rem = 10px：フォントサイズ16px => 1.6rem */
}
div,
dl,dt,dd,ul,ol,li,
h1,h2,h3,h4,h5,h6,
pre,form,fildset,p,blockquote,
figure,figcaption,hr,
header,footer,nav,main{
	margin:0;
	padding:0;
	border:0;
	font-size:inherit;
	font-style:normal;
	font-weight:inherit;
}
img{
    max-width:100%;
    height:auto;
    width:auto\9; /* ie8 */
	border-top-style:none;
	border-right-style:none;
	border-bottom-style:none;
	border-left-style:none;
	vertical-align:top;
	display:block;
	margin:auto;
}
picture{
	display:block;
}
table{
	width:100%;
	border-collapse:separate;
	border-spacing:0;
}
a{
	color:inherit;
	text-decoration:none;
	outline:0;
}
address{font-style:normal;}
ul,ol{list-style:none;}
iframe{display:block;}
i{
	font-weight:normal !important;
	letter-spacing: normal;
	line-height: 1.0em;
	/*display: inline-block;
	vertical-align: middle;*/
}
button{
	display: block;
	padding: 0;
	border: none;
	outline: none;
	font: inherit;
	color: inherit;
	background: none;
	cursor: pointer;
}
[class^="icon-"]::before, [class*=" icon-"]::before {
	margin: 0;	/*fontello左右の隙間*/
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
html {
	font-size: 61.0%;	/* タブレット時：少し小さくする、大きい見出しは「vw」で指定*/
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
html {
	font-size: 2.5vw;	/* スマホのときは全体を「vw」で指定、実際に使用するときはデザインデータのサイズ「**px」→「**rem」と大体同じ */
}
}

/* ========================================================
  Base
======================================================== */
body {
	text-align: center;
	font-family: var(--ff-got);
	font-weight: normal;
	font-style: normal;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	color: var(--color-base);
	font-size: var(--fs-base);
	letter-spacing: .12em;
	line-height: 2.1em;
	padding: 0;
	margin: 0;
	background: #fff;
	-webkit-text-size-adjust: 100%;
}
a {transition: color 0.8s, background-color 0.8s, opacity 0.8s;}
a:hover {transition: color 0.4s, background-color 0.4s, opacity 0.4s;}

.clearfix:after {
  content: ".";  /* 新しい要素を作る */
  display: block;  /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}

#wrapper{overflow:hidden;}
#pagebody{max-height:100%;}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
body {
	letter-spacing: .05em;
	line-height: 2.0em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/* スマホのときはビューポートを基準にサイズ調節する */
/* スマホ時：emまたは%で指定する */
/* スマホ以外でビューポート基準にするときは、その都度「vw」で指定する */
body {
	letter-spacing: .05em;
	line-height: 1.8em;
}
img {
	width: 100% !important;
	max-width: initial !important;
}	
}


/* ========================================================
  Utility
======================================================== */
/*<group=style>*/
.u-fw-bold{font-weight:bold;}
.u-fw-normal{font-weight:normal;}	
/*<group=text_align>*/
.u-ta-l{text-align:left;}
.u-ta-r{text-align:right;}
.u-ta-c{text-align:center;}
.u-sp-ta-l{text-align:center;}
/*<group=float>*/
.u-flt-l{float:left;}
.u-flt-r{float:right;}

/*画像*/
.u-img-max {
	width: 100% !important;
	max-width: initial !important;
}

/*色*/
.u-color-red {color: var(--color-red);}

/*
.u-general {
	--subject-color: var(--color-general);
}
*/

/*フォント*/
.u-ff-got {font-family: var(--ff-got);}
.u-ft-min {
	font: var(--font-min);
	letter-spacing: normal;
}
.u-ft-en {font: var(--font-en);}

/*フォントサイズ*/
.u-fs-14 {
	font-size: var(--fs-14);
	line-height: 1.7em;
}
.u-fs-15 {
	font-size: var(--fs-15);
}
.u-fs-17 {
	font-size: var(--fs-17);
}
.u-fs-18 {
	font-size: var(--fs-18);
}
.u-fs-24 {
	font-size: var(--fs-24);
}
.u-fs-24.u-ft-min {
	line-height: 1.6em;
}
.u-fs-32 {
	font-size: var(--fs-32);
	line-height: 1.6em;
}
.u-fs-40 {
	font-size: var(--fs-40);
	line-height: 1.5em;
}
.u-fs-48 {
	font-size: var(--fs-48);
	line-height: 1.5em;
}

/*フォントサイズ：英語*/
[class^="u-fs-en"] {
	font: var(--font-en);
}
.u-fs-en17 {
	font-size: 1.7rem;
	letter-spacing: .14em;
}
.u-fs-en22 {
	font-size: min(2.2rem,2.0vw);
	letter-spacing: .14em;
}
hgroup .u-fs-en22 {
	margin-bottom: min(30px,3vw);
}
.u-fs-en22.--slush {
	width: max-content;
	padding-left: .6em;
	padding-right: .6em;
	position: relative;
}
.u-fs-en22.--slush::before,
.u-fs-en22.--slush::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: currentcolor;
	transform: rotate(15deg);
	top: 0;
}
.u-fs-en22.--slush::before {
	left: 0;
}
.u-fs-en22.--slush::after {
	right: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*フォントサイズ*/
.u-fs-en22 {
	font-size: min(2.0rem,2.4vw);
	letter-spacing: .1em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*<group=text_align>*/
.u-sp-ta-l{text-align:left;}
/*フォントサイズ*/
.u-fs-14 {
	letter-spacing: normal;
	line-height: 1.6em;
}
.u-fs-15 {
	letter-spacing: normal;
	line-height: 1.6em;
}
.u-fs-24.u-ft-min {
	line-height: 1.5em;
}
.u-fs-32 {
	line-height: 1.5em;
}
.u-fs-40 {
	line-height: 1.4em;
}
.u-fs-48 {
	line-height: 1.4em;
}
/*フォントサイズ：英語*/
.u-fs-en22 {
	font-size: 1.7rem;
	letter-spacing: .1em;
}
hgroup .u-fs-en22 {
	margin-bottom: 6vw;
}
}



/*コンテンツ幅
---------------------------------------------------------*/
.max_width {
	width: var(--content-width);
	margin-inline: auto;
}
.max_1536 {
	max-width: 1536px;
	width: 100%;
	margin-inline: auto;
	text-align: left;
}
.w1536 {
	max-width: 1536px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1400 {
	max-width: 1400px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1376 {
	max-width: 1376px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1300 {
	max-width: 1300px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1276 {
	max-width: 1276px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1248 {
	max-width: 1248px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1215 {
	max-width: 1215px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}
.w1186 {
	max-width: 1186px;
	width: var(--content-width);
	margin-inline: auto;
	text-align: left;
}

.u-inner-box {
	width: min(100%,1276px);
	margin-inline: auto;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}



/*隙間
---------------------------------------------------------*/
.u-mgn-btm-170 {margin-bottom: var(--gap-170);}
.u-mgn-btm-150 {margin-bottom: var(--gap-150);}
.u-mgn-btm-120 {margin-bottom: var(--gap-120);}
.u-mgn-btm-100 {margin-bottom: var(--gap-100);}
.u-mgn-btm-90 {margin-bottom: var(--gap-90);}
.u-mgn-btm-80 {margin-bottom: var(--gap-80);}
.u-mgn-btm-70 {margin-bottom: var(--gap-70);}
.u-mgn-btm-60 {margin-bottom: var(--gap-60);}
.u-mgn-btm-50 {margin-bottom: var(--gap-50);}
.u-mgn-btm-40 {margin-bottom: var(--gap-40);}

.u-mgn-top-1em {margin-top: 1.0em;}
.u-mgn-btm-1em {margin-bottom: 1.0em;}

.u-pdg-top-170 {padding-top: var(--gap-170);}
.u-pdg-top-150 {padding-top: var(--gap-150);}
.u-pdg-top-120 {padding-top: var(--gap-120);}
.u-pdg-top-100 {padding-top: var(--gap-100);}
.u-pdg-top-90 {padding-top: var(--gap-90);}
.u-pdg-top-80 {padding-top: var(--gap-80);}
.u-pdg-top-90 {padding-top: var(--gap-90);}
.u-pdg-top-80 {padding-top: var(--gap-80);}
.u-pdg-top-70 {padding-top: var(--gap-70);}
.u-pdg-top-60 {padding-top: var(--gap-60);}
.u-pdg-top-50 {padding-top: var(--gap-50);}
.u-pdg-top-40 {padding-top: var(--gap-40);}

.u-pdg-btm-170 {padding-bottom: var(--gap-170);}
.u-pdg-btm-150 {padding-bottom: var(--gap-150);}
.u-pdg-btm-120 {padding-bottom: var(--gap-120);}
.u-pdg-btm-100 {padding-bottom: var(--gap-100);}
.u-pdg-btm-90 {padding-bottom: var(--gap-90);}
.u-pdg-btm-80 {padding-bottom: var(--gap-80);}
.u-pdg-btm-70 {padding-bottom: var(--gap-70);}
.u-pdg-btm-60 {padding-bottom: var(--gap-60);}
.u-pdg-btm-50 {padding-bottom: var(--gap-50);}
.u-pdg-btm-40 {padding-bottom: var(--gap-40);}



/*共通（固定）
---------------------------------------------------------*/
/*swiper共通設定*/
.swiper {
    overflow: visible !important;
}
.swiper-ticker .swiper-wrapper {
	transition-timing-function: linear !important;	/*滑らかに流れ続ける*/
}
.swiper-fade .swiper-slide {
    transition-property: opacity !important;	/* フェードモード時 共通調整 */
}

.blocklink,
.blocklink_out,
.blocklink_anc {
	cursor: pointer;
}
.anc_adjust {
    /*padding-top: 150px;
    margin-top: -150px;*/
}

/* 電話番号 */
a[href^="tel:"] {text-decoration: none;}
@media(min-width: 768px) {
	a[href^="tel:"] {pointer-events: none;}	/* PC時はaタグ無効 */
	.c-tel-bdr {text-decoration: underline;}	/* テキスト電話番号は下線をつける */
}

.c-txt-link {
	text-decoration: underline;
}
.c-txt-link:hover {
	text-decoration: none;
	color: var(--color-gold);
}

/*開閉アイコン*/
.c-icon-open {
	letter-spacing: normal;
	line-height: 1.0em;
	display: inline-block;
	vertical-align: middle;
	width: 1.2em;
	aspect-ratio: 1 / 1;
	background: currentColor;
	border-radius: 50%;
	margin-left: .5em;
	transform: translateY(-.1em);
	position: relative;
}
.c-icon-open::before,
.c-icon-open::after {
	content: "";
	position: absolute;
	width: 50%;
	height: 1px;
	background: #fff;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}
.c-icon-open::after {
	transform: rotate(90deg);
	transition: all 0.4s;
}
.is-open .c-icon-open::after {
	transform: rotate(0deg);
}

/*サムネイル*/
.c-thum {
	position: relative;
	z-index: 1;
	overflow: hidden;
	aspect-ratio: 280 / 166;
}
.c-thum span,
.c-thum a {
	display: block;
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: all 1.0s ease-out;
}
li:hover .c-thum span,
li:hover .c-thum a {
	transition: all 0.4s ease-out;
	transform: scale(1.2);
}
.c-thum img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/*スラッシュ*/
.c-slash > span {
	display: inline-block;
	position: relative;
}
.c-slash > span::before,
.c-slash > span::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 2.0em;
	border-left: solid 1px currentcolor;
	bottom: 0;
}
.c-slash > span::before {
	left: -1.0em;
	transform: rotate(-25deg);
}
.c-slash > span::after {
	right: -1.0em;
	transform: rotate(25deg);
}

/*スクロールボックス*/
.c-scroll-area {
	position: relative;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*スラッシュ*/
.c-slash > span::before,
.c-slash > span::after {
	border-width: 1px;
}
.c-slash > span::before {
	left: -1.5em;
}
.c-slash > span::after {
	right: -1.5em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*スラッシュ*/
.c-slash > span::before,
.c-slash > span::after {
	border-width: 1px;
}
.c-slash > span::before {
	left: -1.0em;
}
.c-slash > span::after {
	right: -1.0em;
}
}



/*問い合わせ（CTA）
---------------------------------------------------------*/
.c-tel {
	font: var(--font-en);
	letter-spacing: .1em;
	line-height: 1.0em;
}
.c-tel::before {
	font-family: 'fontello';
	content: '\e802';
	font-style: normal;
	font-size: 80%;
	margin-right: .2em;
}

.c-cta__web a {
	background: var(--color-gold);
	border: solid 1px rgba(255,255,255,0.4);
	border-radius: .4em;
	text-align: center;
	color: #fff;
	font-size: min(2.4rem,2.1vw);	/*「予約」基準*/
	letter-spacing: .04em;
	line-height: 1.0em;
	padding: .8em 1.0em .7em;
	display: flex;
    justify-content: center;
    align-items: center;
	column-gap: .8em;
}
.c-cta__web a:hover {
	background: rgba(154,120,60,0.9) !important;
}
.c-cta__web a::before {
	font-family: 'fontello';
	content: '\e807';
	font-size: 150%;
}
.c-cta__web p::after {
	font-family: 'fontello';
	content: '\e800';
	font-size: 60%;
	display: inline-block;
	vertical-align: baseline;
	transform: rotate(-45deg) translateY(-.2em);
	margin-left: .4em;
}
.c-cta__web-tip {
	display: block;
	width: max-content;
	background: #9a783c;
	font-size: 65%;
	letter-spacing: .12em;
	line-height: 1.0em;
	padding: .3em 1.5em;
	border-radius: 100vmax;
	margin: 0 auto .3em;
}
.c-cta__web .u-ft-en {
	font-size: 130%;
	letter-spacing: .08em;
}

.c-cta__ttl {
	font: var(--font-min);
	text-align: center;
	font-size: var(--fs-24);
	letter-spacing: normal;
	line-height: 1.4em;
	padding-bottom: 1.0em;
	border-bottom: solid 1px #cccccc;
	margin-bottom: 1.0em;
}
.c-cta__ttl-icon {
	padding-left: 1.8em;
	position: relative;
}
.c-cta__ttl-icon::before {
	font-family: 'fontello';
	content: '\e803';
	font-size: 110%;
	line-height: 1.0em;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-40%);
}

.c-cta__layout {
	width: min(100%,1186px);
	margin-inline: auto;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.c-cta__layout .c-cta__layout-first {
	width: min(61%,720px);
}
.c-cta__layout .c-cta__layout-second {
	width: min(36%,416px);
}

.c-cta__first-layout {
	display: flex;
    justify-content: center;
    align-items: center;
	text-align: center;
	column-gap: 4%;
}

.c-cta__tel-style {
	text-align: center;
	line-height: 1.4em;
}
.c-cta__tel-style > dt {
	font-size: var(--fs-18);
	margin-bottom: 1.0em;
}
.c-cta__tel-style > dt span {
	font-weight: bold;
}
.c-cta__tel-style .c-tel {
	font-size: min(4.2rem,3.3vw);
}
.c-cta__tel-style .c-tel + p {
	line-height: 1.4em;
	margin-top: .8em;
}

.c-cta__btn a {
	display: block;
	border: solid 1px rgba(255,255,255,0.4);
	background: rgba(66,119,129,0.8);
	border-radius: .5em;
	text-align: center;
	color: #fff;
	font-size: min(1.9rem,2.0vw);
	letter-spacing: .12em;
	line-height: 1.2em;
	padding: 1.4em 3%;
}
.c-cta__btn a:hover {background: rgba(66,119,129,0.6);}
.c-cta__btn p {
	display: inline-block;
	padding-left: 2.7em;
	padding-right: 1.5em;
	position: relative;
	line-height: 1.2em;
}
.c-cta__btn p::before {
	font-family: 'fontello';
	content: '\e804';
	font-size: 180%;
	position: absolute;
	margin: auto;
	left: 0;
	top: 0;
	bottom: 0;
}
.c-cta__btn p::after {
	font-family: 'fontello';
	content: '\e800';
	font-size: 80%;
	position: absolute;
	margin: auto;
	right: 0;
	top: 0;
	bottom: 0;
}

.c-cta__btn.--thick a {
    display: flex;
    flex-direction: column;
    justify-content: center;
	font: var(--font-min);
	font-size: var(--fs-16);
	letter-spacing: normal;
	padding: 0 2%;
	height: 7.0em;
}
.c-cta__btn.--thick p {
	display: block;
	padding: 0;
}
.c-cta__btn.--thick p::before {
	position: static;
	display: block;
	font-size: 150%;
	margin: 0 auto .6em;
}
.c-cta__btn.--thick p::after {
	display: none;
}

.c-cta__btn.--fitst a {
	background: rgba(224,226,214,0.9);
	color: var(--color-brown);
}
.c-cta__btn.--fitst a:hover {background: rgba(224,226,214,0.7);}
.c-cta__btn.--fitst p::before {content: '\e803';}

.c-cta__btn.--private a {background: #4c4c4c;}
.c-cta__btn.--private a:hover {background: #444;}
.c-cta__btn.--private p::before {
	content: '\e806';
	font-size: 220%;
}

.c-cta__btn.--white a {
	border-color: rgba(66,119,129,0.4);
	background: rgba(255,255,255,0.8);
	color: #427781;
}
.c-cta__btn.--white a:hover {
	background: rgba(66,119,129,1.8);
	color: #fff;
}
.c-cta__btn.--white.--private a {
	border-color: rgba(76,76,76,0.4);
	color: #4c4c4c;
}
.c-cta__btn.--white.--private a:hover {
	background: rgba(76,76,76,0.8);
	color: #fff;
}

.c-cta__btn-list {
	width: 80vw;
	max-width: 768px;
	margin-inline: auto;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-cta__btn-list li {
	width: min(49%,376px);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.c-tel {
	letter-spacing: .05em;
}
	
.c-cta__tel-style .c-tel + p {
	font-size: var(--fs-14);
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-tel {
	letter-spacing: .05em;
}

.c-cta__web a {
	font-size: var(--fs-20);	/*「予約」基準*/
	max-width: 60vw;
	margin-inline: auto;
}

.c-cta__ttl {
	padding-bottom: .6em;
}
.c-cta__ttl-icon {
	padding-left: 0;
}
.c-cta__ttl-icon::before {
	position: static;
	display: block;
	margin: 0 auto .4em;
	transform: none;
}

.c-cta__layout {
	display: block;
}
.c-cta__layout .c-cta__layout-first {
	width: 100%;
	margin-bottom: var(--gap-80);
}
.c-cta__layout .c-cta__layout-second {
	width: 100%;
}

.c-cta__first-layout {
	display: block;
}
.c-cta__first-layout .c-cta__tel-style {
	margin-bottom: 4vw;
}

.c-cta__tel-style > dt {
	margin-bottom: .5em;
}
.c-cta__tel-style .c-tel {
	font-size: 3.4rem;
}
.c-cta__tel-style .c-tel + p {
	margin-top: .4em;
}

.c-cta__btn a {
	font-size: var(--fs-16);
	letter-spacing: .08em;
	padding: .8em 0 1.0em;
}
.c-cta__btn p {
	display: block;
	padding: 0;
	line-height: 1.4em;
}
.c-cta__btn p::before {
	position: static;
	display: block;
	margin: 0 auto .3em;
}
.c-cta__btn p::after {
	display: none;
}

.c-cta__btn-list {
	width: 100%;
	max-width: 100%;
}
.c-cta__btn-list li {
	width: 48.5%;
}
}



/*診療時間
---------------------------------------------------------*/
.c-timetable {
	width: 100%;
}

.c-timetable table {
	width: 100%;
	font-size: var(--fs-15);	/*基準：曜日サイズ*/
	line-height: 1.0em;
	border-top: solid 1px rgba(255,255,255,0.6);
	border-bottom: solid 1px rgba(255,255,255,0.6);
	padding: .8em 0;
}
.c-timetable table th,
.c-timetable table td {
	text-align: center;
	font-weight: normal;
	letter-spacing: normal;
	vertical-align: middle;
}

.c-timetable table thead th,
.c-timetable table thead td {
	padding: .5em 0;
}
.c-timetable table thead th {
	letter-spacing: .26em;
}

.c-timetable table tbody th {width: 35.8%;}
.c-timetable table tbody td {width: 8.6%;}
.c-timetable table tbody td.tbl_space {width: 4%;}

.c-timetable table tbody th,
.c-timetable table tbody td {
	padding: .5em 0;
}
.c-timetable table tbody th {
	font: var(--font-en);
	letter-spacing: .18em;
	white-space: nowrap;
}
.c-timetable table tbody td {
	font-size: 90%;
}

.c-timetable__memo {
	font-size: var(--fs-14);
	line-height: 1.7em;
	margin-top: 1.0em;
	display: flex;
    flex-wrap: wrap;
	column-gap: 1.0em;
}
.c-timetable__memo-kome {
	width: 100%;
	padding-left: 1.0em;
	position: relative;
}
.c-timetable__memo-kome::before {
	content: "※";
	position: absolute;
	left: 0;
	top: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.c-timetable__memo {
	letter-spacing: normal;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}



/*リンク
---------------------------------------------------------*/
/*丸矢印*/
.c-link-circle {
	margin-top: 3.0rem;
}
.c-link-circle a {
	display: inline-block;
	font: var(--font-min);
	color: var(--color-brown);
	font-size: var(--fs-20);
	letter-spacing: normal;
	line-height: 1.4em;
	padding-right: 6.0rem;
	position: relative;
}
.c-link-circle a::before,
.c-link-circle a::after {
	content: "";
	position: absolute;
	width: 4.5rem;
	aspect-ratio: 1 / 1;
	margin: auto;
	right: 0;
  	top: 0;
  	bottom: 0;
	border-radius: 50%;
}
.c-link-circle a::before {
	background: url("../images/icon_arrow-b.png") no-repeat center center;
	background-size: contain;
}
.c-link-circle a::after {
	border: solid 1px var(--color-border);
	transition: all 0.4s;
}
.c-link-circle a:hover {
	color: var(--color-gold) !important;
}
.c-link-circle a:hover::after {
	transform: scale(1.2);
}
.c-link-circle.--white a {
	color: #fff;
}
.c-link-circle.--white a::before {
	background-image: url("../images/icon_arrow-w.png");
}
.c-link-circle.--white a::after {
	border-color: #fff;
	opacity: 0.8;
}
.c-link-circle.u-ft-en a {
	font: var(--font-en);
	font-size: var(--fs-19);
	letter-spacing: .14em;
}

/*角丸枠*/
.c-link-btn {
	margin-top: 3.0rem;
	text-align: center;
}
.c-link-btn a {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	font: var(--font-min);
	color: var(--color-brown);
	font-size: var(--fs-18);
	letter-spacing: normal;
	line-height: 1.4em;
	border: solid 1px var(--color-border);
	background: #fff;
	border-radius: .5em;
	padding-left: 1.5em;
	padding-right: 3.5em;
	height: 3.6em;
	position: relative;
}
.c-link-btn a::before,
.c-link-btn a::after {
	content: "";
	position: absolute;
	width: 2.0em;
	aspect-ratio: 1 / 1;
	margin: auto;
	right: 1.0em;
	top: 0;
	bottom: 0;
	border-radius: 50%;
}
.c-link-btn a::before {
	z-index: 1;
	background: url("../images/icon_arrow-b.png") no-repeat center center;
	background-size: contain;
}
.c-link-btn a::after {
	z-index: 0;
	background: transparent;
	transform: scale(0);
	transition: all 0.8s;
}
.c-link-btn a:hover::after {
	transition: all 0.4s;
	background: #ecebe7;
	transform: scale(1);
}
.c-link-btn.--icon-anc a::before {
	transform: rotate(90deg);
}
.c-link-btn.--icon-site a::before {
	background-image: url("../images/icon_site-b.png");
}
.c-link-btn.--white a {
	color: #fff;
	background: transparent
}
.c-link-btn.--white a::before {
	background-image: url("../images/icon_arrow-w.png");
}
.c-link-btn.--white a:hover::after {
	background: rgba(255,255,255,0.2);
}

/*リスト*/
.c-link-list {
	margin-top: 3.0rem;
	display: flex;
    flex-wrap: wrap;
	gap: 2.0rem 2.0rem;
}
.c-link-list.--center {
    justify-content: center;
}
.c-link-list .c-link-round,
.c-link-list .c-link-btn {
	margin-top: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*リスト*/
.c-link-list {
	gap: 1.0rem 1.0rem;
}
/*リスト：サイズを揃えて並べる*/
.c-link-list.--align {
	display: flex;
    justify-content: flex-start;	
    flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 2vw;
}
.c-link-list.--align li {
	width: 23.5%;
	margin: 0;
}
.c-link-list.--align .c-link-btn a {
	display: flex;
	padding-left: 0;
	padding-right: 1.0em;
}
.c-link-list.--align .c-link-btn a::before,
.c-link-list.--align .c-link-btn a::after {
	right: 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*丸矢印*/
.c-link-circle {
	margin-top: 2.0rem;
}
.c-link-circle.u-ft-en a {
	letter-spacing: .1em;
}
/*リンクボタン：角丸枠*/
.c-link-btn {
	margin-top: 2.0rem;
}

/*リスト*/
.c-link-list {
	margin-top: 2.0rem;
	display: block;
}
.c-link-list li {
	margin-top: 1.0rem;
}
.c-link-list .c-link-round,
.c-link-list .c-link-btn {
	text-align: center;
}
/*リスト：サイズを揃えて並べる*/
.c-link-list.--align {
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	column-gap: 2%;
	row-gap: 2vw;
}
.c-link-list.--align li {
	width: 49%;
	margin: 0;
}
.c-link-list.--align .c-link-btn a {
	display: flex;
	padding-left: 0;
	padding-right: 1.0em;
}
.c-link-list.--align .c-link-btn a::before,
.c-link-list.--align .c-link-btn a::after {
	right: 0;
}
}



/*リスト
---------------------------------------------------------*/
.c-list-dotto {
	text-align: left;
	font-weight: bold;
	line-height: 1.8em;
}
.c-list-dotto > li {
	margin-bottom: .6em;	/*揃える*/
	padding-left: 1.0em;
	position: relative;
}
.c-list-dotto > li:last-child {
	margin-bottom: 0;
}
.c-list-dotto > li::before {
	content: "";
	position: absolute;
	width: .5em;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	background: var(--color-gold);
	left: 0;
	top: .6em;
}
.c-list-dotto.--col2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
	gap: .6em 10%;	/*揃える*/
}
.c-list-dotto.--col2 > li {
	margin-bottom: 0;
}
.c-list-dotto.--col3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
    justify-content: space-between;
	gap: .6em 8%;	/*揃える*/
}
.c-list-dotto.--col3 > li {
	margin-bottom: 0;
}

.c-list-circle {
	text-align: left;
	font-weight: bold;
	line-height: 1.8em;
}
.c-list-circle > li {
	margin-bottom: .6em;	/*揃える*/
	padding-left: 1.5em;
	position: relative;
}
.c-list-circle > li:last-child {
	margin-bottom: 0;
}
.c-list-circle > li::before {
	content: "";
	position: absolute;
	width: 1.0em;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	border: solid 3px var(--color-gold);
	left: 0;
	top: .4em;
}
.c-list-circle.--col2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
	gap: .6em 10%;	/*揃える*/
}
.c-list-circle.--col2 > li {
	margin-bottom: 0;
}

.c-list-check {
	text-align: left;
	font-weight: bold;
	line-height: 1.8em;
}
.c-list-check > li {
	margin-bottom: 1.0em;	/*揃える*/
	padding-left: 1.7em;
	position: relative;
}
.c-list-check > li:last-child {
	margin-bottom: 0;
}
.c-list-check > li::before {
	content: "";
	position: absolute;
	width: 1.2em;
	aspect-ratio: 1 / 1;
	background: url("../images/icon_check.png") no-repeat center center;
	background-size: contain;
	left: 0;
	top: .3em;
}
.c-list-check.--col2 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
    justify-content: space-between;
	gap: 1.0em 10%;	/*揃える*/
}
.c-list-check.--col2 > li {
	margin-bottom: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.c-list-dotto {
	line-height: 1.6em;
}
.c-list-dotto > li {
	margin-bottom: .4em;	/*揃える*/
}
.c-list-dotto.--col2 {
	gap: .4em 10%;	/*揃える*/
}
.c-list-dotto.--col3 {
	gap: .4em 8%;	/*揃える*/
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-list-dotto {
	line-height: 1.6em;
}
.c-list-dotto > li,
.c-list-dotto.--col2 > li {
	margin-bottom: .2em;	/*揃える*/
}
.c-list-dotto > li:last-child,
.c-list-dotto.--col2 > li:last-child {
	margin-bottom: 0;
}
.c-list-dotto.--col2 {
	display: block;
}
.c-list-dotto.--col3 {
	grid-template-columns: repeat(2, 1fr);
	gap: .2em 5%;	/*揃える*/
}

.c-list-circle {
	line-height: 1.6em;
}
.c-list-circle > li,
.c-list-circle.--col2 > li {
	margin-bottom: .5em ;	/*揃える*/
}
.c-list-circle > li:last-child,
.c-list-circle.--col2 > li:last-child {
	margin-bottom: 0;
}
.c-list-circle.--col2 {
	display: block;
}

.c-list-check {
	line-height: 1.5em;
}
.c-list-check > li,
.c-list-check.--col2 > li {
	margin-bottom: .5em;	/*揃える*/
}
.c-list-check > li:last-child,
.c-list-check.--col2 > li:last-child {
	margin-bottom: 0;
}
.c-list-check > li::before {
	top: .1em;
}
.c-list-check.--col2 {
	display: block;
}
}



/*FAQ
---------------------------------------------------------*/
.c-faq {
	margin-bottom: 20px;
}
.c-faq:last-of-type {
	margin-bottom: 0;
}
.c-faq > dt {
	background: #fff;
	padding: 1.8em 5%;
}
.c-faq > dd {
	background: #f5f2f2;
	padding: 1.5em 5%;
}
.c-faq > dt p {
	font-weight: bold;
	line-height: 1.4em;
	padding-left: 4.0em;
	position: relative;
}
.c-faq > dt p::before {
	content: "Q.";
	font: var(--font-en);
	font-size: 3.2rem;
	letter-spacing: .14em;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

/*開閉タイプ*/
.c-faq__open {
	padding-right: calc(5% + 1.5rem) !important;
	cursor: pointer;
	position: relative
}
.c-faq__open::before,
.c-faq__open::after {
	content: "";
	position: absolute;
	width: .8em;
	height: 2px;
	background: currentcolor;
	margin: auto;
	right: 5%;
	top: 0;
	bottom: 0;
	transition: all 0.4s;
}
.c-faq__open::after {
	transform: rotate(90deg);
}
.c-faq__open.is-open::after {
	transform: rotate(0deg);
}
.c-faq__box {
	display: none;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.c-faq > dt {
	padding-top: 1.5em;
	padding-bottom: 1.5em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-faq {
	margin-bottom: 3vw;
}
.c-faq > dt {
	padding: 1.0em 5% 1.2em;
}
.c-faq > dd {
	padding: 1.5em 5%;
}
.c-faq > dt p {
	padding-left: 0;
}
.c-faq > dt p::before {
	position: static;
	display: block;
	transform: none;
	font-size: 3.0rem;
	margin-bottom: .2em;
}
}



/*.c-annex__bnr
---------------------------------------------------------*/
.c-annex__bnr {
	width: min(60vw,760px);
	margin-inline: auto;
}
.c-annex__bnr a {
	display: flex;
    justify-content: space-between;
    align-items: center;
	background: #fff9f8;
	border: solid 1px var(--color-border);
	border-radius: 10px;
	overflow: hidden;
	position: relative;
	font-size: min(1.6rem,1.4vw);
}
.c-annex__bnr a:hover {
	background: #fff2f0;
}
.c-annex__bnr a::before {
	font-family: 'fontello';
	content: '\e800';
	font-size: 120%;
	position: absolute;
	right: 1.0em;
	bottom: .5em;
}
.c-annex__bnr-img {
	width: 35%;
}
.c-annex__bnr-txt {
	width: 65%;
	margin-left: auto;
	margin-right: 0;
}
.c-annex__bnr-img {
	height: 100%;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.c-annex__bnr-img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}
.c-annex__bnr-txt {
	padding: var(--gap-60) 0;
	background-image: url("../images/bnr_annex-bg1.png"), url("../images/bnr_annex-bg2.png");
	background-repeat: no-repeat, no-repeat;
	background-position: left top, right bottom;
	background-size: 26% auto, 26% auto;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
}
.c-annex__bnr-txt .u-ft-min {
	letter-spacing: .2em;
	line-height: 1.2em;
	padding-right: 1.5em;
	border-right: solid 1px var(--color-border);
	margin-right: 2.0em;
}
.c-annex__bnr-txt p:not(.u-ft-min) {
	width: min(55%,270px);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.c-annex__bnr {
	width: 70vw;
}
.c-annex__bnr a {
	font-size: 1.8vw;
}
.c-annex__bnr a::before {
	right: .8em;
	bottom: .3em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-annex__bnr {
	width: 100%;
}
.c-annex__bnr a {
	font-size: var(--fs-14);
}
.c-annex__bnr a::before {
	font-size: 100%;
	right: .5em;
	bottom: 0;
}
.c-annex__bnr-img {
	width: 40%;
}
.c-annex__bnr-txt {
	width: 60%;
	display: block;
	padding: 5vw 0 8vw;
}
.c-annex__bnr-txt .u-ft-min {
	text-align: center;
	padding: 0;
	margin: 0;
	border-right: none;
	margin-bottom: .5em;
}
.c-annex__bnr-txt p:not(.u-ft-min) {
	width: 80%;
	margin-inline: auto;
}
}



/*.c-links-sns
---------------------------------------------------------*/
.c-links-sns {
	text-align: center;
	font-size: 2.2rem;
	font-weight: normal;
	display: flex;
    align-items: center;
	column-gap: .8em;
}
.c-links-sns a {
	display: block;
	background: rgba(255,255,255,0.1);
	width: 2.0em !important;
	line-height: 2.0em !important;
	border-radius: 50%;
}
.c-links-sns a:has(.icon-fb):hover {
	background: var(--color-fb);
}
.c-links-sns a:has(.icon-insta):hover {
	background: var(--color-insta);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
}



/*施設基準
---------------------------------------------------------*/
.c-infoaddition {
	width: min(90%,922px);
	margin-inline: auto;
	background: #fff;
	border: solid 1px var(--color-base);
	font-size: var(--fs-16);
	line-height: 1.4em;
	border-radius: 1.4em;
}
.c-infoaddition__open {
	text-align: center;
	font: var(--font-min);
	color: var(--color-base);
	letter-spacing: .1em;
	padding: .5em 1.0em;
	cursor: pointer;
}
.c-infoaddition .js-open-box {
	display: none;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.c-infoaddition {
	width: 100%;
}
.c-infoaddition__open {
	text-align: left;
	letter-spacing: normal;
	line-height: 1.6em;
	padding: 1.0em 1.2em;
	padding-right: 2.5em;
	position: relative;
}
.c-infoaddition__open .c-icon-open {
	position: absolute;
	right: 1.0em;
	top: 50%;
	transform: translateY(-50%);
}
}



/*header
---------------------------------------------------------*/
.l-fv {
	width: 100%;
	position: relative;
}
.l-fv .l-header {
	width: 100%;
	position: relative;
	z-index: 100;
}
.l-fv__wrap {
	width: 100%;
	position: relative;
	z-index: 0;
}

/*.contentpage*/
.contentpage .l-header {
	border-bottom: solid 1px rgba(62,53,46,0.3);
}

.l-header__layout {
	width: 100%;
	padding-top: min(30px,2.5vh);
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.l-header__left {
	padding-left: 4%;
}

.l-header__logo {
	width: min(25vw,350px);
}

.l-header__tel {
	text-align: center;
	color: var(--color-brown);
}
.l-header__tel dt {
	width: max-content;
	font-size: min(1.4rem,1.2vw);
	letter-spacing: .1em;
	line-height: 1.0em;
	background: #f3f6f3;
	padding: .5em .8em .4em;
	border-radius: 100vmax;
	margin: 0 auto .5em;
}
.l-header__tel dt span {
	font-weight: bold;
}
.l-header__tel.--first dt span {
	color: var(--color-gold);
}
.l-header__tel.--second dt span {
	color: var(--color-navy);
}
.l-header__tel .c-tel {
	font-size: min(2.6rem,2.2vw);
}

.l-header__cta {
	display: flex;
    justify-content: flex-end;
    align-items: center;
	column-gap: min(25px,2vw);
}
.l-header__cta .l-header__tel.--second {
	padding: 0 min(25px,2vw);
	border-left: solid 1px var(--color-border);
}
.l-header__cta .c-cta__web a {
	background: rgba(173,145,96,0.8);
	font-size: min(2.0rem,1.8vw);	/*「予約」基準*/
	padding: .5em 1.0em .4em;
}

/*.frontpag*/
.frontpage .l-header .l-header__tel dt {
	background: #fff;
}
.frontpage .l-header .l-header__tel dd {
	color: #fff;
}
.frontpage .l-header__cta .l-header__tel.--second {
	border-color: rgba(255,255,255,0.3);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.l-header__layout {
	padding-top: 2vw;
}
.l-header__left {
	padding-left: 2%;
}

.l-header__tel dt {
	font-size: 1.4vw;
}
.l-header__tel .c-tel {
	font-size: 2.4vw;
}

.l-header__cta {
	column-gap: 1.5vw;
}
.l-header__cta .l-header__tel.--second {
	padding: 0 1.5vw;
}
.l-header__cta .c-cta__web a {
	font-size: 2.0vw;	/*「予約」基準*/
	padding: .5em .8em .4em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-header__layout {
	padding: 6vw 6%;
	display: block;
}
.l-header__left {
	padding-left: 0;
}
.l-header__right {
	display: none;
}
.l-header__logo {
	width: 66%;
}
}



/*メニュー
---------------------------------------------------------*/
.js-l-nav {
	position: relative;	/*幅広アコーディオンの基準*/
}
.l-nav {
	display: flex;
	column-gap: min(30px,2.0vw);
	position: relative;
}
.l-nav > li {
	height: 3.6em;	/*揃える*/
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
	position: relative;
}
.l-nav > li::before {
	content: "";	/*現在地*/
	position: absolute;
	height: 1px;
	background: var(--color-base);
	margin: auto;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	transition: all 0.4s;
}
.l-nav > li:hover::before,
.l-nav > li.is-now::before {
	width: 4.0em;
}
.l-nav > li > a {
    display: block;
	font: var(--font-min);
	font-size: min(1.6rem,1.5vw) !important;
	letter-spacing: .1em;
	line-height: 1.2em;
}
.l-nav > li > a.u-ft-en {
	font: var(--font-en);
}

.l-nav > li > a:has(.icon-open) {
	padding-right: 1.0em;
}
.l-nav > li > a .icon-open::before,
.l-nav > li > a .icon-open::after {
	content: "";
	position: absolute;
	width: .8em;
	height: 1px;
	background: currentcolor;
	margin: auto;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all 0.4s;
}
.l-nav > li > a .icon-open::after {
	transform: rotate(90deg);
}
.l-nav > li:has(.is-open) > a .icon-open::after {
	transform: rotate(0deg);
}

/* アコーディオンメニュー */
.l-nav__inmenu {
	display: none !important;
	position: absolute;
	z-index: 100;
	top: 100%;
	background: #ccc;
	text-align: left;
	font-size: min(1.6rem,1.3vw);
}
/*縦メニュー*/
.l-nav__inmenu.--long {
	width: 14em;
	left: 50%;
	transform: translateX(-50%);
}
/*横メニュー*/
.l-nav__inmenu.--width {
	width: min(96vw,1250px);
	left: 50%;
	transform: translateX(-50%);
}

/*メインメニュー*/
.l-header__nav {
	padding: 0 2.5%;
}
.l-header__nav .l-nav {
    justify-content: flex-end;
}

/*スクロールメニュー*/
.l-fixed-header .l-nav > li > a .dotto-adjust {
	display: block;
	margin: -.5em 0;
}

/*.frontpage*/
.frontpage .l-header__nav .l-nav > li::before {
	background: #fff;
}
.frontpage .l-header__nav .l-nav > li > a {
	color: #fff;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.l-nav > li > a {
	font-size: min(1.5rem,1.8vw) !important;
	letter-spacing: .05em;
}
	
/*メインメニュー*/
.l-header__nav .l-nav > li > a .dotto-adjust {
	display: block;
	margin: -.5em 0;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*メインメニュー*/
.l-header__nav .l-nav {
	display: none !important;
}
}



/*スクロールメニュー
---------------------------------------------------------*/
.l-fixed-header {
	display: none;
	position: fixed;
	z-index: 500;
	left: 0;
	top: 0;
	transform: translateY(-100%);
	width: 100%;
	padding: min(25px,2vh) 1.5%;
	background: #fff;
}
.l-fixed-header.is-show {
	display: block;
	transform: translateY(0);
	opacity: 1;
    animation: sclAnimation 1.0s;
}
.l-fixed-header__layout {
	width: 100%;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-fixed-header__left {
	width: 65%;
	padding-left: 2%;
}
.l-fixed-header__right {
	width: 35%;
}

.l-fixed-header .l-nav {
	column-gap: min(30px,1.5vw);
}
.l-fixed-header .l-nav > li > a {
	font-size: min(1.6rem,1.2vw) !important;
	letter-spacing: .05em;
}

.l-fixed-header__cta {
	width: min(100%,500px);
	margin-left: auto;
	margin-right: 0;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-fixed-header__cta > li {
	width: 50%;
}
.l-fixed-header__cta > li:nth-child(1) {
	border-right: solid 1px var(--color-border);
}
.l-fixed-header__cta .l-header__tel dt {
	font-size: min(1.3rem,1.1vw);
}
.l-fixed-header__cta .l-header__tel .c-tel {
	font-size: min(2.2rem,1.7vw);
}
.l-fixed-header__cta .c-cta__web a {
	display: block;
	background: rgba(173,145,96,0.8);
	font-size: min(1.7rem,1.4vw);	/*「予約」基準*/
	padding: .5em 0 .4em;
	width: min(90%,200px);
	margin: .6em auto 0;
}
.l-fixed-header__cta .c-cta__web a::before {
	display: none;
}
.l-fixed-header__cta .c-cta__web-tip {
	display: inline-block;
	vertical-align: middle;
	width: auto;
	font-size: 75%;
	padding: .4em .8em .3em;
	margin: 0 .5em 0 0;
	transform: translateY(-.15em);
}
.l-fixed-header__annex {
	font-size: min(1.3rem,1.1vw);
	letter-spacing: .1em;
	line-height: 1.4em;
	margin-top: 1.0em;
}
.l-fixed-header__annex a i {
	display: inline-block;
	vertical-align: middle;
	font-size: 80%;
	margin-left: .5em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.l-fixed-header {
	padding: 2vw 1%;
}
	
.l-fixed-header__left {
	padding-left: 0;
}
.l-fixed-header .l-nav {
    justify-content: center;
}
.l-fixed-header .l-nav > li > a {
	font-size: 1.4vw !important;
	letter-spacing: normal;
}

.l-fixed-header__cta .l-header__tel dt {
	font-size: 1.2vw;
}
.l-fixed-header__cta .l-header__tel .c-tel {
	font-size: 1.8vw;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-fixed-header {display: none !important;}
}

/* スクロールメニューアニメーション */
@keyframes sclAnimation {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0);
	}
}



/*スマホメニュー
---------------------------------------------------------*/
.drawer-nav {
	background: #18313d;
	color: #fff;
	text-align: left;
	padding: 5vw 5% 30vw;
}
.drawer__logo {
	width: 70%;
}

.drawer__nav-border {
	font: var(--font-min);
	font-size: var(--fs-15);
	letter-spacing: normal;
	line-height: 1.4em;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	row-gap: .5em;
}
.drawer__nav-border li {
	width: 48%;
	border-bottom: solid 1px #2a505e;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.drawer__nav-border a {
	display: block;
	padding: .5em 0;
	padding-left: 1.5em;
	position: relative;
}
.drawer__nav-border a::before {
	font-family: 'fontello';
	content: '\e800';
	color: #2a505e;
	font-size: 80%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.drawer__nav-border .icon-site {
	font-size: 80%;
	display: inline-block;
	vertical-align: middle;
	margin-left: .3em;
	transform: translateY(-.2em);
}

.drawer__style > dt {
	font: var(--font-min);
	font-size: var(--fs-16);
	letter-spacing: .05em;
	line-height: 1.4em;
	margin-left: .5em;
	margin-bottom: .5em;
}

.drawer__nav-btn {
	text-align: center;
	font: var(--font-min);
	font-size: var(--fs-16);
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	row-gap: .5em;
}
.drawer__nav-btn li {
	width: 49%;
}
.drawer__nav-btn a {
	letter-spacing: .05em;
	line-height: 1.2em;
	background: rgba(0,0,0,0.3);
	border: solid 1px rgba(255,255,255,0.3);
	border-radius: .5em;
	height: 4.0em;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.drawer__nav-btn .is-nospace a {
	letter-spacing: normal;
}
.drawer__nav-btn a span {
	display: block;
	font-size: 80%;
	letter-spacing: .05em;
	line-height: 1.2em;
}

.drawer__nav-simple {
	font-size: var(--fs-15);
	letter-spacing: normal;
	line-height: 1.4em;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
	row-gap: .5em;
}
.drawer__nav-simple li {
	width: 48%;
}
.drawer__nav-simple a {
	display: block;
	padding: .5em 0;
	padding-left: 1.5em;
	position: relative;
}
.drawer__nav-simple a::before {
	font-family: 'fontello';
	content: '\e800';
	color: #2a505e;
	font-size: 80%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

.drawer__nav-horizontal {
	font: var(--font-min);
	font-size: var(--fs-15);
	letter-spacing: normal;
	line-height: 1.4em;
	display: flex;
    justify-content: center;
    flex-wrap: wrap;
	row-gap: .5em;
}
.drawer__nav-horizontal a {
	display: block;
	padding: 0 1.2em;
	border-right: solid 1px currentcolor;
}
.drawer__nav-horizontal li:last-child a {
	border-right: none;
}

.drawer-nav .c-links-sns {
    justify-content: center;
}



/*footer
---------------------------------------------------------*/
.l-footer {
	border-top: solid 1px var(--color-border);
}

/*********************
.l-footer__info
*********************/
.l-footer__info {
	padding-top: var(--gap-100);
	padding-bottom: var(--gap-100);
}
.l-footer__info-layout {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.l-footer__info-left {
	width: min(49%,570px);
}
.l-footer__info-right {
	width: min(48%,620px);
}
.l-footer__info-features {
	font-weight: bold;
	letter-spacing: .14em;
	line-height: 1.2em;
	display: flex;
    flex-wrap: wrap;
	gap: .5em 1.0em;
	margin-bottom: 1.5em;
}
.l-footer__info-features li {
	background: var(--color-gold);
	color: #fff;
	padding: .4em 1.0em;
}
.l-footer__info-clinic p {
	letter-spacing: .16em;
	line-height: 1.6em;
	margin-bottom: 1.0em;
}
.l-footer__info-clinic .l-footer__info-logo {
	width: min(100%,530px);
}
.l-footer__info-clinic address {
	line-height: 1.6em;
}
.l-footer .c-timetable {
	margin: var(--gap-40) 0;
}
.l-footer .c-timetable table {
	font-size: var(--fs-19);	/*基準：曜日サイズ*/
	border-color: rgba(62,53,46,0.6);
	padding: 1.0em 0;
}
.l-footer__info-access {
	line-height: 1.3em;	
	font-feature-settings: "halt";
	display: flex;
    align-items: center;
    flex-wrap: wrap;
	column-gap: 8%;
}
.l-footer__info-access li {
	display: flex;
    align-items: center;
	column-gap: .8em;
}
.l-footer__info-access li div {
	width: min(90px,6vw);
}
.l-footer__info-right iframe {
	display: block;
	width: 100%;
	height: min(50vw,510px);
}
.l-footer__info-right .c-link-btn {
	text-align: right;
}
.l-footer__info-right .c-link-btn span {
	padding-left: 2.0em;
	position: relative;
}
.l-footer__info-right .c-link-btn span::before {
	font-family: 'fontello';
	content: '\e805';
	font-size: 140%;
	font-weight: normal;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-40%);
}

/*********************
.l-footer__contact
*********************/
.l-footer__contact {
	background: #f7f7f7;
	padding-top: 30px;
	padding-bottom: var(--gap-80);
}
.l-footer__contact-ttl {
	display: flex;
    align-items: center;
	opacity: 0.5;
}
.l-footer__contact-ttl .u-ft-en {
	font-size: 150%;
	letter-spacing: .1em;
	margin-right: 1.0em;
}
.l-footer__contact .c-cta__layout {
	margin-bottom: var(--gap-40);
}

/*********************
.l-footer__sitemap
*********************/
.l-footer__sitemap {
	background: #17303d;
	padding-top: var(--gap-100);
	padding-bottom: var(--gap-100);
	color: #fff;
}
.l-footer__sitemap-logo {
	margin-left: 2%;
	width: min(50%,534px);
}
.l-footer__sitemap-unit {
	border-left: solid 1px rgba(255,255,255,0.1);
	padding-left: 20px;	
	font-feature-settings: "halt";
}

.l-footer__sitemap-list > li > a:hover {
	color: var(--color-gold);
}
.l-footer__sitemap-style > dt,
.l-footer__sitemap-list.--txt-l > li > a {
	font-weight: bold;
}
.l-footer__sitemap-list.--txt-s > li > a {
	font-size: var(--fs-14);
}
.l-footer__sitemap-style > dt,
.l-footer__sitemap-list > li > a {
	letter-spacing: .1em;
	line-height: 1.4em;
}
.l-footer__sitemap-style > dt {
	margin-bottom: .7em;
}
.l-footer__sitemap-list.--txt-l > li {
	margin-bottom: .7em;
}
.l-footer__sitemap-list.--txt-s > li {
	margin-bottom: .8em;
}
.l-footer__sitemap-list.--txt-l .l-footer__sitemap-list.--txt-s {
	padding-left: 2.5rem;
}
.l-footer__sitemap-list > li > a {
	display: block;
	padding-left: 2.5rem;
	position: relative;
}
.l-footer__sitemap-list > li > a::before {
	font-family: 'fontello';
	content: '\e800';
	font-size: 1.4rem;
	font-weight: normal;
	opacity: 0.4;
	position: absolute;
	left: 0;
	top: 0;
}
.l-footer__sitemap-list > li.back-icon-site > a::after {
	font-family: 'fontello';
	content: '\e801';
	font-size: .9em;
	font-weight: normal;
	margin-left: .5em;
}
.l-footer__sitemap-list > li > a .icon-insta {
	display: inline-block;
	vertical-align: middle;
	font-size: 160%;
	margin-right: .2em;
}
.l-footer__sitemap-list > li.front-icon-insta > a::after {
	font-family: 'fontello';
	content: '\e809';
	font-size: 1.2em;
	font-weight: normal;
}

.l-footer__sitemap-layout {
	display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
	gap: var(--gap-50) min(60px,5vw);
}
.l-footer__sitemap-layout .l-footer__sitemap-unit.--medical {
	width: 100%;
}
.l-footer__sitemap-unit.--medical dd {
	display: flex;
    align-items: flex-start;
	gap: var(--gap-50) min(60px,5vw);
}
.l-footer__sitemap-layout .l-footer__sitemap-unit.--other {
	display: flex;
    align-items: flex-start;
	gap: var(--gap-50) min(60px,5vw);
}

.l-footer__sitemap-bottom {
	display: flex;
    justify-content: flex-end;
    align-items: center;
	column-gap: 3%;
	font-size: var(--fs-14);
}
.l-footer__sitemap-bottom a {
	text-decoration: underline;
	line-height: 1.4em;
}

.l-footer__img-large {
	width: 100%;
	height: min(50vw,690px);
}
.l-footer__img-large img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
}

/*********************
.l-footer__bottom
*********************/
.l-footer__bottom {
	padding: var(--gap-50) 3%;
}
.l-footer__bottom-layout {
	width: min(100%,1270px);
	margin-inline: auto;
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-footer__copyright {
	text-align: left;
	font-size: var(--fs-14);
	letter-spacing: .12em;
	line-height: 1.4em;
}
.l-footer__pagetop a {
	display: inline-block;
	letter-spacing: .06em;
	line-height: 1.4em;
	padding-left: 3.5em;
	position: relative;
}
.l-footer__pagetop a:hover {
	color: var(--color-gold);
}
.l-footer__pagetop a::before,
.l-footer__pagetop a::after {
	content: "";
	position: absolute;
	width: 2.5em;
	aspect-ratio: 1 / 1;
	margin: auto;
	left: 0;
  	top: 0;
  	bottom: 0;
	border-radius: 50%;
}
.l-footer__pagetop a::before {
	background: url("../images/icon_arrow-b.png") no-repeat center center;
	background-size: contain;
	transform: rotate(-90deg);
}
.l-footer__pagetop a::after {
	border: solid 1px var(--color-border);
	transition: all 0.4s;
}
.l-footer__pagetop a:hover::after {
	transform: scale(1.2);
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
/*********************
.l-footer__info
*********************/
.l-footer__info-features {
	font-size: var(--fs-14);
	gap: .5em .5em;
}
.l-footer__info-access li {
	display: block;
	text-align: center;
}
.l-footer__info-access li div {
	width: 4.0em;
	margin: 0 auto .8em;
}

/*********************
.l-footer__contact
*********************/
.l-footer__contact-ttl .u-ft-en {
	letter-spacing: .05em;
}

/*********************
.l-footer__sitemap
*********************/
.l-footer__sitemap-logo {
	margin-left: 0;
}
.l-footer__sitemap-unit {
	padding-left: 15px;
}

.l-footer__sitemap-style > dt,
.l-footer__sitemap-list.--txt-l > li > a {
	font-size: var(--fs-14);
	letter-spacing: normal;
}
.l-footer__sitemap-list.--txt-s > li > a {
	font-size: var(--fs-13);
	letter-spacing: normal;
}
.l-footer__sitemap-list.--txt-l .l-footer__sitemap-list.--txt-s {
	padding-left: 2.3rem;
}
.l-footer__sitemap-list > li > a {
	padding-left: 2.3rem;
}

/*********************
.l-footer__bottom
*********************/
}

/* Mobile (Portrait) 以上
------------------------------------------*/
@media only screen and (min-width: 768px) {
.l-footer__sitemap .js-open-box {
	display: block !important;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
/*********************
.l-footer__info
*********************/
.l-footer__info-layout {
	display: block;
}
.l-footer__info-left {
	width: 100%;
	margin-bottom: var(--gap-80);
}
.l-footer__info-right {
	width: 100%;
}
.l-footer__info-features {
	font-size: var(--fs-14);
	gap: .5em .5em;
}
.l-footer__info-clinic .l-footer__info-logo {
	width: 100%;
}
.l-footer__info-clinic address {
	line-height: 1.6em;
}
.l-footer .c-timetable table {
	font-size: var(--fs-17);	/*基準：曜日サイズ*/
}
.l-footer__info-access {
    justify-content: space-between;
	column-gap: 0;
	text-align: center;
}
.l-footer__info-access li {
	width: 50%;
	display: block;
}
.l-footer__info-access li div {
	width: 20vw;
	margin: 0 auto .5em;
}
.l-footer__info-right iframe {
	height: 80vw;
}
.l-footer__info-right .c-link-btn {
	text-align: center;
}

/*********************
.l-footer__contact
*********************/
.l-footer__contact {
	padding-top: var(--gap-60);
	padding-bottom: var(--gap-80);
}
.l-footer__contact-ttl {
	display: block;
	text-align: center;
}
.l-footer__contact-ttl .u-ft-en {
	margin: 0 0 0.2em;
}
.l-footer__contact .c-cta__layout {
	margin-bottom: var(--gap-80);
}

/*********************
.l-footer__sitemap
*********************/
.l-footer__sitemap {
	padding-top: var(--gap-80);
	padding-bottom: var(--gap-80);
}
.l-footer__sitemap-logo {
	margin-left: 0;
	width: 95%;
}
.l-footer__sitemap-open {
	font-size: 1.8rem;
}
.l-footer__sitemap-open .c-icon-open {
	background: transparent;
	margin-left: 0;
	margin-right: .5em;
}
.l-footer__sitemap .js-open-box {
	display: none;
	padding-top: 3vw;
}
	
.l-footer__sitemap-unit {
	border-left: none;
	padding-left: 0;
	padding-bottom: 3vw;
}	
	
.l-footer__sitemap-style > dt,
.l-footer__sitemap-list > li > a {
	letter-spacing: .05em;
}

.l-footer__sitemap-layout {
	display: block;
	border-left: solid 1px rgba(255,255,255,0.1);
	padding-left: 4vw;
}
.l-footer__sitemap-unit.--medical dd {
	display: block;
}
.l-footer__sitemap-layout .l-footer__sitemap-unit.--other {
	display: block;
}

.l-footer__sitemap-bottom {
    justify-content: space-between;
}

/*********************
.l-footer__bottom
*********************/
.l-footer__bottom-layout {
	display: block;
}
.l-footer__copyright {
	text-align: center;
	letter-spacing: .06em;
	margin-bottom: var(--gap-60);
}
}



/*スマホフッター
---------------------------------------------------------*/
@media only screen and (min-width: 768px) {
#sp-footer {display: none !important;}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.l-sp-footer {
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 600;
	background: #fff;
	padding: 1.5vw;
	text-align: center;
}

.c-cta__sp-footer {
	display: flex;
    justify-content: space-between;
    align-items: center;
}
.c-cta__sp-footer li {
	width: 25%;
}
.c-cta__sp-footer a {
	display: block;
	font-size: var(--fs-16);
	line-height: 1.2em;
}
.c-cta__sp-tel {
	color: var(--color-brown);
}
.c-cta__sp-tel p {
	line-height: 1.2em;
}
.c-cta__sp-tel p:first-child span {
	color: var(--color-gold);
	font-weight: bold;
}
.c-cta__sp-tel p:last-child {
	margin-top: .4em;
	display: inline-block;
	font-weight: bold;
	padding-left: 1.5em;
	position: relative;
}
.c-cta__sp-tel p:last-child::before {
	font-family: 'fontello';
	content: '\e802';
	color: var(--color-gold);
	font-weight: normal;
	font-size: 130%;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.c-cta__sp-btn a {
	background: rgba(173,145,96,0.8);
	border: solid 1px rgba(255,255,255,0.4);
	color: #fff;
	border-radius: .5em;
	padding: .5em 0;
}
.c-cta__sp-btn p:first-child {
	display: inline-block;
	font-size: 80%;
	letter-spacing: .08em;
	line-height: 1.6em;
	padding: 0 1.0em;
	background: rgba(154,120,60,0.8);
	border-radius: 100vmax;
	margin-bottom: .5em;
}
.c-cta__sp-btn p:last-child {
	font-size: 95%;
	letter-spacing: normal;
	line-height: 1.2em;
}
.c-cta__sp-btn p:last-child .u-ft-en {
	font-size: 130%;
	letter-spacing: .04em;
	line-height: 1.0em;
}
.c-cta__sp-tel.--second p:first-child span {
	color: var(--color-navy);
}
.c-cta__sp-tel.--second p:last-child::before {
	color: var(--color-navy);
}
.c-cta__sp-btn.--mail a {
	background: #4c4c4c;
}
.c-cta__sp-btn.--mail p:first-child {
	background: #3e3e3e;
}
}



/* PC
------------------------------------------*/
@media only screen and (min-width: 960px)  {
.tb_only{display:none !important;}
.sp_only{display:none !important;}
.sp_tb{display:none !important;}
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.pc_only{display:none !important;}
.sp_only{display:none !important;}
.sp_pc{display:none !important;}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.pc_only{display:none !important;}
.tb_only{display:none !important;}
.tb_pc{display:none !important;}
}