@charset "utf-8";


/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&family=Yomogi&display=swap');


/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
@import url("css/slide.css");
@import url("css/inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {

	/*このテンプレートのフォントの設定*/
    --main-font: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    --heading-font: "Caveat", var(--main-font);

	/*このテンプレートの色の設定*/

	--primary-color: #827C75;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-middle: 4vw;
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/

    --cafe-primary-color: #fdf7e1;			/*このテンプレートのテーマカラー*/
    --cafe-primary-text-color: #928a6d;		/*このテンプレートのテーマカラーの上に文字を載せる場合*/
    --cafe-secondary-color: #cfb98e;		/*このテンプレートのアクセントカラー*/
    --cafe-secondary-text-color: #fff;		/*このテンプレートのアクセントカラーの上に文字を載せる場合*/
}


/*opa1のキーフレーム設定（汎用的）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}


/*全体の設定
---------------------------------------------------------------------------*/
body * {box-sizing: border-box;}

html,body {
	font-size: 13px;	/*基準となるフォントサイズ*/
	height: 100%;
}

	/*画面幅1200px以上の追加指定*/
	@media screen and (min-width:1200px) {

	html, body {
		font-size: 14px;
	}

	}/*追加指定ここまで*/

	/*画面幅1600px以上の追加指定*/
	@media screen and (min-width:1600px) {

	html, body {
		font-size: 1vw;
	}

	}/*追加指定ここまで*/


body {
	margin: 0;padding:0;
//	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-family: var(--main-font);	/*フォント種類。css冒頭で指定しているmain-fontを読み込みます*/
	-webkit-text-size-adjust: none;
	background: #fff;	/*背景色*/
	color: var(--primary-color);		/*文字色。冒頭で指定しているprimary-colorを読み込みます。*/
	line-height: 2;		/*行間*/
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
//	padding: var(--space-large);	
	padding: var(--space-middle) var(--space-large);	/* 上下、左右 */
}


/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;	/*hoverまでにかける時間。0.3秒。*/
}

/*マウスオン時*/
a:hover {
	text-decoration: none;	/*下線を消す*/
	opacity: 0.9;			/*色を90%だけ出す*/
}

a.info {
	// color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;      /* リンクの下線を消し、次の行の設定を有効にする。 */
	border-bottom: 1px dashed;
}
a.info:hover {
	color: #ffb521;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}
a.neat {
	// color: #333;	/*リンクテキストの色*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration: none;      /* リンクの下線を消し、次の行の設定を有効にする。 */
}
a.neat:hover {
	color: #ffb521;				/*マウスオン時の文字色*/
	text-decoration: none;		/*マウスオン時にリンクの下線を消す設定*/
}

/*container（サイト全体を囲むボックス）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;					/*flexボックスを使う指定*/
	align-items: center;			/*垂直揃えの指定。天地中央に配置されるように。*/
	justify-content: space-between;
	height: 60px;					/*ヘッダーの高さ*/
}

body:not(.home) header {
	margin-bottom: var(--space-large);
}

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 10vw;	/*ロゴの幅*/
	position: relative;z-index: 1;
	left: 4.5vw;	/*左からの配置場所*/
	top: 4vw;		/*上からの配置場所*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#logo {
		top: 0;			/*上からの配置場所*/
		width: 60px;	/*ロゴの幅*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*900px未満では非表示*/
header nav ul {display: none;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
		
	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 10vw;	/*ハンバーガーアイコンに重ならないように余白*/
		display: flex;		/*横並びにする*/
	}

	/*メニュー１個あたりの設定*/
	header nav li a {
		display: block;text-decoration: none;
		font-size: 0.9rem;		/*文字サイズ90%*/
		padding: 0.5rem 1rem;	/*メニュー内の余白。上下、左右へ。*/
	}
	
	/*ドロップダウンメニュー冒頭の矢印アイコン*/
	header nav i {
		padding-right: 0.5rem;	/*右に空ける余白*/
	}

	}/*追加設定ここまで*/


/*ヘッダー内メニュー、開閉メニュー、共通のドロップダウン設定
---------------------------------------------------------------------------*/
header nav ul ul,
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*ヘッダー内メニューのドロップダウン
---------------------------------------------------------------------------*/
/*ドロップダウンメニューブロック全体*/
header nav ul ul {
	position: absolute;z-index: 100;
}

/*メニュー１個あたりの設定*/
header nav ul ul a {
	background: rgba(255,255,255,0.8);	/*背景色。255,255,255は白のことで0.8は色が80%出た状態。*/
	padding: 0.3em 1em;				/*上下、左右へのメニュー内の余白*/
	margin-top: 4px;				/*上に空けるスペース。ドロップダウン同士の隙間。*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、varは色の指定で冒頭のparimary-colorを読み込みます。*/
}


/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

/*上で非表示にしたメニューを表示させる為の設定*/
.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

/*3本バーをデフォルトで非表示*/
#menubar_hdr.display-none {display: none;}

/*ドロップダウンをデフォルトで非表示*/
.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";	/*Font Awesomeを使う指示*/
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-right: 0.5em;	/*アイコンとテキストとの間に空けるスペース*/
}


/*開閉メニュー
---------------------------------------------------------------------------*/
/*animation1のキーフレーム設定*/
@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

/*メニューブロック設定*/
.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	max-width: 800px;
	height: 100%;
	padding: 90px 10vw 50px;		/*ブロック内の余白。上、左右、下への順番。*/
	background: var(--primary-color);	/*背景色*/
	color: var(--primary-inverse-color);					/*文字色*/
	animation: animation1 0.2s both;		/*animation1を実行する。0.2sは0.2秒の事。*/
}

/*子メニューの設定*/
.small-screen #menubar ul ul {
	margin: 2rem;	/*外側に空けるスペース。２文字分。*/
}

/*メニュー１個あたりの設定*/
.small-screen #menubar nav ul li {
	border: 1px solid #fff;	/*枠線の幅、線種、色。*/
	margin: 1rem 0;			/*メニューの外側に空けるスペース。上下、左右への順番。*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	color: inherit;
	padding: 1rem 2rem;	/*メニュー内の余白。上下、左右へ。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0;		/*上からの配置場所*/
	right: calc(var(--space-small) + 5px);		/*右からの配置場所*/
	width: 60px;		/*幅*/
	height: 60px;		/*高さ。基本的にheaderの高さに合わせておけばOKです。*/
	padding: 20px 0;	/*ここの20pxの数字を変更すると2本のバーの上下間のバランス調整ができます*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	mix-blend-mode: exclusion;
}

/*マウスオン時だけmix-blend-modeを無効に*/
#menubar_hdr.ham {
	mix-blend-mode: normal;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 1.5px;			/*線の太さ*/
	background-color: #fff;	/*本来は線の色なのですが、mix-blend-modeを使っているので背後の色に合わせて変動します。変動したくないなら#menubar_hdrのmix-blend-modeの行を削除して下さい。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;width: 100%;height: 100%;
	display: flex;flex-direction: column;justify-content: space-between;
}
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*画面右側の側面にある縦長ボタン（ご予約）
---------------------------------------------------------------------------*/
#btn-special {padding: 0;margin: 0;}
#btn-special a {
	display: block;text-decoration: none;
	position: fixed;z-index: 100;
	right: 0px;	/*右からの配置場所*/
	top: 20vw;	/*上からの配置場所*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	/*background: linear-gradient(#906f53, #6b5038);背景グラデーション*/
	background: linear-gradient(#ec9347, #d36b12);
	color: #f6ebd2;	/*文字色*/
	padding: 1rem 0.5rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px 0px 0px 3px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}

	/*画面幅720px以上の追加指定*/
	@media screen and (min-width:720px) {

	#btn-special a {
		padding: 2rem 1rem;	/*上下、左右へのボタン内の余白*/
	}

	} /*ここまで画面幅700px以上の追加指定*/


