@charset "utf-8";



/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

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


/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*inview.cssの読み込み
---------------------------------------------------------------------------*/
@import url("inview.css");



/*全体の設定
---------------------------------------------------------------------------*/
html,body {
	overflow-x: hidden;
	font-size: 14px;	/*基準となるフォントサイズ。下の方にある「画面幅800px以上」で基準を大きなサイズに変更しています。*/
}

body {
	font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif;	/*フォント種類*/
	-webkit-text-size-adjust: none;
	background: #fadadd;	/*背景色*/
	color: #c56b1c;	/*全体の文字色*/
	line-height: 2;		/*行間*/
}

/*マージンのリセット*/
figure {margin: 0;}
dd {margin: 0;}

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

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

/*section全般の設定*/
section + section {
	padding-top: 30px;	/*sectionの間に空けるスペース*/
}

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

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


/*opa1（透明から着色状態に）
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #fff;	/*文字色*/
    text-shadow: 1px 1px 2px #555;
}

a:hover {
	color: #eee;	/*マウスオン時の文字色*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	margin: 0 auto;
	max-width: 1400px;	/*最大幅。これ以上幅が広がらないように。*/
	padding: 0 10px;	/*上下、左右へのブロック内の余白*/
}

/*headerブロック（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*トップページの画像ロゴ(png画像)設定*/
.home header #logo {
	position:absolute;left: 15%;top: 20%;transform: translate(-50%, -50%);
	width: 300px;				/*ロゴ画像の幅*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 3S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;
}

/*ここからトップページの「思っていたより似合って・・の部分*/
@font-face {
  font-family: 'Hannari';
  src: url('fonts/hannari.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/* ────────────────
   トップページ：ヒーロー部分のキャッチコピー
────────────────── */
/* ────────────────
   トップページ：ヒーロー文字 左上寄せ
────────────────── */

.hero-copy {
    position: absolute;
    top: 18%;         /* 上からの距離（写真に合わせて調整可能） */
    left: 5%;         /* 左端の余白 */
    text-align: left; /* 左寄せ */
    color: #fff;
    z-index: 10;
    max-width: 500px; /* 読みやすくするため幅を制限 */
}


.hero-tagline {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.hero-title{
  display: flex;
  align-items: center;
  justify-content: flex-start;   /* 左寄せ。中央にしたいなら center */
  gap: 10px;

  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  /* width: 120%;  ← これは消す or 100%にする */
  width: 100%;

  font-family: "Hannari", "Hiragino Mincho ProN", serif;
  text-shadow:
    1px 1px 2px black,
    0 0 1em red,
    0 0 0.2em red;
  color: #fff;
}
/* H1 ロゴ＋タイトル横並び */
.hero-title-wrap{
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap; /* ←これが重要 */
}

/* ロゴサイズ */
.hero-logo{
  width: 36px;
  height: auto;
}

/* タイトル文字 */
.hero-title-text{
  line-height: 1.3;
}
.hero-title-wrap{
  align-items: flex-start;
}
.hero-sub {
    font-size: 1rem;
    margin-bottom: 5px;
}

.hero-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #b44;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}
.hero-btn:hover {
    background-color: #fff;
}

/* ここから追加 */
.hero-catch img {
    max-height: 70vh;      /* 大きさ（お好みで調整できます） */
    display: block;
    margin: 1.5rem auto 0; /* 上に少し余白＆中央寄せ */
}
/* まだ無ければどこか上の方に */
#mainimg {
	background: url("../images/1.jpg") center center / cover no-repeat;
    position: relative;
}

/* ▼ キャッチコピー画像（PC共通） ---------------------- */
.hero-catch {
    position: absolute;
    right: 1.5rem;   /* PC 用の位置 */
    bottom: 6rem;
}

.hero-catch img {
    height: 70vh;    /* 大きさ。大きければ 60vh 小さければ 80vh などに調整 */
    display: block;
    margin: 0;
}

/* ▼ スマホ用（画面幅 768px 以下のときだけ上書き） ----- */
@media screen and (max-width: 768px) {
    .hero-catch {
        right: 0.1rem;  /* 数字を小さく → さらに右端に寄る */
        bottom: 18rem;   /* 必要なら少し下げる・上げる */
    }

    .hero-catch img {
        height: 48vh;   /* スマホで少しだけ小さめにしたい場合 */
    }
}


 

@keyframes fadeIn {
to {
opacity: 1;
transform: translateY(0);
}
}
/*ここまで*/

/*トップページの画像ロゴ(png画像)を、デフォルトでは非表示にする
.home header #logo {
	display: none;
}*/

/*ロゴアニメーションを使わない場合の設定*/
.home header #logo {display: block;}
.home svg {display: none;}

/*トップページ以外のロゴ画像の幅*/
header #logo {
	width: 150px;
}

/*mainブロック
---------------------------------------------------------------------------*/
main {
	margin-bottom: 100px;	/*下に空けるスペース*/
}

/*ブロック内のh2タグ*/
main h2 {
	opacity: 0;							/*透明度。0は色が出ていない(0%)状態の事。*/
	text-align: center;					/*文字をセンタリング*/
	font-family: 'Tangerine', cursive, "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, Osaka;
	font-weight: normal;				/*hタグはデフォルトで太字なので、これを標準にする*/
	font-size: 2rem;					/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin-bottom: 80px;				/*下に空けるスペース*/
}
main h2 {
    position: relative;
    padding: 0.5rem 0;
    font-size: 26px;
    font-weight: bold;
    color: #fff;
}


main h2:before {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 10px;
}    
/*ブロック内のh2タグ内のspanタグ（日本語の小さい説明用部分）*/
main h2 span {
	display: block;	
	font-size: 0.7rem;			/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	letter-spacing: 0.2em;		/*文字間隔を少し広くとる指定*/
}

/*spanタグの前に「〜」を出力する指定*/
main h2 span::before {
	content: "〜";
	padding-right: 10px;
}

/*spanタグの後に「〜」を出力する指定*/
main h2 span::after {
	content: "〜";
	padding-left: 10px;
}

/*ブロック内のh3タグ*/
main h3 {
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*文字をセンタリング*/
	font-size: 1.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	margin: 50px 0;			/*上下、左右へとる余白*/
}

/*mainブロックのpタグ*/
main p {
	margin: 0 5px 30px;	/*上、左右、下へ空けるスペース*/
}
main p.about-img{
	text-align: center;
}
main p.about-img img{
	width:50%;
}
/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: fixed;z-index: 100;
	top: 20px;		/*上からの配置場所*/
	right: 20px;	/*左からの配置場所*/
	width: 50px;	/*幅*/
	height: 50px;	/*高さ*/
	cursor: pointer;
	background: rgba(0,0,0,0.6) url(../images/icon_menu.png) no-repeat center top/50px;	/*背景色、背景画像の読み込み、画像の上半分（３本マーク）を表示。幅は50px。*/
}

