@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic&display=swap');


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


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


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


/*CSSカスタムプロパティ（サイト全体を一括管理する為の設定）
---------------------------------------------------------------------------*/
:root {
	--primary-color: #F8F6F3;			/*テンプレートの土台カラー*/
	--primary-inverse-color: #725A4C;	/*上のprimary-colorの対となる色*/
	
	--secondary-color: #283841;			/*テンプレートのサブまたはアクセントカラー*/
	--secondary-inverse-color: #fff;	/*上のsecondary-colorの対となる色*/
	
	--accent-color: #a27b50;			/*アクセントカラー*/
	--accent-inverse-color: #fff;		/*アクセントカラーの対となる色*/

  --red-color: #ff0000;
	
	--global-space: 20px;				/*主に余白の一括管理用*/
}


/*テキストのフェードイン設定
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes fadeIn {
	0% {opacity: 0;transform: scale(0.1) rotate(-30deg);}
	100% {opacity: 1;transform: scale(1) rotate(0deg);}
}

/* 初期状態でテキストを非表示にする */
.fade-in-text {
    visibility: hidden;
}

/* アニメーションを適用するクラス。
animationの行の「0.2s」が文字の出現のなめらかさで、大きいほどなめらかに出てきます。小さいとタイピングのようにカクカク出ます。
１文字ずつの出現する際の時差は、js/main.jsの「テキストのフェードイン効果」の中にある「0.1」で調整できます。*/
.char {
    display: inline-block;
    opacity: 0;
    animation: fadeIn 0.2s linear both;
}


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

html {
	height: 100%;
	font-size: 62.5%;/* 62.5%を指定して、1rem=10pxとする*/
}

body {
	margin: 0;padding: 0;
	font-family: "Zen Maru Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	line-height: 1.5;		/*行間*/
	background: #1c1714;	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	overflow-x: hidden;
  font-size: 1.6rem;
}

/*リセット他*/
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%;}

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

/*マウスオン時*/
a:hover {
	text-decoration: none;
}


/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
header::before {
	background: url("../images/bg_header.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
header .contents {
	color: #fff;	/*文字色*/
	padding: 0;
	height: 100vh;
	display: flex;
	align-items: center;
	background: url("../images/1.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}

header .contents a {color: inherit;}

/*ロゴ、謳い文句、ロゴ上の装飾画像を囲むボックス*/
header #logo-container {
	flex: 1;
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態。写真そのまま出したいならこの１行を削除。*/
	padding: 30px 10px 25px;		/*上、左右、下への余白*/
	position: relative;
	text-align: center;
}

/*ロゴ画像*/
header .logo img {
	display: block;
	margin: 0 auto;
	width: 250px;		/*ロゴ画像の幅。お好みで。*/
}

/*謳い文句*/
header p {
	display: block;
	font-size: 1.1rem;
}

/*ヘッダー下部のSCROLLアニメーション
---------------------------------------------------------------------------*/
/*アニメーション設定*/
@keyframes scroll-line {
  0% {transform: scaleY(1);}
  50% {transform: scaleY(0);}
  100% {transform: scaleY(0);}
}

/*ラインアニメーションを囲むブロック*/
.scroll-container {
	position: absolute;
	width: 100px;
	left: calc(50% - 50px);
	bottom: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.1rem;
}

/*「SCROLL」のテキスト部分*/
.scroll-container p {
	margin: 0;padding: 0;
	text-align: center;
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border: 1px solid rgba(255,255,255,0.5);	/*テキストの色。255,255,255は白のことで0.5は色が50%出た状態。*/
	border-radius: 50%;	/*枠を円形にする*/
}

/*ラインアニメーションの土台部分*/
.scroll-line {
	margin: 0 auto;
	position: relative;
	width: 1px;		/*ラインアニメーションの幅。お好みで。*/
	height: 50px;	/*ラインアニメーションの高さ。お好みで。*/
	background: rgba(255,255,255,0.5);	/*ラインアニメーションの土台部分の色。255,255,255は白のことで0.5は色が50%出た状態。*/
}

/*ラインアニメーション本体*/
.scroll-line span {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #fff;	/*ラインアニメーションの色*/
	animation: scroll-line 2s infinite;	/*2sがアニメーションにかける時間。2秒。*/
	transform-origin: bottom;
}


/*ヘッダーメニュー（大きな画面で見た場合に左側に固定表示されるメニュー）
---------------------------------------------------------------------------*/
/*1000px未満は非表示*/
#header-menu {
	display: none;
}

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

	#header-menu {
		display: block;	/*表示させる*/
		position: fixed;z-index: 1;
		left: 0px;
		top: 100px;	/*上からの配置場所*/
	}
	
	/*メニュー１個あたり*/
	#header-menu li a {
		text-decoration: none;display: block;
		background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
		color: var(--secondary-inverse-color);	/*文字色。冒頭のsecondary-inverse-colorを読み込む。*/
		margin-bottom: 18px;					/*下に空けるスペース。メニュー同士の上下間の隙間。*/
		border-radius: 0px 100px 100px 0px;		/*角丸の指定。左上、右上、右下、左下への順。100pxの所はとりあえず大きな数字にしておけばOK。*/
		padding: 10px 30px 10px 20px;	/*ボタン内の余白。上、右、下、左への順番。*/
		font-size: 1.8rem;
	}
	
	/*現在表示中のメニューの背景色と、マウスオン時共通*/
	#header-menu li.active a,
	#header-menu li a:hover {
		background: var(--accent-color);	/*css冒頭のaccent-colorを読み込む*/
	}

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


