@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #333;
  --white-color: #fff;
  --beige-color: #fff9f1;
  --primary-color: #462e2e;
  --accent-color: #2a4743;
  --sub-color: #b19962;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1100px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* ---------- base ---------- */

@media screen and (min-width: 1100px) {
  html {
    scroll-behavior: smooth;
  }
}

section {
  scroll-margin-top: 72px;
}

@media (min-width: 500px) {
  section {
    scroll-margin-top: 90px;
  }
}

@media (min-width: 768px) {
  section {
    scroll-margin-top: 100px;
  }
}

@media (min-width: 1100px) {
  section {
    scroll-margin-top: 122px;
  }
}

body {
  color: var(--black-color);
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  background-color: var(--primary-color);
}

/* #opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #462e2e;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  opacity: 0;
  transform: scale(0.8);
} */

#opening {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; と同義 */
  height: 100vh;
  height: 100dvh; /* 対応端末ではこっちが効く */
  width: 100vw;
  background-color: #462e2e;
  z-index: 9999;
  display: grid;
  place-items: center;
}

/* ローディングアニメーション */

/* ローディング画面 */
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: var(--primary-color);

  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
}

.loaded {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  font-size: 3px;
  margin: 50% auto;
  text-indent: -9999em;
  width: 11em;
  height: 11em;
  border-radius: 50%;
  background: #ffffff;
  background: -moz-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: -webkit-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: -o-linear-gradient(left, #ffffff 10%, rgba(255, 255, 255, 0) 42%);
  background: -ms-linear-gradient(
    left,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  background: linear-gradient(
    to right,
    #ffffff 10%,
    rgba(255, 255, 255, 0) 42%
  );
  position: relative;
  -webkit-animation: load3 1.4s infinite linear;
  animation: load3 1.4s infinite linear;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before {
  width: 50%;
  height: 50%;
  background: #ffffff;
  border-radius: 100% 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
}
.spinner:after {
  background: var(--primary-color);
  width: 75%;
  height: 75%;
  border-radius: 50%;
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
@-webkit-keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.logo {
  display: block; /* 余白防止 */
  max-width: min(100vw, 3000px); /* 端末に合わせて縮む */
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center center;
}

@media screen and (min-width: 768px) {
  .logo {
    max-width: min(70vw, 5200px);
  }
}

p.top_kv_copy {
  opacity: 0;
  transform: translateX(100%);
  color: #b19962;
}

.catchcopy {
  opacity: 0;
  transform: translateX(100%);
  color: #b19962;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* ---------- utility ---------- */

@media screen and (min-width: 375px) {
  .u_sm-dn {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .u_lg-dn {
    display: none;
  }
}

/* ---------- layout ---------- */

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_header__brown {
  height: 72px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: var(--z-index-header);
  background: var(--primary-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  /* height: var(--header-height); */
  z-index: var(--z-index-header); /* 既存変数使う */
}

@media screen and (min-width: 500px) {
  .l_header__brown {
    height: 90px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 768px) {
  .l_header__brown {
    height: 100px;
    padding: 0 48px;
  }
}

@media screen and (min-width: 1100px) {
  .l_header__brown {
    height: 122px;
    padding: 0 64px;
  }
}

.l_header__white {
  height: 72px;
  width: 100%;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: var(--z-index-header);
  background: var(--beige-color);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  /* height: var(--header-height); */
  z-index: var(--z-index-header); /* 既存変数使う */
}

@media screen and (min-width: 500px) {
  .l_header__white {
    height: 90px;
    padding: 0 32px;
  }
}

@media screen and (min-width: 768px) {
  .l_header__white {
    height: 100px;
    padding: 0 48px;
  }
}

@media screen and (min-width: 1100px) {
  .l_header__white {
    height: 122px;
    padding: 0 64px;
  }
}

.l_header-logo img {
  max-width: 200px; /* PC用の最大幅 */
  height: auto;
}

@media (max-width: 768px) {
  .l_header-logo img {
    max-width: 80px; /* SP時は小さめ */
  }
}

.l_header_icon {
  display: block;
  width: 30px;
  height: 30px;
}

.l_header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white-color);
  z-index: var(--z-index-header);
  flex: 1;
}

@media screen and (min-width: 1200px) {
  .l_header-nav {
    position: static;
    background: transparent;
    width: auto;
    height: auto;
    opacity: 1;
    pointer-events: auto;
  }
}

.l_header-nav_list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1200px) {
  .l_header-nav_list {
    display: flex;
    /* gap: 0 48px; */
    position: static;
    transform: none;
    justify-content: flex-end;
  }
}

.l_header-nav_link {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--sub-color);
  width: 100%;
  margin-right: 48px;
}

/* 通常状態 */
.l_header-nav_link {
  font-weight: bold;
  position: relative;
  color: var(--sub-color);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
  transform-style: preserve-3d; /* 3D効果を出すため */
}

/* 下線用の疑似要素 */
.l_header-nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 下線の位置 */
  width: 0%;
  height: 2px; /* 線の太さ */
  background-color: var(--white-color);
  transition: width 0.3s ease;
  border-radius: 2px; /* 少し丸みをつけると3D感 */
}

/* ホバー時 */
.l_header-nav_link:hover {
  color: var(--white-color); /* 文字色 */
  transform: translateY(-5px) rotateX(10deg) rotateY(2deg) scale(1.05);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2); /* 文字に立体感 */
}

.l_header-nav_link:hover::after {
  width: 100%; /* 下線が文字幅いっぱいに伸びる */
}

.l_header-nav_link____white {
  font-family: "Playfair Display", serif;
  font-weight: bold;
  color: var(--primary-color);
  width: 100%;
  margin-right: 48px;
}
/* 通常状態 */
.l_header-nav_link____white {
  position: relative;
  color: var(--primary-color); /* 文字色 */
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
  transform-style: preserve-3d; /* 3D効果 */ /* 通常状態 */
  .l_header-nav_link____white {
    position: relative;
    color: var(--primary-color); /* 文字色 */
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s, transform 0.3s, text-shadow 0.3s;
    transform-style: preserve-3d; /* 3D効果 */
  }

  /* 下線用の疑似要素 */
  .l_header-nav_link____white::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px; /* 下線の位置 */
    width: 0%;
    height: 2px; /* 線の太さ */
    background-color: #ccc; /* グレー色 */
    transition: width 0.3s ease;
    border-radius: 2px; /* 少し丸みをつける */
  }

  /* ホバー時 */
  .l_header-nav_link____white:hover {
    color: var(--primary-color); /* ホバー時も文字色は同じ */
    transform: translateY(-5px) rotateX(10deg) rotateY(2deg) scale(1.05);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2); /* 文字に立体感 */
  }

  .l_header-nav_link____white:hover::after {
    width: 100%; /* 下線が文字幅いっぱいに伸びる */
  }
}

