@charset "utf-8";
:root {
  --bk: #000;
  --bk2: #030303;
  --bk3: #4b4b4b;
  --bk4: #c4c4c4;
  --wh: #fff;
  --br: #bdaa71;
}
html,
body {
  font-family: "Shippori Mincho", "hiragino-mincho-pron", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.1em;
  overflow-x: clip;
  background-color: #000;
}

.bg-fix {
  background-image: url("../images/bg-white.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-style: normal;
}

a {
  color: #000;
  text-decoration: none !important;
  transition: all 0.3s;
}

a:hover {
  color: #b8351c;
  cursor: pointer;
}

/* フォント */
.p-text {
  font-size: clamp(0.938rem, 0.891rem + 0.25vw, 1.125rem);
}

.f-30 {
  font-size: clamp(1.125rem, 0.939rem + 0.99vw, 1.875rem);
}

.f-40 {
  font-size: clamp(1.25rem, 0.941rem + 1.65vw, 2.5rem);
}

.f-55 {
  font-size: clamp(1.563rem, 1.098rem + 2.48vw, 3.438rem);
}

.fw-900 {
  font-weight: 900;
}

.fc-white {
  color: #fff !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  line-height: 2.2;
  margin: 0;
}
.v-text2 {
  writing-mode: sideways-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.text-shadow-fv {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

.has-shadow2 {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.5);
}

/* テキストカラー*/
.fc-bk {
  color: var(--bk);
}
.fc-bk2 {
  color: var(--bk2);
}
.fc-bk3 {
  color: var(--bk3);
}
.fc-bk4 {
  color: var(--bk4);
}
.fc-wh {
  color: var(--wh);
}
.fc-br {
  color: var(--br);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}
.bg-bk {
  background-color: var(--bk);
}
.bg-bk2 {
  background-color: var(--bk2);
}
.bg-bk3 {
  background-color: var(--bk3);
}
.bg-bk4 {
  background-color: var(--bk4);
}
.bg-wh {
  background-color: var(--wh);
}
.bg-br {
  background-color: var(--br);
}
.bg-bk-40 {
  background-color: rgba(0, 0, 0, 0.4);
}
.bg-washi1 {
  background-image: url("../images/bg-white.jpg");
}
.bg-washi2 {
  background-image: url("../images/bg-black.jpg");
}
.bg-washi3 {
  background-image: url("../images/bg-3.jpg");
}
.bg-washi4 {
  background-image: url("../images/bg-4.jpg");
}
.bg-wave-top {
  background-image: url("../images/wave-top.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% auto;
}
.bg-wave-top-2 {
  background-image: url("../images/wave-top-2.png");
  background-repeat: no-repeat;
  width: 100%;
  background-size: 100% auto;
}
.bg-wave-bottom {
  background-image: url("../images/wave-bottom.png");
  background-size: contain;
}
.bg-grade1 {
  background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  background-size: 100% auto;
}
.bg-grade2 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
  background-size: 100% auto;
}
/*罫線*/
.b-brown {
  border: 1px solid #5e3505;
}

/* ボタン */
.button {
  position: relative;
  display: flex;
  align-items: center;
  width: 250px;
  height: 60px;
  padding-left: 20px;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.2em;
}

/* テキスト */
.button p {
  margin: 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  color: #fff;
  font-size: 15px;
}

/* 矢印 */
.button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 12px;
  background: url("../images/Arrow1.svg") no-repeat right center / contain;
  transition: all 0.3s;
}
.button:hover::after {
  right: 15px;
}
/* 外側のライン */
.button::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 8px;
  width: 100%;
  height: 100%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transition: all 0.3s;
}
.button:hover::before {
  right: -2px;
  top: 2px;
}
/* 黒ボタン用 */
.button.is-black {
  border: 2px solid #000;
  background-color: #000;
}
.button.is-black::before {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}
/*縦型ボタン*/
.button.is-v {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 300px;
  padding: 22px 0;
  background-color: #000;
  border: none;
  letter-spacing: 0.2em;
  overflow: visible;
}

.button.is-v p {
  position: relative;
  margin: 0;
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  padding-bottom: 92px; /* 下の飾り(縦線+菱形)の分 */
}

/* 文字下の縦線 */
.button.is-v p::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  transform: translateX(-50%);
  width: 1px;
  height: 79px;
  background-color: #fff;
  transition: all 0.3s;
}

/* 文字下の菱形 */
.button.is-v p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background-color: #fff;
  transition: all 0.3s;
}

/* 右〜下の罫線(添付イメージの外枠) */
.button.is-v::before {
  content: "";
  position: absolute;
  top: 8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
}

/* 横型ボタンの矢印/外枠は無効化 */
.button.is-v::after {
  content: none;
}

.button.is-v:hover::before {
  right: -0px;
  top: 0px;
}
/* 文字下の縦線 */
.button.is-v:hover p::before {
  bottom: -14px;
}

/* 文字下の菱形 */
.button.is-v:hover p::after {
  bottom: -20px;
}

/* フッターボタン */
.button2 {
  position: relative;
  display: flex;
  align-items: center;
  width: 270px;
  height: 60px;
  padding-left: 20px;
  border: 2px solid #000;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.1em;
}

/* テキスト */
.button2 p {
  margin: 0;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  color: #000;
  font-size: 15px;
}

/* 矢印 */
.button2::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 12px;
  background: url("../images/Arrow3.svg") no-repeat right center / contain;
  transition: all 0.3s;
}
.button2:hover::after {
  right: 15px;
}
/* 外側のライン */
.button2::before {
  content: "";
  position: absolute;
  right: -8px;
  top: 8px;
  width: 100%;
  height: 100%;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transition: all 0.3s;
}
.button2:hover::before {
  right: -2px;
  top: 2px;
}
.footer-ig {
  width: 30px;
  z-index: 5;
}

