@charset "utf-8";


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

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

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

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


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

	--primary-color: #fff;				/*主にテンプレートの背景色*/
	--primary-inverse-color: #444;		/*primary-colorの対として使う色*/
	
	--accent-color: #164A84;			/*テンプレートのアクセントとなる色*/
	--accent-inverse-color: #fff;		/*accent-colorの対として使う色*/

	--accent-color-rgb: 123,93,139;		/*accent-colorをrgb数値にしたもの。個別に透明度を調整して使い回す為のものです。*/

	--global-space: 10vw;				/*サイト内の余白の一括管理用。画面幅100%＝100vwです。*/
}


/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}


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


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

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

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

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

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


body {
	margin: 0;padding:0;
	font-family: "Shippori Mincho", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;	/*フォント種類*/
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	-webkit-text-size-adjust: none;
	background: var(--primary-color);		/*背景色。css冒頭のprimary-colorを読み込みます。*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭のprimary-inverse-colorを読み込みます。*/
	line-height: 2;					/*行間*/
	animation: opa1 0.2s 0.5s both;	/*0.5秒待機後、0.2秒かけてフェードイン表示*/
}

/*トップページの背景画像*/
body.home {
	background-image: url("../images/top_img01.jpg");	/*背景画像の読み込み*/
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100%;
}

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

/*ul,ol*/
ul,ol {margin-left: 1.5rem;margin-bottom: 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%;}

/*sectionが続く場合*/
section + section {
	margin-top: 8vw;	/*sectionの上に空けるスペース*/
}


/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: var(--primary-inverse-color);		/*リンクテキストの色。css冒頭のprimary-inverse-colorを読み込みます。*/
	transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.3秒。*/
}
a:hover {
	opacity: 0.8;	/*マウスオン時に色を80%にする*/
}


/*container（headerとcontentsを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	padding: var(--global-space);	/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます*/
}


/*ヘッダー
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
    margin-bottom: var(--global-space);	/*ボックス内の下（外側）へとる余白。css冒頭のglobal-spaceを読み込みます*/
	text-align: center;	/*テキストをセンタリング*/
}

/*ロゴ初期設定*/
#logo {margin: 0;padding: 0;}

/*トップページの縦書きロゴ*/
.home #logo img {
    width: 65px;	/*幅*/
}

/*トップページのロゴ（英語ページ用）*/
.home.en #logo img {
    width: 200px;	/*幅*/
}

/*トップページ以外のロゴ*/
#logo img {
	width: 200px;	/*幅*/
}

/*英語ページのロゴ下の小さなテキスト*/
#logo .small {
	display: block;
	font-size: 0.8rem;	/*文字サイズを80%*/
}

/*メッセージテキスト*/
header .message {
	margin: 5vw auto;	/*上下、左右へ、ボックスの外側にとるスペース*/
}



@charset "utf-8";

/* 以下の読み込み・フォントなどの記述は省略せず元の内容のまま保持 */
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.css");
@import url("inview.css");

/* 変数定義はそのまま */
:root {
  --primary-color: #fff;
  --primary-inverse-color: #444;
  --accent-color: #164A84;
  --accent-inverse-color: #fff;
  --accent-color-rgb: 123,93,139;
  --global-space: 10vw;
}

/* bodyの背景画像設定は残す */
body.home {
  background-image: url("../images/bg1.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
}

/* 以下、mainimg部分の修正 */
#mainimg {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  margin: 2vw 0;
  box-shadow: 0 5vw rgba(0, 0, 0, 0.05);
  z-index: 1; /* 背景として扱うため */
}

#mainimg video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  display: none;
}

/* PC用動画表示 */
#mainimg video.pc-video {
  display: block;
}

/* スマホ用動画はデフォルト非表示 */
#mainimg video.sp-video {
  display: none;
}

/* 画面幅899px以下：スマホ表示時に動画切り替え */
@media screen and (max-width: 899px) {
  #mainimg {
    aspect-ratio: 16 / 9;
  }

  #mainimg video.pc-video {
    display: none;
  }

  #mainimg video.sp-video {
    display: block;
  }
}

/* mainimgの後に出てくる画像や要素を上に表示させるため z-index調整 */
header .message,
#logo,
header .lang {
  position: relative;
  z-index: 2;
}




/* お問い合わせを固定して常に上に表示 */
header .lang {
  position: fixed;
  top: 10px;
  right: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
  z-index: 999;
}

header .lang li a {
  line-height: 1.2;
  padding: 4px 8px;
  display: inline-block;
  background: #164A84;     /* 背景色指定 */
  color: #fff;             /* 文字色は白で視認性UP */
  text-decoration: none;   /* 下線なし */
  text-align: center;      /* 中央寄せ */
  font-size: 0.95rem;      /* 基本フォントサイズ */
  border-radius: 0;        /* ← 角丸なしに設定 */
}

/* 「お問い合わせ」の文字を小さく */
header .lang .small-label {
  font-size: 0.9em;
}

/* 電話番号をやや大きく・太字で */
header .lang .large-tel {
  font-size: 1.1em;
  font-weight: bold;
}







/* 画面幅900px以上：PC時の縦長表示 */
@media screen and (min-width: 900px) {
  body:not(.en) #mainimg {
    width: 30vw;
    height: 60vw;
    box-shadow: 5vw -10vw rgba(0, 0, 0, 0.05);
    margin: 0;
    aspect-ratio: auto;
  }
}

/* その他のスタイル（元のstyle.cssの内容）はそのまま維持。必要に応じて追記できます */





	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	/*ヘッダーブロック（英語ページは除く）*/
	body:not(.en).home header {
		display: flex;	/*直接の子要素を横並びにする*/
		justify-content: space-between;
		text-align: left;	/*左よせの指定ですが、縦書きに対して使うので、上寄りになります*/
	}
	
	/*トップページ以外のロゴ*/
	#logo img {
		width: 300px;	/*幅*/
	}

	/*ロゴ画像（英語ページは除く）*/
	body:not(.en).home #logo {
		align-self: flex-end;	/*下に配置*/
	}
	
	/*メッセージテキスト（英語ページは除く）*/
	body:not(.en) header .message {
		margin: 0;					/*マージンのリセット*/
		font-size: 1.5vw;			/*文字サイズ。画面幅100% = 100vwです。*/
		align-self: center;			/*天地の中央に*/
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
	}

	/*メイン画像（アスペクト比1:2の縦長）（英語ページは除く）*/
	body:not(.en) #mainimg {
		width: 30vw;	/*画像の幅*/
		height: 60vw;	/*画像の高さ*/
		box-shadow: 5vw -10vw rgba(0,0,0,0.05);	/*ボックスの影。右へ、下へ(※マイナス記号つきなので上へ)、0,0,0は黒のことで0.05は色が5%出た状態。*/
		background: url('../images/top_img01.jpg') no-repeat center center / cover;	/*背景画像の読み込み*/
	}

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


