@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("slide.css");
@import url("inview.css");


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #031f43;		/*テンプレートのメインまたはアクセントカラー*/
	--primary-inverse-color: #fff;	/*上のprimary-colorの対となる色*/
	
	--space-large: 8vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
	--space-small: 2vw;			/*主に余白の一括管理用。画面幅100%＝100vwです。*/
}


/*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: 0.81vw;
	}

	}/**/

body {
	margin: 0;
	padding:0;
	font-family: "Noto Serif JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	-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);
}


/*リンクテキスト
---------------------------------------------------------------------------*/
a {
	color: inherit;
	transition: 0.3s;
}
a:hover {
	text-decoration: none;
	opacity: 0.9;
}


/*container
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}


/*header
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
	position: fixed;
	z-index: 99;
	background: #fff;
	width: 100%;
}

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

/*ロゴ画像*/
#logo img {display: block;}
#logo {
	margin: 0;padding: 0;
	width: 250px;
	position: relative;z-index: 1;
	left: 2vw;
	top: 0.5vw;
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {
	
	#logo {
		top: 0;
		width: 150px;
	}

	}


/*ヘッダー内メニュー
---------------------------------------------------------------------------*/
/*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: 10px;		/*上からの配置場所*/
	right: calc(var(--space-small) + 5px);	/*右からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	padding: 12px 0;
	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;
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
}

#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {top: 50%; transform: translateY(-50%);}
#menubar_hdr div span:nth-child(3) {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) {opacity: 0; /* 真ん中の線を消す */}
#menubar_hdr.ham div span:nth-child(3) {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(#ec9347, #d36b12);/*背景グラデーション*/
	color: #f6ebd2;	/*文字色*/
	padding: 2rem 1rem;	/*上下、左右へのボタン内の余白*/
	border-radius: 3px 0px 0px 3px;	/*角を丸くする指示。左上、右上、右下、左下への順番。*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	font-size: 20px;
}
@media only screen and (max-width: 500px) {
	#btn-special a {
	display: block;text-decoration: none;
	padding: 1rem 0.5rem;	/*上下、左右へのボタン内の余白*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	font-size: 16px;
	}
}

/*アイコンの下の余白*/
#btn-special 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: 2rem;		/*文字サイズ。240%。元 2.4rem*/
	font-weight: normal;	/*h要素のデフォルトの太字を標準に*/
	margin-bottom: 2vw;		/*下にスペースを空ける 元 5vw*/
	display: flex;
	flex-direction: column-reverse;
	align-items: flex-start;
	color: #031f43;	/*文字色　追記====================================*/
}
main h2.c {
	align-items: center;	/*見出しをセンタリングする場合*/
}

/*h2見出しのサブテキスト（sub-text）*/
main h2 span.sub-text {
	display: inline-block;
	border-top: 1px solid var(--primary-color);	/*上の線の幅、線種、varは色のことで冒頭のprimary-colorを読み込みます。*/
	font-size: 1.2rem;		/*文字サイズ80%   元 0.9rem*/
	opacity: 1;			/*透明度。色が60%出た状態。元 0.6*/
	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-size: 1.4rem;	/*文字サイズ140%*/
}

/*メイン画像*/
#main-box {
	flex-shrink: 0;
	padding: 80px 15px 0;
	position: relative;
	overflow: hidden;
}
.main-box1 {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*アスペクト比*/
	position: relative;
}

.main-box1 .img-box {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。１枚が表示される時間はjsで指定できます。*/
}

/*以下は変更不要*/
.main-box1 .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.main-box1 .img-box {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.main-box1 .img-box.active {
	pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}


/*スライドショー
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むブロック*/
#mainimg {
	overflow-x: hidden;
	position: relative;
	background: linear-gradient(transparent 20%, var(--primary-color) 20%);/*背景グラデーション。上から20%までは透明で、それ以外はcss冒頭のprimary-colorを読み込みます。最後にも20%とする事で境界がくっきりします。これがないとなめらかグラデーションに。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
}

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

/*画像*/
#mainimg .img img {
	padding: 0 1vw;	/*上下の余白はなし、左右への余白は画面の1%*/
}
/*画像　スマホの時大きく画像が表示されるように設定===================追記========================*/
@media screen and (max-width:768px) {
#mainimg .img {
	width: 900%!important;
}
}


/*スライド下の英語表記のテキスト*/
#mainimg .img + p.c {
	padding: 1rem;		/*テキスト内の余白。2文字分。*/
	font-size: 2.2rem;	/*文字サイズ140%*/
}