/* ナビ */
.a-nav-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  z-index: 1200;
  background-color: rgba(0, 0, 0, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .a-nav-box {
    width: 122px;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 35px 12px;
  }
  .a-nav-box.is-active {
    border-right: 1px solid #471313;
  }
}
.a-nav-btn {
  display: flex;
  border: 1px solid #fff;
  cursor: pointer;
  padding: 40px 20px;
  width:100%;
}

.a-nav-btn p {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  font-size: 1.25rem;
  color: #fff;
}

.a-nav-menu {
  display: none;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  transition: all 0.3s;
  background-color: #000;
  overflow-y: scroll;
  padding-top: 76px;
}
@media (min-width: 768px) {
  .a-nav-menu {
    align-items: center;
    padding-left: 120px;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.a-nav-menu.edit {
  display: flex;
  opacity: 1;
}
.a-nav-menu-logo {
  width: 70px;
}
@media (min-width: 768px) {
  .a-nav-menu-logo {
    width: 140px;
  }
}
.a-nav-menu-link {
  display: block;
  margin-bottom: 0.8rem;
}
.a-nav-menu-link-ja {
  font-size: 1rem;
  margin-bottom: 0.1rem;
  color: #fff;
}
.a-nav-menu-link-en {
  font-size: 0.6rem;
  color: #8f8f8f;
  transition: all 0.3s ease;
}
.a-nav-menu-link:hover .a-nav-menu-link-en {
  color: #b8351c;
}

@media (min-width: 768px) {
  .a-nav-menu-link {
    margin-bottom: 1.5rem;
  }
  .a-nav-menu-link {
    margin-bottom: 1.5rem;
  }
  .a-nav-menu-link-ja {
    font-size: 1.5rem;
    margin-bottom: 0.2rem;
  }
}
.a-nav-box.is-active .a-nav-btn,
.a-nav-box.is-active .a-nav-box-logo {
  opacity: 0;
}
.a-nav-box-logo {
  width: 150px;
}
@media (min-width: 768px) {
  .a-nav-box-logo {
    width: 100%;
  }
}
.a-burger {
  position: relative;
  z-index: 1100;
  cursor: pointer;
  width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.a-burger-inner {
  position: relative;
  width: 40px;
  height: 40px;
}
@media (min-width: 768px) {
  .a-burger {
    width: 54px;
  }
  .a-burger-inner {
    width: 54px;
    height: 50px;
    margin-bottom: 10px;
  }
}
.a-burger-inner div {
  position: absolute;
  left: 0;
  background-color: #fff;
  height: 2px;
  transition: all 0.3s ease;
}

.a-burger-inner div:nth-child(1) {
  width: 40px;
  top: 8px;
}
.a-burger-inner div:nth-child(2) {
  width: 30px;
  top: 19px;
}
.a-burger-inner div:nth-child(3) {
  width: 20px;
  top: 30px;
}
.a-burger.is-active .a-burger-inner div:nth-child(1) {
  top: 19px;
  transform: rotate(45deg);
}
.a-burger.is-active .a-burger-inner div:nth-child(2) {
  opacity: 0;
}
.a-burger.is-active .a-burger-inner div:nth-child(3) {
  top: 19px;
  width: 40px;
  transform: rotate(-45deg);
}
@media (min-width: 768px) {
  .a-burger-inner div {
    top: auto;
    left: auto;
    bottom: 0;
    width: 2px;
    height: auto;
  }

  .a-burger-inner div:nth-child(1) {
    width: 2px;
    top: auto;
    height: 50px;
    left: 12px;
  }
  .a-burger-inner div:nth-child(2) {
    width: 2px;
    top: auto;
    height: 36px;
    left: 26px;
  }
  .a-burger-inner div:nth-child(3) {
    height: 25px;
    top: auto;
    width: 2px;
    left: 42px;
  }
  .a-burger.is-active .a-burger-inner div:nth-child(1) {
    left: 26px;
    top: auto;
    width: 2px;
    transform: rotate(45deg);
  }
  .a-burger.is-active .a-burger-inner div:nth-child(2) {
    opacity: 0;
  }
  .a-burger.is-active .a-burger-inner div:nth-child(3) {
    left: 26px;
    top: auto;
    width: 2px;
    height: 50px;
    transform: rotate(-45deg);
  }
}
.a-burger p {
  color: #fff;
  font-size: 0.75rem;
  word-break: keep-all;
}

/* フッター */

/* News表示 */

/* News表示 画像あり版 */
.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.news-list .webgene-item {
  width: 100%;
}

@media (min-width: 768px) {
  .news-list .webgene-item {
    width: 48%;
  }
}

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
}
.zipInput {
  width: 6rem;
}
@media (min-width: 768px) {
  .formTh {
    padding-left: 2rem;
  }
}

.requiredText {
  background-color: #a3987c;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 1rem;
}
.privacyformError {
  padding-top: 25px;
}
@media (min-width: 768px) {
  .privacyformError {
    padding-top: 0;
  }
}
/* ページ共通設定 */

.fv {
  height: calc(100vh - 64px);
  margin-top: 64px;
}

@media (min-width: 992px) {
  .fv {
    height: calc(100vh - 102px);
    margin-top: 102px;
  }
}

.fv-sub {
  height: calc(80vh - 64px);
  margin-top: 64px;
}

@media (min-width: 992px) {
  .fv-sub {
    height: calc(80vh - 102px);
    margin-top: 102px;
  }
}
/* プラシバシーポリシー */
.policy-box {
  overflow-y: scroll;
  height: 400px;
  border-radius: 30px;
}

/* メインコンテナ */
.main {
  position: relative;
  z-index: 100;
  margin-top: 76px;
}
@media (min-width: 768px) {
  .main {
    margin-top: 0;
    margin-left: 122px;
  }
}
.top-fv {
  position: relative;
  width: 100%;
  height: 50vh;
}
@media (min-width: 768px) {
  .top-fv {
    height: 100vh;
  }
}
.top-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-swiper-bg {
  width: 100%;
  height: 100%;
}
.fv-cont {
  position: absolute;
  z-index: 110;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  color: #fff;
}
.top-bg-grade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  z-index: 105;
}

.top-sec1 {
  position: relative;
  height: 50vh;
  width: 100%;
}
.top-sec1-text,
.top-sec1-1,
.top-sec1-2,
.top-sec1-3,
.top-sec1-3-2,
.top-sec1-4 {
  position: absolute;
}
.top-sec1-text {
  z-index: 140;
  display: inline-block;
  width: 16.14%;
  left: 47.93%;
  top: calc((100vw - 112px) * 0.4464);
}
.top-fv-h2 {
  width: 150px;
}
.top-sec1-1 {
  z-index: 120;
  width: 37.5%;
  left: 59.79%;
  top: calc((100vw - 112px) * 0.8821);
}
.top-sec1-2 {
  z-index: 110;
  width: 24.71%;
  left: 0%;
  top: 0;
}
.top-sec1-3 {
  z-index: 130;
  width: 25.5%;
  left: 3.64%;
  top: calc((100vw - 112px) * 0.3914);
}
.top-sec1-3-2 {
  z-index: 130;
  width: 14.36%;
  left: 83.14%;
  top: calc((100vw - 112px) * 0.77);
}
.top-sec1-4 {
  z-index: 130;
  width: 11.79%;
  left: 87.29%;
  top: calc((100vw - 112px) * 1.3643);
}

@media (min-width: 768px) {
  .top-sec1 {
    position: relative;
    height: 71vw;
    width: 100%;
  }
  .top-sec1-text {
    z-index: 140;
    display: inline-block;
    width: 16.14%;
    left: 70.5%;
    top: calc((100vw - 112px) * 0.2464);
  }
  .top-fv-h2 {
    width: 150px;
  }
  .top-sec1-1 {
    z-index: 120;
    width: 37.5%;
    left: 18.79%;
    top: calc((100vw - 112px) * 0.1321);
  }
  .top-sec1-2 {
    z-index: 110;
    width: 24.71%;
    left: 0%;
    top: 0;
  }
  .top-sec1-3 {
    z-index: 130;
    width: 25.5%;
    left: 3.64%;
    top: calc((100vw - 112px) * 0.3914);
  }
  .top-sec1-3-2 {
    z-index: 130;
    width: 14.36%;
    left: 47.14%;
    top: calc((100vw - 112px) * 0.07);
  }
  .top-sec1-4 {
    z-index: 130;
    width: 11.79%;
    left: 47.29%;
    top: calc((100vw - 112px) * 0.4543);
  }
}
.top-sec1-2-cont {
  margin-bottom: 200px;
}
.top-sec2-img-box {
  width: 80%;
  height: 400px;
  margin-top: -200px;
  z-index: 100;
  position: relative;
}
.top-sec2 {
  margin-top: -200px;
  padding-top: 200px;
  position: relative;
  z-index: 2;
}

.title-w-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.938rem, 0.798rem + 0.74vw, 1.5rem);
  font-size: clamp(1.25rem, 0.941rem + 1.65vw, 2.5rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.1em;
}