/*ヘッダー内の言語ボックス全体の設定
---------------------------------------------------------------------------*/
/*言語ボックス全体*/
header .lang {
    list-style: none;
    margin: 0;
    padding: 0;
    position: fixed;	/* 絶対配置から固定配置に変更 */
    top: 5px;			/*上からの配置場所*/
    right: 50px;		/*右からの配置場所*/
    display: flex;		/*各言語を横に並べる*/
    gap: 1rem;			/*各言語同士に空けるスペース。１文字分。*/
    font-size: 1.2rem;	/*モイサイズ80%*/
}

/*言語ボックス１個あたり*/
header .lang a {
    display: block;
    text-decoration: none;
    padding: 0.2rem 1.5rem;	/*ボックス内の余白。上下、左右。*/
    background: #164A84;	/*背景色*/
    color: #fff;	/*文字色*/
    font-size: medium;
}


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

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

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

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

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 5 Free";
	content: "\f078";		/*使いたいアイコン名（Font Awesome）をここで指定*/
	font-weight: bold;		/*この手の設定がないとアイコンが出ない場合があります*/
	font-size: 0.7rem;		/*文字サイズを70%に*/
	padding-right: 0.5rem;	/*右側に空ける余白。0.5文字分。*/
}


/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
/* 共通設定（スマホ用・デフォルト） */
.small-screen #menubar.display-block {
    position: fixed;
    overflow: auto;
    z-index: 100;
    
    /* 💡 修正点: 天地左右の余白を50pxに拡張 */
    left: 30px;
    top: 10px;
    right: 170px;
    bottom: 220px;
    
    width: auto;
    height: auto;
    
    padding-top: 100px;
    background: var(--accent-color);
    color: var(--accent-inverse-color);
    animation: animation1 0.2s both;
}

/* パソコン（デスクトップ）用 */
@media screen and (min-width: 768px) {
    .small-screen #menubar.display-block {
        width: 500px; /* パソコンでは500px */
    }
}


}

/*メニュー１個あたりの設定*/
.small-screen #menubar li {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin: 1rem;			/*メニューの外側に空けるスペース*/
	border-radius: 5px;		/*角を丸くする指定*/
}
.small-screen #menubar a {
	display: block;text-decoration: none;
	color: inherit;
	padding: 1rem 3rem;		/*メニュー内の余白。上下、左右へ。*/
}
.small-screen #menubar li li a {
	background: var(--accent-inverse-color);	/*背景色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	color: var(--accent-color);	/*文字色。css冒頭で指定しているaccent-colorを読み込みます*/
}

/*小文字の英語部分*/
#menubar span {
	display: block;
	font-size: 0.7em;		/*文字サイズを親要素の70%に*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くとる*/
	opacity: 0.6;			/*透明度。色が60%出た状態。*/
}

/*ドロップダウンブロック*/
.small-screen #menubar ul ul {
	animation: opa1 0.5s 0.1s both;	/*0.1秒待機後、0.5秒かけてフェードイン表示*/
}


/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	animation: opa1 0.3s 0.5s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	top: 0px;		/*上からの配置場所*/
	left: 0px;		/*左からの配置場所*/
	width: 70px;	/*幅*/
	height: 68px;	/*高さ*/
	padding: 25px 20px;	/*上下、左右への余白*/
	display: flex;
	justify-content: center;
	align-items: center;
	transition: transform 0.5s;
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
}

/*ここは変更不要*/
#menubar_hdr div {
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/*バーの設定*/
#menubar_hdr div span {
	display: block;
	width: 100%;
	height: 2px;			/*線の太さ*/
	background-color: var(--accent-inverse-color);	/*線の色。css冒頭のaccent-inverse-colorを読み込みます。*/
	transition: all 0.5s ease-in-out;
	position: absolute;
}

/*以下変更不要*/
#menubar_hdr div span:nth-child(1) {top: 0;}
#menubar_hdr div span:nth-child(2) {bottom: 0;}
#menubar_hdr.ham div span:nth-child(1) {top: 50%;transform: translateY(-50%) rotate(45deg);}
#menubar_hdr.ham div span:nth-child(2) {top: 50%;transform: translateY(-50%) rotate(-45deg);}


/*mainブロック
---------------------------------------------------------------------------*/
/*h2見出し*/
main h2 {
	position: relative;
	text-align: center;		/*テキストをセンタリング*/
	margin: 0 0 8vw;		/*h2の外側にとるスペース。上、左右、下への順番。*/
	font-size: 2rem;		/*文字サイズ*/
	font-weight: normal;
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
}

/*h2の下が空きすぎるので続く要素がpもしくはh3の場合に少し上につめる*/
main h2 + p,
main h2 + h3 {
	margin-top: -4vw;
}

/*装飾用の小文字*/
main h2 .small {
	display: block;
	font-size: 0.5em;	/*文字サイズを親要素の50%に*/
	opacity: 0.5;		/*透明度。色が50%出た状態。*/
}

/*h3見出し*/
main h3 {
	font-size: 1.4rem;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
	font-weight: normal;	/*デフォルトの太字を標準に*/
}


/*フッター共通
---------------------------------------------------------------------------*/
#footer-contents, #footermenu {
	padding: 2rem var(--global-space);	/*上下、左右へのボックス内の余白。左右はcss冒頭で指定しているglobal-spaceを読み込みます*/
}


/*フッターのコンテンツ（住所やマップが入っているブロック）
---------------------------------------------------------------------------*/
/*ブロック全体*/
#footer-contents {
	/*background: rgba(var(--accent-color-rgb), 0.8);	/*背景色*/
	background: #164A84; /*背景色を#164A84に変更*/
	color: var(--accent-inverse-color);	/*文字色*/
}
#footer-contents a {
	color: inherit;
}

/*左側のブロック*/
#footer-contents .left {
	margin-bottom: 50px;	/*下に空けるスペース*/
}

/*ブロック内で使うbtnの設定*/
#footer-contents .btn a {
	border: 2px solid var(--accent-inverse-color);	/*枠線の幅、線種、色。色についてはcss冒頭の（accent-inverse-color）を読み込みます。*/
}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	#footer-contents {
		display: flex;	/*直接の子要素を横並びにします*/
		gap: 5vw;	/*左右のボックスの間のマージン的な設定。*/
	}
	
	/*左側のブロック*/
	#footer-contents .left {
		margin-bottom: 0;	/*下のマージン（外側への余白）をリセット*/
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}
	
	/*右側のブロック*/
	#footer-contents .right {
		width: 50%;			/*幅。leftとrightで合計100になれば、お好みで変更してもらって構いません。*/
	}

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


/*footer-contents内のマップ。レスポンシブにする為のものなので、基本は編集不要です。
---------------------------------------------------------------------------*/
.iframe-box {
	width: 100%;
	height: 0;
	padding-top: 56.25%;	/*マップの高さを増やしたい場合は、ここの数値を上げてみて下さい。*/
	position: relative;
	overflow: hidden;
}
.iframe-box iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}