/*背景画像共通（大きな画面で見た場合に両サイドに見える画像）
---------------------------------------------------------------------------*/
.section::before {
	opacity: 0;
	transition: opacity 1s; /* 1秒かけてフェードイン/フェードアウト */
	content: '';
	position: fixed;z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.section.active::before {
	opacity: 1;
}
.section.inactive::before {
	opacity: 0;
}


/*contents（各セクションブロック直下にあるボックス）
---------------------------------------------------------------------------*/
.contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込む。*/
	padding: var(--global-space);			/*ボックス内の余白。冒頭のglobal-spaceを読み込む。*/
	position: relative;
	overflow-x: hidden;
}

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

	.contents,
	#gallery .gallery-box {
		max-width: 560px;	/*大きな画面になった場合のコンテンツ幅*/
		margin: 0 auto;		/*画面の左右中央に配置*/
		overflow-x: visible;
	}

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


/*h2見出し共通*/
.contents h2 {
	margin: 0;
	line-height: 1.8;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0;	/*上下、左右への余白*/
	font-size: 2.4rem;
	text-align: center;	/*テキストをセンタリング*/
}

/*h2内の小文字*/
.contents h2 span.hosoku {
	display: block;
	font-size: 1rem;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広く*/
	padding-bottom: 0.5rem;	/*下の見出しとの間の余白。0.5文字分。*/
}


/*オープニング特別メニュー（specialブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#special::before {
	background: url('../images/bg_special.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のcontents*/
#special .contents {
	background: var(--accent-color) /*背景色。冒頭のaccent-colorを読み込む。*/
	url("../images/bg_special.png") no-repeat center top / 100%;	/*背景画像の読み込み。見出しの上にある装飾画像です。*/
	color: var(--accent-inverse-color);	/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
}


/*横スライドインタイプのスライドショー（１枚目の画像のアスペクト比が反映されるタイプ）
---------------------------------------------------------------------------*/
/*3枚の画像を囲むブロック*/
.slide5 {
	position: relative;
	overflow: hidden;
}

/*３枚の画像の共通設定*/
.slide5 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	transform: translateX(100%);
	transition: transform 0.7s ease;	/*0.7sはスライドにかける時間（0.7秒）。0.7を変更する場合、main.jsのスライドショー用のコードの最後の「700」も変更する。*/
}

/*アクティブ時*/
.slide5 .slide.active {
	transform: translateX(0);
}

/*左に移動*/
.slide5 .slide.left {
	transform: translateX(-100%);
}

/*非表示*/
.slide5 .slide.hidden {
	opacity: 0;
}