.title-w-line::before,
.title-w-line::after {
  content: "";
  width: clamp(3.125rem, 1.733rem + 7.43vw, 8.75rem);

  /* 二重線 */
  height: 4px; /* 1px(線) + 1px(隙間) + 1px(線) */
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.8) 0 1px,
    transparent 1px 3px,
    rgba(255, 255, 255, 0.8) 3px 4px
  );
}

.title-w-line::before {
  left: 0;
}

.title-w-line::after {
  right: 0;
}

/* 縦タイトル + 左右の二重縦罫線 */
.title-v-w-line {
  position: relative;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.35rem + 2vw, 2.75rem);

  /* 罫線分の余白 */
  padding: 24px 40px;
}

.title-v-w-line::before,
.title-v-w-line::after {
  content: "";
  position: absolute;
  width: 4px; /* 1px(線) + 2px(間) + 1px(線) */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.85) 0 1px,
    transparent 1px 3px,
    rgba(255, 255, 255, 0.85) 3px 4px
  );
}

/* 右側：上から中盤まで */
.title-v-w-line::before {
  right: 18px;
  top: 0;
  bottom: 35%;
}

/* 左側：中盤から下まで */
.title-v-w-line::after {
  left: 18px;
  top: 55%;
  bottom: 0;
}
@media (min-width: 768px) {
  .top-sec2-title {
    width: 50%;
  }
}

.bg-black-04-left {
  position: relative;
}
.bg-black-04-left div,
.bg-black-04-left p,
.bg-black-04-left p,
.bg-black-04-left a {
  position: relative;
  z-index: 10;
}

.bg-black-04-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw; /* 画面左から */
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

/* 縦タイトル + 左右の二重縦罫線 */
.title-v-w-line {
  position: relative;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.35rem + 2vw, 2.75rem);

  /* 罫線分の余白 */
  padding: 24px 40px;
}

.title-v-w-line::before,
.title-v-w-line::after {
  content: "";
  position: absolute;
  width: 4px; /* 1px(線) + 2px(間) + 1px(線) */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.85) 0 1px,
    transparent 1px 3px,
    rgba(255, 255, 255, 0.85) 3px 4px
  );
}

/* 右側：上から中盤まで */
.title-v-w-line::before {
  right: 18px;
  top: 0;
  bottom: 35%;
}

/* 左側：中盤から下まで */
.title-v-w-line::after {
  left: 18px;
  top: 55%;
  bottom: 0;
}

/* Top menu images marquee */
.top-menu-imgs {
  position: relative;
  overflow: hidden;
  width: 100%;
  /* 端が切れて見えるのを少し柔らかくしたい場合は下のmaskをON */
  /*
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  */
}