/*フッターメニュー設定、フッターメニューの改行を防ぐCSS
---------------------------------------------------------------------------*/
/*ボックス全体の設定*/
#footermenu {
	background: #164A84;
	color: var(--accent-inverse-color);
	font-size: 0.8rem;
	display: grid; /* FlexboxからGridに変更 */
	grid-template-columns: repeat(2, 1fr); /* 2列表示 */
	gap: 1.5rem 1rem; /* 上下の隙間1.5rem、左右の隙間1rem */
}

/* 画面幅800px以上：PC表示 */
@media screen and (min-width: 800px) {
	#footermenu {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
		gap: 0; /* PCではGapをリセット */
	}
	#footermenu ul {
		flex: 1; /* 各列が均等な幅になるように */
		padding: 0 1rem; /* 左右に少しパディングを追加 */
	}
}


/*ボックス内のリンクテキスト設定*/
#footermenu a {
	text-decoration: none;
	color: inherit;
}

/*ulタグ（メニューの１列あたり）*/
#footermenu ul {
	margin: 0;list-style: none;
	padding: 0 0.3em;
	flex: 1;
}

/*メニューの見出し(title)*/
#footermenu .title {
	font-weight: bold;		/*太字に*/
	padding-bottom: 5px;	/*下に空けるスペース*/
}


/*フッター設定
---------------------------------------------------------------------------*/
small {font-size: 100%;}
footer {
	font-size: 0.7rem;		/*文字サイズ*/
	background: #222;	/*背景色*/
	color: #ccc;		/*文字色*/
	text-align: center;		/*内容をセンタリング*/
	padding: 1rem;			/*ボックス内の余白*/
}

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

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


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


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

/*ボックス１個あたり*/
.list-grid1 .list {
    display: grid;
	margin-bottom: var(--global-space);	/*下に空けるスペース*/
}

/*ボックス内のp要素*/
.list-grid1 .list p {
    font-size: 0.85rem;	/*文字サイズを85%に*/
    line-height: 1.5;	/*行間を狭くする*/
    text-align: right;
}

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

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

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

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

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

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


/*list-free（レイアウトフリー用）
---------------------------------------------------------------------------*/
.list-free * {margin: 0;padding: 0;}

/*list-freeボックス*/
.list-free {
	display: flex;			/*直接の子要素を横並びに*/
    flex-direction: column;	/*一旦縦並びにしておく*/
	align-items: flex-start;/*子要素を上に揃える*/
	margin-bottom: 10vw;	/*ボックスの下（外側）に空けるスペース*/
	gap: 5vw;				/*子要素同士に空けるマージン的な要素。画面幅100%＝100vwです。*/
}

/*bg1背景の中にある最後のlist-freeの下マージンをなくす*/
.bg1 .list-free:last-of-type {
	margin-bottom: 0;
}

/*テキストブロック*/
.list-free .text {
    align-self: flex-start;
	flex: 1;
}

/*h3見出し*/
.list-free h3 {
	letter-spacing: 0.1em;	/*文字間隔を少しだけ広くする*/
	font-size: 1.5rem;		/*文字サイズを150%に*/
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	position: relative;	/*カギカッコを絶対配置する為に必要な指定*/
	padding: 0 1rem;	/*上下、左右へのh3内の余白*/
	margin: 0 auto;		/*左右の中央に配置*/
}

/*bg1背景の中にあるh3*/
.bg1 .list-free h3 {
	color: var(--accent-inverse-color);	/*文字色。css冒頭のaccent-inverse-colorを読み込みます。*/
}

/*h3見出しのカギカッコ装飾（共通設定）*/
.list-free h3::before,
.list-free h3::after {
	content: "";
	position: absolute;
	width: 20px;	/*カギカッコの幅。お好みで。*/
	height: 50px;	/*カギカッコの高さ。お好みで。*/
	border: 1px solid var(--primary-inverse-color);	/*枠線の幅、線種、varは色の事でcss冒頭で指定しているprimary-inverse-colorを読み込みます*/
}

/*bg1背景の中にあるh3*/
.bg1 .list-free h3::before,
.bg1 .list-free h3::after {
	border-color: var(--accent-inverse-color);	/*枠線の幅の上書き。css冒頭のaccent-inverse-colorを読み込みます*/
}

/*h3見出しの最初のカギカッコの設定*/
.list-free h3::before {
	top: -15px;		/*テキストからの距離。お好みで。*/
	left: -15px;	/*テキストからの距離。お好みで。*/
	border-right: none;		/*右の線は消す*/
	border-bottom: none;	/*下の線は消す*/
}

/*h3見出しの最後のカギカッコの設定*/
.list-free h3::after {
	bottom: -15px;	/*テキストからの距離。お好みで。*/
	right: -15px;	/*テキストからの距離。お好みで。*/
	border-left: none;	/*左の線は消す*/
	border-top: none;	/*上の線は消す*/
}

