/* 共通幅クラス */
.common-width {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2em;
  box-sizing: border-box;
}

/* ヘッダー背景 */
header {
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* スライダーなどの上に表示されるように */
}

.main-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.btn-link {
	color: black;
	text-decoration: none;
    padding: 0 0.5em 0 0em;
	font-weight: bold;
	font-size: 1.2em;
}

.mh-img img{
	width: 100%;
	height: auto;
	opacity: 0.5;
}

.mh-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%; /* グラデーションの高さ（調整可） */
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(19, 5, 6, 1) 100%);
  pointer-events: none;
  z-index: 2;
}
.mh-img-wrapper {
  position: relative;
  width: 100%;
}
/* 小見出し */
.sp {
  font-size: 1.0rem;
  font-weight: bold;
  padding: 0em 0em 1em 0;
}
.wh-sp {
  max-width: 600px;
  margin: 0em auto 0em auto;
  padding: 0 ;
  display: block;
  text-align: left; 
	  color: #D83E3E;
	font-size: 1.5em;
	font-weight: bold;
}


/* 中央見出し */
.headline {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
  background-color: #4A0607;
  padding: 10px 0;
}

.headline2 {
  display: inline-block; 
    border-bottom: 2px solid #ffffff;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #ffffff;
}

.headline2-wrapper {
  text-align: center;
  padding: 3em 0 2em 0;
}

/* 全体背景 */
body {
  margin: 0;
  padding-top: 60px;
  font-family: '源ノ明朝', serif;
  background-color: #130506;
  color: #ffffff;
  font-size: 0.8rem;
}

/* 各テキストブロック */
p {
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  margin: 0em auto;
  max-width: 600px;
  box-sizing: border-box;
  background-color: transparent; /* これが重要 */
}

.table-title {
	font-size: 1.2em;
	font-weight: bold;
	text-align: center;
	margin: 50px auto 0 auto;
}

.headline-description {
  position: absolute;
  top: 35%;  /* 上下中央表示（好みに応じて変更） */
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  text-align: left;
  z-index: 1;
  max-width: 100%;
  padding: 0.5em 0em; /* テキスト背景も半透明に */
  border-radius: 4px;
}
.note{
	padding: 5px 0;
}

/* ボタン */
.btn {
  text-align: center;
  font-weight: bold;
  margin: 5em 0;
}
.btn-reserve {
  display: inline-block;
  padding: 0.8em 1em;
  background-color: #8b0000;
  color: #fff;
  text-decoration: none;
  border-radius: 0px;
  font-size: 1rem;
}

/* テーブル */
.tbl_basic1 {
  width: 100%;
  max-width: 600px;
  margin: 2em auto 0em auto;
  border-collapse: collapse;
  background-color: #410000;

  color: #ffffff;
}
.tbl_basic1 th,
.tbl_basic1 td {
  border: 1px solid #ccc;
  padding: 1em 1em;
  text-align: left;
  border-left: none;
  border-right: none;
}
.tbl_basic1 th {
  background-color: #280002;
  font-weight: bold;
  text-align:  center;
  padding: 1em 1em;
  width: 20%;
}
.tbl_basic2 {
  width: 100%;
  max-width: 1000px;
  margin: 2em 2em 0em 2em;
  border-collapse: collapse;
  font-size: 1rem;
  color: #ffffff;
}
.tbl_basic2 th,
.tbl_basic2 td {
  border: 1px solid #ccc;
  padding: 1em 1em 0em 1em;
  text-align: left;
  border-left: none;
  border-right: none;
}
.tbl_basic2 th {
  background-color: #000023;
  font-weight: bold;
  width: 20%;
}

/* メインビジュアル */
.main-visual video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* 必要に応じて拡大・トリミング */
}



.dinner-title {
	margin-top: 0;
	font-size: 1rem;
	font-weight: bold;
}

.dinner-desc {
	max-width: 450px;
	padding: 1.2em 0 0 ;
	text-align: left;
	box-sizing: border-box;
}

/* 特典2・3用 */
.custom-horizontal-box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 0.7em auto 0;
  max-width: 600px;
  padding: 0 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
  background-color: transparent;
}

/* 左に画像・右にテキスト（デフォルトと逆） */
.custom-horizontal-box-left-image {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin: 2em auto;
  max-width: 600px;
  padding: 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
}


.custom-text {
  flex: 1;
  min-width: 200px;
}
.custom-image {
  flex: 0 0 300px;
  max-width: 300px;
}
.custom-image img {
  width: 100%;
  height: auto;
}