/*初期表示用*/
.slide5 .slide.initial {
	transform: translateX(0);
	transition: none;
}

/*１枚目画像（変更不要）*/
.slide5 .img1 {
	position: relative;width: 100%;height: auto;
}

/*画像のクリップ*/
.slide5 .slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/*現在表示されているスライドのみをクリック可能にする設定（変更不要）*/
.slide5 .slide {
	pointer-events: none;
}
.slide5 .slide.active {
	pointer-events: auto;
}

/*現在表示中のボタンブロック*/
.slide5 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 80px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide5 .indicator {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide5 .indicator.active {
    background: var(--accent-color);	/*冒頭のaccent-colorを読み込む*/
}


/*私たちのこだわり（aboutブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#about::before {
	background: url('../images/bg_about.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#about h2 {
	position: relative;
	padding-left: 40px;		/*左に空けるスペース。文字と画像が重ならないように適当な余白を確保。*/
	padding-right: 40px;	/*右に空けるスペース。同上。*/
}

/*見出し左右の画像の共通設定*/
#about h2::before,
#about h2::after {
	content: "";
	position: absolute;
	width: 80px;	/*画像の幅*/
	height: 140px;	/*画像の高さ*/
	top: -30px;		/*上からの距離*/
	background: url("../images/kazari1.webp") no-repeat center center / contain;	/*画像の読み込み*/
}

/*左側の画像の追加設定*/
#about h2::before {
	left: -40px;	/*左からの配置場所*/
}

/*右側の画像の追加設定*/
#about h2::after {
	right: -40px;	/*右からの配置場所*/
	transform: scale(-1, 1);	/*画像を左右反転させる*/
}

/*こだわりテキストが入った背景色（bg1）*/
#about .bg1 {
	background: #F0ECE5;	/*背景色*/
	padding: 20px 60px;		/*上下、左右への余白*/
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
}

/*このボックス内のイメージ写真*/
#about aside {
	margin: 0 calc(-1 * var(--global-space));	/*両サイドの余白を相殺して幅一杯に使う*/
	border-radius: 100px 100px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。普通に表示させたいならこの１行を削除。*/
	overflow: hidden;
}

/*このボックス内の余白。段落１文字目にインデント（１文字さがる）をとる。*/
#about .bg1 p {
	text-indent: 1em;
}


/*お品書きメニュー（menuブロック）
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#menu::before {
	background: url('../images/bg_menu.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*このブロック内のh2見出し*/
#menu h2 {
	background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
	color: var(--secondary-inverse-color);	/*文字色。secondary-inverse-colorを読み込む。*/
	padding: 20px 0;	/*上下、左右への余白*/
	margin-bottom: var(--global-space);		/*見出しの下に空ける隙間。冒頭のglobal-spaceを読み込む。*/
	border-radius: 30px 30px 0px 0px;		/*角を丸くする指定。左上、右上、右下、左下への順番*/
}

/*メニューブロック１個あたり*/
.menu img {display: block;}
.menu {
	position: relative;
	margin-bottom: var(--global-space);	/*下に空けるスペース。冒頭のglobal-spaceを読み込む。*/
}

/*メニューの下にあるテキストブロック（※スライドショーと共通）*/
.slide5 .slide .text,
.menu .text {
	margin: 0;
	padding: 10px;	/*ボックス内の余白*/
	position: absolute;
	left: 0px;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事で0.6は色が60%出た状態。*/
	color: #fff;	/*文字色*/
}

/*メニューの下にある吹き出し系のアイコン（※スライドショーと共通）*/
.slide5 .slide .icon-menu-point,
.menu .icon-menu-point {
	text-align: center;
	width: 79px;	/*幅*/
	height: 75px;	/*高さ*/
	line-height: 1.2;
	color: #fff;	/*文字色*/
	font-size: 1.4rem;
	padding-top: 24px;	/*上に空ける余白。上下のバランスをとって下さい。*/
	position: absolute;z-index: 1;
	left: 20px;		/*左からの配備場所*/
	bottom: 40px;	/*下からの配備場所*/
	background: url("../images/icon_menu_point.svg") no-repeat center center;	/*アイコン画像の読み込み*/
	transform: rotate(-20deg);	/*左に20度回転*/
}