/* 下線用の疑似要素 */
.l_header-nav_link____white::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px; /* 下線の位置 */
  width: 0%;
  height: 2px; /* 線の太さ */
  background-color: #ccc; /* グレー色 */
  transition: width 0.3s ease;
  border-radius: 2px; /* 少し丸みをつける */
}

/* ホバー時 */
.l_header-nav_link____white:hover {
  color: var(--primary-color); /* ホバー時も文字色は同じ */
  transform: translateY(-5px) rotateX(10deg) rotateY(2deg) scale(1.05);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 2px 2px 5px rgba(0, 0, 0, 0.2); /* 文字に立体感 */
}

.l_header-nav_link____white:hover::after {
  width: 100%; /* 下線が文字幅いっぱいに伸びる */
}

.l_header-nav_item {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1200px) {
  .l_header-nav_item {
    color: var(--brown-color);
    font-weight: normal;
    height: 100%;
    display: flex;
    align-items: center;
  }
}

.l_header-nav_item:not(:first-child) {
  margin-top: 40px;
}

@media screen and (min-width: 1200px) {
  .l_header-nav_item:not(:first-child) {
    margin-top: 0;
  }
}

.l_page-img-wrapper {
  position: relative;
}

.l_page-img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.l_page-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white-color);
  letter-spacing: 0.25em;
}

@media screen and (min-width: 768px) {
  .l_page-txt {
    border: solid 1px var(--white-color);
    background-color: var(--brown-color);
    padding: 16px 32px;
  }
}

.l_page_copy {
  font-size: 24px;
  font-weight: bold;
}

@media screen and (min-width: 1100px) {
  .l_page_copy {
    font-size: 32px;
  }
}

/* module */

.m_btn {
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  background: var(--accent-color);
  position: relative;
  font-weight: bold;
  overflow: hidden;
}

.m_btn-wrapper {
  width: 160px;
  height: 60px;
  margin-left: auto;
  margin-right: auto;
}

.m_btn.m_btn_menu {
  display: inline-flex; /* 文字中央揃え */
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  color: #fff; /* 白文字 */
  background-color: var(--accent-color); /* 元のカラーに合わせる */
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid #462e2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.m_btn.m_btn_menu:hover {
  transform: translateY(-3px); /* 浮かせる */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    color-mix(in srgb, var(--accent-color) 70%, white) 100%
  );
  color: #fff;
  /* 少し明るめに変化（好みで調整） */
}

.m_btn.m_btn_menu:active {
  transform: scale(0.95); /* クリック感 */
}

.m_btn:hover {
  opacity: 0.9;
}