/*黒バージョン 縦タイトル + 左右の二重縦罫線 */
.title-v-w-line-bk {
  position: relative;
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #000;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: clamp(1.75rem, 1.35rem + 2vw, 2.75rem);
  margin: 0;

  /* 罫線分の余白 */
  padding: 24px 40px;
}

.title-v-w-line-bk::before,
.title-v-w-line-bk::after {
  content: "";
  position: absolute;
  width: 4px; /* 1px(線) + 2px(間) + 1px(線) */
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85) 0 1px,
    transparent 1px 3px,
    rgba(0, 0, 0, 0.85) 3px 4px
  );
}

/* 右側：上から中盤まで */
.title-v-w-line-bk::before {
  right: 18px;
  top: 0;
  bottom: 35%;
}

/* 左側：中盤から下まで */
.title-v-w-line-bk::after {
  left: 18px;
  top: 55%;
  bottom: 0;
}
@media (min-width: 768px) {
  .top-sec2-title {
    width: 50%;
  }
}

.top-menu-imgs__track {
  display: flex;
  align-items: center;
  gap: 28px; /* 画像間の余白 */
  width: max-content;
  will-change: transform;
}

.top-menu-imgs img {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 220px; /* 必要なら調整 */
  object-fit: cover;
}
@media (min-width: 768px) {
  .top-menu-imgs img {
    height: 260px;
  }
}
.occation-link a img {
  transition: all 0.3s ease;
  transform-origin: center;
}
.occation-link a:hover img {
  transform: scale(1.05);
}

/* Title: underline + left vertical rule (Takeout style) */
.title-under-left-line {
  position: relative;
  display: inline-block;
  padding-left: 28px; /* space for the left rule */
  letter-spacing: 0.12em;
  line-height: 1.75;
}

/* left vertical rule */
.title-under-left-line::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.2em;
  width: 1px;
  background: rgba(0, 0, 0, 0.7);
}

/* Each line underline (wrap each line with .title-under-left-line__line) */
.title-under-left-line {
  display: inline-block;
  position: relative;
  padding-left: 1rem;
}
.title-under-left-line h2 {
  text-decoration: underline #fff;
  text-underline-offset: 0.38em; /* ここで線を下げる（=距離を広げる） */
  text-decoration-thickness: 1px; /* 線の太さ（任意） */
  line-height: 1.8;
  font-size: clamp(1.125rem, 0.862rem + 1.4vw, 2.188rem);
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .title-under-left-line h2 {
    text-decoration: underline #bdaa71;
  }
}
.title-under-left-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 50%;
  width: 1px;
  height: 250%;
  background: var(--bk);
  opacity: 0.75;
}

/* mobile tuning */
@media (max-width: 767px) {
  .title-under-left-line {
  }
}

/* Top section 4 background block: half of Bootstrap .container width */
.top-sec4-bg {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #bdaa71;
  /* Bootstrap container has horizontal padding (typically 12px each side). */
  width: calc(100% - 54px);
  /* height = width * (479/552) */
  aspect-ratio: 552 / 479;
}

/* Bootstrap container max-widths: 540, 720, 960, 1140, 1320 */
@media (min-width: 576px) {
  .top-sec4-bg {
    width: 462px; /* 540 / 2 */
  }
}

@media (min-width: 768px) {
  .top-sec4-bg {
    width: 585px; /* 720 / 2 */
  }
}

@media (min-width: 992px) {
  .top-sec4-bg {
    width: 450px; /* 960 / 2 */
  }
}

@media (min-width: 1200px) {
  .top-sec4-bg {
    width: 540px; /* 1140 / 2 */
  }
}

@media (min-width: 1400px) {
  .top-sec4-bg {
    width: 540px; /* 1320 / 2 */
  }
}
.title-with-circle {
  width: clamp(12.5rem, 12.036rem + 2.48vw, 14.375rem);
  padding-top: 110px;
  background-image: url(../images/title-circle.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding: 95px 30px 0 30px;
}

.top-sec5-h2 {
  width: clamp(5rem, 4.149rem + 4.54vw, 8.438rem);
}

.title-w-line2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.938rem, 0.798rem + 0.74vw, 1.5rem);
  font-size: clamp(1.25rem, 0.941rem + 1.65vw, 2.5rem);
  font-weight: 600;
  color: #000;
  letter-spacing: 0.1em;
}

.title-w-line2::before,
.title-w-line2::after {
  content: "";
  width: clamp(3.125rem, 1.733rem + 7.43vw, 8.75rem);

  /* 二重線 */
  height: 4px; /* 1px(線) + 1px(隙間) + 1px(線) */
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.8) 0 1px,
    transparent 1px 3px,
    rgba(0, 0, 0, 0.8) 3px 4px
  );
}

.title-w-line2::before {
  left: 0;
}

.title-w-line2::after {
  right: 0;
}

.photo-wrap::before {
  content: "";
  position: absolute;
  top: -135px;
  left: 50%;
  width: 1px;
  height: 85%;
  background-color: #000;
  transform: translateX(-50%) rotate(45deg);
  z-index: 0;
}

@media (max-width: 768px) {
  .photo-wrap::before {
    display: none;
  }
}

.top-sec6-left {
  margin-bottom: clamp(4.375rem, 3.173rem + 6.41vw, 6.25rem);
}

@media (min-width: 768px) {
  .top-sec6-left {
    margin-bottom: none;
  }
}

.top-sec7 {
  background-image: url("../images/wave-bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain; /* or cover */
}

.top-sec7-h2 {
  font-size: clamp(1.75rem, 1.35rem + 2vw, 2.75rem);
}

.title-with-circle2 {
  width: clamp(10.313rem, 10.08rem + 1.24vw, 11.25rem);
  padding-top: 110px;
  background-image: url(../images/title-circle.png);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding: 75px 30px 0 30px;
}

.news-item {
  border-bottom: #000 1px solid;
}

.news-arrow {
  width: 25px;
}

/*フッター*/
.footer {
  position: relative;
  background-color: #f1f4f9;
  z-index: 10;
}

.footer-tel {
  width: 35px;
}

.footer-logo {
  width: 90px;
}

/*こだわり*/
.fv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv-h1 {
  font-size: clamp(1.563rem, 1.33rem + 1.24vw, 2.5rem);
}

.about-sec1 {
  position: relative;
}

.about-sec1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  height: 60%;
  background-color: var(--br);
  z-index: -1;
}