/*h4見出し*/
.list-free h4 {
	font-size: 1.3rem;
	color: var(--primary-inverse-color);	/*文字色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	margin-bottom: 0.5em;
}

/*bg1背景の中にあるh4*/
.bg1 .list-free h4 {
	color: var(--accent-inverse-color);	/*文字色。css冒頭のaccent-inverse-colorを読み込みます。*/
}

/*画像ブロック*/
.list-free .image {
	box-shadow: 0px 10px 40px rgba(0,0,0,0.1);	/*ボックスの影。右へ、下へ、ぼかす量。0,0,0は黒のことで0.1は色が10%出た状態。。*/
}

/*画像ブロック内のdivタグ。テキストを囲むブロックです。*/
.list-free .image > div {
	background: var(--primary-inverse-color);	/*背景色。css冒頭で指定しているprimary-inverse-colorを読み込みます*/
	color: var(--primary-color);				/*文字色。css冒頭で指定しているprimary-colorを読み込みます*/
	font-size: 0.7rem;	/*文字サイズを70%*/
	padding: 1rem 2rem;	/*上下、左右への余白*/
}

	/*画面幅600px以上の追加指定*/
	@media screen and (min-width:600px) {
	
	/*list-freeボックス*/
	.list-free {
		flex-direction: row;	/*縦並びから横並びにする*/
	}
	
	/*h3見出し*/
	.list-free h3 {
		writing-mode: vertical-rl;	/*縦書きの指定。*/
		text-orientation: upright;	/*文字の向き*/
		padding: 1rem 0.5rem;	/*上下、左右へのh3内の余白*/
	}

	/*その他（汎用向け）お好みでもっと追加して使ってもOK*/
	.list-free .w1 {width: 30%;}
	.list-free .w2 {width: 50%;}
	.list-free .order1 {order: 1;}
	.list-free .order2 {order: 2;}
	.list-free .order3 {order: 3;}
	.list-free .mt1 {margin-top: 10vw;}
	.list-free .mt2 {margin-top: 20vw;}

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


/*ボタン（btn）
---------------------------------------------------------------------------*/
.btn a {
	display: block;text-decoration: none;
	font-size: 1rem;
	text-align: center;		/*テキストをセンタリング*/
	background: var(--accent-color);	/*背景色。css冒頭のvar(accent-color)を読み込みます*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	padding: 0.5rem !important;		/*ボタン内の余白*/
	margin-top: 1rem !important;	/*ボタンの外（上）に空けるスペース*/
}


/*お知らせブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new {
	border-top: 1px solid #ccc;	/*ブロックの上の線幅、線種、色*/
}

/*日付(dt)設定*/
.new dt {
	padding: 1rem;	/*dt内の余白*/
}

/*記事(dd)設定*/
.new dd {
	padding: 0 1rem 1rem;	/*上、左右、下へのdd内の余白*/
	border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
}

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

/*icon-bg1*/
.new .icon-bg1 {
	background: var(--accent-color);		/*背景色。css冒頭で指定しているaccent-colorを読み込みます*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭で指定しているaccent-inverse-colorを読み込みます*/
	border-color: transparent;				/*枠線を出したくないので透明にする*/
}

/*icon-bg2*/
.new .icon-bg2 {
	background: #621433;	/*背景色*/
	color: #fff;		/*文字色*/
	border-color: transparent;	/*枠線を出したくないので透明にする*/
}

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

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

	/*日付(dt)設定*/
	.new dt {
		border-bottom: 1px solid #ccc;	/*下の線の幅、線種、色*/
	}

	/*記事(dd)設定*/
	.new dd {
		padding: 1rem;	/*dd内の余白*/
	}

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


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

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

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

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

/*th（左側）のみの設定*/
.ta1 th {
	width: 30%;			/*幅*/
	text-align: left;	/*左よせにする*/
}

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

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

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


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

/*ボタンの設定*/
.pagetop a {
	display: block;text-decoration: none;text-align: center;z-index: 99;
	position: fixed;	/*スクロールに追従しない(固定で表示)為の設定*/
	right: 20px;		/*右からの配置場所指定*/
	bottom: 20px;		/*下からの配置場所指定*/
	color: #fff;		/*文字色*/
	font-size: 1.5rem;	/*文字サイズ*/
	background: rgba(0,0,0,0.2);	/*背景色。0,0,0は黒の事で0.2は色が20%出た状態。*/
	width: 60px;		/*幅*/
	line-height: 60px;	/*高さ*/
	border-radius: 50%;	/*円形にする*/
}


/*bg1背景
---------------------------------------------------------------------------*/
.bg1 {
	background: var(--accent-color);	/*背景色。css冒頭のaccent-colorを読み込みます。*/
	color: var(--accent-inverse-color);	/*文字色。css冒頭のaccent-inverse-colorを読み込みます。*/
	padding: var(--global-space);		/*ボックス内の余白。css冒頭のglobal-spaceを読み込みます。*/
	
    /*以下は変更不要*/
    margin-right: calc(-1 * var(--global-space));
    margin-left: calc(-1 * var(--global-space));
}


/*bg2背景
---------------------------------------------------------------------------*/
.bg2 {
	background: rgba(0,0,0,0.05);	/*背景色。0,0,0は黒のことで0.05は色が5%出た状態。*/
	padding: 1.5rem;				/*ボックス内の余白。1.5文字分*/
}


/*marker（マーカー風スタイル）
---------------------------------------------------------------------------*/
.marker {
	display: inline-block;
	background: linear-gradient(transparent 80%, yellow 80%);
}



/*文字を大きく、赤にして、太く、センターよせ
---------------------------------------------------------------------------*/
.center-red-bold-text {
    text-align: center;    /* テキストを中央揃えにする */
    color: red;            /* 文字色を赤にする */
    font-weight: bold;     /* 文字を太くする */
    font-size: 1.3em;      /* 文字の大きさを少し大きくする（例：現在の1.2倍） */
    /* または具体的なピクセル値で指定する場合： */
    /* font-size: 20px; */
    width: 100%;           /* 親要素の幅いっぱいに広げる */
}


/*文字を大きく、赤にして、太く、左よせ
---------------------------------------------------------------------------*/
.left-red-bold-text {
    text-align: left;    /* テキストを左寄せにする */
    color: red;            /* 文字色を赤にする */
    font-weight: bold;     /* 文字を太くする */
    font-size: 1.3em;      /* 文字の大きさを少し大きくする（例：現在の1.2倍） */
    /* または具体的なピクセル値で指定する場合： */
    /* font-size: 20px; */
    width: 100%;           /* 親要素の幅いっぱいに広げる */
}




/*FAQ
---------------------------------------------------------------------------*/
/*FAQボックス全体*/
.faq {
	padding: 0 5px;	/*上下、左右へのボックス内の余白*/
}

/*質問*/
.faq dt {
	border-radius: 3px;		/*枠を角丸にする指定*/
	margin-bottom: 20px;	/*下に空けるスペース*/
	background: linear-gradient(#fff, #f7f7f7);	/*背景グラデーション*/
	text-indent: -2em;				/*テキストのインデント。質問が複数行になった際に、テキストの冒頭を揃える為に設定しています。*/
	padding: 5px 1em 5px 3em;		/*ボックス内の余白。ここを変更する場合、上のtext-indentも調整します。*/
	border: 1px solid #e4e2d7;		/*枠線の幅、線種、色*/
    position: relative; /* アイコンを絶対配置するため */
}

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

/*ドロップダウンアイコン*/
.faq dt .fa-solid.fa-angle-down {
    position: absolute;
    right: 15px; /* 右端からの距離 */
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em; /* アイコンサイズ */
    transition: transform 0.3s;
}

/*質問ブロックがアクティブになった時のアイコンのアニメーション*/
.faq dt.active .fa-solid.fa-angle-down {
    /* アイコンの回転を無効化 */
    transform: translateY(-50%);
}

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

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

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


/*強制的に画素サイズを変更する*/
.unique-img-wrapper {
  max-width: 900px;      /* PC時の最大幅 */
  margin: 0 auto;        /* 中央寄せ */
  width: 100%;           /* 親要素の幅を100%に */
  box-sizing: border-box;
}

.unique-img-responsive {
  width: 100%;           /* 親要素いっぱい */
  height: auto;          /* 縦横比維持 */
  display: block;        /* 画像下の余白防止 */
  margin: 0 auto;        /* 画像自体も中央寄せ */
}

@media (max-width: 768px) {
  .unique-img-wrapper {
    max-width: 100%;     /* スマホ時は最大幅制限を解除 */
    padding: 0;          /* 必要ならパディングもリセット */
  }
}




/*メニューのジャンプ先*/
#unagi,
#teishoku,
#sakana,
#ipin,
#drink,
#menu,
#takeout {
  display: block;
  padding-top: 70px;
  margin-top: -70px;
}

/* 新着情報専用の設定(より上にジャンプ) */
#news {
  display: block;
  padding-top: 200px;
  margin-top: -200px;
}



