@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: #454545;	/*上のprimary-colorの対となる色*/
	
	--secondary-color: #c9c9c9;			/*テンプレートのサブまたはアクセントカラー*/
	--secondary-inverse-color: #2b2b2b;	/*上のsecondary-colorの対となる色*/
	
	--accent-color: #ffffff;			/*アクセントカラー*/
	--accent-inverse-color: #313030;		/*アクセントカラーの対となる色*/
	
	--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,body {
	height: 100%;
	font-size: 13px;	/*基準となるフォントサイズ。*/
}

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

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

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


body {
	margin: 0;padding: 0;
	font-family: "Sawarabi Mincho", serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	line-height: 2;		/*行間*/
	background: #1c1714;	/*背景色*/
	color: var(--primary-inverse-color);	/*文字色。冒頭のprimary-inverse-colorを読み込みます。*/
	overflow-x: hidden;
}


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

img.logo{
	display: block;
	margin: 0 auto;
}

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

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

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

.line_box {
    width: 85%;
    margin: 0 auto;
    background-color: #00b900;
    border-radius: 10vw;
    text-align: center;
	padding: 10px 0;
	font-size: 18px;
}

img.title {
	margin:12px 0 ;
}

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

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


/*ctabox
---------------------------------------------------------------------------*/
.mv_ctabox {
    text-align: center;
}

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

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



header .contents a {color: inherit;}

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

.member-container {
    text-align: center;
}

/*追記*/
header .fv-container {
	flex: 1;
	background: rgba(0,0,0,0.7);	/*背景色。0,0,0は黒の事で0.7は色が70%出た状態。写真そのまま出したいならこの１行を削除。*/
	/*padding: 30px 20px 25px;*/		/*上、左右、下への余白*/
	position: relative;
	text-align: center;
}

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

/*謳い文句*/
header p {
	display: block;
	font-size: 1rem;	/*文字サイズ80%*/
}

/*ロゴ上の装飾画像（New Open）*/
header .kazari {
	position: absolute;
	left: 20%;		/*ロゴが入ったボックスに対して左からの配置指定*/
	top: -50px;		/*ロゴが入ったボックスに対して上からの配置指定。マイナスがつくので、ボックスから飛び出る形になります。*/
	width: 140px;	/*画像の幅*/
}

.sub_title {
    width: 85%;
    padding: 0.5vw 0;
    margin: 0vw auto 0;
    border: 1px solid;
    border-image: linear-gradient(90deg, #8c7537 0%, #dbb00b 45%, #fde79d 70%, #dbb10c 85%, #bc7f04 90% 100%) 1;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #8c7537 0%, #dbb00b 45%, #fde79d 70%, #dbb10c 85%, #bc7f04 90% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
}


/*ヘッダー下部の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: 0.85rem;	/*SCROLLのテキストのサイズ。85%*/
}

/*「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: 30px;					/*下に空けるスペース。メニュー同士の上下間の隙間。*/
		border-radius: 0px 100px 100px 0px;		/*角丸の指定。左上、右上、右下、左下への順。100pxの所はとりあえず大きな数字にしておけばOK。*/
		padding: 10px 30px 10px 20px;	/*ボタン内の余白。上、右、下、左への順番。*/
		font-size: 1.2rem;	/*文字サイズを120%に。*/
	}
	
	/*現在表示中のメニューの背景色と、マウスオン時共通*/
	#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: 1.35rem;	/*文字サイズ135%*/
	text-align: center;	/*テキストをセンタリング*/
}

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

/*h3見出し共通*/
.contents h3 {
	margin: 0;
	line-height: 1.8;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	font-size: 1.2rem;	/*文字サイズ120%*/
	text-align: center;	/*テキストをセンタリング*/
}

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

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


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

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




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

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

/*見出し左右の画像の共通設定
#kodawari h2::before,
#kodawari h2::after {
	content: "";
	position: absolute;
	width: 80px;	
	height: 140px;	
	top: -30px;		
	background: url("../images/kazari1.png") no-repeat center center / contain;	
}*/

/*左側の画像の追加設定
#kodawari h2::before {
	left: -40px;
}*/

/*右側の画像の追加設定
#kodawari h2::after {
	right: -40px;	
	transform: scale(-1, 1);	
}*/

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

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

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

img.next{
	margin:12px 0;
}

img.option01{
	margin: 0 auto;
	padding:12px;
}

/*サムネイルスライドショー
---------------------------------------------------------------------------*/
/*スライドショーブロック全てを囲むブロック*/
.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/naikan.webp') no-repeat center center / cover;	/*背景画像の読み込み*/
}

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

/*「所在地」などが記載されている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: 30px;	/*アイコンサイズ*/
}

/*フローティングバナー設定
---------------------------------------------------------------------------*/