/*アイコンの下の余白*/
#btn-special i {padding-bottom: 1rem;}

/*画面右側の側面にある「↑」ボタン
---------------------------------------------------------------------------*/
#btn-special2 {padding: 0;margin: 0;}
#btn-special2 a {
	display: block;text-decoration: none;
	position: fixed;z-index: 101;
	bottom: 20px;		/*下から50pxの場所に配置*/
	right: 1%;			/*右から3%の場所に配置*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	background: rgba(0, 0, 0, 0.3);
	color: #ffffff;	/*文字色*/
	padding: 1rem 0.5rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 8px 8px 8px 8px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}

/*アイコンの下の余白*/
#btn-special2 i {padding-bottom: 1rem;}






/*main（メインコンテンツ）
---------------------------------------------------------------------------*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
	padding: 6vw 0 0;	/*上、左右、下への余白。画面幅100%＝100vwです。*/
}

/*h2見出し（共通）*/
main h2 {
	margin: 0;padding: 0;
	font-size: 2.4rem;		/*文字サイズ。240%。*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 2vw;		/*下にスペースを空ける。オリジナル 5 より変更*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（main-text）*/
main h2 span.main-text {
	margin-top: 0.5em;	
	line-height: 1.2em;
//	line-break: strict;		/* 効果なし->コメントアウト */
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
//	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 0.9rem;		/*文字サイズ80%*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	padding-top: 2rem;		/*上に空ける余白。ラインとの間の余白調整です。お好みで。*/
}

/*見出し上のラインを消すスタイル*/
main h2.no-line span.sub-text {
	border: none;
	padding-top: 0;
}

/*h3見出し（共通）*/
main h3 {
//	font-weight: 600;
	font-weight: normal;	/*太さを標準*/
//	font-size: 1.4rem;	/*文字サイズ140%*/
	font-size: 1.8rem;		/*文字サイズを1.8倍*/
	color: var(--cafe-primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
	border-bottom: 1px solid var(--cafe-primary-text-color);	/*下線の幅、線種、varの部分は色で、css冒頭で指定しているprimary-text-colorを読み込みます*/
	line-height: 1.8em;
}

/*type1の見出し*/
main h3.type1 {
	margin: 0; padding: 0; border: none;
//	font-family: var(--heading-font);	/*フォント種類。css冒頭で指定しているheading-fontを読み込みます*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

main h3.type1 span {
	display: block;
	font-size: 1rem;
	text-align: right;	/*テキストを右寄せ*/
	margin-bottom: 1.0em;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	main h3 {
		margin-bottom: 1.5em;
	}

	/*type1の見出し*/
	main h3.type1 {
		width: 20vw;	/*幅*/
		flex: 0 0 auto;
		line-height: 1;
		transform: rotate(-10deg);	/*少しだけ傾ける*/
		margin-right: 2rem;			/*右側へのスペース*/
		font-size: 2.2rem;			/*文字サイズ。４倍。*/
		letter-spacing: -0.15em;
	}
	main h3.type1 span {
		margin-top: 1rem;	/*上に２文字分のスペース*/
		letter-spacing: 0em;
		transform: rotate(-1deg);	/*さらに少しだけ傾ける*/
		margin-bottom: 0em;
	}

	}/*追加指定ここまで*/

/* h3 type1中に使用する改行のクラス */
.responsive-br {display: none;}

/*h4見出し（共通）*/
main h4 {
//	font-weight: 600;
	font-weight: normal;	/*太さを標準*/
//	font-size: 1.4rem;		/*文字サイズ140%*/
	font-size: 1.6rem;		/*文字サイズを1.6倍*/
	color: var(--cafe-primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
//	border-bottom: 1px solid var(--cafe-primary-text-color);	/*下線なし*/
	line-height: 1.8em;
}

/*cafe-list（メニュー写真や説明が入ったボックス一個あたり）
---------------------------------------------------------------------------*/
/*cafe-list内の全ての要素のマージンを一旦リセット*/
.cafe-list * {
	margin: 0;
}

/*ボックス１個あたり*/
.cafe-list {
	position: relative;
    display: flex;
	flex-direction: column;
	padding: 1rem;			/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
	margin-bottom: 3%;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ボックス１個あたり*/
	.cafe-list {
		margin-bottom: 0;
	}

	}/*追加指定ここまで*/

/*ブロック内のh4*/
.cafe-list h4 {
	color: #555;	/*文字色*/
	font-size: 1.2rem;	/*文字サイズを120%に*/
	line-height: 1.5rem;
	margin-top: 0.4em;
}

/*価格*/
.cafe-list h4 .price {
	background: var(--cafe-secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--cafe-secondary-text-color);	/*文字色。css冒頭で指定しているsecondary-text-colorを読み込みます*/
	border-radius: 100px;	/*角を丸くする指定。大きければ適当でOK。*/
	padding: 0.3rem 1rem;	/*価格内の余白。上下、左右へ。*/
	margin-left: 1rem;		/*左側に1文字分のスペースを空ける。メニュータイトルとの隙間の調整です。*/
	font-size: 0.8rem;		/*文字サイズを80%に*/
	font-weight: 800;
}

/*ブロック内のp要素*/
.cafe-list p {
	margin: 0.5em 0 0 0;
	padding: 0;
	font-size: 0.95rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}

/* お奨めアイコン */
.cafe-list .recommendation {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: #967bdc;	/*背景色：紫*/
	color: #fff;		/*文字色*/
//	font-size: 0.7rem;	/*文字サイズ。70%。*/
	font-size: 1.0rem;	/*文字サイズ。120%。*/
	letter-spacing: -0.05em;
	font-weight: 800;
//	width: 5em;			/*アイコンの幅。4文字分。*/
	width: 46px;			/*アイコンの幅。45px*/
//	line-height: 5em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	line-height: 46px;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}
/* 定番アイコン */
.standard {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: #f5a203;	/*背景色：オレンジ*/
	color: #fff;		/*文字色*/
//	font-size: 0.7rem;	/*文字サイズ。70%。*/
	font-size: 1.2rem;	/*文字サイズ。120%。*/
	font-weight: 800;
//	width: 5em;			/*アイコンの幅。4文字分。*/
	width: 46px;			/*アイコンの幅。45px*/
//	line-height: 5em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	line-height: 46px;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ボックス内のfigure画像*/
.cafe-list figure img {
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	/*ブロック全体*/
	.cafe-list-side-title {
		display: flex;	/*横並びに*/
		justify-content: center;	/*中央に寄せる*/
		align-items: flex-start;	/*上に寄せる*/
		gap: 3%;					/*ブロック同士のマージン的な要素。*/
	}

	}/*追加指定ここまで*/


	/*画面幅500px以上の追加指定*/
	@media screen and (min-width:500px) {

	/*ブロック内にある、全ての写真ブロックを囲むボックス*/
	.cafe-list-side-title .cafe-list-menu {
		display: grid;
		grid-template-columns: repeat(2, 1fr);	/*２列にする。３列がいいなら、(3, 1fr)とすればOKです。*/
		gap: 2rem;	/*写真ブロック同士に空けるマージン的な要素。*/
	}

	}/*追加指定ここまで*/


/*Google Map　レスポンシブにする為のものなので、基本的に編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 80%;	/*スマートフォンは、正方形に近い形で表示 1:0.8 */
	position: relative;
	overflow: hidden;
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	.iframe-box {
		padding-top: 50%;	/* PC・タブレットでは、横長表示 2:1 */
	}

	}/*追加指定ここまで*/


.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer a {color: inherit;text-decoration: none;}
footer small {font-size: 100%;}

footer {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	font-size: 0.85rem;	/*文字サイズ85%*/
	padding: 2vw 5vw 3vw 5vw;		/*余白 上右下左*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	footer {
		display: flex;
		justify-content: space-between;
	}

	}/*追加指定ここまで*/



/*ロゴが入ったブロック*/
footer .image {
	width: 200px;	/*ボックス幅*/
	text-align: center;	/*中身をセンタリング*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	footer .image {
		width: auto;	/*ボックス幅*/
	}
	footer .image img {
		width: 80px;
	}

	}/*追加指定ここまで*/

/*ロゴ*/
footer .logo {
	opacity: 0.5;	/*透明度。色を50%だけ出す設定。全部出したいならこの１行は削除。*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	footer .text {
		display: flex;	/*CompanyとFollow Usを横並びにする*/
		gap: 5rem;	/*CompanyとFollow Usの間の余白。５文字分。*/
	}

	}/*追加指定ここまで*/


/*h4見出し（CompanyとFollow Usのテキスト部分*/
footer h4 {
	font-weight: 800;	/*太さを太くする*/
	font-size: 1.2rem;	/*文字サイズを120%*/
}

/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color: #ccc;
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*フッター内にあるソーシャルメディアのアイコン
---------------------------------------------------------------------------*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	gap: 1rem;	/*アイコン同士のマージン的な要素。１文字分。*/
}
.icons i {
	font-size: 30px;	/*アイコンサイズ*/
}


/*list-c2（お問い合わせ、ご予約）
---------------------------------------------------------------------------*/
.list-c2 > a {
    text-decoration: none;
    display: block;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*２つのボックスを囲むボックス*/
	.list-c2 {
		display: flex;	/*横並びにする*/
	}

	}/*追加指定ここまで*/


/*ボックス１個あたり*/
.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color: #fff;		/*文字色*/
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);	/*テキストの影。右へ、下へ、ぼかす量、0,0,0は黒のことで0.6は色が出た状態。*/
	padding: 5rem 2rem;	/*上下、左右へのボックス内の余白*/
	margin: 1rem 0;		/*上下、左右へのマージン*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	.list-c2 > * {
		flex: 1;
	}
	.list-c2 .list {
		margin: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.list-c2 > a .list {
		height: 100%;
	}

	}/*追加指定ここまで*/


/*左側ボックスの背景*/
.list-c2 .list.image1 {
	background: url("./images/slideshow/olive_oil.jpg") no-repeat center center / cover;
}
/*右側ボックスの背景*/
.list-c2 .list.image2 {
	background: url("./images/slideshow/event.jpg") no-repeat center center / cover;
}

/*h4見出し*/
.list-c2 h4 {
	font-weight: 200;	/*細字にする*/
	line-height: 1.2;	/*行間を狭く*/
}

/*h4見出し内のメインテキスト（main-text）*/
.list-c2 h4 .main-text {
	display: block;
	font-size: 3rem;		/*文字サイズ。3倍。*/
	padding-top: 1.5rem;	/*上に空ける余白*/
	padding-bottom: 3rem;	/*下に空ける余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.list-c2 h4 .main-text {
		font-size: 4rem;	/*文字サイズ。4倍。*/
	}

	}/*追加指定ここまで*/


/*h4見出し内のサブテキスト（sub-text）*/
.list-c2 h4 .sub-text {
	position: relative;
	padding: 0 5rem;	/*上下、左右への余白設定ですが、両サイドのラインの配置にも影響します。お好みで。*/
}
/*h4見出し内のサブテキストの左右のライン*/
.sub-text::before {left: 0;}
.sub-text::after {right: 0;}
.list-c2 h4 .sub-text::before,.list-c2 h4 .sub-text::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 2rem;	/*線の長さ*/
	border-top: 1px solid #fff;	/*ラインの幅、線種、色*/
}