/*「4段」ブロック
---------------------------------------------------------------------------*/
.list-grid .list * {margin: 0;padding: 0;}

/*ブロック全体を囲むブロック*/
.list-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);	/*2列にする指定。3列にしたければrepeat(3, 1fr)とする。*/
	gap: 1rem;	/*ブロックの間に1文字分のスペースを空ける*/
}

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

	/*ブロック全体を囲むブロック*/
	.list-grid {
		grid-template-columns: repeat(4, 1fr);	/*4列にする指定。2列にしたければrepeat(2, 1fr)とする。*/
		gap: 2rem;	/*ブロックの間に2文字分のスペースを空ける*/
	}

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


/*ボックス１個あたり*/
.list-grid .list {
    display: grid;
	position: relative;
    grid-template-rows: auto 1fr;	/*１つ目（この場合はfigure要素のサイズ）は自動に、２つ目（この場合はtextブロック））を残った幅で使う*/
	overflow: hidden;
}

/*ボックス内のp要素*/
.list-grid .list p {
	font-size: 0.85rem;	/*文字サイズを85%に*/
	line-height: 1.5;	/*行間を少し狭く*/
}








/*その他
---------------------------------------------------------------------------*/
.clearfix::after {content: "";display: block;clear: both;}
.color-check, .color-check a {color: #621433 !important;}
.l {text-align: left !important;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.ws {width: 95%;display: block;}
.wl {width: 95%;display: block;}
.mb0 {margin-bottom: 0px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb5vw {margin-bottom: 5vw !important;}
.look {display: inline-block;padding: 0px 10px;background: #fff;color: #333;border: 1px solid #ccc; border-radius: 3px;margin: 5px 0; word-break: break-all;}
.small {font-size: 0.75em;}
.large {font-size: 2em; letter-spacing: 0.1em;}
.pc {display: none;}
.dn {display: none !important;}
.block {display: block !important;}

	/*画面幅900px以上の追加指定*/
	@media screen and (min-width:900px) {
	
	.ws {width: 48%;display: inline;}
	.sh {display: none;}
	.pc {display: block;}
	
	/* PC表示時の言語ボックスを1行にする */
	header .lang li a {
		line-height: 1; /* 行間を狭くして1行に収まりやすくする */
		display: inline-flex; /* Flexboxに変更して要素を横並びにする */
		align-items: center; /* 垂直方向の中央揃え */
		gap: 0.5rem; /* 要素間の隙間 */
	}

	header .lang li a br {
		display: none; /* brタグを非表示にする */
	}

	header .lang .small-label {
		font-size: 1em; /* 親要素と同じサイズにする */
		vertical-align: baseline; /* 垂直方向の揃えを調整 */
	}

	header .lang .large-tel {
		font-size: 1.1em; /* フォントサイズを維持 */
	}


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

/* 左寄せ強制用クラス */
.left-align {
  text-align: left !important;
}

/* FAQセクション：PC表示時に質問と回答のペアを縦に並べて2列にし、列間を狭くする */
@media screen and (min-width: 900px) {
  dl.faq {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
    column-gap: 1.5rem;  /* ★ 横の間隔を狭く（← ご要望箇所） */
    row-gap: 1rem;       /* 上下の間隔（お好みで調整可） */
  }

  /* 各質問と回答のブロック設定 */
  dl.faq dt,
  dl.faq dd {
    margin: 0;
    grid-column: span 1;
  }

  /* 奇数番目（1列目に表示） */
  dl.faq dt:nth-of-type(odd),
  dl.faq dd:nth-of-type(odd) {
    grid-column-start: 1;
  }

  /* 偶数番目（2列目に表示） */
  dl.faq dt:nth-of-type(even),
  dl.faq dd:nth-of-type(even) {
    grid-column-start: 2;
  }

  /* 質問の下に少しスペースをあける */
  dl.faq dt {
    margin-bottom: 0.3rem;
  }

  /* 回答の下にスペース（ブロック間） */
  dl.faq dd {
    margin-bottom: 1rem;
  }
}

/* 送迎バスのテキスト改行制御 */
.bus-service-text br.break-on-small {
  display: block;
}

@media screen and (min-width: 768px) {
  .bus-service-text br.break-on-small {
    display: none;
  }
}


/* ここから追加・修正部分 */
/* 画面幅1920px以上（PC大画面）の追加指定 */
@media screen and (min-width: 1920px) {
  /* 言語ボックス内のリンク */
  header .lang li a {
    display: inline; /* 2行表示から1行表示に変更 */
    font-size: 1.5rem; /* 全体のフォントサイズをやや大きく */
    padding: 0.5rem 1rem; /* パディングを調整して間延び感をなくす */
  }

  /* 「お問い合わせ」の文字 */
  header .lang .small-label {
    font-size: 1em; /* 親要素と同じサイズにする */
    vertical-align: middle; /* 垂直方向の中央揃え */
  }

  /* 電話番号の文字 */
  header .lang .large-tel {
    font-size: 1.3em; /* 電話番号をより大きく強調 */
    font-weight: bold;
    vertical-align: middle; /* 垂直方向の中央揃え */
  }

  /* HTMLのbrタグを非表示にして強制的に1行にする */
  header .lang li a br {
    display: none;
  }
}


/* FAQリンク用のスタイル追加 */
.faq-link {
  position: relative;
  z-index: 10;
  display: inline-block;
  padding: 5px 10px;
  margin-top: 10px;
  background: #164A84;
  color: white !important;
  text-decoration: none;
  border-radius: 3px;
  font-size: 0.9em;
}

.faq-link:hover {
  opacity: 0.8;
}




/* ==== 送迎バス案内テーブル ==== */
.ta1 {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
}

/* 左列（テキスト） */
.ta1 .bus-service-text {
  text-align: left;
  vertical-align: middle;
  width: 60%;
  font-size: 1.1em;
  line-height: 1.6;
  padding: 15px;
  background-color: #fff;
  color: #333;
  font-weight: normal;
}

/* 右列（画像） */
.ta1 .bus-service-image {
  text-align: center;
  vertical-align: middle;
  width: 40%;
  padding: 15px;
  background-color: #fff;
}

/* 画像調整 */
.ta1 .bus-service-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px; /* 丸み不要なら削除OK */
}

/* スマホ表示時（縦並び） */
@media (max-width: 600px) {
  .ta1 tr {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .ta1 .bus-service-text,
  .ta1 .bus-service-image {
    width: 100% !important;
    text-align: center;
    padding: 10px;
  }

  .ta1 .bus-service-text br.break-on-small {
    display: none; /* スマホでは改行を非表示に */
  }
}






/* ==== 商品名内の小文字表記 ==== */
.text h4 .subtext {
  font-size: 0.8em;      /* 親文字（天竜しぶき煮）の80％の大きさ */
  font-weight: normal;   /* 太字にしたくない場合 */
  color: #555;           /* 少しトーンを落とす（任意） */
  margin-left: 0.2em;    /* 少し余白を追加（任意） */
}




/* ==== フッターメニュー全体 ==== */
#footermenu {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* PCでは4列均等 */
  gap: 20px;                             /* 各列の間隔 */
  margin-top: 30px;
}

/* ==== 各列（ul） ==== */
#footermenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ==== 各項目 ==== */
#footermenu li {
  margin: 5px 0;
  line-height: 1.6;
}

/* ==== 見出し（タイトル） ==== */
#footermenu li.title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 5px;
}

/* ==== スマホ表示（2列均等） ==== */
@media (max-width: 600px) {
  #footermenu {
    grid-template-columns: repeat(2, 1fr); /* 2列均等配置 */
    gap: 15px 25px; /* 行間と列間を調整 */
  }
}




/* ==== フッターメニュー間隔微調整（上書き用） ==== */
@media (min-width: 601px) {
  #footermenu {
    gap: 30px; /* PCで列間を均等に広げたい場合 */
  }
}