.m_btn__contact {
  background: var(--accent-color);
  color: var(--white-color);
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.m_btn_input {
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease; /* なめらかなアニメーション */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* ホバー時のアニメーション */
.m_btn_input:hover {
  transform: translateY(-3px) scale(1.05); /* 少し浮かせて大きく */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  background: linear-gradient(45deg, var(--accent-color));
}

/* クリック時のアニメーション */
.m_btn_input:active {
  transform: translateY(1px) scale(0.98); /* 押された感 */
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
}

.m_btn_concept {
  font-family: "Playfair Display", serif;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  overflow: hidden;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: var(--sub-color);
}
.m_btn.m_btn_concept {
  display: inline-flex; /* 中央揃え */
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  color: var(--white-color); /* 白文字 */
  background: var(--sub-color); /* サブカラー背景 */
  text-decoration: none;
  border: none;
  white-space: nowrap;
}
.m_btn.m_btn_concept:hover {
  transform: translateY(-3px); /* ホバーで浮く */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: color-mix(
    in srgb,
    var(--sub-color) 80%,
    white
  ); /* 明るめに変化 */
}

.m_btn.m_btn_concept:active {
  transform: scale(0.95); /* クリック感 */
}

.m_btn_news {
  font-family: "Playfair Display", serif;
  width: 100%;
  height: 100%;
  border-radius: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white-color);
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  background: var(--sub-color);
}
.m_btn.m_btn_news {
  display: inline-flex; /* 文字をど真ん中に */
  justify-content: center;
  align-items: center;
  padding: 12px 28px;
  color: var(--white-color); /* 白文字 */
  background: var(--sub-color); /* 背景色 */
  text-decoration: none;
  border: none; /* 枠線なし */
  white-space: nowrap;
}

.m_btn.m_btn_news:hover {
  transform: translateY(-3px); /* ホバーで浮く */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background: color-mix(
    in srgb,
    var(--sub-color) 80%,
    white
  ); /* ほんのり明るくする */
}

.m_btn.m_btn_news:active {
  transform: scale(0.95); /* クリック感 */
}

.m_btn.m_btn__service {
  display: inline-flex; /* ← inline-block から inline-flex に変更 */
  justify-content: center; /* 横方向の中央揃え */
  align-items: center; /* 縦方向の中央揃え */
  padding: 10px 20px;
  color: #fff; /* 文字を白に */
  background-color: var(--accent-color); /* 背景をブランドカラーに(お好みで) */
  text-decoration: none;
  border: 1px solid #462e2e;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.m_btn.m_btn__service:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.m_hamburger {
  width: 32px;
  height: 28px;
  position: relative;
  z-index: var(--z-index-menu);
}

@media screen and (min-width: 1200px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger-bar {
  width: 100%;
  height: 4px;
  position: absolute;
  background: var(--sub-color);
  left: 50%;
  transition: 0.3s;
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_contents-title {
  color: var(--black-color);
  font-weight: bold;
  letter-spacing: 0.1em;
}

/* 430〜768px付近でより確実におさめたい場合の微調整 */
@media (min-width: 430px) and (max-width: 768px) {
  .m_contents-title {
    display: block;
    text-align: center;
    max-width: calc(100% - 320px); /* モバイルで左右に余白を確保 */
  }
}

@media screen and (min-width: 768px) {
  .m_contents-title {
    font-size: 20px;
  }
}

@media screen and (min-width: 1100px) {
  .m_contents-title {
    font-size: 32px;
  }
}

.m_post {
  margin: 40px auto 0;
  max-width: 400px;
}

.m_post_txt {
  margin-top: 8px;
}

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

@media screen and (min-width: 768px) {
  .m_post_meta {
    font-size: 20px;
    flex-direction: column; /* PC：縦並び */
    align-items: flex-start; /* 左揃えにしたい場合 */
  }
}

.m_post_meta-name {
  color: var(--black-color);
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .m_post_meta-date {
    font-size: 12px;
  }
}
.m_post_meta-cost {
  color: var(--black-color);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.m_post_title {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .m_post_title__col-4 {
    margin-top: 8px;
  }
}

@media screen and (min-width: 768px) {
  .m_posts {
    display: flex;
    flex-wrap: wrap;
  }
}

.m_posts__col-4 {
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .m_posts__col-4 > .m_post {
    width: calc((100% - 24px) / 2);
  }
}

@media screen and (min-width: 1100px) {
  .m_posts__col-4 > .m_post {
    width: calc((100% - 72px) / 4);
  }
}

.m_posts__col-3 {
  gap: 0px 40px;
}

@media screen and (min-width: 768px) {
  .m_posts__col-3 > .m_post {
    width: calc((100% - 80px) / 3);
  }
}

.m_post_thumb {
  object-fit: cover;
}

@media screen and (max-width: 400px) {
  .m_post_thumb {
    height: 175px;
  }
}

@media screen and (min-width: 768px) {
  .m_post_thumb {
    width: 100%;
    object-fit: cover;
  }
}

/* マップアイコンのリンク */
.l_header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px; /* ハンバーガーとの間隔 */
  color: var(--sub-color);
}

.l_header-map {
  display: block;
  width: 32px;
  height: 32px;
}

@media screen and (min-width: 1200px) {
  .l_header-map {
    display: none;
  }
}

.m_hamburger-bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.header-side_menu {
  display: flex;
  align-items: center;
  gap: 8px; /* ハンバーガーとの間隔 */
  position: relative;
  z-index: var(--z-index-header);
  color: var(--sub-color);
}

.m_hamburger-bar__brown {
  width: 100%;
  height: 4px;
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  transition: 0.3s;
}

/* マップアイコンのリンク */
.l_header-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px; /* ハンバーガーとの間隔 */
  color: var(--sub-color);
}

.l_header-map img {
  display: block;
  width: 32px;
  height: 32px;
}

.m_hamburger-bar__brown:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.m_hamburger-bar__brown:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.m_hamburger-bar__brown:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.m_top_title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  font-family: "Playfair Display", serif;
  color: var(--sub-color);
}

@media screen and (min-width: 768px) {
  .m_top_title {
    font-size: 32px;
  }
}

.m_top_title__concept {
  color: var(--white-color);
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.m_top_title__concept::before {
  content: "コンセプト";
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--white-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .m_top_title__concept::before {
    bottom: 50px;
  }
}

.m_top_title__menu {
  margin-bottom: 40px;
  color: var(--accent-color);
  position: relative;
}

.m_top_title__menu::before {
  content: "メニュー";
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--accent-color);
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .m_top_title__menu::before {
    bottom: 50px;
  }
}

.m_top_title__news {
  color: var(--white-color);
  position: relative;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.m_top_title__news::before {
  content: "お知らせ";
  width: 100%;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--white-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  font-family: "Noto Serif JP", serif;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 768px) {
  .m_top_title__news::before {
    bottom: 50px;
  }
}

/* ---------- top ---------- */

/* TOPへ戻るボタン */

.l_js-backToTop {
  display: none;
}

@media screen and (min-width: 768px) {
  .l_js-backToTop {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    font-size: 20px;
    font-weight: bold;
    color: var(--black-color);
    background: var(--white-color);
    border: 1px solid var(--black-color);
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: var(--z-index-modal);
  }
  /* クラス付与時の指定 */
  .is-active {
    opacity: 1;
    visibility: visible;
  }
}

.top_kv {
  background: var(--primary-color);
}

.top_kv-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media screen and (min-width: 1100px) {
  .top_kv-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 0px;
  }
}

.top_kv_box {
  height: calc(100vh - 72px - 522px);
  display: flex;
  align-items: center;
}

@media screen and (min-width: 500px) {
  .top_kv_box {
    height: calc(100vh - 90px - 522px);
  }
}

@media screen and (min-width: 768px) {
  .top_kv_box {
    height: calc(100vh - 100px - 522px);
  }
}

@media screen and (min-width: 1100px) {
  .top_kv_box {
    height: calc(100vh - 122px - 522px);
  }
}

.top_kv_copy {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  color: var(--sub-color);
  letter-spacing: 0.1em;
}

@media screen and (min-width: 768px) {
  .top_kv_copy {
    font-size: 36px;
  }
}

@media screen and (min-width: 1100px) {
  .top_kv_copy {
    padding-left: 64px;
    font-size: 30px;
  }
}

@media screen and (min-width: 1200px) {
  .top_kv_copy {
    padding-left: 64px;
    font-size: 36px;
  }
}

/* @media screen and (min-width: 1100px) {
  .top_kv_img-wrapper {
    width: 65%;
  }
} */

.top_kv_img {
  width: 100%;
  height: 492px;
  object-fit: cover;
  animation: zoomAnim 8s ease-in-out infinite;
  transition: opacity 2s ease-in-out; /* 2秒でフェードアウト */
  opacity: 1;
  margin-top: 30px;
}

@media screen and (min-width: 376px) {
  .top_kv_img {
    width: 100%;
    height: 522px;
    margin-top: 0;
  }
}

/* ズームアニメーション */
@keyframes zoomAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (min-width: 1100px) {
  .top_kv_img {
    height: calc(100vh - 122px);
    object-fit: cover;
    animation: zoomAnim 8s ease-in-out infinite;
  }
}
/* ズームアニメーション */
@keyframes zoomAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Swiper */

/* Swiperコンテナの高さを強制確保 */
.swiper {
  width: 100%;
  height: 522px; /* ← スマホ・タブレットで高さを固定 */
  z-index: 0;
  margin: 0;
}

@media screen and (min-width: 1100px) {
  .swiper {
    width: 65%;
    height: calc(100vh - 122px); /* ← PCでは全画面 */
  }
}

/* 右から左にスライドしながらフェードイン */
@keyframes slideInRight {
  0% {
    transform: translateX(20px);
    opacity: 0;
  } /* 右から */
  100% {
    transform: translateX(0);
    opacity: 1;
  } /* 元の位置に */
}

.char {
  display: inline-block;
  opacity: 0; /* 初期は透明 */
}

/* 上から下に降りるアニメーション */
@keyframes floatDown {
  0% {
    transform: translateY(-20px);
    opacity: 0;
  } /* 上から */
  100% {
    transform: translateY(0);
    opacity: 1;
  } /* 元の位置に */
}

.top_contents {
  padding: 80px 0;
}

@media screen and (min-width: 1100px) {
  .top_contents {
    padding: 160px 0;
  }
}

.top_concept {
  background: linear-gradient(
    to bottom,
    var(--primary-color) 20%,
    #5a3b3b 70%,
    #845757 90%,
    #ac7171 100%
  );
}

@media screen and (min-width: 1100px) {
  .top_concept_contents {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }
}

@media screen and (min-width: 1100px) {
  .top_concept_body {
    height: 591px;
  }
}

.top_concept_img-wrapper {
  display: none;
}

.top_concept_img-wrapper:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.top_concept_img-wrapper:nth-child(2) {
  transform: translate(80px, 80px);
}

@media screen and (min-width: 1100px) {
  .top_concept_img-wrapper {
    display: block;
    position: relative;
    width: 400px;
    height: 500px;
  }
}

@media screen and (min-width: 1100px) {
  .top_concept_img-main {
    width: 400px;
    height: 500px;
    display: block;
    object-fit: cover;
  }
}

@media screen and (min-width: 1100px) {
  .top_concept_img-sub {
    width: 200px;
    height: 300px;
  }
}

.top_concept_desc {
  font-size: 12px;
  font-family: "Noto Serif JP", serif;
  color: var(--sub-color);
  margin: 40px auto 0 auto;
  width: 100%;
  max-width: 280px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .top_concept_desc {
    font-size: 16px;
    max-width: 500px; /* PCでは500pxくらいに広げる */
    text-align: center; /* 左揃えにする場合 */
    margin: 40px auto 0 auto;
  }
}

.top_section_btn-wrapper {
  margin-top: 40px;
  width: 156px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top_menu {
  background: var(--beige-color);
}

.top_menu_slider {
  width: 100%;
  padding: 0 16px;
  box-sizing: border-box;
  overflow: hidden;
}

.top_menu_sliders {
  display: flex;
  gap: 32px;
}

.top_menu_slide {
  flex: 0 0 calc(100% - 64px);
  max-width: 260px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 1100px) {
  .top_menu_slide {
    flex: 0 0 calc(100% - 96px);
    max-width: 310px;
  }
}

.top_menu_slide img {
  width: 100%;
  height: 310px;
  display: block;
  object-fit: cover;
}

.top_news {
  background: linear-gradient(
    315deg,
    var(--primary-color) 20%,
    #ac7171 40%,
    #895a5a 50%,
    #664343 100%
  );
}

.top_news_page {
  background: var(--primary-color);
  padding: 80px 0;
}

.top_news_list {
  margin-top: 40px;
}

.top_news_list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  padding: 16px 8px;
  border: 1px solid var(--beige-color);
  background: var(--beige-color);
}

@media screen and (min-width: 1100px) {
  .top_news_list a {
    padding: 32px 24px;
  }
}

.top_news_text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  color: var(--black-color);
  font-family: "Noto Serif JP", serif;
}