/*見出しの下の説明テキスト*/
.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.85rem;	/*文字サイズ85%*/
}

/*マウスオン用のアニメーション*/
.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.3s 0.1s;	/*アニメーションの速度（0.3秒）と待機時間（0.1秒）。*/
}
.list-c2 .list:hover::before {
	transform: translateY(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*ボックス内のボタン（.btn2）*/
.list-c2 .list .btn2 a {
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒のことで0.7は色が70%出た状態。*/
}

/*ボックス内のボタン（.btn3）*/
.list-c2 .list .btn1 a {
	text-shadow: none;	/*テキストの影を消す*/
}


/*お知らせブロック（オリジナル スタイル）
---------------------------------------------------------------------------*/
/*ブロック全体*/
.new {
    display: grid;	/*gridを使う指定*/
    grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
	max-width: 700px;	/*最大幅*/
	margin: 0 auto;
}

/*日付、記事（共通）*/
.new dt,.new dd {
	border-bottom: 1px solid rgba(0,0,0,0.1);	/*下線の幅、線種、0,0,0は黒のことで0.1は色が10%出た状態。*/
	padding-top: 2rem;				/*上の余白*/
	padding-bottom: 2rem;			/*下の余白*/
}

/*日付*/
.new dt {
	padding-right: 4rem;			/*右の余白*/
}

/*お知らせブロック（追加スタイル：ワイド版）
---------------------------------------------------------------------------*/
/*記事の下に空ける余白*/
.new_wide dd {
	padding-bottom: 1rem;
	padding-top: 0.3rem;
	font-size: 18px;
	line-height: 1.5;		/*行間*/
}

.new_wide dt {
//	padding-bottom: 1rem;
	padding-bottom: 0.2rem;		/* スマホで日付行とイベント名行の間を縮めるするために縮小。パソコンは見栄えの大きな影響なし。サイズで切替できず */
	font-size: 18px;
	line-height: 1.5;		/*行間*/
	text-align: right;
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {    // 約20行下の「ブロック全体」のサイズ切替サイズと切替サイズを合わせること
	
	.new_wide dt {
		margin-top: 1.5rem;
		text-align: left;
	}

	.new_wide dd {
		margin-bottom: 2rem;
	}

	}/*追加設定ここまで*/

/*ブロック内のspan。日付の横のアイコン的な部分の共通設定*/
.new_wide dt span {
	display: inline-block;
	text-align: center;
	line-height: 1.8;		/*行間（アイコンの高さ）*/
	border-radius: 3px;		/*角を丸くする指定*/
	padding: 0.4 0.5rem;		/*上下、左右へのブロック内の余白*/
	width: 10rem;			/*幅。8文字分。*/
	transform: scale(0.8);	/*80%のサイズに縮小*/
	background: #fff;		/*背景色*/
	color:#777;				/*文字色*/
	font-weight:bold;		/*太字*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}

/*icon-bg1*/
.new_wide .icon-bg1 {
	background: var(--cafe-primary-color);	/*背景色。css冒頭で指定しているprimary-colorを読み込みます*/
	color: var(--cafe-primary-text-color);	/*文字色。css冒頭で指定しているprimary-text-colorを読み込みます*/
}

/*icon-bg2*/
.new_wide .icon-bg2 {
	background: var(--cafe-secondary-color);	/*背景色。css冒頭で指定しているsecondary-colorを読み込みます*/
	color: var(--cafe-secondary-text-color);	/*文字色。css冒頭で指定しているsecondary-text-colorを読み込みます*/
	border-color: transparent;			/*枠線の色を透明に*/
}

	/*画面幅720px以上の追加指定*/
	@media screen and (min-width:720px) {

	/*ブロック全体*/
	.new_wide {
		display: grid;	/*gridを使う指定*/
		grid-template-columns: auto 1fr;	/*横並びの指定。日付とアイコン部分の幅は自動で、内容が入るブロックは残り幅一杯とる。*/
		padding-left: 1rem;		/*左に空ける余白*/
		padding-right: 1rem;	/*右に空ける余白*/
	}

	}/*追加指定ここまで*/

/*アイコン*/
.list .newicon {
	position: absolute;
	left: -5px;	/*左からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	top: -10px;	/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動する。*/
	background: #f5a203;	/*背景色*/
	color: #fff;		/*文字色*/
	font-size: 0.7rem;	/*文字サイズ。70%。*/
	width: 5em;			/*アイコンの幅。4文字分。*/
	line-height: 5em;	/*行間ですが、高さとして使っています。上のwidthと揃えれば正円になります。*/
	border-radius: 50%;	/*円形にする指定。*/
	text-align: center;	/*テキストをセンタリング*/
}

/*チェックマークの箇条書き
---------------------------------------------------------------------------*/
.checkmark {
    list-style-type: none;
    padding: 1em;
}

.checkmark li {
    padding: .3em;
	font-size: 18px;
	text-indent: -0.8em;
	line-height: 1.5em;
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {
	
	.checkmark li {
		font-size: 16px;
	}

	}

.checkmark li::before {
    display: inline-block;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid #e00db8;	/* ピンク色 */
    border-left: 2px solid #e00db8;	/* ピンク色 */
    transform: rotate(-45deg) translateY(-1.5px);
    content: '';
}


/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*faqブロック全体*/
.faq {
	background: #5E5C5A;	/*背景色*/
	color: #fff;			/*文字色*/
	position: relative;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq {
		display: flex;
		flex-direction: row-reverse;	/*左右の並びをデフォルトと逆に*/
		justify-content: space-between;
	}

	}/*追加指定ここまで*/


/*faq内のh2見出し*/
.faq h2 {
	margin: 0;padding: 0;
	font-size: 2rem;	/*文字サイズを2倍*/
	font-weight: 200;	/*文字を細く*/
	letter-spacing: 0em;	/*文字間隔を広けず表示：0.4->0に変更*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*faq内のh2見出し*/
	.faq h2 {
		writing-mode: vertical-lr;	/*日本語は縦書き。英語は90度回転。*/
		margin-right: 18vw;	/*右側に画面18%程度のスペースを空ける。そこに英語の飾り文字を入れる為。*/
		letter-spacing: 0.4em;	/*文字間隔を広げたまま表示*/
	}

	}/*追加指定ここまで*/


/*右側の英語の飾り文字*/
.faq h2 .kazari {
	line-height: 1;
	font-size: 0.9rem;	/*文字サイズ90%*/
	letter-spacing: 0.2em;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*右側の英語の飾り文字*/
	.faq h2 .kazari {
		font-size: 10vw;	/*文字サイズ*/
		letter-spacing: 0.0em;
		position: absolute;
		right: 10px;
		top: var(--space-large);
    	color: rgba(255,255,255,0.05);	/*文字色。255,255,255は白のことで、0.05は色が5%出た状態。*/
	}

	}/*追加指定ここまで*/


/*質問*/
.faq dt {
	font-size: 1.3rem;	/*文字サイズ130%*/
	border-top: 1px solid rgba(255,255,255,0.2);	/*上の線の幅、線種、色。255,255,255は白のことで、0.2は色が20%出た状態。*/
	padding: 2rem 0 1rem 0;	/*上、右、下、左への余白*/
	line-height: 1.3;		/*行間を狭くする*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq dt {
		padding: 2rem 2rem 1rem 2rem;	/*上、右、下、左への余白*/
	}

	}/*追加指定ここまで*/


/*回答*/
.faq dd {
	padding: 0 0 2rem 0;	/*上、右、下、左への余白*/
	font-size: 0.9rem;	/*文字サイズ90%*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.faq dd {
		padding: 0 2rem 2rem 2rem;	/*上、右、下、左への余白*/
	}

	}/*追加指定ここまで*/


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*左側のテキストブロック*/
	.faq .text {
		width: 50%;	/*幅*/
	}
	
	}/*追加指定ここまで*/



/*list-yoko-scroll（お客様の声）
---------------------------------------------------------------------------*/
.list-yoko-scroll * {margin: 0; padding: 0;}

/*横スクロールブロック全体*/
.list-yoko-scroll {
	display: flex;
	overflow-x: auto;
	scrollbar-width: none;	/* Firefox用 */
	scroll-snap-type: x mandatory; /* スナップスクロールを有効にする */
	margin-right: calc(-1 * var(--space-large));	/*右マージンをなくす為にネガティブマージンで相殺*/
	padding-bottom: 3vw;	/*下に空ける余白*/
}
.list-yoko-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge用 */
}

/*ブロック内の１個あたり*/
.list-yoko-scroll .list {
	width: 60%;		/*ブロック１個の幅。お好みで変更して下さい。*/
	flex-shrink: 0;
	scroll-snap-align: start;
	padding: 1rem;		/*ブロック内の余白。1文字分。*/
	position: relative;
	display: flex;
	flex-direction: column;
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*ブロック内の１個あたり*/
	.list-yoko-scroll .list {
		width: 28%;		/*ブロック１個の幅。お好みで変更して下さい。*/
		padding: 2rem;		/*ブロック内の余白。２文字分。*/
	}

	}/*追加指定ここまで*/


/*テキストブロックが高さを目一杯とる指定*/
.list-yoko-scroll .list .text {
	flex: 1;
}

/*ブロックのカギカッコ（共通）*/
.list-yoko-scroll .list::before,.list-yoko-scroll .list::after {
	content: "";
	position: absolute;
	width: 30px;	/*カギカッコの幅。お好みで。*/
	height: 10px;	/*カギカッコの高さ。お好みで。*/
	border: 0.5px solid var(--primary-color);	/*線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
}

/*左上のカギカッコへの追加指示*/
.list-yoko-scroll .list::before {
	left: 0px;	/*左からの配置場所*/
	top: 0px;	/*上からの配置場所*/
	border-right: none;		/*右の線を消す*/
	border-bottom: none;	/*下の線を消す*/
}

/*右上のカギカッコへの追加指示*/
.list-yoko-scroll .list::after {
	right: 0px;		/*右からの配置場所*/
	bottom: 0px;	/*下からの配置場所*/
	border-top: none;	/*上の線を消す*/
	border-left: none;	/*左の線を消す*/
}

/*faq内のh4見出し（「とても満足です。」のところ）*/
.list-yoko-scroll h4 {
	margin-bottom: 1rem;	/*下に１文字分のスペースを空ける*/
}

/*faq内のp段落（「とても満足です。」の下のテキスト）*/
.list-yoko-scroll p {
	font-size: 0.9rem;	/*文字サイズを90%に*/
}

/*お客様の名前*/
.list-yoko-scroll .name {
	text-align: right;	/*右に寄せる*/
}

/*お客様の写真*/ /* トップページ：お客様の声用 */
.list-yoko-scroll .name img {
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	object-fit: cover;
	object-position: center;
	border-radius: 50%;	/*円形にする。この１行を削除すれば正方形になります。*/
	margin-left: 20px;	/*写真の左に空けるスペース*/
}

.name-indi img { /* お客様の声のページ用（上記を参照作成） */
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	object-fit: cover;
	object-position: center;
	border-radius: 50%;	/*円形にする。この１行を削除すれば正方形になります。*/
	margin-left: 20px;	/*写真の左に空けるスペース*/
}


/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #F5F4EC;	/*背景色*/
//	padding: var(--space-large);	/*ボックス内の余白。冒頭にあるspace-largeを読み込みます。*/
//	padding: var(--space-large) var(--space-large) var(--space-small) var(--space-large);	/*上右下左*/
	padding: var(--space-large) 0vw var(--space-small) var(--space-large);	/*上右下左*/
	margin-top: 10vw;	/*上に空けるスペース。スライドショーとこのボックスの間のスペースです。お好みで。*/
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -13.5vw;		/*文字とボックスの配置バランスです。お好みで調整して下さい。*/
	color: #F5F4EC;		/*文字色*/
	font-size: 7vw;		/*下の.box1のmargin-topと合わせる*/
	line-height: 1;
}

/*ボックスの左上イラスト（1つ目）*/
.box1 .illust1 {
	position: absolute;
	right: 6vw;		/*右からの配置場所*/
	top: 5vw;		/*上からの配置場所*/
	width: 23vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
	transform: rotate(-20deg);	/*左に20度回転*/
}

/*ボックスの左上イラスト（2つ目）*/
.box1 .illust2 {
	position: absolute;
	right: 0vw;		/*右からの配置場所*/
	top: 2vw;		/*上からの配置場所*/
	width: 13vw;	/*イラストの幅。*/
	opacity: 0.2;	/*透明度。色が20%出た状態。*/
	transform: rotate(20deg);	/*右に20度回転*/
}

/*テキストボックス*/
.box1 .text {
//	margin-bottom: 5rem;	/*下に5文字分の余白*/
	margin-bottom: 15rem;	/*下に5文字分の余白*/
	padding-right: 20px;	/*左に20pxの余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;		/*左右の間のスペース*/
//		border-radius: 20vw 0 20vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
		border-radius: 8vw 0 8vw 0;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	}
	
	.box1 > * {flex: 1;}

	/*ボックスの左上イラスト（1つ目）*/
	.box1 .illust1 {
		rignt: auto;
		left: 3vw;		/*左からの配置場所*/
		top: -13vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 12vw;	/*イラストの幅。*/
	}

	/*ボックスの左上イラスト（2つ目）*/
	.box1 .illust2 {
		rignt: auto;
		left: 16vw;		/*左からの配置場所*/
		top: -8vw;		/*上からの配置場所。マイナスがついているので本来の向きとは逆に移動します。*/
		width: 8vw;	/*イラストの幅。*/
	}

	/*テキストボックスの上の小さなイラスト*/
	.box1 h2 img {
		width: 5vw;	/*幅*/
	}

	.box1 .text {
		margin-bottom: 0;	/*下マージンのリセット*/
	}

	}/*追加指定ここまで*/