/*×印が出ている状態の設定。*/
#menubar_hdr.close {
	background: #ff0000 url(../images/icon_menu.png) no-repeat center bottom/50px;	/*背景色、背景画像の読み込み、画像の下半分（×マーク）を表示。幅は50px。*/
}

/*メニューの設定
---------------------------------------------------------------------------*/
#menubar ul {list-style: none;}

/*ボックス全体の設定*/
#menubar {
	display: none;				/*デフォルトで非表示にしておく*/
	animation-name: opa1;		/*@keyframesの指定*/
	animation-duration: 1S;		/*アニメーションの実行時間*/
	animation-fill-mode: both;	/*アニメーションの待機中は最初のキーフレームを維持、終了後は最後のキーフレームを維持。*/
	position: fixed;overflow: auto;z-index: 99;	/*fixedはスクロールしても動かない為の指定*/
	left: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 50px;		/*ボックス内の余白*/
	text-align: center;	/*テキストをセンタリング*/
	background: rgba(0,0,0,0.8);	/*背景色*/
	font-size: 1.2rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*メニュー１個あたりの設定*/
#menubar li {
	margin-bottom: 20px;	/*下に空けるスペース*/
}

#menubar a {
	display: block;text-decoration: none;
	text-align: center;	/*テキストをセンタリング*/
	background: #fff;	/*背景色*/
	color: #000;		/*文字色*/
	border-radius: 5px;	/*角丸の指定*/
	box-shadow: 0px 0px 50px 10px rgba(255,255,255,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	padding: 5px;	/*余白*/
}