/* ナビゲーションなど */
.con_nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 2vw;
  flex-wrap: nowrap;
  gap: 2vw;
}
.logo {
  margin: 0;
}
.box_nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: nowrap;
}
.sns,
.lang {
  display: flex;
  gap: 0.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn-group {
  display: flex;
  justify-content: flex-end;
  gap: 1em;
  align-items: center;
}

.btn1, .btn2 {
  display: inline-block;
  padding: 6px 12px;
  background-color: #04432F;
  color: white;
  text-decoration: none;
  border-radius: 0px;
  font-size: 14px;
  margin: 0;
}


.btn_menu {
  margin-left: 1rem;
  background: none;
  border: none;
  cursor: pointer;
}

.image-row-with-caption {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 2em auto;
  max-width: 800px;
  text-align: center;
}

.image-box {
  flex: 1 1 45%; /* 画像の幅を調整し、可変対応 */
  max-width: 300px;
}

.image-box img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc; /* 任意：画像に枠線 */
}

.caption {
  margin-top: 0.5em;
  font-size: 0.85rem;
  color: #ffffff;
}
.image-row-small {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 2em auto;
  max-width: 1000px;
  text-align: center;
}

.image-row-small .image-box {
  flex: 1 1 25%;
  max-width: 200px;
}

.image-row-small .image-box img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #ccc;
}

.image-row-small .caption {
  margin-top: 0.5em;
  font-size: 0.75rem;
  color: #ffffff;
}


.footer {
  background-color: #410000;
  color: white;
  padding: 40px 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-left {
  max-width: 300px;
  flex-shrink: 0;
}

.footer-left .logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-left address {
  font-style: normal;
  line-height: 1.6;
  font-size: 14px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-grow: 1;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-links li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.footer-social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1); /* 白アイコンを保証 */
  transition: opacity 0.3s ease;
}

.footer-social a:hover img {
  opacity: 0.7;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto); /* 横3列 */
  grid-auto-rows: auto;
  gap: 10px 30px;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.footer-links li a {
  color: white;
  font-size: 14px;
  text-decoration: none;
}

.footer-links li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  header {
    position: static; /* ← スマホのみ fixed を解除 */
  }
	  .btn1,
  .btn2 {
    display: none;
  }
	  body {
    padding-top: 0; /* ヘッダーの上の余白を消す */
  }
	  .headline {
    font-size: 1.2rem; /* 元が1.8rem → 小さめに調整 */
    padding: 8px 0;
  }
  .headline-description {
    position: absolute;
    top: 1%;  /* ← 画像の上から20%の位置に */
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9em;
    text-align: left;
    z-index: 3;
	width: 78vw

  }

  .mh-img-wrapper {
    position: relative;
	    overflow-x: hidden;
  }

  .mh-img img {
    display: block;
    width: 150%;
    height: auto;
    margin-left: -25vw; 
  }
	  .table-title {
    margin-top: 0em; /* ← デフォルトの 50px を減らす */
    font-size: 1em; /* 必要であれば文字も調整 */
        font-size: 0.8rem; 
  }
	  .tbl_basic1 {
    margin: 2em auto 0 auto; /* ← 上・左右・下に余白 */
    width: auto; 
    /* ← 強制的な幅指定を解除（はみ出し防止） */
  }
	  .tbl_basic1 th,
  .tbl_basic1 td {
    padding: 0.5em 0.5em; 
	font-size: 0.9em;/* ← セル内余白をコンパクトに */
  }
	
	  .note {
    margin: 0em 2em; 
	box-sizing: border-box;
}
	  .wh-sp {
    margin: 0em 1em; /* 上・右・下・左 */
    text-align: left;
	}
  .custom-horizontal-box {
    flex-direction: column; /* ← 横並びを縦に変更 */
    align-items: center;    /* ← 中央揃え（任意） */
    text-align: left;
  }

  .custom-image,
  .custom-text {
    width: 85%; /* 幅を100%にして整列しやすく */
    max-width: 100%;
  }

  .custom-image img {
    width: 100%; /* 画像もスマホ幅にフィット */
    height: auto;
  }
	
  .custom-horizontal-box-left-image {
    display: flex;
    flex-direction: column;
    gap: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
  }

  .custom-horizontal-box-left-image .custom-image,
  .custom-horizontal-box-left-image .custom-text {
    width: 85%;
    max-width: 100%;
  }

  .custom-horizontal-box-left-image .custom-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: bottom; 
	  /* ← これが画像下の隙間を消す */
  }

  .custom-horizontal-box-left-image .custom-text .sp,
  .custom-horizontal-box-left-image .custom-text .sp-desc {
    line-height: 1.4;
  }


	  .custom-horizontal-box-left-image .custom-text .sp {
    margin-top: -70px !important; /* ← 調整値。-10〜-30px で試して調整してください */
    padding-top: 0 !important;
	}}