/*画像を囲むブロック*/
.box1 .image {
	position: relative;
}

/*画像の角を少し丸くする指定*/
.box1 .image img {
	border-radius: 10px;
}

/*画像ブロック内の１枚目の写真への追加指定*/
.box1 .image img:nth-of-type(1) {
	width: 80%;	/*画像の幅*/
}

/*画像ブロック内の２枚目の写真への追加指定*/
.box1 .image img:nth-of-type(2) {
	width: 40%;	/*画像の幅*/
}
.box1 .image img:nth-of-type(2) {
	position: absolute;
	right: 0;	/*画像ブロックに対して右側からの配置場所*/
	top: 28vw;	/*画像ブロックに対して上からの配置場所、小さい画面でボタンが隠れないように15->28に変更*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	.box1 .image img:nth-of-type(2) {
		top: 15vw;	/*画像ブロックに対して上からの配置場所*/
	}

	}/*追加指定ここまで*/


/*list1（コースのご案内コーナー）
---------------------------------------------------------------------------*/
/*冒頭の大きなロゴの飾り*/
.logo-kazari {
	background: url("./images/logo/logo-grayscale_darkhead.svg") no-repeat left top / 40%;	/*ロゴ画像の読み込み。左上に配置し、幅は70%。*/
}

/*１枚目の写真*/
.list1.image1 {
	background: url("./images/course/toppage_chiro.jpg") no-repeat center center / cover;
}