/*スライド下の英語テキストに使うフォント。css冒頭のGoogle Fonts（Caveat）用のスタイル*/
.caveat {
	font-family: "Caveat", cursive;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

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

#mainimg .rtl {animation-name: slide-rtl;}
#mainimg .ltr {animation-name: slide-ltr;}

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

/*----店舗一覧 アコーディオン　----------------------------------------*/
.accordion_box {
	float: left;
	padding: 0 10px;
	width: 50%;
}
@media screen and (max-width:768px) {
.accordion_box {
    width: 100%;
	float: none;
}
}
.accordion-001 {
    background-color: #ffffff;
	margin: 0 10px;
}

.accordion-001:not([open]) {
    margin-bottom: 7px;
}

.accordion-001 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em;
    border-radius: 5px;
    background-color: #002e7a;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #fff;
    border-right: 3px solid #fff;
    content: '';
    transition: transform .3s;
}

.accordion-001[open] summary::after {
    transform: rotate(225deg);
}

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

footer {
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-size: 0.85rem;
	padding: 5vw;
}

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

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

	}/**/



/*ロゴが入ったブロック*/
footer .image {
	width: 500px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

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

	footer .image {
		width: auto;
	}
	footer .image img {
		width: 200px;
	}

	}/**/



/*よく頂く質問ブロック
---------------------------------------------------------------------------*/
/*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;
	font-weight: 200;
	letter-spacing: 0.4em;
	color: antiquewhite;
}

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

	/*faq内のh2見出し*/
	.faq h2 {
		writing-mode: vertical-lr;	/*日本語は縦書き。英語は90度回転*/
		margin-right: 18vw;
	}

	}/**/


/*右側の英語の飾り文字*/
.faq h2 .kazari {
	line-height: 1;
	font-size: 1.2rem;
}

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

	/*右側の英語の飾り文字*/
	.faq h2 .kazari {
		font-size: 18vw;
		position: absolute;
		right: 0px;
		top: var(--space-large);
    	color: rgba(255,255,255,0.05);
	}

	}/**/


/*質問*/
.faq dt {
	font-size: 1.5rem;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding: 2rem 0 1rem 0;
}

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

	.faq dt {
		padding: 2rem 2rem 1rem 2rem;
	}

	}/**/


/*回答*/
.faq dd {
	padding: 0 0 2rem 0;
	font-size: 1.2rem;
}

	/*画面幅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%;
	}
	
	}/**/


/*box1（1つ目のセクションボックス）
---------------------------------------------------------------------------*/
/*ボックス全体*/
.box1 {
	overflow-x: visible;
	position: relative;
	background: #d5cec1;
	padding: var(--space-large);
	/*margin-top: 10vw;*/
}

/*ボックス上部の大きな装飾テキスト*/
.box1 .deco-text {
	position: absolute;
	right: 0;
	top: -15vw;
	color: #d5cec1;
	font-size: 7vw;
	line-height: 1;
}

/*テキストボックス*/
.box1 .text {
	margin-bottom: 5rem;
}

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

	.box1 {
		display: flex;	/*横並びにする*/
		gap: 5vw;
	}
	
	.box1 > * {flex: 1;}

	.box1 .text {
		margin-bottom: 0;
	}

	}/**/


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


/*list1（プランのご案内コーナー）
---------------------------------------------------------------------------*/
/*１枚目の写真*/
.list1.image1 {
	background: url("../images/1.jpg") no-repeat center center / cover;
}

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

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

/*ボックス１個あたり*/
.list1 {
	padding: var(--space-large);
	position: relative;
	overflow-x: hidden;
	margin-bottom: 1vw;
}

/*マウスオン用のアニメーション*/
.list1::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.6);
	transition: transform 0.5s 0.1s;	/*アニメーションの速度（0.5秒）と待機時間（0.1秒）。*/
}
.list1:hover::before {
	transform: translateX(100%);	/*マウスオンで半透明の黒を枠外へ出す。-100%にすると逆に移動します。*/
}

/*テキストブロック*/
.list1 .text {
	position: relative;z-index: 1;
	width: 80%;	
	height: 100%;
	color: #fff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.list1 .text .midashi {
		font-size: 20px;
	}
.days {
	font-size: 30px;
	color: #FFD600;
	}

	/*画面幅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;
	position: relative;
	font-size: 2rem;
	letter-spacing: 0.1rem;
	line-height: 1.2;
}

/*list1内のh3見出し内の１文字目の大きな文字*/
.list1 h3 .large {
	font-size: 4rem;
}

/*見出しの右上にある英語の小さな文字*/
.list1 h3 span:not(.large) {
	font-size: 1rem;
	opacity: 0.7;
	position: absolute;
	left: 0px;
	top: -15px;
}
@media screen and (max-width: 768px) {
	.list1 h3 .large {
	font-size: 3rem;
}
.days {
	font-size: 25px;
}
	.list1 .text .midashi {
	font-size: 16px!important;
}
}