/*ギャラリー
---------------------------------------------------------------------------*/
:root {
	--gallery-space: 120px;	/*上と下の波打った画像の高さ。お好みで調整してもらってもOKですし、下で数箇所使っている所を直接数字入力に変更されてもOKです。*/
}

/*大きな画面で見た場合に両サイドに見える画像*/
#gallery::before {
	background: url("../images/bg_gallery.webp") no-repeat center center / cover;	/*背景画像の読み込み*/
}


/*このブロック内のcontents*/
#gallery .contents {
	background: var(--primary-color);		/*背景色。冒頭のprimary-colorを読み込む。*/
}

#gallery .gallery-box {
	position: relative;
	overflow: visible;
	background: var(--accent-color);		/*背景色。冒頭のaccent-colorを読み込む。*/
	color: var(--accent-inverse-color);		/*文字色。冒頭のaccent-inverse-colorを読み込む。*/
	margin: var(--gallery-space) calc(-1 * var(--global-space));
}

/*上と下の波打った画像の読み込みに関する共通設定*/
#gallery .gallery-box::before,
#gallery .gallery-box::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: var(--gallery-space);	/*画像の高さ。上のgallery-spaceを読み込む。*/
    background-repeat: no-repeat;
    background-size: 100% 100%;
}

/*上の波打った画像への追加設定*/
#gallery .gallery-box::before {
    top: calc(-1 * var(--gallery-space));
    background-image: url("../images/bg_gallery_top.webp");	/*上の画像*/
}

/*下の波打った画像への追加設定*/
#gallery .gallery-box::after {
    top: 100%;
    background-image: url("../images/bg_gallery_bottom.webp");	/*下の画像*/
}


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

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

/*画像*/
.slide-thumbnail1 .img img {
	padding: 5px;	/*画像の余白*/
}

/*右から左へ、左から右へ、のアニメーション*/
.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);}
}


/*tableっぽいdl（「お知らせ」「店舗情報」「メニュー（menu.html）」）
---------------------------------------------------------------------------*/
dl.table {
	display: grid;
	grid-template-columns: 100px auto;	/*dtとddを横並びにし、dtの幅を100pxに、残りは自動。*/
	margin-bottom: 50px;
	line-height: 2;
}
dl.table dt,
dl.table dd {
	padding: 1rem;
}

/*menu.htmlのテキストのみのお品書きに使用*/
dl.table.reverse {
	grid-template-columns: auto 100px;	/*dtとddを横並びにし、dtの幅を自動に、残りは10px。*/
}
dl.table.reverse dd {
	text-align: right;
}

/*menuブロックのみ、奇数番目のメニューの行に薄く背景色をつける*/
#menu dl.table dt:nth-of-type(odd),
#menu dl.table dd:nth-of-type(odd) {
	background: rgba(0,0,0,0.04);
}


/*店舗情報
---------------------------------------------------------------------------*/
/*大きな画面で見た場合に両サイドに見える画像*/
#shop::before {
	background: url('../images/bg_shop.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

/*「店舗情報」「マップ」「SNSアイコン」を囲むブロック*/
#shop .shop-data {
	border-radius: 500px 500px 0px 0px;	/*角を丸くする指定。左上、右上、右下、左下への順番。500pxの数字は適当に大きければOK。*/
	background: url('../images/bg_shop_data.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
	color: #fff;	/*文字色*/
	padding: 100px 50px 50px;	/*上、左右、下へのボックス内余白*/
}

/*「所在地」などが記載されているtableっぽいブロック（基本設定はこの上の「tableっぽいdl（「お知らせ」「店舗情報」共通）」で行っています。）*/
#shop .shop-data dl.table {
	border-top: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。下と揃えておく。*/
}
#shop .shop-data dl.table dt,
#shop .shop-data dl.table dd {
	border-bottom: 1px solid rgba(255,255,255,0.3);	/*枠線の幅、線種、255,255,255は白のことで0.3は色が30%出た状態。上と揃えておく。*/
}