/*メニュー内のspanタグ（小さい日本語部分）*/
#menubar span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer small {font-size: 100%;}

footer {
	font-size: 0.6rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	text-align: center;		/*内容をセンタリング*/
	padding: 20px;			/*ボックス内の余白*/
}

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

/*著作部分*/
footer .pr {display: block;}

/*フッターにあるアイコン類
---------------------------------------------------------------------------*/
/*アイコン類を囲むブロック*/
ul.icon {
	list-style: none;
	margin: 0;padding: 0;
	margin-bottom: 30px;	/*下に空けるスペース*/
}

/*アイコン１個あたりの設定*/
ul.icon li {
	display: inline-block;	/*リストタグを横並びにさせる指定*/
}

/*アイコン画像の設定*/
ul.icon img {
	width: 30px;	/*アイコン画像の幅*/
}

/*画像のマウスオン時*/
ul.icon img:hover {
	opacity: 0.8;	/*透明度。0.8は色が80%出た状態の事。*/
}

/*トップページの「Photo's（お料理の写真）」の横スライドショーコーナー（slickを使用）
---------------------------------------------------------------------------*/
/*スライドショー全体を囲むボックス*/
.pickup {
	position: relative;
	display: flex;			/*flexボックスを使う指定*/
}

/*１個あたりのボックス*/
.pickup .slick-slide {
	margin: 5px !important;
	width: auto;
}

/*ボックス内の画像*/
.pickup .list img {
	object-fit: cover;	/*トリミングのタイプ*/
	width: 100%;		/*画像の幅*/
	font-family: 'object-fit: cover;';	/*IE対策*/
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
#new {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*日付(dt)、記事(dd)共通設定*/
#new dt,
#new dd {
	border-bottom: 1px solid rgba(255,255,255,0.2);	/*下線の幅、線種、色。255,255,255,は白の事で0.2は色が20%出た状態の事。*/
	padding: 5px 0;					/*上下、左右へのボックス内の余白*/
}

/*日付(dt)設定*/
#new dt {
	width: 8em;	/*幅。8文字(em)分。*/
}

/*記事(dd)設定*/
#new dd {
	width: calc(100% - 8em);	/*「8em」は上の「#new dt」のwidthの値です。*/
}

/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*listボックスを囲むボックス*/
/* 親コンテナ */
.list-container {
  display: flex;
  flex-wrap: wrap;             /* 折り返し */
  
    padding: 0 5px;		/*上下、左右へのボックス内の余白*/
}