/*２枚目の写真*/
.list1.image2 {
	background: url("./images/course/toppage_beauty_chiro_2.jpg") no-repeat center center / cover;
}

/*３枚目の写真*/
.list1.image3 {
	background: url("./images/course/toppage_head_spa2.jpg") no-repeat center center / cover;
}

/*４枚目の写真*/
.list1.image4 {
	background: url("./images/slideshow/reservation_info.jpg") no-repeat center center / cover;
}

/*５枚目の写真*/
.list1.image5 {
	background: url("./images/slideshow/contact_us_02.jpg") no-repeat center center / cover;
}

/*６枚目の写真*/
.list1.image6 {
	background: url("./images/slideshow/health_lectures3.jpg") no-repeat center center / cover;
}

/*７枚目の写真*/
.list1.image7 {
	background: url("./images/slideshow/gymnastics_classes_a2.jpg") no-repeat center center / cover;
}

/*８枚目の写真*/
.list1.image8 {
	background: url("./images/slideshow/qualification_support3.jpg") no-repeat center center / cover;
}

/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);	/*ボックス内の余白。冒頭のspace-largeを読み込みます。*/
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;	/*下に空けるスペース。ボックス同士の隙間です。*/
	color: #fff;	/*文字色*/
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);		/*写真に重ねておく半透明の黒い色。0,0,0は黒のことで0.6は色が60%出た状態。*/
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}

.list1:hover {
	color: #936402;	/* 文字色（定義：濃い橙、見栄え：茶） */
}

.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;		/*幅*/
	height: 100%;
//	color: #fff;	/* 文字色（白）：list1領域にカーソルが乗ったときに色を変えるため、指定個所をlist1に変更 */
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);	/*テキストの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.3は色が30%出た状態。*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {

	/*テキストブロック*/
	.list1 .text {
		width: 40%;		/*幅*/
	}

	}/*追加指定ここまで*/

/*テキストの配置場所を入れ替えたい場合のスタイル。*/
.list1 .text.reverse {
	margin-left: auto;
}

/*list1内のh3見出し*/
.list1 h3 {
	margin: 0;padding: 0;
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	position: relative;
	font-size: 2rem;		/*文字サイズを200%*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	line-height: 1.2;		/*行間を狭くする*/
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
	font-size: 5rem;	/*文字サイズを7倍*/
	line-height: 0.8em;
	letter-spacing: -0.1em;
}
.list1 h3 .large-packed {
	font-size: 5rem;	/*文字サイズを7倍*/
	line-height: 0.8em;
	letter-spacing: -0.3em;
}

/*見出しの右上にある英語の小さな文字*/
/*
.list1 h3 span:not(.large) {
	font-size: 1rem;	/*文字サイズを標準に戻す*/
	opacity: 0.5;		/*透明度50%*/
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
}
*/

.list1 h3 .normal {
	font-size: 1rem;	/*文字サイズを標準に戻す*/
	opacity: 0.5;		/*透明度50%*/
	position: absolute;
	right: 0px;	/*右からの配置場所*/
	top: 0px;	/*上からの配置場所*/
}


/*list-grid-top（Ｎカラムボックス）※トップページの店舗紹介
---------------------------------------------------------------------------*/
.list-grid-top .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid-top .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid-top .list p {
	font-size: 1.0rem;	/*文字サイズを100%に（オリジナル100%）*/
	line-height: 1.5;	/*行間を狭くする*/
	margin-bottom: 0.4em;
}

/*ボックス内のh4要素：オリジナルは指定なし*/
.list-grid-top .list h4 {
	margin-top: 10px;
	font-size: 1.5rem;	/*文字サイズを150%に*/
	line-height: 0.6;	/*行間を狭くする*/
	margin-top: 1.0em;
	margin-bottom: 0.8em;
}