.top_news_box {
  display: inline-flex;
}

.top_news-heading {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 1100px) {
  .top_news-heading {
    font-size: 20px;
  }
}

.top_news-meta {
  padding: 2px 4px;
  color: var(--white-color);
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
}

@media screen and (min-width: 1100px) {
  .top_news-meta {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px) {
  .top_news-date {
    font-size: 16px;
  }
}

.top_news_arrow svg {
  width: 12px;
  height: 12px;
  color: var(--white-color);
}

.top_news_arrow {
  width: 56px;
  height: 56px;
  background: var(--sub-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* concept なるみ */

.concept_kv {
  height: 170px;
  background-image: url("../img/kv.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* タブレット〜 */
@media (min-width: 500px) {
  .concept_kv {
    height: 260px;
  }
}

/* 小型PC */
@media (min-width: 900px) {
  .concept_kv {
    height: 400px;
  }
}

/* 大画面：上限 */
@media (min-width: 1600px) {
  .concept_kv {
    height: 500px;
  }
}

.concept_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--beige-color);
  text-shadow: 0px 4px 4px var(--primary-color);
  text-align: center;
}

.concept_kv-title {
  font-size: 24px;
  font-weight: bold;
}

.concept_kv-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (min-width: 500px) {
  .concept_kv-title {
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  /* .concept_kv-inner {
    position: absolute;
    border: 1px solid var(--black-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 239px;
    height: 115px;
    background: var(--beige-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
  } */
  .concept_kv-box {
    color: var(--beige-color);
    text-shadow: 0px 10px 10px var(--primary-color);
    text-align: center;
  }
  .concept_kv-title {
    font-size: 46px;
  }
  .concept_kv-desc {
    font-size: 20px;
  }
}

.concept_main {
  background: var(--primary-color);
  position: relative; /* 子の絶対配置や重なり対策 */
  z-index: 1; /* 他要素に隠れないように手前に出す */
}

.concept_title {
  padding: 24px;
  text-align: center;
  color: var(--sub-color);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.concept_title-text {
  color: var(--sub-color);
  font-size: 24px;
  font-weight: bold;
  background: var(--primary-color);
  font-family: "Noto Serif JP", serif;
  margin: 24px 0;
  text-shadow: 0px 4px 4px rgba(254, 246, 238, 0.1);
}

@media (min-width: 500px) {
  .concept_title-text {
    margin: 32px 0;
  }
}

@media (min-width: 768px) {
  .concept_title-text {
    font-size: 28px;
    margin: 40px 0;
  }
}

@media (min-width: 1100px) {
  .concept_title-text {
    font-size: 42px;
    margin: 80px 0;
  }
}

/* 親を中央寄せにする */
.concept_list {
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 中央揃え */
  gap: 80px; /* アイテム間の余白（任意） */
  padding: 0 0 20px 0;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .concept_list {
    gap: 80px;
    padding: 0 0 80px 0;
  }
}

/* 固定幅をやめてレスポンシブに */
.concept_item {
  width: 100%;
  max-width: 1100px; /* 最大幅は維持 */
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .concept_item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 16px;
  }
}

.concept_item_img-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9; /* 横:縦 = 16:9 */
  overflow: hidden;
}

.concept_item_img01 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.concept_item_img02 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.concept_item_img03 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 65%;
  display: block;
}

.concept_item_title {
  color: var(--beige-color);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  margin-top: 16px;
}

@media screen and (min-width: 768px) {
  .concept_item_title {
    font-size: 24px;
  }
}

/* @media screen and (min-width: 1100px) {
    .concept_item_title {
    font-size: 32px;
  }
} */

.concept_item_desc {
  color: var(--beige-color);
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
}

@media screen and (min-width: 768px) {
  .concept_item_desc {
    font-size: 20px;
  }
}

/* @media screen and (min-width: 1100px) {
  .concept_item_desc {
    font-size: 24px;
  }
} */

@media screen and (min-width: 768px) {
  .concept_item:nth-child(2n + 1) {
    flex-direction: row-reverse;
  }
}

.concept_item_img-wrapper {
  position: relative;
}

.concept_item_txt-wrapper {
  padding: 0 16px;
}

@media screen and (min-width: 768px) {
  .concept_item_txt-wrapper {
    width: 80%;
    order: 2;
  }
  .concept_item_img-wrapper {
    width: 100%;
    height: 100%;
    aspect-ratio: 10 / 9; /* sp横:縦 = 16:9 */
  }
}

/* news */

.news_kv {
  height: 170px;
  background-image: url("../img/NEWS.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* タブレット〜 */
@media (min-width: 500px) {
  .news_kv {
    height: 260px;
  }
}

/* 小型PC */
@media (min-width: 900px) {
  .news_kv {
    height: 400px;
  }
}

/* 大画面：上限 */
@media (min-width: 1600px) {
  .news_kv {
    height: 500px;
  }
}

.news_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--beige-color);
  text-shadow: 0px 4px 4px var(--primary-color);
  text-align: center;
}

.news_kv-title {
  font-size: 24px;
  font-weight: bold;
  font-family: "Playfair Display", serif;
}

.news_kv-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (min-width: 500px) {
  .news_kv-title {
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  /* .news_kv-inner {
    position: absolute;
    border: 1px solid var(--black-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 239px;
    height: 115px;
    background: var(--beige-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
  } */
  .news_kv-box {
    color: var(--beige-color);
    text-shadow: 0px 10px 10px var(--primary-color);
    text-align: center;
  }
  .news_kv-title {
    font-size: 46px;
  }
  .news_kv-desc {
    font-size: 20px;
  }
}

/* pagination */

.pagination {
  display: flex;
  justify-content: center; /* 横方向の中央寄せ */
  list-style: none;
  padding: 0;
  display: flex;
  gap: 10px;
  padding-top: 32px;
}

.page,
.dots {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: #fff9f1; /* アイボリー */
  color: #1e1e1e;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.page:hover {
  background-color: #e0d6c3;
}

.page.active {
  background-color: #b19962; /* ゴールド */
  color: white;
  font-weight: bold;
  cursor: default;
}

.dots {
  cursor: default;
}

/* menu service */
.l_main_menu {
  background: var(--beige-color);
}

.menu_kv {
  height: 170px;
  background-image: url("../img/menuimg.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* タブレット〜 */
@media (min-width: 500px) {
  .menu_kv {
    height: 260px;
  }
}

/* 小型PC */
@media (min-width: 900px) {
  .menu_kv {
    height: 400px;
  }
}

/* 大画面：上限 */
@media (min-width: 1600px) {
  .menu_kv {
    height: 500px;
  }
}

.menu_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--beige-color);
  text-shadow: 0px 4px 4px var(--primary-color);
  text-align: center;
}

.menu_kv-title {
  font-size: 24px;
  font-weight: bold;
}

.menu_kv-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (min-width: 500px) {
  .menu_kv-title {
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  /* .menu_kv-inner {
    position: absolute;
    border: 1px solid var(--beige-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 239px;
    height: 115px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
  } */
  .menu_kv-box {
    color: var(--beige-color);
    text-shadow: 0px 10px 10px var(--primary-color);
    text-align: center;
  }
  .menu_kv-title {
    font-size: 46px;
  }
  .menu_kv-desc {
    font-size: 20px;
  }
}
/* service */

.service_contents {
  margin-top: 64px;
}

.service_container {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .service_container {
    padding: 80px 0;
  }
}

.service_menu_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
}

@media screen and (min-width: 768px) {
  .service_menu_list {
    /* padding: 40px 14px; */
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0 24px;
    flex-wrap: wrap;
    /* border: solid 1px var(--accent-color);
    border-radius: 16px; */
  }
}

.service_menu_item:not(:first-child) {
  margin-top: 32px;
}

@media screen and (min-width: 768px) {
  .service_menu_item:not(:first-child) {
    margin-top: 0;
  }
}

.service_menu_item {
  width: 312px;
  height: 42px;
}

@media screen and (min-width: 768px) {
  .service_menu_item {
    width: calc((100% - 72px) / 4);
    height: 50px;
  }
}

.service_menues {
  margin-top: 64px;
}

@media screen and (min-width: 1100px) {
  .service_contents {
    margin-top: 80px;
  }
}

/* contact */

.wpcf7-list-item {
  margin: 0;
}

.contact-privacy {
  margin-top: 40px;
  appearance: auto;
}

.contact_kv {
  height: 170px;
  background-image: url("../img/contact_header.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* タブレット〜 */
@media (min-width: 500px) {
  .contact_kv {
    height: 260px;
  }
}

/* 小型PC */
@media (min-width: 900px) {
  .contact_kv {
    height: 400px;
  }
}

/* 大画面：上限 */
@media (min-width: 1600px) {
  .contact_kv {
    height: 500px;
  }
}

.contact_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--beige-color);
  text-shadow: 0px 4px 4px var(--primary-color);
  text-align: center;
}

.contact_kv-title {
  font-size: 24px;
  font-weight: bold;
}

.contact_kv-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (min-width: 500px) {
  .contact_kv-title {
    font-size: 32px;
  }
}

@media (min-width: 900px) {
  /* .contact_kv-inner {
    position: absolute;
    border: 1px solid var(--beige-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 239px;
    height: 115px;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
  } */
  .contact_kv-box {
    color: var(--beige-color);
    text-shadow: 0px 10px 10px var(--primary-color);
    text-align: center;
  }
  .contact_kv-title {
    font-size: 46px;
  }
  .contact_kv-desc {
    font-size: 20px;
  }
}

.contact_main {
  background-color: var(--beige-color);
}

.contact_contents {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .contact_contents {
    padding: 80px 0;
  }
}

@media screen and (min-width: 1100px) {
  .contact_contents {
    padding: 120px 0;
  }
}

.contact_form {
  padding: 40px 0;
}

@media screen and (min-width: 1100px) {
  .contact_form {
    padding: 64px 0;
  }
}

.contact_txt {
  font-size: 14px;
  letter-spacing: 0;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .contact_txt {
    font-size: 16px;
  }
}

.contact_form_list {
  margin: 20px 0 0 0;
  padding: 24px 0 0 0;
}

@media screen and (min-width: 1100px) {
  .contact_form_list {
    margin: 0;
    padding: 0;
  }
}

.contact_form_heading {
  font-size: 14px;
  font-weight: bold;
  position: relative;
}

@media screen and (min-width: 1100px) {
  .contact_form_heading {
    margin-top: 64px;
  }
}

.contact_form_heading:not(:first-child) {
  margin-top: 24px;
}

@media screen and (min-width: 1100px) {
  .contact_form_heading:not(:first-child) {
    margin-top: 64px;
  }
}

.contact_form_required {
  color: var(--white-color);
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  margin-left: 8px;
  background-color: var(--accent-color);
  border-radius: 8px;
  letter-spacing: 0.1em;
}

.contact_form_required__company {
  color: var(--accent-color);
  background-color: var(--white-color);
  border: 1px solid var(--accent-color);
  border-radius: 8px;
  font-size: 12px;
  font-weight: bold;
  padding: 4px 8px;
  margin-left: 8px;
  letter-spacing: 0.1em;
}

.contact_form_caution {
  font-size: 8px;
  display: block;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  .contact_form_caution {
    font-size: 12px;
    display: inline-block;
    margin-left: 18px;
  }
}

.contact_form_example {
  font-size: 12px;
  letter-spacing: 0.1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--gray-color);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.contact_form_detail {
  margin-top: 8px;
}

@media screen and (min-width: 1100px) {
  .contact_form_detail {
    margin-top: 16px;
  }
}

.contact_form_detail--tel {
  margin-top: 0;
}

@media screen and (min-width: 768px) {
  .contact_form_detail--tel {
    margin-top: 16px;
  }
}

.contact_form_input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--black-color);
  border-radius: 4px;
  padding: 0 8px;
  background-color: var(--white-color);
}

.contact_form_textarea {
  font-size: 14px;
  width: 100%;
  height: 192px;
  border: 1px solid var(--black-color);
  border-radius: 4px;
  background-color: var(--white-color);
  padding: 8px 16px;
  resize: none;
}

.contact_form_btn-wrapper {
  max-width: 133px;
  height: 46px;
  margin: 64px auto 0;
}

@media screen and (min-width: 1100px) {
  .contact_form_btn-wrapper {
    max-width: 250px;
    height: 50px;
  }
}

/* プライバシーポリシー */

.layer {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s linear, visibility 1s linear, z-index 1s linear;
}
.layer.is-open {
  z-index: 999;
  opacity: 1;
  visibility: visible;
}
.layer.is-open .modal {
  opacity: 1;
  visibility: visible;
}
.modal__button-wrap {
  position: absolute;
  right: 30px;
  top: -20px;
  display: inline-flex;
}
.close-button {
  position: fixed;
  width: 39px;
  height: 39px;
  background: var(--accent-color);
  border-radius: 50%;
  padding: 0;
  border: transparent;
  cursor: pointer;
}
.close-button span {
  width: 25px;
  height: 2px;
  background: #fff;
  display: inline-block;
  position: absolute;
  left: calc(50% - 12px);
  top: 50%;
  border-radius: 20px;
}
.close-button span:nth-child(1) {
  transform: rotate(45deg) translate(-1px, -1px);
}
.close-button span:nth-child(2) {
  transform: rotate(-45deg) translate(1px, -1px);
}
.modal {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  /* width: 80%;
  min-width: 440px; */
  opacity: 0;
  visibility: hidden;
  transition: visibility 0.7s linear, opacity 0.7s linear;
  margin: 16px;
}
@media screen and (min-width: 768px) {
  .modal {
    margin: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .modal {
    margin: 120px;
  }
}
.modal__inner {
  margin-top: 100px;
  margin-bottom: 125px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 13px;
  display: block;
  padding: 20px 20px 20px;
  height: auto;
  max-height: 80vh; /* 画面の80%まで */
  overflow-y: auto; /* モーダル内部スクロール */
}
.modal__content {
  padding-top: 15px;
  padding-bottom: 23px;
}
.modal__privacypolicy_title {
  font-size: 20px;
  color: var(--accent-color);
  font-weight: bold;
}
.modal__privacypolicy_heading {
  font-weight: bold;
  font-size: 18px;
  color: var(--accent-color);
  margin: 16px auto;
}
.modal__privacypolicy_text {
  font-size: 14px;
  margin-top: 10px;
}
.modal__button-area {
  max-width: 843px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 17px;
  padding-top: 15px;
}

.text-link-sd-appear {
  color: #007fffff;
  flex: none;
  font-family: var(--s-font-f1b10695);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
  text-align: left;
  text-decoration: underline;
  width: auto;
  max-width: 100%;
  justify-content: flex-start;
}

.text-sd-appear {
  font-family: var(--s-font-f1b10695);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

/* info */

.info_kv {
  height: 170px;
  background-image: url("../img/images/STORE-INFO.webp");
  background-position: center;
  background-size: cover;
  position: relative;
}

/* タブレット〜 */
@media (min-width: 500px) {
  .info_kv {
    height: 260px;
  }
}

/* 小型PC */
@media (min-width: 900px) {
  .info_kv {
    height: 400px;
  }
}

/* 大画面：上限 */
@media (min-width: 1600px) {
  .info_kv {
    height: 500px;
  }
}

.info_kv-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--beige-color);
  text-shadow: 0px 4px 4px var(--primary-color);
  text-align: center;
}

.info_kv-title {
  font-size: 24px;
  font-weight: bold;
}

@media (min-width: 500px) {
  .info_kv-title {
    font-size: 32px;
  }
}

.info_kv-desc {
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

@media (min-width: 900px) {
  /* .info_kv-inner {
    position: absolute;
    border: 1px solid var(--black-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 288px;
    height: 115px;
    background: var(--beige-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
    white-space: nowrap;
  } */
  .info_kv-box {
    color: var(--beige-color);
    text-shadow: 0px 10px 10px var(--primary-color);
    text-align: center;
  }
  .info_kv-title {
    font-size: 46px;
  }
  .info_kv-desc {
    font-size: 20px;
  }
}

.info_main {
  background: var(--primary-color);
  position: relative; /* 子の絶対配置や重なり対策 */
  z-index: 1; /* 他要素に隠れないように手前に出す */
}

.info_title {
  padding: 24px;
  text-align: center;
  color: var(--sub-color);
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.info_title-text {
  color: var(--sub-color);
  font-size: 24px;
  font-weight: bold;
  background: var(--primary-color);
  font-family: "Noto Serif JP", serif;
  margin: 24px 0;
  text-shadow: 0px 4px 4px rgba(254, 246, 238, 0.1);
}

@media (min-width: 500px) {
  .info_title-text {
    margin: 32px 0;
  }
}

@media (min-width: 768px) {
  .info_title-text {
    font-size: 28px;
    margin: 40px 0;
  }
}

@media (min-width: 1100px) {
  .info_title-text {
    font-size: 32px;
    margin: 80px 0;
  }
}

.info__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 48px;
  padding: 160px 0;
  background: var(--primary-color);
}

@media screen and (max-width: 768px) {
  .info__inner {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 48px 0;
  }
}

.info__list {
  font-size: 18px;
  color: #fff9f1;
}

.info__image {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.info__content {
  width: 100%;
  max-width: 540px;
}

.info__content {
  width: 100%;
  max-width: 540px;
  padding: 14px;
}

.info__item {
  display: flex;
  padding: 14px 0;
  border-top: 1px solid #d9d9d9;
}

.info__item:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.info__term {
  min-width: 200px;
}

.info {
  background-color: #462e2e;
}

.info__map {
  height: 300px;
  margin-bottom: 40px;
}

@media screen and (min-width: 1100px) {
  .info__map {
    height: 400px;
  }
}

/* news-single 成美 */

.news-singlepage_main {
  background: var(--beige-color);
}

.news-single__bottom {
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .news-single__bottom {
    width: 672px;
    font-size: 16px;
    margin: 0 auto;
  }
}

.back-to-page::before {
  content: "<"; /* 全角山括弧 */
  margin-right: 5px; /* テキストとの間に余白 */
  color: var(--sub-color); /* 必要なら色も指定 */
  font-weight: bold; /* 強調したい場合 */
}

.next-to-page::after {
  content: ">"; /* 全角山括弧 */
  margin-left: 5px; /* テキストとの間に余白 */
  color: var(--sub-color); /* 必要なら色も指定 */
  font-weight: bold; /* 強調したい場合 */
}

/* デフォルト：SPでは非表示 */
/* .back-to-page {
  display: none;
} */

/* PC版（例：768px以上）で表示 */
/* @media screen and (min-width: 768px) {
  .back-to-page {
    display: inline-block;
    width: 672px;
    display: flex;
    margin: 0 auto;
  }
} */

.news-single_list {
  width: 300px;
  font-size: 14px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 32px;
}

@media screen and (min-width: 768px) {
  .news-single_list {
    width: 672px;
    font-size: 16px;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 32px;
  }
}

.back-to-list {
  padding: 10px 30px;
  background: var(--accent-color);
  border-radius: 8px;
  color: var(--white-color);
}

.single_news_box {
  margin: 0 auto;
  width: 267px;
  padding-top: 24px;
}

@media screen and (min-width: 768px) {
  .single_news_box {
    width: 672px;
  }
}

.single_news-meta {
  padding: 2px 4px;
  color: var(--white-color);
  border: 1px solid var(--sub-color);
  background: var(--sub-color);
  width: fit-content;
  height: fit-content;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .single_news-meta {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px) {
  .single_news-meta {
    font-size: 16px;
  }
}

.single_news-date {
  font-size: 12px;
}

@media screen and (min-width: 1100px) {
  .single_news-date {
    font-size: 14px;
  }
}

@media screen and (min-width: 1100px) {
  .single_news-date {
    font-size: 16px;
  }
}

.single_news-title {
  font-size: 16px;
}

@media screen and (min-width: 762px) {
  .single_news-title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1100px) {
  .single_news-title {
    font-size: 32px;
  }
}

/* デフォルト（SP）：縦並び */
.single_news_box {
  display: block;
}

/* PC版 */
@media screen and (min-width: 768px) {
  .single_news_box {
    display: grid;
    grid-template-columns: auto 1fr; /* 左にmeta、右にdate */
    grid-template-rows: auto auto; /* 上1行（meta+date）、下1行（title） */
    column-gap: 16px;
    row-gap: 24px;
    align-items: center;
    /* margin-top: 24px; */
  }

  .single_news-meta {
    grid-column: 1;
    grid-row: 1; /* 上の左 */
  }

  .single_news-date {
    grid-column: 2;
    grid-row: 1; /* 上の右 */
  }

  .single_news-title {
    grid-column: 1 / -1; /* 下の行に全幅で配置 */
    grid-row: 2;
  }
}

.single_news_text {
  width: 300px;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  font-size: 14px;
  margin: 24px auto 0;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .single_news_text {
    width: 672px;
    font-size: 16px;
    margin: 24px auto 0;
    padding-bottom: 80px;
  }
}

@media screen and (min-width: 1100px) {
  .single_news_text {
    font-size: 20px;
    margin: 24px auto 0;
    padding-bottom: 120px;
  }
}

/* .m_btn__news-single {
  width: 156px;
  height: 36px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .m_btn__news-single {
    display: none;
  }
} */

/* footer */

.footer__brown {
  padding-top: 40px;
  padding-bottom: 27px;
  background-color: var(--primary-color);
  position: relative;
  color: var(--sub-color);
}

@media screen and (min-width: 768px) {
  .footer__brown {
    padding-bottom: 32px;
    border: solid 1px var(--gray-color01);
  }
}

.footer__white {
  color: var(--primary-color);
  padding-top: 40px;
  padding-bottom: 27px;
  position: relative;
  background-color: var(--beige-color);
}

@media screen and (min-width: 768px) {
  .footer__white {
    padding-bottom: 32px;
    border: solid 1px var(--gray-color01);
  }
}

.footer__map {
  height: 300px;
  max-width: 370px;
  margin: 20px auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .footer__map {
    height: 250px;
    max-width: 370px;
    margin: 0 auto;
    flex: 0 0 370px;
  }
}

@media screen and (min-width: 1100px) {
  .footer__map {
    position: absolute;
    top: 130px;
    left: 50%;
    transform: translateX(-50%);
    width: 370px;
    height: 250px;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    margin: 0;
    display: block;
  }
}

.footer__map-info {
  display: none;
}

.footer__content {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 72px;
  }
}

@media screen and (min-width: 1100px) {
  .footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    z-index: 1;
    min-height: 300px;
  }
}

.footer__content__info {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer__content__info {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 72px;
  }
}

@media screen and (min-width: 1100px) {
  .footer__content__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    z-index: 1;
    min-height: 300px;
    padding: 0 120px;
  }
}

.footer__logo {
  margin: 40px 0;
}

@media screen and (min-width: 768px) {
  .footer__logo {
    margin: 0 0 0;
    text-align: left;
    font-size: 32px;
  }
}

.footer__logo-img {
  width: 116px;
  height: 50px;
}

@media screen and (min-width: 1100px) {
  .footer__logo-img {
    width: 200px;
    height: auto;
  }
}

@media screen and (min-width: 768px) {
  .footer__text-wrapper {
    padding: 18px 0;
  }
}

.footer__text {
  font-size: 14px;
}

.footer__text:not(:first-child) {
  margin-top: 8px;
}

.footer__contact {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .footer__contact {
    padding: 28.5px 0px;
    text-align: right;
  }
}

.sp-break {
  display: none;
}
.pc-break {
  display: inline;
}

@media screen and (max-width: 768px) {
  .sp-break {
    display: inline;
  }
  .pc-break {
    display: none;
  }
}

.footer__reserve-text {
  font-size: 15px;
}

.footer__phone-wrapper__brown {
  margin-top: 40px;
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .footer__phone-wrapper {
    margin-top: 13px;
  }
}

.footer__phone-icon-img {
  width: 32px;
  height: 32px;
}

.footer__phone-number__brown {
  margin-left: 16px;
  color: var(--beige-color);
}

.footer__sns-text__brown {
  margin-top: 8px;
  color: var(--white-color);
}

.footer__sns-button__brown {
  margin: 8px auto 0;
  width: 175px;
  height: 45px;
  border: 1px solid var(--white-color);
  padding: 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  color: var(--white-color);
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  .footer__sns-button__brown {
    margin: 8px 0 0 auto;
  }
}

.footer__sns-icon__brown {
  width: 21px;
  height: 21px;
  background-image: url("../img/Instagram_Glyph_White.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 16px;
}

.footer__sns-icon__white {
  width: 21px;
  height: 21px;
  background-image: url("../img/Instagram_Glyph_Black.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 16px;
}

.footer__sns-text__white {
  margin-top: 8px;
  color: var(--primary-color);
}

.footer__sns-button__white {
  margin: 8px auto 0;
  width: 175px;
  height: 45px;
  border: 1px solid var(--primary-color);
  padding: 8px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  font-size: 13px;
}

.footer__sns-button__white {
  border: 1px solid var(--primary-color);
}

@media screen and (min-width: 768px) {
  .footer__sns-button__white {
    margin: 8px 0 0 auto;
  }
}

.footer__bottom {
  margin-top: 40px;
}

.footer__nav {
  width: 80%;
  margin: 0 auto;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  white-space: nowrap;
}

@media screen and (min-width: 1100px) {
  .footer__nav-list {
    flex-wrap: nowrap;
  }
}

.footer-nav-item {
  width: calc((100% - 24px) / 2);
  height: 40px;
}

@media screen and (min-width: 600px) {
  .footer-nav-item {
    width: calc((100% - 24px * 2) / 3);
  }
}

@media screen and (min-width: 880px) {
  .footer-nav-item {
    width: calc((100% - 24px * 5) / 6);
  }
}

.l_footer-nav_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none; /* 下線消す */
  position: relative;
  transition: all 0.3s ease; /* 色・位置・影を滑らかに */
}

.footer__copyright__brown {
  font-size: 12px;
  text-align: center;
  margin-top: 40px;
  color: var(--sub-color);
}

/* 文字下の線 */
.l_footer-nav_link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: var(--white-color);
  transition: width 0.3s ease;
}

/* ホバー時の3D効果 */
.l_footer-nav_link:hover {
  color: var(--white-color); /* 文字色変更 */
  transform: translateY(-4px); /* 上に浮き上がる */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3), 0 0 3px rgba(0, 0, 0, 0.2); /* 立体感の影 */
}