/*list-grid1（３カラムボックス）
---------------------------------------------------------------------------*/
.list-grid1 .list * {margin: 0;padding: 0;}

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: 2rem;
}

/*ボックス内のp要素*/
.list-grid1 .list p {
	font-size: 1.5rem;
	line-height: 1.5;
}

/*ボックス１個あたり*/
.list-grid1 .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);
}

/*ボックス内のfigure画像*/
.list-grid1 .list figure {
	margin: -1rem;			/*画像を枠いっぱいに表示させる為に上の「.list-grid1 .list」のpadding分をネガティブマーインで指定*/
	margin-bottom: 0.5rem;
}

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

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

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

	}/**/


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

/*ボックス内のh2*/
.title-bg h2 {
	font-weight: normal;
	display: 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: 1.2rem;
	margin-bottom: 3vw;
	letter-spacing: 0.1rem;
	/*opacity: 0.5;*/
}


/*ボタン
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	padding: 0.8rem 2rem;
	margin-top: 2rem;
	text-align: center;
	letter-spacing: 0.1em;
	box-shadow: 0px 10px 30px rgba(0,0,0,0.1);
	font-size: 22px;
}
@media screen and (max-width: 768px) {
	.btn a {
		font-size: 18px;
	}
}
/*マウスオン時（btn1、btn2共通）*/
.btn a:hover {
	letter-spacing: 0.2rem;	/*文字間隔を少し広げる*/
	box-shadow: none;		/*ボタンの影を消す*/
}

/*btn2への追加設定*/
.btn a {
	color: #fff;
	border: 1px solid #fff;
}
/*list1内のbtnの設定。マウスオン時にボタンの背景色を追加。*/
.list1:hover .btn a {
	background: rgba(0,0,0,0.8);
}

/*----採寸予約ボタン----------------------------------------*/
.button-reservation {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 600px;
    margin: 0 auto;
    padding: 1em 4em 1em 2em;
    border: 2px solid #fff;
    border-radius: 60px;
    background-color: #002594;
    color: #fff;
    font-size: 1.8em;
	text-decoration: none!important;
}
@media screen and (max-width: 768px) {
	.button-reservation {
	width: 300px;
    font-size: 1.5em;
	}
}

.button-reservation::after {
    position: absolute;
    right: 2em;
    transform: translateY(-50%);
    transform-origin: left;
    width: 2em;
    height: .5em;
    background-color: #fff;
    clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
    content: '';
    transition: transform .3s;
}

.button-reservation:hover::after {
    transform: translateY(-50%) scaleX(1.4);
}

/*---仕上がりイメージ------------------------------------*/
.heading-finished {
    position: relative;
    padding: 0 .7em .2em;
	margin: 20px;
    border-bottom: 3px solid #002e7a;
    font-size: 2.3em;
	font-weight: bold;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media screen and (max-width: 768px) {
	.heading-finished {
		font-size: 1.8em;
	}
}

.heading-finished::before,
.heading-finished::after {
    position: absolute;
    left: 30px;
    bottom: -15px;
    width: 30px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
}

.heading-finished::before {
    background-color: #002e7a;
}

.heading-finished::after {
    bottom: -11px;
    background-color: #fff;
}

/*店舗一覧----------------------------------*/
.list {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.list dt, .list dd {
  box-sizing: border-box;
}
.list dt {
  display: flex;
  align-items: center;
  width: 30%;
  padding: 10px;
  background-color: #E1E1E1;
  border-bottom: 1px dotted #999;
}
.list dt:last-of-type,
.list dd:last-of-type {
  border: none;
}
.list dd {
  /*display: flex;*/
  align-items: center;
  width: 70%;
  margin-left: 0;
  padding: 10px;
  background-color: #fff;
  border-bottom: 1px dotted #999;
}


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


/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {display: block;}

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	animation: opa1 1s 0.4s both;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 50px;		/*下からの配置場所指定*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: #5E5E5E;
	color: var(--primary-inverse-color);
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.clear {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;}

.anchor {
	padding-top: 80px;
	margin-top: -20px;
}

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;}

	}/**/
.font2 {
	font-size: 1.5em!important;
}
.days-top {
	margin-top: 10vw;
}
@media screen and (max-width:768px) {
.system-font {
    font-size: 0.8em!important;
}
}

/*メイン画像PC/SP----------------------------*/
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.main_pc { display: block !important; }
.main_sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 768px) {
    .main_pc { display: none !important; }
    .main_sp { display: block !important; }
}