@media (max-width: 768px) {
  .about-sec1::after {
    width: 70%;
    height: 5%;
  }
}

.about-sec1-h2 {
  position: relative;
  width: clamp(15.625rem, 13.691rem + 10.31vw, 23.438rem);
}

@media (min-width: 992px) {
  .about-sec1-h2 {
    margin-left: auto;
  }
}

.about-sec1-h2::after {
  content: "";
  position: absolute;
  left: -50%;
  bottom: -50%;
  transform: translateX(-50%);
  width: 305%; /* 線の長さ */
  height: 1px; /* 線の太さ */
  background-color: #000;
}

.about-sec1-p {
  line-height: 2;
}

@media (min-width: 992px) {
  .about-sec1-p {
    margin-left: auto;
  }
}

.about__right {
  display: grid;
  grid-template-rows: repeat(3, auto);
  gap: 25px;
}

.about-sec1-img1 {
  width: 85%;
  margin-left: auto;
  margin-top: 10%;
}

@media (min-width: 768px) {
  .about-sec1-img1 {
    width: 80%;
    margin-left: 25%;
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .about-sec1-img1 {
    width: 80%;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .about-sec1-img1 {
    width: 85%;
  }
}

.about-sec1-img2 {
  width: 85%;
  margin-left: auto;
}

@media (min-width: 768px) {
  .about-sec1-img2 {
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .about-sec1-img2 {
    width: 65%;
  }
}

.about-sec1-img3 {
  width: 85%;
  margin-left: auto;
}

@media (min-width: 768px) {
  .about-sec1-img3 {
    width: 65%;
    margin-left: 15%;
  }
}
@media (min-width: 1200px) {
  .about-sec1-img3 {
    width: 50%;
  }
}

.bg-white-left {
  position: relative;
}
/*
.bg-black-04-left div,
.bg-black-04-left p,
.bg-black-04-left p,
.bg-black-04-left a {
  position: relative;
  z-index: 10;
}
*/

.bg-white-left::before {
  content: "";
  position: absolute;
  top: 10%;
  right: 15%;
  width: 100vw; /* 画面左から */
  height: 90%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -2;
}
@media (max-width: 768px) {
  .bg-white-left::before {
    top: 0;
    right: -20%;
    width: 200%;
  }
}
@media (min-width: 768px) {
  .about-sec2 {
    margin-top: -45vw;
  }
}
@media (min-width: 992px) {
  .about-sec2 {
    margin-top: 0;
  }
}
.about-sec2-img {
  position: absolute;
  width: 100%;
  margin-top: -70%;
}

@media (min-width: 768px) {
  .about-sec2-img {
    width: 75%;
    margin-top: -10%;
  }
}

@media (min-width: 992px) {
  .about-sec2-img {
    width: 75%;
    margin-top: -10%;
  }
}

@media (min-width: 1200px) {
  .about-sec2-img {
    width: 60%;
  }
}

.about-sec2-box1 {
  position: relative;
  width: 3clamp (16.875rem, -1.534rem + 98.18vw, 33.75rem);
  margin-left: auto;
  border: #000 1px solid;
  margin-right: 5%;
  margin-top: 10%;
}

@media (min-width: 576px) {
  .about-sec2-box1 {
    width: clamp(33.75rem, 16.875rem + 46.88vw, 39.375rem);
  }
}

@media (min-width: 768px) {
  .about-sec2-box1 {
    width: clamp(39.375rem, 24.288rem + 31.39vw, 43.75rem);
  }
}

@media (min-width: 992px) {
  .about-sec2-box1 {
    width: 580px;
  }
}

@media (max-width: 768px) {
  .about-sec2-box1 {
    margin-top: 70%;
  }
}

.about-sec2-box1::before {
  content: "";
  position: absolute;
  inset: -16px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

@media (max-width: 768px) {
  .about-sec2-box1::before {
    inset: -7px;
  }
}

.about-sec2-left {
  position: relative;
  width: 100%;
  z-index: -2;
}

.about-sec2-2 {
  width: 65%;
}

.about-mushi {
  position: relative;
}

@media (max-width: 992px) {
  .about-mushi {
    display: flex;
    justify-content: center;
  }
}

.about-mushi::before {
  content: "";
  width: 55%;
  height: 90%;
  background: url(../images/bg-black.jpg);
  position: absolute;
  top: 3%;
  right: 12%;
  z-index: 0;
}

@media (min-width: 992px) {
  .about-mushi::before {
    width: 85%;
    height: 40%;
    top: 3%;
    right: -2%;
  }
}

@media (min-width: 1200px) {
  .about-mushi::before {
    width: 65%;
    height: 65%;
  }
}

@media (min-width: 1400px) {
  .about-mushi::before {
    width: 65%;
    height: 85%;
  }
}

.about-tare {
  position: relative;
}

@media (max-width: 768px) {
  .about-tare {
    display: flex;
    justify-content: center;
  }
}

.about-tare::before {
  content: "";
  width: 60%;
  height: 85%;
  background: url(../images/bg-black.jpg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

@media (max-width: 768px) {
  .about-tare::before {
    width: 60%;
    height: 80%;
    top: 3%;
    right: 7%;
  }
}

@media (min-width: 992px) {
  .about-tare::before {
    width: 70%;
    height: 40%;
  }
}

@media (min-width: 1200px) {
  .about-tare::before {
    width: 60%;
    height: 60%;
  }
}

@media (min-width: 1400px) {
  .about-tare::before {
    width: 60%;
    height: 85%;
  }
}

.about-sec2-2 img {
  position: relative;
  z-index: 1;
}

.about-mushi-h3 {
  font-size: clamp(1.563rem, 1.098rem + 2.48vw, 3.438rem);
}

.about-mushi-h3::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 650%;
  background-color: #000;
  bottom: 25%;
  left: -720%;
  transform: rotate(-35deg);
  transform-origin: top;
  z-index: -3;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-mushi-h3::before {
    display: none;
  }
}

.mushi-wrap {
  align-items: flex-start; /* ← 見た目の「上揃え」 */
  gap: 24px;
}

.mushi-wrap h3,
.mushi-wrap p {
  margin: 0;
}

.about-mushi-h3-2 {
  font-size: clamp(1.563rem, 1.098rem + 2.48vw, 3.438rem);
}

.about-mushi-h3-2::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #000;
  top: -185%;
  right: 360%;
  transform: rotate(-35deg);
  transform-origin: top;
  z-index: -3;
  opacity: 0.8;
}

@media (max-width: 992px) {
  .about-mushi-h3-2::before {
    display: none;
  }
}

.occasions-box1 {
  position: relative;
}

.occasions-box1::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -40%;
  width: 100vw; /* 画面左から */
  height: 90%;
  background: rgba(255, 255, 255, 0.4);
}

.occasions-sec2-box1 p {
  padding: 10%;
}

@media (min-width: 768px) {
  .occasions-sec2-box1 p {
    padding: 1%;
  }
}

.occasions-box2 {
  position: relative;
}

.occasions-box2::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 10%;
  width: 100vw; /* 画面左から */
  height: 90%;
  background: rgba(255, 255, 255, 0.4);
}

.occasions-sec2-box1::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90%; /* 白い面の横幅 */
  height: 80%; /* 白い面の高さ */
  background: rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.occasions-sec2-h2 {
  margin-left: -5%;
  margin-right: -5%;
}

.occasions-textt-left {
  margin-right: 0;
}

@media (min-width: 768px) {
  .occasions-textt-left {
    margin-right: 20%;
  }
}

@media (min-width: 992px) {
  .occasions-textt-left {
    margin-right: 30%;
  }
}

@media (min-width: 1200px) {
  .occasions-textt-left {
    margin-right: 40%;
  }
}

.occasions-box1-img {
  margin-left: auto;
}
/*
@media (min-width: 768px) {
  .occasions-box1-img {
    margin-left: -25%;
  }
}
*/
@media (min-width: 992px) {
  .occasions-box1-img {
    margin-left: -10%;
  }
}

@media (min-width: 1200px) {
  .occasions-box1-img {
    margin-left: 0%;
  }
}

.occasions-box1-img2 {
  margin-left: auto;
}
/*
@media (min-width: 768px) {
  .occasions-box1-img2 {
    margin-left: -35%;
  }
}
*/
@media (min-width: 992px) {
  .occasions-box1-img2 {
    margin-left: -30%;
  }
}

@media (min-width: 1200px) {
  .occasions-box1-img2 {
    margin-left: -25%;
  }
}

.photo {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.photo-left {
  width: 220px;
  top: 20%;
  right: -12%;
  z-index: 1;
}

@media (max-width: 576px) {
  .photo-left {
    display: none;
  }
}

@media (min-width: 768px) {
  .photo-left {
    width: 260px;
  }
}

@media (min-width: 992px) {
  .photo-left {
    right: -3%;
  }
}

.photo-center {
  width: 165px;
  top: 30%;
  left: 5%;
  transform: translateX(-50%);
  z-index: 3;
}

@media (max-width: 576px) {
  .photo-center {
    display: none;
  }
}

@media (min-width: 768px) {
  .photo-center {
    width: 195px;
    top: 30%;
    left: 10%;
  }
}

@media (min-width: 992px) {
  .photo-center {
    width: 240px;
    top: 30%;
    left: 6%;
  }
}

@media (min-width: 1200px) {
  .photo-center {
    width: 320px;
    top: 30%;
    left: 0;
  }
}

.photo-right {
  width: 260px;
  bottom: -31%;
  right: 0;
  z-index: 2;
}

@media (max-width: 576px) {
  .photo-right {
    display: none;
  }
}

.occasions-sec3-box {
  width: 380px;
}

.occasions-sec3-cont1 {
  padding-bottom: clamp(37.5rem, 31.312rem + 33vw, 62.5rem);
}

.occasions-sec3-h2 {
  position: relative;
}

.occasions-sec3-h2::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background-color: #fff;
}

.occasions-sec3 {
  position: relative;
  z-index: -2;
}

.occasions-sec3::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25%;
  width: 100vw; /* 画面左から */
  height: 35%;
  background: rgba(0, 0, 0, 0.4);
}

.photo-tabel1 {
  position: absolute;
  top: 45%;
  right: 0;
  width: 65%;
  z-index: 1;
}

@media (min-width: 768px) {
  .photo-tabel1 {
    top: 30%;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .photo-tabel1 {
    top: 28%;
  }
}

@media (min-width: 1200px) {
  .photo-tabel1 {
    top: 9%;
  }
}

.photo-tabel2 {
  position: absolute;
  top: 66%;
  left: 0;
  width: 65%;
  z-index: 1;
}
@media (min-width: 768px) {
  .photo-tabel2 {
    top: 54%;
    width: 45%;
  }
}

@media (min-width: 992px) {
  .photo-tabel2 {
    top: 55%;
  }
}

@media (min-width: 1200px) {
  .photo-tabel2 {
    top: 41%;
  }
}

.photo-tabel3 {
  position: absolute;
  top: 80%;
  right: 13%;
  width: 40%;
  z-index: 1;
}
@media (min-width: 768px) {
  .photo-tabel3 {
    top: 67%;
    width: 40%;
  }
}
@media (min-width: 992px) {
  .photo-tabel3 {
    top: 69%;
  }
}

@media (min-width: 1200px) {
  .photo-tabel3 {
    top: 58%;
  }
}

.photo-tabel4 {
  position: absolute;
  top: 14%;
  left: 15%;
  width: 10%;
  z-index: 1;
}

@media (min-width: 576px) {
  .photo-tabel4 {
    width: 8%;
  }
}

@media (min-width: 768px) {
  .photo-tabel4 {
    top: 42%;
    left: 30%;
    width: 8%;
  }
}
@media (min-width: 992px) {
  .photo-tabel4 {
    top: 38%;
  }
}

@media (min-width: 1200px) {
  .photo-tabel4 {
    top: 68%;
  }
}

.occasions-sec3-text2 {
  margin-left: auto;
}

.photo-floor1 {
  position: absolute;
  top: 50%;
  left: 0;
  width: 60%;
  z-index: 1;
}

@media (min-width: 768px) {
  .photo-floor1 {
    top: 45%;
    left: 0;
    width: 50%;
  }
}

@media (min-width: 992px) {
  .photo-floor1 {
    top: 0;
    left: 0;
  }
}

.photo-floor2 {
  position: absolute;
  top: 80%;
  right: 0;
  width: 57%;
  z-index: 1;
}

@media (min-width: 768px) {
  .photo-floor2 {
    top: 70%;
    right: 0;
    width: 45%;
  }
}

@media (min-width: 992px) {
  .photo-floor2 {
    top: 45%;
    right: 0;
  }
}

.photo-floor3 {
  position: absolute;
  top: 9%;
  left: 68%;
  width: 10%;
  z-index: 1;
}
@media (min-width: 768px) {
  .photo-floor3 {
    top: 53%;
    left: 58%;
    width: 8%;
  }
}

@media (min-width: 992px) {
  .photo-floor3 {
    top: 54%;
    left: 35%;
  }
}

.occasions-sec3-cont2 {
  padding-bottom: clamp(25rem, 20.359rem + 24.75vw, 43.75rem);
}

.occasions-sec3-cont2::before {
  content: "";
  position: absolute;
  top: -15%;
  left: 15%;
  width: 100vw;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.menu-sec1 {
  position: relative;
  z-index: -2;
}

.menu-sec1::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 0;
  width: 100vw;
  height: 80%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.menu-sec1-cont {
  z-index: 1;
}

.menu-detail__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-sec2-count1::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -20%;
  width: 200%;
  height: 170%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

@media (min-width: 375px) {
  .menu-sec2-count1::before {
    height: 150%;
  }
}

@media (min-width: 425px) {
  .menu-sec2-count1::before {
    height: 145%;
  }
}

@media (min-width: 495px) {
  .menu-sec2-count1::before {
    height: 140%;
  }
}

@media (min-width: 576px) {
  .menu-sec2-count1::before {
    height: 140%;
  }
}

@media (min-width: 768px) {
  .menu-sec2-count1::before {
    height: 135%;
  }
}

@media (min-width: 992px) {
  .menu-sec2-count1::before {
    height: 130%;
  }
}

.menu-sec2-count2::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -20%;
  width: 200%;
  height: 95%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

@media (min-width: 345px) {
  .menu-sec2-count2::before {
    height: 95%;
  }
}

@media (min-width: 475px) {
  .menu-sec2-count2::before {
    height: 85%;
  }
}

@media (min-width: 576px) {
  .menu-sec2-count2::before {
    height: 80%;
  }
}

/* ===== 縦タイトル ===== */
.menu-title {
  position: relative;
  writing-mode: vertical-rl;
  font-size: 32px;
  letter-spacing: 0.2em;
}

.menu-title::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
  background-color: #000;
}

/* ===== メイン画像 ===== */
.menu-main {
  width: 100%;
}

@media (min-width: 992px) {
  .menu-main {
    width: 80%;
  }
}

@media (min-width: 992px) {
  .menu-sub {
    margin: 0 auto;
  }
}

.menu-main img {
  width: 100%;
  display: block;
}

/* ===== サブ画像 ===== */
.menu-sub {
  position: absolute;
  bottom: -240px;
  left: 0;
  width: 35%;
}

@media (max-width: 992px) {
  .menu-sub {
    display: none;
  }
}

@media (min-width: 992px) {
  .menu-sub {
    bottom: -210px;
    left: 7%;
  }
}

@media (min-width: 1200px) {
  .menu-sub {
    bottom: -240px;
    left: 0;
  }
}

.menu-sub img {
  width: 100%;
  display: block;
}

/* ===== テキストエリア ===== */
.menu-text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 25px;
  color: #000;
}

@media (min-width: 576px) {
  .menu-text {
    left: 0;
    width: 100%;
    padding: 40px;
  }
}

@media (min-width: 768px) {
  .menu-text {
    left: 10%;
    width: 90%;
  }
}

@media (min-width: 992px) {
  .menu-text {
    left: 40%;
    width: 50%;
  }
}

@media (min-width: 1200px) {
  .menu-text {
    left: 35%;
    width: 50%;
  }
}

.menu-text-bg {
  content: "";
  position: absolute;
  top: -52%;
  right: -13%;
  width: 135%;
  height: 185%;
  z-index: -1;
}

@media (max-width: 992px) {
  .menu-text-bg {
    display: none;
  }
}

@media (min-width: 992px) {
  .menu-text-bg {
    top: -20%;
    right: -23%;
    width: 150%;
  }
}

@media (min-width: 1200px) {
  .menu-text-bg {
    top: -52%;
    right: -13%;
    width: 135%;
  }
}

.price {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.meta {
  margin-bottom: 20px;
}

.description {
  line-height: 1.8;
  margin-bottom: 15px;
}

.menu-text small {
  font-size: 12px;
}

.f-25 {
  font-size: clamp(1.125rem, 1.017rem + 0.58vw, 1.563rem);
}

.margin-box {
  height: clamp(18.75rem, 15.656rem + 16.5vw, 31.25rem);
}

.menu-sec3-img1 {
  width: 85%;
}

.menu-sec3-h3::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -3%;
  transform: translateX(-50%);
  width: 1px;
  height: 460%;
  background-color: #000;
  z-index: -1;
}

.menu-sec3-cont::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -3%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -2;
}