.l_footer-nav_link:hover::after {
  width: 100%; /* 下線を文字幅まで伸ばす */
  transform: translateY(-4px); /* 文字と一緒に浮き上がらせる */
}

.footer__copyright__white {
  font-size: 12px;
  text-align: center;
  margin-top: 40px;
  color: var(--primary-color);
}

/* スクロールダウン */

.scrollbar-wrapper {
  position: absolute;
  bottom: 0;
  left: 5%;
  transform: translateX(-5%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 1100px) {
  .scrollbar-wrapper {
    left: 30%;
    transform: translateX(-30%);
  }
}

.scrollbar-text {
  color: #fff;
  font-size: 14px;
  font-family: serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  margin-bottom: 10px;
}

.scrollbar {
  position: relative;
  width: 1px;
  height: 100px;
  background: transparent;
}

.scrollbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #fff;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* js */

body.is-active {
  overflow: hidden;
}

.opening.is-active {
  visibility: hidden;
}

.js_navigation {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

@media screen and (min-width: 1200px) {
  .js_navigation {
    pointer-events: auto;
    opacity: 1;
  }
}

.l_header-nav.is-active a {
  font-size: 20px;
}

.header-side_menu.is-active .l_header-map {
  display: none;
}

.header-side_menu.is-active .l_header-sns {
  display: none;
}

.js_navigation.is-active {
  opacity: 1;
  pointer-events: auto;
}

.js_hamburger.is-active .m_hamburger-bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.js_hamburger.is-active .m_hamburger-bar__brown:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js_hamburger.is-active .m_hamburger-bar__brown:nth-child(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger-bar__brown:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.js_success-swiper {
  position: relative;
}

.js_faq_mark.is-open::before {
  opacity: 0;
}

.js_faq-a {
  height: 0;
  opacity: 0;
}

.js_h-slide_trigger {
  overflow: hidden;
}

/* WordPress */
/* 送信するの文字を中央寄せするための記述 */

.wpcf7 form {
  position: relative;
}

.wpcf7 form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

/* 404ページ */

.site-main {
  background: var(--beige-color);
  padding: 80px 20px;
}

.error-404 {
  text-align: center;
}

.error-404-img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-404-img {
  width: 200px;
  height: 200px;
}

@media screen and (min-width: 800px) {
  .error-404-img {
    width: 300px;
    height: 300px;
  }
}

.error-404 h1 {
  font-size: 24px;
  color: var(--accent-color);
}

@media screen and (min-width: 800px) {
  .error-404 h1 {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .error-404 h1 {
    font-size: 48px;
  }
}

.error-404 p {
  margin: 40px 0;
  font-size: 18px;
  color: var(--black-color);
}

.error-404 a {
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.error-404 a:hover {
  opacity: 0.8;
}

/* .contact_form_privacy {
  margin-bottom: 60px;
} */

._wpcf7_turnstile_response {
  margin-top: 60px;
}

/* reCAPTCHA 表示位置変更 */
body .grecaptcha-badge{
    margin-bottom: 80px;
}