/*Follow Usの画像*/
#shop h3 img {
	display: block;
	width: 150px;	/*画像の幅*/
	margin: 0 auto;
}

/*Google Map*/
#shop iframe {
	width: 100%;
	height: 500px;	/*高さ*/
}

/*ソーシャルメディアのアイコン*/
.icons {
	list-style: none;
	margin: 0;padding: 0;
	display: flex;
	align-self: center;
	justify-content: center;
	gap: 10px;	/*アイコン同士のマージン的な要素*/
}
.icons i {
	font-size: 3rem;	/*アイコンサイズ*/
}


/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 1rem;
	text-align: center;		/*内容をセンタリング*/
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.7);
	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;
}


/*btn1（お品書きメニューブロックの一番下で使っているシンプルボタン）
---------------------------------------------------------------------------*/
.btn1 a {
	display: block;text-decoration: none;
	text-align: center;
	border: 1px solid #333;	/*枠線の幅、線種、色*/
	padding: 20px;			/*ボタン内の余白*/
	font-size: 1.8rem;
	border-radius: 3px;		/*角を少しだけ丸く*/
}

/* ★追加★ホバー */
.btn1 a:hover {
  background: rgba(114, 90, 76, 0.3);
}

/*右側の矢印アイコン設定*/
.btn1 a::after {
	transition: 0.3s;
	font-family: "Font Awesome 6 Free";
	content: "\f054";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	margin-left: 10px;		/*アイコンとテキストとの間に空けるスペース*/
}	

/*マウスオン時に矢印の左側のスペースを広くする*/
.btn1 a:hover::after {
	margin-left: 15px;
}

/*メニューブロック初期設定
---------------------------------------------------------------------------*/
/*メニューをデフォルトで非表示*/
#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;}


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

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

/*マウスオン時*/
.small-screen #menubar a:hover {
	color: var(--secondary-color);				/*文字色。css冒頭のsecondary-colorを読み込みます。*/
	background: var(--secondary-inverse-color);	/*背景色。css冒頭のsecondary-inverse-colorを読み込みます。*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;				/*右からの配置場所指定*/
	top: 0px;				/*上からの配置場所指定*/
	padding: 16px 14px;		/*上下、左右への余白*/
	width: 46px;			/*幅（３本バーが出ている場合の幅になります）*/
	height: 46px;			/*高さ*/
	display: flex;					/*flexボックスを使う指定*/
	flex-direction: column;			/*子要素（３本バー）部分。flexはデフォルトで横並びになるので、それを縦並びに変更。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	transform: scale(2);	/*デフォルトで準備したサイズの２倍。お好みで。*/
	transform-origin: right top;
	mix-blend-mode: exclusion;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;	/*アニメーションにかける時間。0.3秒。*/
	border-top: 1px solid #fff;	/*線の幅、線種、色*/
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--red-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;	/*変形の起点。センターに。*/
	width: 20px;						/*バーの幅*/
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);	/*回転45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);	/*回転-45°と、X軸Y軸への移動距離の指定*/
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;	/*２本目は使わないので非表示にする*/
}

/* ★追加★ファーストビューcta
---------------------------------------------------------------------------*/
.reserve-button {
  position: fixed;
  top: 20px;
  left: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  font-weight: bold;
  color: var(--secondary-inverse-color);
  text-decoration: none;
  background: linear-gradient(45deg, #e0c055,var(--accent-color));
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s;
}
.reserve-button i {
  margin-right: 8px;
  font-size: 2rem;
}


	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
.reserve-button {
  padding: 8px 32px;
  font-size: 1.8rem;
}

.reserve-button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  opacity: 0.8;
}
}
/* ★追加★サイトマップリンク */
.footer-sitemap {
  text-align: center;
}

.footer-sitemap a {
  text-decoration: none;
  display: inline-block;
  padding-bottom: 0.2rem 0.4rem;
  border-bottom: 1px solid;
}