/*ボックス１個あたり*/
.list-grid-top .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid-top {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid-top .list」のpadding分をネガティブマーインで指定*/
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
}
.list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid-top .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅720px以上の追加指定：オリジナル800*/
	@media screen and (min-width:720px) {

	/*listブロック全体を囲むブロック*/
	.list-grid-top {
		margin-top: 0rem;
		display: grid;
		grid-template-columns: repeat(4, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid-top .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/


/*list-grid-indi（Ｎカラムボックス）※個別ページの写真を用いた紹介（施術メニューを除く）
---------------------------------------------------------------------------*/
.list-grid-indi .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid-indi .list {
    display: grid;
	margin-bottom: 2rem;	/*ボックスの下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid-indi .list p {
	font-size: 1.0rem;	/*文字サイズを100%に（オリジナル100%）*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス内のh4要素：オリジナルは指定なし*/
.list-grid-indi .list h4 {
	margin-top: 10px;
	font-size: 1.5rem;	/*文字サイズを150%に*/
	line-height: 1.5;	/*行間を狭くする*/
}

/*ボックス１個あたり*/
.list-grid-indi .list {
	padding: 1rem;			/*ボックス内の余白。１文字分。*/
	background: #fff;		/*背景色*/
	color: #111;			/*文字色*/
    grid-template-rows: auto 1fr auto;	/*１つ目（この場合はfigure要素のサイズ）と「詳しくみる」ボタンの高さは自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	box-shadow: 5px 5px 20px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.1は色が10%出た状態。*/
}

/*ボックス内のfigure画像*/
.list-grid-indi {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid-indi .list」のpadding分をネガティブマーインで指定*/
	margin-top: 2.5rem;
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
	gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
}
.list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid-indi .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;	/*画像の下に空けるスペース*/
}

	/*画面幅720px以上の追加指定：オリジナル800*/
	@media screen and (min-width:720px) {

	/*listブロック全体を囲むブロック*/
	.list-grid-indi {
		margin-top: 0rem;
		display: grid;
		grid-template-columns: repeat(4, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;	/*ブロックの間に空けるマージン的な指定*/
	}

	/*ボックス１個あたり*/
	.list-grid-indi .list {
		margin-bottom: 0;	/*下に空けるスペースをなくす*/
	}

	}/*追加指定ここまで*/





/*縦書き用の設定
---------------------------------------------------------------------------*/
/*ボックス全体*/
.title-bg {
	display: flex;				/*flexボックスを使う指定*/
	justify-content: center;	/*並びかたの種類の指定*/
}

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
	padding-bottom: 3vw;
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	writing-mode: vertical-rl;
	text-orientation: upright;
	font-size: 2rem;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-size: 0.9rem;	/*文字サイズ90%*/
	margin-bottom: 3vw;	/*下に空けるスペース*/
	letter-spacing: 0.1rem;	/*文字間隔を少しだけ広く*/
	opacity: 0.5;	/*透明度50%*/
}


/*ボタン
---------------------------------------------------------------------------*/
/*btn1、btn2共通*/
.btn1 a, .btn2 a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;	/*上下、左右へのボタン内の余白*/
	margin-top: 2rem;		/*ボタンの上に2文字分のスペースを空ける*/
	text-align: center;		/*テキストをセンタリング*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);	/*ボタンの影。右へ、下へ、ぼかし幅、0,0,0は黒のことで0.1は色が10%出た状態*/
}
/*マウスオン時（btn1、btn2共通）*/
.btn1 a:hover, .btn2 a:hover {
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn1への追加設定*/
.btn1 a {
	color: var(--primary-color);	/*文字色。冒頭のprimary-colorを読み込みます。*/
	background: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
}

/*btn2への追加設定*/
.btn2 a {
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
/*list1内のbtn2の設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn2 a {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒のことで0.8は色が80%出た状態。*/
}

/*btn3*/
.btn3 {
	text-align: right;	/*テキストを右寄せ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
}
.btn3 a {
	display: inline-block;text-decoration: none;
	color: inherit;
	position: relative;
	padding-right: 5rem;	/*矢印のアイコンと重ならないように余白をとる*/
}

/*btn3の矢印のアイコン設定*/
.btn3 a::after {
	content: "";
	background: url("./images/icon/arrow1.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	display: block;
	position: absolute;
	right: 0px;
	bottom: -1rem;		/*下からの配置場所*/
	width: 50px;		/*アイコンの幅。ここを変更する場合は、上と下にあるbackgroundの100pxの数値も調整します。*/
	height: 50px;		/*アイコンの高さ*/
	border-radius: 50%;	/*円形にする指定。この１行を削除すれば正方形になります。*/
	text-align: center;
	transition: 0.3s;		/*hover時に切り替えをなめらかにする*/
	border: 1px solid var(--primary-color);	/*枠線の幅、線種、色*/
}

/*btn3の矢印のマウスオン時*/
.btn3 a:hover::after {
	background-color: var(--primary-color);	/*背景色を冒頭のprimary-colorにする*/
	background-position: left center;		/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}

/*背景色が暗い所で使う場合*/
.btn3.white {
	color: #fff;	/*文字色*/
}
.btn3.white a::after {
	background: url("./images/arrow1_white.svg") no-repeat right center / 100px;	/*アイコン画像の指定。画像の右側を読み込みます。最後の100pxの数字は、widthの２倍で指定すればOK。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}
.btn3.white a:hover::after {
	background-color: #fff;				/*背景色を白に*/
	background-position: left center;	/*矢印画像の入れ替え。画像の左側を読み込みます。*/
}


/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.slide-thumbnail-box {
	overflow-x: hidden;
	padding-left: 0;
	padding-right: 0;
}

/*各スライドショーブロックを囲むブロック*/
.slide-thumbnail1 {
	margin-bottom: 6vw;	/*下に空けるスペース。スライドショーを２個以上置く場合に上下の画像が重ならないようにする為。*/
}

/*画像たちを囲むブロック*/
.slide-thumbnail1 .img {
	display: flex;
}

/*画像*/
.slide-thumbnail1 .img img {
	padding: 0 1rem;	/*上下、左右への画像の余白*/
}

/*偶数番目の画像の垂直位置を少しずらす。垂直位置を並べたいならこのブロックを削除。*/
.slide-thumbnail1 .img div:nth-of-type(even) {
	transform: translateY(3vw);
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}


/*テーブル（ta1）店舗案内、予約リクエストフォームで使用
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;		/*太字に*/
	padding: 0.5rem 1rem;	/*ボックス内の余白*/
	background: var(--primary-color);		/*背景色*/
	color: var(--primary-inverse-color);	/*文字色*/
	margin-bottom: 1rem;	/*下に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	border-top: 1px solid var(--primary-color);	/*テーブルの一番上の線。幅、線種、色*/
	width: 100%;				/*幅*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--primary-color);	/*テーブルの下線。幅、線種、色*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 1rem;		/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
	background: #eee;	/*背景色*/
	font-weight: 800;
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

		/*th（左側）のみの設定*/
		.ta1 th {
			width: 20%;		/*幅*/
		}

	}/*追加指定ここまで*/


/* フォーム用
---------------------------------------------------------------------------*/
.select-s {
	width: 250px;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.select-s {
			width: 98%;		/*幅*/
		}

	}/*追加指定ここまで*/

.select-l {
	width: 50%;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.select-l {
			width: 98%;		/*幅*/
		}

	}/*追加指定ここまで*/

.option-multirow {
	white-space: normal; /* テキストを折り返す */
}

.text-sss {
	width: 100px;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.text-sss {
			width: 38%;		/*幅*/
		}

	}/*追加指定ここまで*/

.text-ss {
	width: 150px;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.text-ss {
			width: 48%;		/*幅*/
		}

	}/*追加指定ここまで*/

.text-s {
	width: 250px;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.text-s {
			width: 98%;		/*幅*/
		}

	}/*追加指定ここまで*/

.text-l {
	width: 50%;			/*幅*/
}

	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {

		.text-l {
			width: 98%;		/*幅*/
		}

	}/*追加指定ここまで*/

/* 次に進むボタン */
a.btn_next {
//	display: block;
	display: inline;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 160px;
//	margin: auto;
	margin: 0px 10px 0px 10px;
	padding: 0.5rem 2rem 0.7rem 2rem;
	font-weight: bold;
//	border: 2px solid #27acd9;
	border: 1px solid #27acd9;
	color: #27acd9;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_next:hover {
	color: #fff;
	background: #27acd9;
}

/* 前のページに戻るボタン */
a.btn_back {
//	display: block;
	display: inline;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 160px;
//	margin: auto;
	margin: 0px 10px 0px 10px;
	padding: 0.5rem 2rem 0.7rem 2rem;
	font-weight: bold;
//	border: 2px solid #808080;
	border: 1px solid #808080;
	color: #808080;
	border-radius: 100vh;
	transition: 0.5s;
}
a.btn_back:hover {
	color: #fff;
	background: #808080;
}

/*テーブル（dotted）※注意事項記載用 施術コース一覧で使用
---------------------------------------------------------------------------*/
/*dottedテーブルブロック設定*/
.dotted {
	table-layout: fixed;
	border: 1px dotted var(--primary-color);	/*テーブルの一番上の線。幅、線種、色*/
	width: 90%;				/*幅*/
	margin-left: 5%;			/*テーブルの左に空けるスペース。5文字分。*/
	margin-bottom: 5rem;		/*テーブルの下に空けるスペース。5文字分。*/
}

	/*画面幅720px以上の追加指定*/
	@media screen and (min-width:720px) {

	.dotted {
		width: 75%;				/*幅*/
		margin-left: 25%;			/*テーブルの左に空けるスペース。5文字分。*/
	}

	}/*追加指定ここまで*/

/*th（左側）、td（右側）の共通設定*/
.dotted th, .dotted td {
	padding: 0.8rem 1.2rem 0.8rem 1.2rem;			/*ボックス内の余白*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
}

	/*画面幅720px以上の追加指定*/
	@media screen and (min-width:900px) {


	}/*追加指定ここまで*/




/*調整用スタイル
---------------------------------------------------------------------------*/
/*並べ替え*/
.order1 {
	order: 1;	/*orderは数字の小さな順番に並びます。デフォルトは0なので、それより後ろに表示させたいブロックに使います。（※flex内で使用）*/
}

.padding0 {
	padding: 0 !important;
}
.padding-bottom0 {
	padding-bottom: 0 !important;
}
.padding-lr0 {
	padding-left: 0 !important;
	padding-right: 0 !important;
}
/*左右の余白*/
.space-small {
	padding-left: var(--space-small);
	padding-right: var(--space-small);
}

/*ツールチップ
---------------------------------------------------------------------------*/
/* カーソルを重ねる要素 */
.tooltip {
  position: relative; /* ツールチップの位置の基準に */
  cursor: pointer; /* カーソルを当てたときにポインターに */
}

/* ツールチップのテキスト */
.tooltip-text {
  opacity: 0; /* はじめは隠しておく */
  visibility: hidden; /* はじめは隠しておく */
  position: absolute; /* 絶対配置 */
  left: 50%; /* 親に対して中央配置 */
  transform: translateX(-50%); /* 親に対して中央配置 */
  bottom: -30px; /* 親要素下からの位置 */
  display: inline-block;
  padding: 5px; /* 余白 */
  white-space: nowrap; /* テキストを折り返さない */
  font-size: 0.8rem; /* フォントサイズ */
  line-height: 1.3; /* 行間 */
  background: #333; /* 背景色 */
  color: #fff; /* 文字色 */
  border-radius: 3px; /* 角丸 */
  transition: 0.3s ease-in; /* アニメーション */
}

/* ホバー時にツールチップの非表示を解除 */
.tooltip:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

/*地図（店舗案内のテーブルの中で使用）
---------------------------------------------------------------------------*/
img.location_map {
	max-width: 400px;
	width: 100%;
}

/*ページ内リンクの位置調整
---------------------------------------------------------------------------*/
a.jump_point {height: 1px;
display: block;
padding-top: 115px;
margin-top: -115px;
}

/* 左寄せイメージ、右寄せイメージ
---------------------------------------------------------------------------*/
/* シャドーを付ける領域を確保するため、左表示は左側にマージン5pxを設定 */

img.fr40,img.fl40,img.fr45,img.fl45,img.fr50,img.fl50,img.fr60,img.fl60,img.fr70,img.fl70,img.fr80,img.fl80,img.fr88,img.fl88 {float: none;margin: 0;width: 100%;}
img.fr10 {float: right;margin-left: 10px;margin-bottom: 10px;width: 25%;}
img.fl10 {float: left;margin-right: 10px;margin-bottom: 10px;width: 25%;}
img.fr15 {float: right;margin-left: 10px;margin-bottom: 15px;width: 30%;}
img.fl15 {float: left;margin-right: 10px;margin-bottom: 15px;width: 30%;}
img.fr20 {float: right;margin-left: 10px;margin-bottom: 20px;width: 35%;}
img.fl20 {float: left;margin-right: 10px;margin-bottom: 20px;width: 35%;}
img.fr25 {float: right;margin-left: 10px;margin-bottom: 20px;width: 35%;}
img.fl25 {float: left;margin-right: 10px;margin-bottom: 20px;width: 35%;}
img.fr30 {float: right;margin-left: 10px;margin-bottom: 20px;width: 40%;}
img.fl30 {float: left;margin-right: 10px;margin-bottom: 20px;width: 40%;}
img.fr35 {float: right;margin-left: 10px;margin-bottom: 20px;width: 40%;}
img.fl35 {float: left;margin-right: 10px;margin-bottom: 20px;width: 40%;}
img.w88per {float: none;margin: 0;width: 100%;}  /* 体のことで使用 */

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

		img.fr10 {float: right;margin-left: 20px;margin-bottom: 10px;width: 10%;}
		img.fl10 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 10%;}
		img.fr15 {float: right;margin-left: 20px;margin-bottom: 10px;width: 15%;}
		img.fl15 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 15%;}
		img.fr20 {float: right;margin-left: 20px;margin-bottom: 10px;width: 20%;}
		img.fl20 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 20%;}
		img.fr25 {float: right;margin-left: 20px;margin-bottom: 10px;width: 25%;}
		img.fl25 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 25%;}
		img.fr30 {float: right;margin-left: 20px;margin-bottom: 10px;width: 30%;}
		img.fl30 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 30%;}
		img.fr35 {float: right;margin-left: 20px;margin-bottom: 10px;width: 35%;}
		img.fl35 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 35%;}
		img.fr40 {float: right;margin-left: 20px;margin-bottom: 10px;width: 40%;}
		img.fl40 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 40%;}
		img.fr45 {float: right;margin-left: 20px;margin-bottom: 10px;width: 45%;}
		img.fl45 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 45%;}
		img.fr50 {float: right;margin-left: 20px;margin-bottom: 10px;width: 50%;}
		img.fl50 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 50%;}
		img.fr60 {float: right;margin-left: 20px;margin-bottom: 10px;width: 60%;}
		img.fl60 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 60%;}
		img.fr70 {float: right;margin-left: 20px;margin-bottom: 10px;width: 70%;}
		img.fl70 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 70%;}
		img.fr80 {float: right;margin-left: 20px;margin-bottom: 10px;width: 80%;}
		img.fl80 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 80%;}
		img.fr88 {float: right;margin-left: 20px;margin-bottom: 10px;width: 88%;}
		img.fl88 {float: left;margin-right: 20px;margin-bottom: 10px;margin-left: 5px;width: 88%;}
		img.w88per {float: none;margin: 0;width: 88%;}  /* 体のことで使用 */

	}