.menu-sec3 {
  background-image: url("../images/wave-bottom.png");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain; /* or cover */
}

.menu-sec4-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--br);
}

.menu-sec4-title2::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--br);
}

.ex-p {
  font-size: 15px;
}

.menu-sec4-title3 {
  margin-bottom: 40px;
}

.menu-sec4-title3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 1px;
  background-color: #8f8f8f;
}

.menu-sec4-side {
  height: 95%;
}

.menu-sec4-side2 {
  height: 75%;
}

@media (min-width: 768px) {
  .menu-sec4-side2 {
    height: 95%;
  }
}

.menu-sec4 {
  z-index: 1;
}

.menu-sec4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15%;
  width: 100vw;
  height: 90%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.takeout-slider {
  max-width: 960px;
  margin: 0 auto;
}

.takeout-slider img {
  width: 100%;
  height: auto;
  display: block;
}

/* ページネーション位置 */
.takeout-slider .swiper-pagination {
  position: static;
  margin-top: 16px;
  text-align: center;
}

/* ○の色・サイズ */
.takeout-slider .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #c9b27c; /* 金系 */
  opacity: 0.4;
}

.takeout-slider .swiper-pagination-bullet-active {
  opacity: 1;
}

.takeout-text {
  width: 50%;
}

@media (max-width: 576px) {
  .takeout-text {
    flex-direction: column;
  }
}