/*１個あたりのボックス*/
.list {
	width: 49%;				/*ボックスの幅*/
	margin-right: 2%;		/*ボックス同士の左右間の余白。ボックスを２列並べるので、49%×2個=98%。100%との差の2%がここに入ります。*/
	margin-bottom: 15px;	/*ボックス同士の上下間の余白*/
	text-align: center;		/*テキストをセンタリング*/
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
    text-shadow: 1px 1px 2px black;
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*ボックス内のh4タグ。メニュータイトルを入力しているスペースです。*/
.list h4 {
	margin: 10px 0 0;		/*上、左右、下に空けるスペース*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
}

/*ボックス内のpタグ。価格を入力しているスペースです。*/
.list p {
	margin: 0!important;	/*「main p」のマージンをリセットする*/
}


/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	display: flex;			/*flexボックスを使う指定*/
	flex-direction: column;	/*子要素を縦並びにする*/
	align-items: center;	/*垂直揃えの指定。上下中央に配置されるように。*/
	justify-content: space-between;	/*並びかたの種類の指定*/
	margin-bottom: 40px;	/*下に空けるスペース*/
}

/*list2ブロック内のh4タグ*/
.list2 h4 {
	margin: 0;
	font-size: 1.2rem;		/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	font-weight: normal;	/*hタグはデフォルトで太字なので、これを標準にする*/
	text-align: center;		/*テキストをセンタリング*/
}

/*写真下の小さなテキスト*/
.list2 figcaption {
	margin-top: 20px;	/*写真とテキストとの間に空けるスペース*/
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 90%;				/*幅*/
	text-align: center;		/*テキストをセンタリング*/
}

/*料理写真*/
.list2 figure img {
	padding: 10px;		/*写真の周りに少し余白を作って、より写真っぽく見せる*/
	background: #fff;	/*上の10pxとの間に出る色*/
	box-shadow: 0px 0px 50px 10px rgba(255,255,255,0.4);	/*ボックスの影。右へ、下へ、ぼかし幅、範囲。255,255,255は白の事で0.4は色が40%出た状態の事。*/
	transform: rotate(-2deg);	/*左に少しだけ回転させる指定。回転させたくなければこの１行と、下の「.list2:nth-of-type(even) img」のブロックを削除。*/
}

/*偶数番目のimg画像*/
.list2:nth-of-type(even) img {
	transform: rotate(2deg);	/*回転を上と逆向きに。*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 100%;	/*幅*/
}

/*list2内のリストタグ*/
.list2 li {
	margin-bottom: 10px;	/*上下間にとるスペース*/
}

/*list2内のリストタグ内のspanタグ。文字サイズの小さい説明テキスト部分です。*/
.list2 li span {
	display: block;
	font-size: 0.7rem;	/*文字サイズ。remの単位についてはテンプレート内の解説をお読み下さい。*/
	opacity: 0.7;		/*透明度。0.7は色が70%出た状態の事。*/
}

/*menu.htmlのテキストメニュー設定
---------------------------------------------------------------------------*/
/*テキストメニュー全体を囲むブロック*/
.textmenu {
	display: flex;		/*flexボックスを使う指定*/
	flex-wrap: wrap;	/*折り返す指定*/
	border-top: 1px solid rgba(255,255,255,0.5);	/*上の線の幅、線種、色。255,255,255は白の事で、0.5は色が50%出た状態。*/
	margin-bottom: 50px;	/*下に空けるスペース*/
}

/*偶数番目の行の色を変更する*/
.textmenu dt:nth-of-type(odd), .textmenu dd:nth-of-type(odd) {
	background: rgba(255,255,255,0.05);	/*背景色。255,255,255は白の事で0.05は色が5%出た状態。*/
}

/*メニュータイトル*/
.textmenu dt {
	width: calc(100% - 10em);		/*「10em」は下の「.textmenu dd」のwidthの値を入れて下さい。*/
	padding: 10px 0px 10px 20px;	/*上、右、下、左への余白*/
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*下線の幅、線種、色。*/
}

/*価格*/
.textmenu dd {
	width: 10em;		/*ここを変更する場合は、上の「.textmenu dt」のwidthも変更して下さい。*/
	text-align: right;	/*価格なので、テキストを右寄せで揃えて見やすくしておく。*/
	padding: 10px 20px 10px 0px;	/*上、右、下、左への余白*/
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*下線の幅、線種、色。*/
}

/*トップページのスライドショー（vegasを使用）
---------------------------------------------------------------------------*/
#mainimg {
	background: url("../images/1.jpg") center center / cover no-repeat;
    width: 100vw;
    height: 100vh;
}


/*SVGロゴ設定*/
#svg-logo {
	position: absolute;left: 20%;top: 10%;transform: translate(-50%, -50%);
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-miterlimit: 10;
	width: 300px;		/*幅*/
    stroke: #fff;		/*ここはこのままで変更しない（文字色の指定ではありません）*/
    stroke-width: 12;	/*ロゴをなぞった際の線の太さを指定して下さい。*/
}

/*スクロールを促すアイコン*/
.scroll {
	position: absolute;left: 50%;bottom: 20px;transform: translateX(-50%);
	width: 30px;	/*画像の幅*/
	opacity: 0.7;	/*透明度。0.7は色が70%出た状態の事。*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	border-top: 1px solid rgba(255,255,255,0.5);	/*上の枠線の幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	font-weight: bold;								/*太字に*/
	padding: 10px 5px;								/*上下、左右へのボックス内の余白。基本的に数行下の「.ta1 th, .ta1 td」のpaddingと揃えておけばOKです。*/
	background: rgba(255,255,255,0.05);				/*背景色。255,255,255は白の事で0.05は色が5%出た状態。*/
}