@media (max-width: 600px) {
  #footermenu {
    gap: 15px 25px; /* スマホ2列は元のまま */
  }
}




/* ==== 汎用画像：スマホは100%、PCは70%縮小、文字との間隔調整 ==== */
.responsive-img {
  display: block;
  margin-top: 10px;   /* 文字との間隔 */
  max-width: 100%;     /* スマホでは画面幅に合わせる */
  height: auto;
}

/* PC用：70%縮小 */
@media (min-width: 601px) {
  .responsive-img {
    width: 70%;        /* 元画像の70%に縮小 */
  }
}











/* ハンバーガーメニューのサブメニューインジケーター */
#menubar li.ddmenu_parent > a {
  position: relative;
  padding-right: 40px !important;
}

.submenu-indicator {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

#menubar li.ddmenu_parent > a.active .submenu-indicator {
  transform: translateY(-50%) rotate(180deg);
}

/* サブメニューがある項目のアクティブ状態 */
#menubar li.ddmenu_parent > a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* サブメニューのスタイル */
#menubar ul ul {
  background: rgba(0, 0, 0, 0.2);
  margin: 0;
  padding-left: 20px;
}

#menubar ul ul li {
  border: none !important;
  margin: 0 !important;
}

#menubar ul ul li a {
  padding: 0.8rem 2rem !important;
  font-size: 0.9em;
  opacity: 0.9;
}

/* PCのみホバー効果を適用 */
@media (min-width: 901px) {
  #menubar li.ddmenu_parent > a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
  }
  
  #menubar ul ul li a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    opacity: 1;
  }
  
  #menubar li:not(.ddmenu_parent) > a:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
  }
}

/* スマートフォン用のタップフィードバック（任意） */
@media (max-width: 900px) {
  #menubar a:active {
    background: rgba(255, 255, 255, 0.15);
    transition: background 0.1s ease;
  }
}