@media (min-width: 576px) {
  .takeout-text {
    width: 80%;
  }
}

.takeout-text::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: -20px;
  width: 80%;
  height: 1px;
  background-color: #8f8f8f;
}

.takeout-text-p {
  width: 85%;
}

.takeout-text-wrap {
  z-index: 1;
  padding: 5%;
}

.takeout-text-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

.takeout-sec3 {
  z-index: 1;
}

.takeout-sec3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  width: 100vw;
  height: 95%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.takeout-sec5-h2 {
  z-index: 2;
}

.takeout-sec5-h2::before {
  content: "";
  position: absolute;
  width: 115px;
  height: 180px;
  background: url(../images/title-circle_s.png) no-repeat center / contain;
  z-index: -1;
  top: -300%;
  left: 25%;
}

@media (min-width: 576px) {
  .takeout-sec5-h2::before {
    top: -240%;
    left: 37%;
    width: 120px;
  }
}

@media (min-width: 768px) {
  .takeout-sec5-h2::before {
    top: -203%;
    left: 37%;
    width: 145px;
  }
}

@media (min-width: 992px) {
  .takeout-sec5-h2::before {
    top: -175%;
    left: 40%;
    width: 180px;
  }
}

.takeout-sec5-box {
  border: #000 1px solid;
  width: 80%;
}