/*ta1テーブルブロック設定*/
.ta1 {
	border-top: 1px solid rgba(255,255,255,0.5);	/*テーブルの一番上の線。幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
	table-layout: fixed;
	width: calc(100% - 10px);	/*テーブルの両サイドに合計10px（左右各5pxずつ）の余白を作った残りを幅にします*/
	margin: 0 auto 30px;		/*最後の「30px」がテーブルの下に空けるスペースです*/
}

/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid rgba(255,255,255,0.5);	/*テーブルの下線。幅、線種、色。255,255,255は白の事で0.5は色が50%出た状態。*/
}

/*th（左側）、td（右側）の共通設定*/
.ta1 th, .ta1 td {
	padding: 10px 5px;		/*上下、左右へのボックス内の余白*。基本的に数行上の「.ta1 caption」のpaddingと揃えておけばOKです。*/
	word-break: break-all;	/*英語などのテキストを改行で自動的に折り返す設定。これがないと、テーブルを突き抜けて表示される場合があります。*/
    text-align: left;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;				/*幅*/
	text-align: left;		/*左よせにする*/
	font-weight: normal;	/*デフォルトの太字を標準にする*/
}

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

.pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	position: fixed;
	right: 30px;		/*右からの配置場所指定*/
	bottom: 30px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	background: rgba(0,0,0,0.4);	/*背景色。0,0,0は黒色の指定で0.4は色が40%出た状態。*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
}

/*マウスオン時*/
.pagetop a:hover {
	background: rgba(0,0,0,0.8);	/*背景色。0,0,0は黒色の指定で0.8は色が80%出た状態。*/
}

/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-theme, .color-theme a {color: #E8B4B4 !important;}
.color-check, .color-check a {color: #f00 !important;}
.c {text-align: center !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.large {font-size: 2rem;}
.mb30 {margin-bottom: 30px !important;}
.look {display: inline-block;border: 1px solid #ccc;padding: 5px 20px;background: rgba(0,0,0,0.03);border-radius: 5px;margin: 5px 0;}
.ofx {overflow-x: hidden;}



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


/*全体の設定
---------------------------------------------------------------------------*/
html, body {
	font-size: 18px;	/*基準となるフォントサイズの上書き*/
}

/*section全般の設定*/
section + section {
	padding-top: 50px;	/*sectionの間に空けるスペース*/
}

/*container。サイト全体を囲むブロック。
---------------------------------------------------------------------------*/
#container {
	padding: 0 50px;	/*上下、左右へのブロック内の余白*/
}

/*menu.htmlの画像配置のコンパクトメニュー部分
---------------------------------------------------------------------------*/
/*１個あたりのボックス*/
.list {
	width: 23%;				/*ボックスの幅*/
	margin-right: 2.66%;	/*ボックス同士の左右間の余白。ボックスを4列並べるので、23%×4個=92%。100%との差の8%分をボックス間にある余白3個分で割った数字がここに入ります。※下の「.list:nth-of-type(2n)」の数字と合わせる。*/
	margin-bottom: 25px;	/*ボックス同士の上下間の余白*/
}

/*2の倍数(偶数番目)のボックスへの追加指定*/
.list:nth-of-type(2n) {
	margin-right: 2.66%;	/*上のlistのmargin-rightと数字を合わせる。小さな端末向けで0になっているのを上書きしています。*/
}

/*4の倍数のボックスへの追加指定*/
.list:nth-of-type(4n) {
	margin-right: 0;	/*右側のスペースをなくす設定*/
}

/*トップページの「今週のランチ」ブロック
---------------------------------------------------------------------------*/
/*写真とメニュー解説テキストを囲むブロック*/
.list2 {
	flex-direction: row;	/*子要素を横並びにする*/
	margin-bottom: 100px;	/*下に空けるスペース*/
}

/*偶数番目のlist2ブロック*/
.list2:nth-of-type(even) {
	flex-direction: row-reverse;	/*配置を左右逆にする*/
}

/*list2ブロック内のfigureタグ。写真を囲むブロック。*/
.list2 figure {
	width: 48%;	/*幅*/
}

/*list2内のtextブロック*/
.list2 .text {
	width: 48%;	/*幅*/
}

/*テーブル
---------------------------------------------------------------------------*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	padding: 20px 15px;		/*上下、左右へのボックス内の余白*/
}


/*その他
---------------------------------------------------------------------------*/
.ws {width: 45%; display: inline-block;}

/* About のキャッチコピー（太夫体験の見出し）*/
.lead-catch{
  text-align: center;
  color: #ffffff;
  font-weight: 400;
  font-size: clamp(18px, 3.8vw, 28px);
  line-height: 1.9;
  letter-spacing: .10em;
  margin: 25px auto 20px;
  max-width: 24em;
  text-wrap: balance;
}
.lead-catch span::before{
  content: "〜";
  padding-right: .5em;
}
.lead-catch span::after{
  content: "〜";
  padding-left: .5em;
}



/*　※注意！　下の閉じカッコ　}　は800px以上の設定に必要なので、うっかり削除しないように。　*/

}

/*---------------------------------------------------------------------------
ここから下は画面幅799px以下の追加指定
---------------------------------------------------------------------------*/

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

  .hero-copy{
    position: absolute;
    left: 14px !important;
    top: auto !important;
    bottom: 6px !important;
    transform: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 2;
  }

  /* 京都・島原の本格花魁体験だけ下げる */
  .hero-tagline{
    position: relative;
    top: 20px !important;  /* 数字で微調整 */
  }

  .hero-tagline,
  .hero-title,
  .hero-sub{
    max-width: 100%;
  }

  .hero-btn{
    align-self: flex-start;
  }

} /* ← このカッコで @media を閉じる（最後に1回だけ） */


  .hero-btn {
    align-self: flex-start;      /* ボタンも左揃え */
  }

  /* ここから下は元の .home header #logo など */
  .home header #logo {
    position: absolute;
    left: 25%;
    top: 10%;
    transform: translate(-50%, -50%);
    width: 150px;
    animation-name: opal;
    animation-duration: 3s;
    animation-fill-mode: both;
  }
}  /* ← このカッコで @media を閉じます */