/* メニューページ共通スタイル（両バージョンで一貫性を保つため） */
body.menu-page .list-grid1 {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

body.menu-page .list.blur {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

body.menu-page h3 {
  border-bottom: 2px solid #164A84;
  padding-bottom: 10px;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* セクションタイトル */
body.menu-page #unagi p,
body.menu-page #teishoku p,
body.menu-page #sakana p,
body.menu-page #ipin p,
body.menu-page #drink p {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 20px 0;
  color: #164A84;
}

/* 価格表示 */
body.menu-page .list .text p[style*="text-align: right"] {
  font-weight: bold;
  color: #164A84;
  margin-top: 10px;
}

/* PC版専用スタイル */
@media screen and (min-width: 768px) {
  body.menu-page .pc-layout {
    display: block;
  }
  body.menu-page .mobile-layout {
    display: none;
  }
  
  /* PC版の画像レイアウト */
  .img-grid-pc {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
  }
  
  .img-with-caption {
    text-align: center;
  }
  
  .img-caption {
    margin-top: 8px;
    font-size: 0.9em;
    color: #666;
  }
}

/* モバイル版専用スタイル */
@media screen and (max-width: 767px) {
  body.menu-page .pc-layout {
    display: none;
  }
  body.menu-page .mobile-layout {
    display: block;
  }
  
  /* モバイル版の画像表示 */
  .img-with-caption {
    text-align: center;
    margin: 15px 0;
  }
  
  .img-caption {
    margin-top: 5px;
    font-size: 0.85em;
    color: #666;
  }
}

/* ローディング表示（リダイレクト時のちらつき防止） */
.page-transition {
  transition: opacity 0.3s ease;
}

.page-loading {
  opacity: 0.7;
}



/* ライトボックスのリンク（aタグ）がクリックできる領域を確保 */
.unique-img-wrapper a {
    display: block; /* ブロック要素にして幅と高さを確保 */
    width: 100%;
    height: 100%;
}


/* ---------------------------------------------------------------- */
/* LightBoxクリック領域の強制修正 */
/* ---------------------------------------------------------------- */

.unique-img-wrapper a {
    /* リンク要素をブロックにし、画像と同じサイズを占有するようにする */
    display: block;
    width: 100%;
    /* リンクと画像の間にあるわずかなスペースを削除し、正確な寸法にする */
    line-height: 0;
    /* マウスオーバー時に指カーソルを強制的に表示させる */
    cursor: pointer !important;
}

/* 画像自体にも念のためカーソルを適用 */
.unique-img-wrapper img {
    cursor: pointer !important;
}



.list-grid1 .list.image-only {
grid-template-rows: auto;
}




.img-row {
  display: flex;
  justify-content: space-between; /* 均等配置（お好みで変更可） */
  flex-wrap: wrap; /* 画面が狭い時は折り返す */
  gap: 20px; /* 各画像の間隔 */
}

.img-row .list {
  flex: 1;              /* 横幅を均等に */
  min-width: 200px;     /* 最小幅の確保（好みで変更） */
  text-align: center;
}






/*テキストだけのメニュー（menu.htmlで使用）
---------------------------------------------------------------------------*/
/*ボックス全体*/
dl.text-menu {
	margin: 0;
	display: grid;		/*gridボックスを使う指定*/
	grid-template-columns: auto 1fr;	/*２列のうち、左は内容に応じて自動、残りを右側に割り当て*/
}

/*メニュータイトルと価格の共通設定*/
dl.text-menu dt, dl.text-menu dd {
	border-bottom: 1px solid #ccc;	/*下線の幅、線種、色*/
	padding: 1rem;					/*要素内の余白*/
}

/*1つ目のdt（メニュータイトル）と、1つ目のdd（価格）*/
dl.text-menu dt:nth-of-type(1), dl.text-menu dd:nth-of-type(1) {
	border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
}

/*価格*/
dl.text-menu dd {
	text-align: right;	/*テキストを右寄せする*/
}

	/*画面幅600px以上の設定*/
	@media screen and (min-width:600px){
	
	/*ボックス全体*/
	dl.text-menu {
		grid-template-columns: repeat(2, auto 1fr);	/*上の「auto 1fr」を２回続ける。つまり「auto 1fr auto 1fr」と同じ意味。*/
	}
	
	/*2つ目のdt（メニュータイトル）と、2つ目のdd（価格）への追加*/
	dl.text-menu dt:nth-of-type(2), dl.text-menu dd:nth-of-type(2) {
		border-top: 1px solid #ccc;	/*上の線の幅、線種、色*/
	}

	/*奇数番目のdd（価格）*/
	dl.text-menu dd:nth-of-type(odd) {
		margin-right: 5vw;	/*右側にスペースを作る。左右にメニューが並んだ場合の間のマージンです。*/
	}

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



/* ---- 特例：ウイスキー・ハイボール等各種だけ ---- */

/* dt と dd を強制的に縦並びにする */
.whiskey-title,
.whiskey-note {
  display: block !important;
  width: 100% !important;
  float: none !important;
  margin: 0;
  padding: 0;
}

/* テキストの体裁 */
.whiskey-note p {
  font-size: 12px;
  color: #303030;
  margin: 5px 0 10px;
  line-height: 1.6;
  text-align: left;
  white-space: normal;       /* ← PCで自然に折り返すため */
  word-break: break-all;     /* ← 英数字でも自然に改行 */
}

/* PCでは文章が幅いっぱい使えるようにする */
@media (min-width: 769px) {
  .whiskey-note {
    width: 100% !important;   /* 右側の狭いカラムに入らないようにする */
  }
}





/* ▼スマホ（768px以下）だけ適用：ウイスキー項目だけ縦並びにする */
@media (max-width: 768px) {

  dt.whiskey-title,
  dd.whiskey-note {
    float: none !important;    /* ← 横並びを解除 */
    width: 100% !important;    /* ← 幅を全幅に */
    display: block !important; /* ← 強制的に縦並び */
    margin: 0;
    padding: 0;
  }

  /* 説明文の体裁 */
  dd.whiskey-note p {
    font-size: 12px;
    color: #303030;
    line-height: 1.6;
    margin: 3px 0 10px;
    text-align: left;           /* ← スマホは左寄せ */
    word-break: break-word;     /* ← 折り返しを安定させる */
  }
}





.two-lines {
  width: fit-content;
  max-width: 100%;
  display: inline-block;
  white-space: normal;
  line-break: strict;
  overflow-wrap: break-word;
  
  /* ここが重要：2行で必ず折り返す */
  /* 任意の位置で折り返しを許可 */
}






/* style.cssに追加 */

/* スマホ表示：ウイスキー項目を縦並びに */
@media (max-width: 768px) {
  /* ウイスキー項目のdtとddを縦並びに */
  dl.text-menu.up dt.whiskey-title,
  dl.text-menu.up dd.whiskey-note {
    display: block !important;
    width: 100% !important;
    grid-column: 1 / -1 !important;
    text-align: left !important;
    padding: 0.5rem 1rem !important;
  }
  
  /* dtの直後にddが続くように */
  dl.text-menu.up dt.whiskey-title {
    border-bottom: none !important;
    padding-bottom: 0.2rem !important;
  }
  
  dl.text-menu.up dd.whiskey-note {
    border-top: none !important;
    padding-top: 0 !important;
    margin-top: -0.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  /* 説明文のスタイル */
  .whiskey-note p.two-lines {
    font-size: 13px;
    color: #303030;
    line-height: 1.5;
    margin: 0;
    text-align: left;
    padding-left: 0;
  }
}

/* PC表示：説明文を線の中央に配置 */
@media (min-width: 769px) {
  /* ウイスキー項目のdtとddを通常のグリッド配置 */
  dl.text-menu.up dt.whiskey-title,
  dl.text-menu.up dd.whiskey-note {
    display: flex;
    align-items: center;
    min-height: 2.0rem;
  }
  
  /* 説明文を中央揃えに */
  dl.text-menu.up dd.whiskey-note {
    justify-content: flex-start;
    text-align: left;
  }
  
  .whiskey-note p.two-lines {
    font-size: 13px;
    color: #303030;
    line-height: 1.4;
    margin: 0;
    padding-left: 0;
  }
  
  /* 2列表示時の位置調整 */
  @media screen and (min-width: 600px) {
    /* ウイスキー項目が右列にある場合の調整 */
    dl.text-menu.up dt.whiskey-title:nth-of-type(even),
    dl.text-menu.up dd.whiskey-note:nth-of-type(even) {
      border-top: 1px solid #ccc;
    }
  }
}

/* 玉子料理の注意書きを大きく（menu_pc.html用） */
body.menu-page p[style*="text-align: left; font-size: 14px;"] {
  font-size: 16px !important;
  line-height: 1.6;
  color: #333;
  margin-bottom: 1rem;
}




<!-- 以下のCSSをstyle.cssに追加してください -->
<!--
/* 控えめなサブメニュー用のスタイル */
.small-screen #menubar li.submenu-links {
	border: none;
	margin: 0.3rem 1rem;
	background: transparent;
}

.small-screen #menubar li.submenu-links a {
	padding: 0.5rem 2rem;
	font-size: 0.85em;
	opacity: 0.6;
}

.small-screen #menubar li.submenu-links a .subdued {
	display: block;
	font-size: 1em;
	letter-spacing: 0;
}

.small-screen #menubar li.submenu-links a:hover {
	opacity: 0.8;
}

/* PCサイズでの表示調整 */
@media screen and (min-width:900px) {
	.large-screen #menubar li.submenu-links {
		margin-top: 2rem;
		padding-top: 1rem;
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	
	.large-screen #menubar li.submenu-links a {
		font-size: 0.85em;
		opacity: 0.7;
		padding: 0.5rem 1rem;
	}
}
-->





/* フッターメニューの控えめなサブメニュー用スタイル */
#footermenu li.subdued-menu {
	/* 通常のliに設定されているマージン（5px 0）をリセットし、上下を1pxまで詰めます */
	margin: 1px 0 1px 0 !important;
	
	/* パディングと上部の線は維持しつつ、パディングを最小限に */
	padding-top: 0.2rem; /* 0.25remからさらに縮小 */
	border-top: 1px solid rgba(255,255,255,0.1);
}

/* フッターメニューの控えめなサブメニュー用スタイル (行間最小化と水平線削除) */
#footermenu li.subdued-menu {
	/* 上下のマージンをリセットし、!importantで上書きします */
	margin: 0px 0 !important; 
	
	/* 上部のパディングと、ご指摘の「変な線」（水平線）を完全に削除 */
	padding-top: 0 !important;
	border-top: none !important;
}