.float-button__wrap {
    max-width: 540px;
    width: 95%;
    z-index: 10;
    left: 50%;
    transform: translate(-50%, 0%);
}

.float_flex {
    width: 100%;
    z-index: 10;
    margin: 0 auto;
}

.float-button_flex {
    display: flex;
}

.float_flex img {
    width: 100%;
}

p.point {
    margin: 8px;
}

/*おおきいカテゴリータイトル 20250905wrote*/
.brush-line-box {
  position: relative;
  padding: 30px 20px; /* 上下に余白を確保 */
  background-color: #fff;
  margin: 15px 0px 10px;
}

.brush-line-box::before,
.brush-line-box::after {
  content: "";
  position: absolute;
  left: 10px; /* 左右に少し余白 */
  width: calc(100% - 20px); /* 左右の余白分を引く */
  height: 8px;
  background: linear-gradient(to right, rgba(126, 123, 123, 0.8),rgba(78, 76, 75, 0.8), rgba(43, 41, 41, 0.8));
  /*background: linear-gradient(to right, rgba(176,46,38,0.8), rgba(176,46,38,0.5), rgba(176,46,38,0.8));*/
  border-radius: 2px;
}

.brush-line-box::before { top: 10px; }   /* 上線の内側位置 */
.brush-line-box::after { bottom: 10px; } /* 下線の内側位置 */

.capcate_title {
  /*background-image: url("../images/cathaikei.webp");  画像のパスを指定 */
  background-repeat: no-repeat;             /* 繰り返さない */
  background-size: cover;                   /* 親要素にフィットして切り抜き */
  background-position: center center;       /* 画像の中心を表示 */
  width: 100%;                              /* 横幅いっぱい */
  height: 120px;
  margin:12px 0;                        /* 高さ */

  display: flex;                            /* フレックスボックス */
  flex-direction: column;                   /* 子要素を縦並びにする */
  align-items: center;                      /* 縦方向の中央揃え */
  justify-content: center;                  /* 横方向の中央揃え */
  text-align: center;
}

.capcate_title h2 {
	line-height: 1.4;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0 2px;	/*上下、左右への余白*/
	font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;/*明朝に設定*/
	font-size: 2.2rem;	/*文字サイズ180%*/
	text-align: center;	/*テキストをセンタリング*/
	font-weight: bold; /* 太字指定 */

}
/* マーカー風 */
.capcate_title h2 .h2marker {
    background: linear-gradient(transparent 75%, rgba(255, 230, 0, 0.7) 0%);
    /* 75% まで透明にして、下 25% に色をつける */
}

.capcate_title p {
    font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;
    font-size: 1.7rem; /* h2 より一回り小さい */
	margin:0px 0; 
	padding: 10px 0;	/*上下、左右への余白*/
    text-align: center;
    line-height: 1.5;
}

/*カテゴリータイトル 20250828wrote*/
.cate_title {
  /*background-image: url("../images/titleback.webp"); /* 画像のパスを指定 */
  background-repeat: no-repeat;             /* 繰り返さない */
  background-size: cover;                   /* 親要素にフィットして切り抜き */
  background-position: center center;       /* 画像の中心を表示 */
  width: 100%;                              /* 横幅いっぱい */
  height: 100px;
  margin:20px 0 20px;                        /* 高さ */

  display: flex;                            /* フレックスボックス */
  flex-direction: column;                   /* 子要素を縦並びにする */
  align-items: center;                      /* 縦方向の中央揃え */
  justify-content: center;                  /* 横方向の中央揃え */
  text-align: center;
}

.cate_title h2 {
	line-height: 1.4;	/*行間をデフォルトより狭くする。２行になった場合に間があきすぎるので。*/
	padding: 20px 0 2px;	/*上下、左右への余白*/
	font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;/*明朝に設定*/
	font-size: 2.2rem;	/*文字サイズ180%*/
	text-align: center;	/*テキストをセンタリング*/
	font-weight: bold; /* 太字指定 */

}
/* マーカー風 */
.cate_title h2 .h2marker {
    background: linear-gradient(transparent 75%, rgba(255, 230, 0, 0.7) 0%);
    /* 75% まで透明にして、下 25% に色をつける */
}

/* 一回り小さいテキスト */
.cate_title p {
    font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;
    font-size: 1.7rem; /* h2 より一回り小さい */
	margin:0px 0; 
	padding: 10px 0;	/*上下、左右への余白*/
    text-align: center;
    line-height: 1.6;
}

/* マーカー風 */
.cate_title p .marker {
    /*background: linear-gradient(transparent 75%, rgba(255, 230, 0, 0.7) 0%);
     75% まで透明にして、下 25% に色をつける */
	background: linear-gradient(transparent 75%, rgb(219 177 12 / 67%) 0%);
}


        /* LINE Button */
        .line-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #06c755 0%, #00b04f 100%);
			height: 45px;
            color: white;
            padding:2px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(6, 199, 85, 0.4);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s ease 0.9s forwards;
        }
        
        .line-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(6, 199, 85, 0.6);
        }
        /*
        .line-button::before {
            content: '📱';
            margin-right: 10px;
            font-size: 1.5rem;
        }
		*/

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