/* ★追加★下層h1共通
---------------------------------------------------------------------------*/
.h1-page-title {
	background: var(--secondary-color);		/*背景色。冒頭のsecondary-colorを読み込む。*/
	color: var(--secondary-inverse-color);	/*文字色。secondary-inverse-colorを読み込む。*/
	padding: 20px 0;	/*上下、左右への余白*/
	margin-bottom: var(--global-space);		/*見出しの下に空ける隙間。冒頭のglobal-spaceを読み込む。*/
	border-radius: 30px 30px 0px 0px;		/*角を丸くする指定。左上、右上、右下、左下への順番*/
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
}

/* ★追加★about.html
---------------------------------------------------------------------------*/
.page-card {
  margin-bottom: 3em;
}

.page-card .img-box {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.page-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-card.text-box {
  max-width: 600px;
  text-align: left;
}

.page-card .text-box h3 {
  font-size: 1.3em;
  margin-bottom: 0.5em;
  border-left: 4px solid var(--secondary-color);
  padding-left: 0.7em;
  font-weight: bold;
}

/*★追加★お問い合わせ
---------------------------------------------------------------------------*/
.page-contact-inner {
  padding: 2rem;
}

.contact-text {
  text-align: center;
  line-height: 1.45;
  margin-bottom: 2rem;
}

.required {
  color: var(--red-color);
}

.contact-form .form-row {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 0.4rem;

}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  font-size: 1.2rem;
  box-sizing: border-box;
  transition: border 0.1s ease, box-shadow 0.1s ease;
}

/* ラジオボタン（見た目用。focusでlabelを光らせたいなら別アプローチ） */
input[type="radio"] {
  accent-color: var(--accent-color); /* ブラウザ対応が良い場合これで色変えられる */
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 5px rgba(113, 4, 23, 0.4);
}

/* ラジオボタン focus時の囲みを消す */
input[type="radio"]:focus {
  outline: none;
}

/* ラジオボタンの並び */
.radio-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.radio-group label {
  font-weight: normal;
}

.contact-form textarea {
  resize: vertical;
}

.privacy-link {
  font-size: 1.2rem;
  margin: 1.5rem 0;
  text-align: center;
}

.privacy-link a {
  color: var(--accent-color);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit input[type="submit"] {
  background: var(--primary-inverse-color);
  color: var(--primary-color);
  padding: 0.8rem 2.4rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  letter-spacing: 0.1em;
}

.form-submit input[type="submit"]:hover {
  opacity: 0.8;
}

/*★追加★プライバシーポリシー
---------------------------------------------------------------------------*/
 #page-privacy h2 {
  text-align: left;
 }

 #page-privacy p {
    margin-bottom: 1rem;
  }

 #page-privacy ul {
  list-style-position: inside;
  margin-left: 1.2rem;
  }

/*★追加★サイトマップ
---------------------------------------------------------------------------*/
#page-sitemap ul {
  list-style: none;
}

#page-sitemap a {
  text-decoration: none;
  display: block;
  position: relative;
  padding: 0.5rem 1rem 0.5rem 2.4rem;
  border-bottom: solid 1px var(--primary-inverse-color);
}

#page-sitemap a:hover {
  background: rgba(114, 90, 76, 0.3);
}

#page-sitemap a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px var(--primary-inverse-color);
    border-right: solid 2px var(--primary-inverse-color);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 8px;
    left: 0.5rem;
    margin: auto;
}

/*★追加★お知らせ一覧
---------------------------------------------------------------------------*/
:root {
  --news-category-color1: #2B71B8;
  --news-category-color2: #062D59;
  --news-category-color3: #710417;
  --news-list-color:#ccc;
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

a {
  text-decoration: none;
}
ul {
  list-style: none;
}
/* パンくず */
.breadcrumb {
  margin-top: 1.6rem;
}

.breadcrumb i {
 font-size: 1rem;
}

/* ニュースリスト */
.news-page-main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 70%;
          flex: 0 0 70%;
}

.news-page-wrapper {
  max-width: 100%;
  margin: 0.8rem auto 6rem;
}

.news-page {
  margin-top: 2rem;
}

.news-page__list {
  border-top: solid 2px var(--news-list-color);
  margin-top: 2.4rem;
}