/* フッターメニューの控えめなサブメニュー用スタイル (行間微調整) */
#footermenu li.subdued-menu {
	/* 上下のマージンを最小限から少し広げます (2px) */
	margin: 2px 0 !important; 
	
	/* 線とパディングは削除したまま */
	padding-top: 0 !important;
	border-top: none !important;
}

/* 最初の控えめなメニュー項目 */
#footermenu li.subdued-menu:first-of-type {
	/* 他の項目からの距離を少し広げます */
	margin-top: 0.8rem !important; 
}

#footermenu li.subdued-menu a {
	font-size: 0.85em;
	opacity: 0.6;
	font-weight: normal;
	
	/* line-heightを少し広げます (1.0から1.3へ) */
	line-height: 1.3 !important; 
	
	/* 上下のパディングをわずかに確保します (1px) */
	padding: 1px 0 !important; 
	
	/* line-heightとpaddingを適用するために、インラインブロックを維持 */
	display: block; 
}

#footermenu li.subdued-menu a:hover {
	opacity: 0.9;
}

/* ">>" 記号を非表示に */
#footermenu li.subdued-menu a::before {
	content: "";
}
-->






/* お知らせとカレンダーのコンテナ */
.news-calendar-container {
  display: flex;
  flex-direction: column; /* スマホはデフォルトで縦並び */
  gap: 3rem; /* セクション間の余白 */
  margin-bottom: 3rem;
}

/* 各セクションの基本設定 */
.news-calendar-container section {
  width: 100%;
}

/* カレンダー部分のレスポンシブ対応 */
.calendar-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 75%; /* アスペクト比調整(4:3) */
  height: 0;
  overflow: hidden;
}

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

/* PC表示(900px以上):横並び */
@media screen and (min-width: 900px) {
  .news-calendar-container {
    flex-direction: row; /* 横並びに変更 */
    align-items: flex-start; /* 上揃え */
    gap: 3vw; /* PC用の間隔 */
  }

  /* 左右の幅を均等に */
  .news-calendar-container .news-section,
  .news-calendar-container .calendar-section {
    flex: 1; /* 均等に幅を分配 */
    min-width: 0; /* flexboxの縮小を許可 */
  }

  /* カレンダーのアスペクト比をPC用に調整 */
  .calendar-wrapper {
    padding-bottom: 100%; /* 正方形に近い形 */
  }
}

/* タブレット表示(768px-899px):縦並び維持 */
@media screen and (min-width: 768px) and (max-width: 899px) {
  .news-calendar-container {
    gap: 2rem;
  }
}





/* お知らせとカレンダーのコンテナ */
.news-calendar-container {
  display: flex;
  flex-direction: column; /* スマホはデフォルトで縦並び */
  gap: 3rem; /* セクション間の余白 */
  margin-top: 8vw; /* 前のコンテンツとの間隔を空ける */
  margin-bottom: 3rem;
}

/* 各セクションの基本設定 */
.news-calendar-container section {
  width: 100%;
}

/* h2見出しと内容の間隔を詰める */
.news-calendar-container h2 {
  position: relative;
  text-align: center;
  margin: 0 0 2vw; /* 下マージンを8vw→2vwに縮小 */
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* smallクラスも統一 */
.news-calendar-container h2 .small {
  display: block;
  font-size: 0.5em;
  opacity: 0.5;
}

/* お知らせのdlリストの上マージンをリセット */
.news-calendar-container .new {
  margin-top: 0;
}

/* カレンダー部分のレスポンシブ対応 */
.calendar-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 120%; /* アスペクト比調整(4:3) */
  height: 0;
  overflow: hidden;
  margin-top: 0; /* 上マージンをリセット */
}

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

/* PC表示(900px以上):横並び */
@media screen and (min-width: 900px) {
  .news-calendar-container {
    flex-direction: row; /* 横並びに変更 */
    align-items: flex-start; /* 上揃え */
    gap: 5vw; /* PC用の間隔を広く */
    margin-top: 8vw; /* PC表示時も上部余白を確保 */
  }

  /* 左右の幅を均等に */
  .news-calendar-container .news-section,
  .news-calendar-container .calendar-section {
    flex: 1; /* 均等に幅を分配 */
    min-width: 0; /* flexboxの縮小を許可 */
  }

  /* 両方のセクションの開始位置を完全に揃える */
  .news-calendar-container .news-section,
  .news-calendar-container .calendar-section {
    margin-top: 0; /* 上マージンをリセット */
    padding-top: 0; /* 上パディングもリセット */
  }

  /* PC表示時もh2と内容の間隔を詰める */
  .news-calendar-container h2 {
    margin: 0 0 2vw; /* 下マージンを詰める */
    padding: 0;
  }

  /* カレンダーのアスペクト比をPC用に調整 */
  .calendar-wrapper {
    padding-bottom: 100%; /* 正方形に近い形 */
  }
}

/* タブレット表示(768px-899px):縦並び維持 */
@media screen and (min-width: 768px) and (max-width: 899px) {
  .news-calendar-container {
    gap: 2rem;
    margin-top: 6vw; /* タブレット用の上部余白 */
  }
  
  .news-calendar-container h2 {
    margin: 0 0 2vw; /* タブレットでも間隔を詰める */
  }
}




/* 新着情報へのジャンプ位置調整 */
#news {
  scroll-margin-top: 100px; /* ヘッダー分の余白を確保 */
}




/* 店舗情報セクション(bg1)の3つのボックスを中央配置 */
@media screen and (min-width: 800px) {
  /* 店舗情報の最初のlist-grid1 */
  section.bg1 .list-grid1:first-of-type {
    display: flex !important;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
  }
  
  section.bg1 .list-grid1:first-of-type .list {
    width: calc(25% - 2.25vw); /* 4列時と同じ幅 */
    margin-bottom: 0;
  }
}

/* お問い合わせセクション(bg1)の2つのボックスを中央配置 */
@media screen and (min-width: 800px) {
  /* お問い合わせの最後のlist-grid1 */
  section.bg1 .list-grid1:last-of-type {
    display: flex !important;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
  }
  
  section.bg1 .list-grid1:last-of-type .list {
    width: calc(25% - 2.25vw); /* 4列時と同じ幅 */
    margin-bottom: 0;
  }
}


/* ▼ お知らせ・新着情報・カレンダーの見出し余白調整 */
#news h2,
#calendar h2 {
  margin-top: 0.6em;
}






/* PDFリンクのスマホ用スタイル */
@media screen and (max-width: 800px) {
  #footermenu .pdf-br,
  #menubar .pdf-br {
    display: block; /* 改行させる */
  }
  
  #footermenu .download-indent,
  #menubar .download-indent {
    padding-left: 1em; /* インデント */
  }
}

/* PC表示用 */
@media screen and (min-width: 801px) {
  #footermenu .pdf-br,
  #menubar .pdf-br {
    display: none; /* PC表示では改行しない */
  }
}




/* 鯉料理のジャンプ先位置調整 */
#koi {
  scroll-margin-top: 110px; /* ジャンプ先をもう少し下に表示 */
}