/* ==== プラン一覧 ==== */

/* ===== プラン一覧用 ===== */

/* プランカード内の文字色を見やすくする */
.plan-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 0.2rem 0.8rem 1rem;   /* ← ここを小さくする */
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* スマホ幅のときは、プランカードの余白を少し小さくする */
@media screen and (max-width: 799px) {
  .plan-card {
    padding: 0.2rem 0.8rem 1rem;      /* 上下の余白をぐっと少なめに */
  }

  .plan-header {
    margin-bottom: 0.4rem;     /* タイトルまわりの余白も少し縮める */
  }

  .plan-price {
    margin: 0.4rem 0;          /* 料金の上下の空きを減らす */
  }

  .plan-detail {
    margin-bottom: 0.4rem;     /* 箇条書きと下の説明文の間 */
  }

  .plan-detail li {
    margin-bottom: 0.15rem;    /* 箇条書き同士の間も少しだけ狭く */
  }

  .plan-note {
    margin-top: 0.4rem;        /* 一番下の説明文の上の余白 */
  }
}

/* 箇条書きや説明文も同じ色で */
.plan-detail li,
.plan-note,
.plan-option-list dt,
.plan-option-list dd,
.plan_attention {
  color: #5b2836;
}


/* 真ん中のおすすめプランを少しだけ強調 */
.plan-card--recommend {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.plan-name {
  font-size: 1.25rem;
    margin-top:5px;
  margin-bottom: 0.2rem;
}

.plan-tag {
  font-size: 0.85rem;
    color:#db7093;
}

.plan-tag--no1 {
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.plan-price {
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  color:#db7093;
    text-align: center;
}

.plan-price span {
  font-size: 1.7rem;
}

.plan-detail {
  margin: 0 0 0.8rem;
  padding-left: 1.2rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.plan-detail li + li {
  margin-top: 0.2rem;
}

.plan-note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* 画像エリア */
.plan-image {
  margin-top: 1rem;
}

.plan-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

/* オプション部分 */
.plan-option-list {
  margin: 0;
}

.plan-option-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  margin-top: 0.3rem;
}

.plan-option-row dt,
.plan-option-row dd {
  margin: 0;
}

.plan-attention {
  font-size: 0.8rem;
  margin-top: 2rem;
  line-height: 1.6;
}

/* PCではカードを3枚横並び＆オプションは1列 */
@media (min-width: 900px) {
  .plan-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .plan-card {
    flex: 1 1 calc(33.333% - 1.5rem);
  }

  .plan-card.plan-card--option {
    flex: 1 1 100%;
  }
}



@media (min-width: 960px) {

  .plan-card-inner {
    flex-direction: row;
  }

  .plan-text {
    flex: 1 0 55%;
  }

  .plan-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
  }
}

/* （既存のCSSがずっと続いている） */


/* --- ここから下に私が作ったCSSを追加 --- */

/* ===== トップページ共通 ===== */
.top-section {
  padding: 4rem 0 3.5rem;
}

.top-heading {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.top-lead {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2.2rem;
}

/* …（中略：私がお渡ししたCSS全部）… */

@media (min-width: 900px) {
  .top-plan-list {
    flex-direction: row;
  }
  .flow-list {
    flex-direction: row;
  }
  .faq-columns {
    flex-direction: row;
  }
}
/* プラン・流れ・安心セクションをやわらかいカード風に */
.top-plans .inner,
.top-flow .inner,
.top-faq .inner {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 2.4rem 1.6rem 2.6rem;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
/* 見出しをちょっとだけ可愛く */
.top-heading {
  position: relative;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
    color: #fcb3b7;
}

.top-heading::before,
.top-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
}

.top-heading::before {
  left: 0;
    content: '';
    background: #fff;/*背景色*/
    width: calc(100% + 3px);
    height: calc(100% + 3px);
    position: absolute;
    top: 0px;
    left: 6px;
    z-index: -1;
    transform: rotate(1.5deg);/*背景影部の回転*/
}

.top-heading::after {
  right: 0;
    content: '';
    
    border: 3px solid #faa7a7;/*背景白部の囲み線（太さ 実線 色*/
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: -5px;
    z-index: -1;
    transform: rotate(-.5deg);/*背景白部の回転*/
}
/* 流れの数字の1.1/2.2を消して、カード風に */
.flow-list {
  list-style: none !important;
  padding-left: 0;
}

/* 1ステップごとをカードっぽく */
.flow-item {
  background: rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 1.1rem 1rem 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

/* 丸い番号をちょっと可愛く */
.flow-step {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: #fff;
  color: #c05a6c;
  border: none;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

.flow-title {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.flow-text {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* PCでは縦カード4つを横並びに */
@media (min-width: 900px) {
  .flow-list {
    flex-direction: row;
  }

  .flow-item {
    flex-direction: column;
  }
}
/* よくあるご不安 / 花姿からのお約束 の箱をふんわり */
.faq-col {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.4rem 1.2rem;
}

/* 箇条書きを少しだけ見やすく */
.faq-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

.faq-note {
  font-size: 0.85rem;
  margin-top: 0.8rem;
  line-height: 1.8;
}
/* ===== プラン用イラスト ===== */

.top-plan-illust {
  text-align: center;
  margin-bottom: 0.6rem;
}

.top-plan-illust img {
  width: 200px;
  max-width: 55%;
  height: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.3rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ===== 初めての方へイラスト ===== */

.top-faq .inner {
  position: relative;
}

.faq-illust {
  margin-top: 1.8rem;
  text-align: center;
}

.faq-illust img {
  width: 400px;
  max-width: 45%;
  height: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.16);
}

/* PCでは右下にちょこんと配置 */
@media (min-width: 900px) {
  .faq-illust {
    position: absolute;
    right: 1.5rem;
    bottom: -1.8rem;
    margin-top: 0;
  }
}
text-shadow: 0 0 10px rgba(0,0,0,0.4);
.about {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.about-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.about-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a65b6f; /* 和色系ピンク */
}

.about-hero p {
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.about-image img {
  width: 100%;
  border-radius: 6px;
}

.about-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: #a65b6f;
}

.about-text p {
  line-height: 1.8;
}

.about-info {
  margin-top: 3rem;
  text-align: center;
}

.about-info h2,
.about-plans h2 {
  color: #a65b6f;
  margin-bottom: 0.8rem;
}

.about-plans {
  margin-top: 3.5rem;
  text-align: center;
}

.about-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: #a65b6f;
  color: white;
  text-decoration: none;
  border-radius: 4px;
}

@media (min-width: 768px) {
  .about-block {
    flex-direction: row;
    align-items: center;
  }

  .about-image,
  .about-text {
    flex: 1;
  }
}
.menu {
  max-width: 960px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.menu-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.menu-hero h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #a65b6f;
}

.plan-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 0.4rem 0.9rem 1.0rem;  /* ← 上だけグッと少なく、左右も少しだけ細く */
  border: 1px solid rgba(255, 255, 255, 0.5);
  max-width: 100%;
  margin: 0 0.6rem 1.4rem;        /* ← カードの上下のスキマも少し詰める */
}

.plan-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 0.3rem;   /* ← 0.8rem などになっていたら 0.3rem に */
}


.plan-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.plan-name {
  font-size: 1.4rem;
  color: #a65b6f;
}

.plan-price span {
  font-size: 1.8rem;
  font-weight: bold;
}

.plan-detail {
  margin: 1rem 0;
  padding-left: 1.2rem;
}

.plan-detail li {
  line-height: 1.6;     /* 1.8 くらいになっていたら少しだけ詰める */
}

.plan-note {
  margin-top: 1rem;
  line-height: 1.8;
}

.plan-card--recommend {
  border: 2px solid #a65b6f;
}

}


/* スマホだけ：花姿(h1)と最初のhero-subの間を詰める */
@media screen and (max-width: 799px) {

  /* h1の下余白を減らす（ここが効きやすい） */
  .hero-title{
    margin-bottom: 0px !important;
  }

  /* 「花姿の直後にある .hero-sub」だけ上余白を減らす */
  .hero-title + .hero-sub{
    margin-top: -2px !important;
  }

}

@media screen and (max-width: 799px) {
  .hero-title{ margin: 0 0 2px 0 !important; }
  .hero-title + .hero-sub{ margin: 0 0 6px 0 !important; }
}
/* ========= ファーストビュー最終調整（スマホ） ========= */
@media screen and (max-width: 799px) {

  /* 全体の塊を少しだけ読みやすく（左寄せ維持） */
  .hero-copy{
    gap: 0px; /* flexの隙間がある場合に備えて */
  }

  /* ①タグライン：主役の前の“前置き”なので小さめ＆余白で区切る */
  .hero-tagline{
    font-size: 14px !important;
    letter-spacing: .04em !important;
    margin-bottom: 20px !important;   /* ←ここは既に作った余白 */
    opacity: .95;
  }

  /* ②主役：花姿（タイトル）を少しだけ強く・詰める */
  .hero-title{
    line-height: 1.15 !important;
    margin-bottom: 4px !important;    /* ←ここは先ほどの“詰め” */
  }

  /* ③条件：タイトル直後に近く置き、読みやすく */
  .hero-title + .hero-sub{
    margin-top: 0px !important;
    font-size: 13.5px !important;
    letter-spacing: .03em !important;
    opacity: .95;
  }

  /* ④説明文：長いので行間を少し広げてストレスを減らす */
  .hero-sub + .hero-sub{
    line-height: 1.7 !important;
    margin-top: 10px !important;
    max-width: 92% !important;  /* 端ギリギリを避ける */
  }

  /* ⑤CTAボタン：説明文の直後に“少し余白”を入れて押しやすく */
  .hero-btn{
    margin-top: 14px !important;
    padding: 12px 18px !important;
  }

}

.hero-copy .hero-sub:last-of-type{
  display: inline-block;
  padding: .25em .55em;
  border-radius: 10px;
  background: rgba(0,0,0,.35);
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.hero-logo{
  width: 150px;
  height: auto;
  display: block;
}
@media (max-width: 480px){
  .hero-logo{ width: 70px; }
}

/* ▼スマホ用：プランカードをコンパクト＆横書きに統一 ------- */
@media screen and (max-width: 799px) {

  /* カード全体の余白を少し小さくする */
  .plan-card {
    padding: 1rem 1rem 1.4rem;
  }

  /* 中身のテキスト部分 */
  .plan-text {
    margin-bottom: 0.8rem;
  }

  /* プラン名・説明などは全部 “横書き” に強制 */
  .plan-name,
  .plan-tag,
  .plan-price,
  .plan-detail,
  .plan-note {
    writing-mode: horizontal-tb !important;
  }

  /* 写真の上の余白も少しだけに */
  .plan-image {
    margin-top: 0.8rem;
      width:100%;
  }
}