/*ボックス内のh2*/
.title-bg h2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*縦並びにする指定*/
	align-items: center;	/*垂直揃えの指定。天地中央に配置されるように。*/
}

/*縦書きにする指定*/
.title-bg h2 .tate {
	font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;
	font-size: 1.35em;	/*文字サイズ。親要素の50%。*/
	writing-mode: vertical-rl;
	text-orientation: upright;
	margin-top: 30px;
}

/*横書きで使う際の指定。※縦書きを横書きにする為の指定ではないのでご注意下さい。*/
.title-bg h2 .yoko {
	font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;
	margin-top: 1rem;	/*上に空けるスペース*/
	font-size: 1.0em;	/*文字サイズ。親要素の50%。*/
	letter-spacing: 0.2em; /* 文字間を少し広げる */
}

/*横書きで使う際の指定。※少し小さい*/
.title-bg h2 .yokos {
	font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS Mincho", serif;
	margin-top: 2rem;	/*上に空けるスペース*/
	font-size: 0.6em;	/*文字サイズ。親要素の50%。*/
	letter-spacing: 0.15em; /* 文字間を少し広げる */
}

/*店主挨拶表示用*/
.tenshu-goaisatsu {
  /*font-family: "Hiragino Mincho ProN", "游明朝", "MS Mincho", serif;*/
  /*font-size: 16px;*/
  line-height: 2;
  letter-spacing: 0.05em;
  background: #faf9f5; /* 和紙風の淡い背景 */
  padding: 20px;
  border: 1px solid #ddd;
  max-width: 600px;
  margin: 20px auto;
}


/*コースメニュー表示用*/
.coursekaiseki-menu {
  font-family: "Hiragino Mincho ProN", "游明朝", "MS Mincho", serif;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
  background: #faf9f5; /* 和紙風の淡い背景 */
  padding: 20px;
  border: 1px solid #ddd;
  max-width: 600px;
  margin: 20px auto;
}

.coursemenu-item {
  display: flex;
  margin-bottom: 12px;
}

.coursemenu-title {
  font-weight: bold;
  width: 80px;       /* タイトル部分を揃える */
  color: #444;
}

.coursemenu-desc {
  flex: 1;
  color: #333;
}

.coursesub-desc {
  font-size: 0.8em;   /* 少し小さく */
  color: #868585ee;         /* トーンを落として控えめに */
  letter-spacing: 0.03em;
  line-height: 0.5; 
}

/*makuake表示*/
.teaser-section {
  width: 100%;
  max-width: 800px;
  margin: 15px auto;
  padding: 30px 20px;
  font-family: "Sawarabi Mincho", serif;
  color: #333;
  background-color: #fdfcfb; /* 和風の柔らかい背景色 */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.teaser-title {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #b02e26; /* 和風のアクセントカラー */
}

.benefits {
  display: grid;
  gap: 20px;
}

.benefit h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: #393939;
}

.benefit h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #473b3b;
  padding:0;
}

.benefit p {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #333;
}

.note {
  font-size: 0.9rem;
  text-align: center;
  margin-top: 30px;
  color: #666;
  line-height: 1.3;
}

.cut-photo {
  width: 100%; /* 横幅いっぱい */
  /*max-height: 200px;  高さ調整 */
  object-fit: cover; /* 写真を切り抜きつつトリミング */
  display: block;
  margin: 10px 0;

  /* 右上と左下を三角形にカット */
  clip-path: polygon(
    15% 0%,   /* 左上 → x=10%ずらす */
    100% 0%,
    100% 85%, /* 右下 → y=90%ずらす */
    85% 100%,
    0% 100%,
    0% 15%
  );
}
/*ここまでmakuake装飾*/

/* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

/*フッター設定（コピーライト部分）
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}
footer {
	font-size: 0.8rem;		/*文字サイズ80%*/
	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.2rem;		/*文字サイズ120%*/
	border-radius: 3px;		/*角を少しだけ丸く*/
}

/*右側の矢印アイコン設定*/
.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: 1rem 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: #5f5f5f;
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#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;	/*２本目は使わないので非表示にする*/
}

/*fvの設定 2025.08.28wrote start*/

/*fvの設定 2025.08.28wrote end*/

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.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 {display: inline-block;padding: 0px 10px;background: #000;border: 1px solid #fff;border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.color-check, .color-check a {color: var(--accent-color);}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !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;}

		header .contents {height: 900px;}
	}/*画面幅900px以上の追加指定ここまで*/