.news-page__item {
  border-bottom: solid 2px var(--news-list-color);
  margin-left: 0;
}

.news-page__item-link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  letter-spacing: 0.025em;
  position: relative;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  padding: 1.2rem 4.8rem 1.2rem 0.8rem;
}

.news-page__item-link:hover {
  background-color: rgba(112, 112, 112, .2);
}

.news-page__item-link:after {
  /* 矢印アイコン */
  border-right: solid 3px var(--news-list-color);
  border-top: solid 3px var(--news-list-color);
  content: "";
  display: block;
  height: 1.5rem;
  position: absolute;
  right: 1.8rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  width: 1.5rem;
}

.news-page__item-link {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-page__item-date {
  font-family: "Noto Serif JP", serif;
  white-space: nowrap;
  font-size: 1.4rem;
}

.news-page__item-category {
  padding: 0 0.8rem;
  line-height: 1.5;
  margin-left: 1.6rem;
  display: inline-block;
  background: var(--news-category-color1);
  color: #fff;
}


.category2 {
  background: var(--news-category-color2);
  
}

.category3 {
  background: var(--news-category-color3);
}

.news-page__btn {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .news-page__btn {
    margin-top: 2.25rem;
  }
}

.news-page__item-text {
  letter-spacing: 0.025em;
  line-height: 1.6;
  margin: 8px 0 0 0;
  margin: 0.5rem 0 0 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media screen and (min-width: 1024px) {
  .news-page__item-text {
    margin-left: 2.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}

/* ページネーション */
.news-page__pagenavi {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .news-page__pagenavi {
    margin-top: 3.75rem;
  }
}
/* 投稿*/
.news-post-main {
  margin-top: 3.75rem;
}

.news-post__img {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .news-post__img {
    max-width: 90%;
  }
}

.news-post__body {
  margin-top: 1.6rem;
}

.news-posts-details time {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 0.5rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .news-posts-details time {
    margin: 5rem 0 0 0;
  }
}

.time-inline {
  padding: 0 2rem;
}

/* ==============================================
★投稿★h2~h6
=============================================== */
.news-post__details h2,
.news-post__details h3,
.news-post__details h4,
.news-post__details h5,
.news-post__details h6 {
  font-weight: 700;
  position: relative;
  padding: 0 0 0 1.6rem;
  margin: 2.4rem 0;
}
@media screen and (min-width: 768px) {
  .news-post__details h2,
.news-post__details h3,
.news-post__details h4,
.news-post__details h5,
.news-post__details h6 {
    padding: 0 0 0 2.5rem;
  }
}

.news-post__details h2::before,
.news-post__details h3::before,
.news-post__details h4::before,
.news-post__details h5::before,
.news-post__details h6::before {
  content: "";
  position: absolute;
  left: 0;
}

.news-post__details h2 {
  font-size: 1.8rem;
  line-height: 1.55;
  text-align: left;
}

.news-post__details h2::before {
  content: "";
  height: 80%;
  width: 4px;
  background: var(--accent-color);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.news-post__details h3 {
  font-size: 1.8rem;
  padding: 0;
  line-height: 1.6;
}

.news-post__details h3::before {
  bottom: -0.8rem;
  height: 2px;
  width: 100%;
  background: var(--accent-color);
}

.news-post__details h4 {
  line-height: 1.7;
  padding-left: 2.4rem;
}

.news-post__details h4::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
}

.news-post__details h5 {
  color: var(--accent-color);
  padding: 0;
  font-size: 1.8rem;
}
.news-post__details h6 {
  color: var(--accent-color);
  padding: 0;
  font-size: 1.6rem;
}

.news-post__details p {
  margin: 2.4rem 0 0 0;
}

/* ==============================================
ページ送り
=============================================== */
.news-post__pager {
  margin: 3.2rem 0 0 0;
}

.news-post__pager .news-post__pagination {
  font-weight: 700;
  line-height: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.news-post__pager .pre a,
.news-post__pager .next a {
  position: relative;
  display: block;
}

.pre a {
  padding: 0 0 0 1rem;
}

.news-post__pager .pre a::before,
.news-post__pager .next a::before {
  content: "";
  position: absolute;
  top: 28%;
  width: 0.6rem;
  height: 1.7rem;
}

.news-post__pager .next a {
  padding: 0 1rem 0 0;
}

.news-post__link-box {
  border: 1px solid var(--accent-color);
  padding: 0.8rem 1rem 1rem;
}

.news-post__link {
  display: block;
}

/* ==============================================
検索結果
=============================================== */
.news-search {
  padding-top: 2rem;
  border-top: 3px solid var(--news-list-color);
  margin-bottom: 2.4rem;
}

.search-field:focus {
  outline: none;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 5px rgba(113, 4, 23, 0.4);
}

.news-search__head {
  font-family: "Noto Serif JP", serif;
  margin-top: 0.8rem;
  color: var(--primary-inverse-color);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

h2.news-search__title {
  text-align: left;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.news-search__title span {
  color: var(--accent-color);
}

.news-search__title::before {
  color: var(--gray-color);
  content: "\f002";
  font-family: "Font Awesome 5 Free", sans-serif;
  font-size: 1.6rem;
  margin-right: 0.5rem;
}

/* カテゴリ-------------------- */
.post-category {
  margin-top: 1rem;
}

.post-category__nav {
  margin-top: 3.2rem;
}

.post-category__list {
  margin-top: 1rem;
}


.post-category__link {
  display: block;
  line-height: 1.8;
  margin-left: 1rem;
}

@media (any-hover: hover) {
  .post-category__link:hover {
    color: var(--accent-color);
  }
}

.post-category__link i {
  margin-right: 0.8rem;
}

/* ==============================================
検索窓
=============================================== */
.search-form {
  position: relative;
}

.search-field {
  padding: 1rem 2.4rem 1rem 1rem;
  width: 100%;
  background: #fff;
  border:none;
  border: 2px solid var(--news-list-color);
}

.search-submit {
  border: none;
  -webkit-transform: translateY(-50%);
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: var(--gray-color);
  font-size: 2.6rem;
  padding-top: 0.5rem;
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.side-box {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .side-box {
    margin-top: 0;
  }
}


.side-box__title {
  position: relative;
  font-size: 2rem;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
@media screen and (min-width: 768px) {
  .side-box__title {
    line-height: 1.35;
  }
}
.side-box__title::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: var(--primary-inverse-color);
  left: 0;
  bottom: -0.8rem;
}

.wp-pagenavi {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  padding: 0.3rem 0;
  text-decoration: none;
  border: 1px solid var(--primary-inverse-color);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.wp-pagenavi .current,
.wp-pagenavi .page {
  display: inline-block;
}

.wp-pagenavi a,
.wp-pagenavi span.current {
  width: min(100%, 2.4rem);
}

.wp-pagenavi a:first-child,
.wp-pagenavi a:last-child {
  letter-spacing: 0.125em;
  width: min(100%, 7.1rem);
}

.wp-pagenavi .page {
  margin-left: 1.2rem;
}

.wp-pagenavi span.current,
.wp-pagenavi a:last-child {
  margin-left: 2rem;
}

.wp-pagenavi a:hover {
  color: var(--primary-color);
}

@media screen and (min-width: 768px) {
  .wp-pagenavi a:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
  }
}

.wp-pagenavi span.current {
  color: var(--primary-color);
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.news-margin {
  margin-top: 3.2rem;
}
@media screen and (min-width: 768px) {
  .news-margin {
    margin-top: 5rem;
  }
}

.title-news::before {
  color: var(--news-list-color);
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .title-news::before {
    font-size: 2.5rem;
  }
}

.title-news span {
  position: relative;
  top: 0.4rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .title-news span {
    top: 0.5rem;
  }
}

.title-news::after {
  bottom: 1rem;
  width: 2.4rem;
}
@media screen and (min-width: 768px) {
  .title-news::after {
    bottom: 0.6rem;
  }
}
/* ==============================================
★追加★404
=============================================== */
.inner-404 {
  max-width: 700px;
  margin: 0 1.6rem;
  height: 60vh;
}

.btn-box-404 {
  margin-top: 4rem;
}