/* イメージの周辺回込みを終了 */
.clear {clear: both;}

/* イメージの周りの影つけ */
.shadow{
    box-shadow: 0 0 5px #333;
}


/*重要な説明文章（予約案内など）
---------------------------------------------------------------------------*/
p.imp-exp{
	text-indent: 0.8em;
	font-size: 17px;
	line-height: 1.5em;
}
	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {
	
	p.imp-exp{
		font-size: 15px;
	}

	}

span.imp-word{
	font-size: 21px;
}
	/*画面幅720px以下の追加指定*/
	@media screen and (max-width:720px) {
	
	span.imp-word{
		font-size: 18px;
	}

	}


/* 電話番号リンク表示切替
---------------------------------------------------------------------------*/
.wo-phone-link { display: block; }
.w-phone-link { display: none; }


/* アンダーライン
---------------------------------------------------------------------------*/
.underline-orange {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 60%, #ffde00 60%);
}
.underline-orange-thin {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 80%, #ffde00 60%);
}
.underline-skyblue {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 60%, rgba(111,191,209,0.6) 0%);
}
.underline-skyblue-thin {
  display: inline;
  padding: 0 0px ;  /* アンダーライン設定文字列の左右に余白を設けるときは、 0 5px のように設定します。 */
  background: linear-gradient(transparent 80%, rgba(111,191,209,0.6) 0%);
}