@media (max-width: 576px) {
  .takeout-sec5-box {
    width: 100%;
  }
}

.takeout-sec5-book {
  width: 70%;
}

@media (max-width: 576px) {
  .takeout-sec5-book {
    flex-direction: column;
  }
}

.story-text {
  width: 70%;
}

.info-sec1::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 0;
  width: 200%;
  height: 50%;
  background: rgba(255, 255, 255, 0.4);
  z-index: -1;
}

@media (min-width: 576px) {
  .info-sec1::before {
    top: 8%;
    left: 0;
    height: 38%;
  }
}

@media (min-width: 768px) {
  .info-sec1::before {
    top: 10%;
    left: 0;
    height: 45%;
  }
}

@media (min-width: 992px) {
  .info-sec1::before {
    top: 10%;
    left: 0;
    height: 40%;
  }
}

@media (min-width: 1200px) {
  .info-sec1::before {
    top: 9%;
    left: 5%;
    width: 200%;
    height: 38%;
  }
}

.info-sec1-img {
  width: 100%;
}

@media (max-width: 1200px) {
  .info-sec1-img {
    display: none;
  }
}

.info-sec2 {
  position: relative;
  z-index: 5;
}

.info-sec2::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15%;
  width: 100vw;
  height: 95%;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.info-gm {
  height: 400px;
}

.faq-box::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  bottom: -20px;
  background-color: var(--br);
}

@media (min-width: 992px) {
  .faq-box::after {
    bottom: -40px;
  }
}

.faq-q::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 85%;
  background-color: var(--br);
  right: 0;
  top: 35%;
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 576px) {
  .faq-q::after {
    right: -10%;
    top: 75%;
  }
}

.faq-cont::before {
  content: "";
  position: absolute;
  inset: -16px;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.webgene-pagination {
  display: flex;
  justify-content: center;
  margin-top: clamp(3.125rem, 2.619rem + 2.19vw, 4.688rem);
}

.webgene-pagination a {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 12px;
  width: clamp(6.25rem, 5.238rem + 4.38vw, 9.375rem);
  gap: 30px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  display: inline-block;
  text-align: center;
}

.webgene-pagination a:hover {
  color: #b8351c;
}

.webgene-pagination li {
  display: inline-block;
}

.calender-wrap iframe {
  border: none;
}

.news-date {
  color: var(--br);
}

.news-content {
  position: relative;
}

.news-content::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: -1;
}

.pagelink {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.btn-p-box {
  display: flex;
  justify-content: center;
}

.btn-block__link {
  color: #000;
  background-color: transparent;
  padding: 20px 75px;
  border: #000 1px solid;
}

.footer-calender {
  width: 100%;
}

.top-sec7-h2 {
  margin: 0;
}

.white-space-nowrap {
  white-space: nowrap;
}

.top-sec7-sub {
  margin-left: -15%;
}

.story-img-1 {
  height: auto;
}

@media (max-width: 576px) {
  .story-img-1 {
    height: 150%;
  }
}

.all-img {
  object-fit: cover;
}