/*サイトマップのツリー構造
---------------------------------------------------------------------------*/
.tree ul {
  list-style-type: none;
//  margin: 0 0 0 15px;
  margin: 0 0 0 15px;
  padding: 0;
  position: relative;
}
.tree ul li {
  position: relative;
  margin: 0;
//  padding: 7px 20px;
  padding: 3px 5px 5px 20px;
}
.tree ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 0;
  width: 13px;
  height: 0;
  border-top: 1px solid #666;
}
.tree ul li:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0;
  height: 100%;
  border-left: 1px solid #666;
}
.tree ul li:last-child:after {
  height: 18px;
}

.tree > ul > li:before,
.tree > ul > li:after {
  /* 最上位も線を表示する時はコメント化 */
  border: none;
}
.tree i {
  margin-right: 8px;
}

/*よく頂くご質問ページ（開閉機能を含む）
---------------------------------------------------------------------------*/
/*faq_pageボックス全体*/
.faq_page {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq_page dt {
	border-radius: 10px;	/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff,#eee);/*背景グラデーション*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.2);	/*ボックスの影。右へ、下へ、ぼかし幅、0,0,0は黒の事で0.2は色が20%出た状態の事。*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
}

/*アイコン（Font Awesome）*/
.faq_page dt::before {
	font-family: "Font Awesome 5 Free";	/*Font Awesomeを使う指定*/
	content: "\f059";		/*使いたいアイコン名をここで指定。Font Awesomeに記載されています。詳しくは当テンプレートのマニュアルを読んで下さい。*/
	padding-right: 1em;		/*アイコンとテキストの間の余白*/
	color: #a99f85;			/*文字色*/
}

/*回答*/
.faq_page dd {
	padding: 5px 1em 30px 3em;		/*ボックス内の余白**/
}

/*opencloseを適用した要素のカーソル*/
.openclose {
	cursor: pointer;	/*カーソルの形状。リンクと同じスタイルにしてクリックできると認識してもらう。*/
}

.faq_page dt span {text-indent: 0;}

/*角丸四角
---------------------------------------------------------------------------*/
.rounded-div {
	width: 100%;
	height: 100%;
	background-color: #F5F4EC;
	border-radius: 25px; /* 角を丸くする */
	padding: 25px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 影を追加 */
}

	/*画面幅700px以上の追加指定*/
	@media screen and (min-width:700px) {

	.rounded-div {
		padding: 40px 50px 30px 50px;
	}

	}



/*NEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;
	line-height: 1.5;
	padding: 2px 5px;
	border-radius: 2px;
	margin: 0px 5px;
	vertical-align: text-top;
}
.newicon_middle {		/*★上下中央表示用を追加*/
	background: #F00;	/*背景色*/
	color: #FFF;		/*文字色*/
	font-size: 70%;		/*文字サイズ*/
	line-height: 1.5;
	padding: 0 5px;
	border-radius: 2px;
	margin: 0px 5px;
	display: inline-block;
	vertical-align: middle
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #ff0000 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.look {line-height: 1.5 !important; display: inline-block;padding: 5px 10px;background: rgba(0,0,0,0.1);border: 1px solid rgba(0,0,0,0.3);border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}
.bg1 {background: #f0f0f0;}
.gray-w-blue {color: #e6e9ee;}
.black {color: #000000;}
.blue {color: #0339a2;}
.orange {color: #f6bb43;}
.gray-for-selectoption {color: #808080;}
.darkred { color: #ad0014; }
div.up-pos-40px{ margin-top: -40px; }
div.up-pos-35px{ margin-top: -35px; }
div.up-pos-30px{ margin-top: -30px; }
div.up-pos-20px{ margin-top: -20px; }
div.up-pos-16px{ margin-top: -16px; }
div.up-pos-12px{ margin-top: -12px; }
div.up-pos-8px{ margin-top: -8px; }
div.up-pos-4px{ margin-top: -4px; }
div.up-pos-12vw{ margin-top: -12vw; }
div.up-pos-8vw{ margin-top: -8vw; }
div.up-pos-4vw{ margin-top: -4vw; }
div.up-pos-2vw{ margin-top: -2vw; }
div.up-pos-1vw{ margin-top: -1vw; }
div.down-pos-12vw{ margin-top: 12vw; }
div.down-pos-8vw{ margin-top: 8vw; }
div.down-pos-4vw{ margin-top: 4vw; }
div.down-pos-2vw{ margin-top: 2vw; }
div.down-pos-8px{ margin-top: 8px; }
div.down-pos-4px{ margin-top: 4px; }
.font-w800 {font-weight: 800; }
p.indent{ text-indent: 0.8em; }
.default-cursor { cursor: default; }
.lh-13em { line-height: 1.3em; }
.lh-14em { line-height: 1.4em; }
.lh-15em { line-height: 1.5em; }
.pad-top-20px { padding-top: 20px; }
.subscripts-50p { font-size: 0.5em; /* 50% */ }
.subtitle-120p { font-size: 1.2em; /* 120% */ }
.packed-005em {letter-spacing: -0.05em; }
.packed-01em {letter-spacing: -0.1em; }
.packed-01em-minus { letter-spacing: -0.1em; }
.packed-02em-minus { letter-spacing: -0.2em; }
.packed-03em-minus { letter-spacing: -0.3em; }
.word-nowrap { white-space: nowrap; }
div.right-shift { margin-left: 20px; }
div.right-shift-double { margin-left: 40px; }
div.right-shift-triple { margin-left: 60px; }
div.right-shift-80 { margin-left: 80px; }
div.right-shift-100 { margin-left: 100px; }
div.right-shift-120 { margin-left: 120px; }
div.right-shift-150 { margin-left: 150px; }

.align-bottom {		/* 店舗案内の地図のセルに、地図とアンカーを下詰めで表示するための使用 */
  vertical-align: bottom !important;
}

pre {white-space: pre-wrap;word-wrap: break-word;overflow-wrap: break-word;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {

	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}

	}/*追加指定ここまで*/


