@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: 1em;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  text-decoration-skip-ink: auto;
}

img,
picture {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
  border: none;
}

input,
button,
textarea,
select {
  color: inherit;
  font: inherit;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

input[type="radio"] {
  margin: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
table th {
  text-align: inherit;
  font-weight: inherit;
}

/* ========================= /
/  初期設定
/* =========================*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  background-color: #fdfef8;
  color: #3c3c3c;
  font-family: "Noto Serif JP", "Noto Sans JP";
  font-weight: 400;
  line-height: 1.8;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
}
body.js-open {
  overflow: hidden !important;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

.body-inner {
  width: 100%; /* 親要素に基づいた可変幅 */
  max-width: 600px; /* 最大幅を600pxに制限 */
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: clip;
  margin-inline: auto;
}

.main {
  margin-top: 60px;
  flex: 1;
  display: block;
}

.form-reset {
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

input,
textarea,
select,
button {
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}

section {
  position: relative;
}

/* ========================= /
/  フォント
/* =========================*/
.inter {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

/* ========================= /
/  ボタン
/* =========================*/
:root {
  --primary-color: #9F1547;
  --white: #fff;
  --shadow-color: #333;
}

.cta {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 5px 18px 5px 26px;
  box-shadow: 0px 0px 2px 0px #333;
  font-size: 1.7rem;
  font-family: "Noto Serif JP";
  font-weight: bold;

  color: var(--white);
  background: #ae2c5a;
  border: 2px solid #ae2c5a;
  border-radius: 999em;

  transition: all 0.3s ease-out;
}

.cta-btn:hover {
  color: #ae2c5a;
  background: var(--white);
  border-color: #ae2c5a;
  box-shadow: 0 0 4px 0 var(--shadow-color);
}

.cta-btn::after {
  content: "";
  width: 20px;
  height: 27px;
  background: var(--white);
  mask: url(../img/btn-arrow.svg) no-repeat center/contain;
  -webkit-mask: url(../img/btn-arrow.svg) no-repeat center/contain;
  transition: background-color 0.3s ease-out;
}

.cta-btn:hover::after {
  background: #ae2c5a;
}

.cta-label {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1/1;

  font-size: 8px;
  line-height: 1.375;
  font-weight: bold;
  text-align: center;

  /* ラベルの配色を白背景・緑文字に変更 */
  color: #4CC764;
  background: var(--white);
  border-radius: 50%;
}

.cta-btn:hover .cta-label {
  color: var(--white);
  background: #4CC764;
}

.cta-image {
  max-height: 40px;
  width: auto;
}

/* ========================= /
/  共通パーツ
/* =========================*/
.inner {
  width: 85%;
  max-width: 940px;
  margin: 0 auto;
}

/* ========================= /
/  z-index
/* =========================*/
.header {
  z-index: 9000;
}

.header__main {
  z-index: 7000;
  position: relative;
}

.header__logo {
  z-index: 8000;
}

.burger-btn {
  z-index: 8000;
}

.burger-nav {
  z-index: 6000;
}

/* ========================= /
/  ヘッダー
/* =========================*/
/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  background: rgb(255, 252, 249);
  min-height: 200vh;
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgb(255, 252, 249);
  z-index: 1000;
}

.header__inner {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 0 0 20px;
}

/* ロゴ */
.logo {
  display: flex;
  flex-direction: column;
  width: 139px;
  height: 29px;
  flex-shrink: 0;
}

.logo__subtitle {
  font-size: 12px;
  color: #333;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  font-weight: normal;
  font-family: "Yu Gothic", YuGothic, sans-serif;
}

.logo__title {
  font-size: 42px;
  color: rgb(199, 162, 138);
  letter-spacing: 0.1em;
  font-weight: normal;
  line-height: 1;
  font-family: "Times New Roman", serif;
}

/* 右側エリア */
.header__right {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 10px;
}

/* 予約ボタン */
.reservation-btn {
  position: relative;
}

.reservation-btn span {
  display: inline-block;
  padding: 12px 40px;
  color: rgb(199, 162, 138);
  font-size: 14px;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.3s ease;
}

.reservation-btn span::before,
.reservation-btn span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border: 1px solid rgb(199, 162, 138);
  pointer-events: none;
  transition: transform 0.3s ease;
}

.reservation-btn span::after {
  transform: translate(4px, 4px);
}

.reservation-btn:hover span {
  color: #fff;
  background-color: rgb(199, 162, 138);
}

/* メニューボックス */
.menu-box {
  width: 80px;
  height: 80px;
  background: rgb(199, 162, 138);
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 0.3s ease;
}

.menu-box:hover {
  background: rgb(199, 162, 138);
}

.menu-text {
  color: white;
  font-size: 12px;
  letter-spacing: 0.05em;
  margin-top: 16px;
  font-family: "Yu Gothic", YuGothic, sans-serif;
}

.menu-text::before,
.menu-text::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  width: 20px;
  height: 1px;
  transition: transform 0.3s ease, top 0.3s ease;
}

.menu-text::before {
  top: 25px;
}

.menu-text::after {
  top: 32px;
}

/* メニューボタン アクティブ状態 */
.menu-box.is-active {
  background: rgb(199, 162, 138);
}

.menu-box.is-active .menu-text::before {
  transform: translateX(-50%) rotate(45deg);
  top: 28px;
}

.menu-box.is-active .menu-text::after {
  transform: translateX(-50%) rotate(-45deg);
  top: 28px;
}

/* ナビゲーション */
.nav {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgb(255, 252, 249);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  z-index: 999;
}

.nav.is-active {
  opacity: 1;
  visibility: visible;
}

.nav__list {
  background-image: url("../img/bg_nav.png");
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 20px;
  list-style: none;
}

.nav__list li {
  border-bottom: 1px solid #ddd;
}

.nav__list li a {
  display: flex;
  align-items: center;
  padding: 24px 16px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  position: relative;
}

.nav__list li a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(199, 162, 138);
  position: absolute;
  right: 16px;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  body {
    padding-top: 0px;
  }

  .header {
    height: 60px;
  }

  .logo {
    width: 139px;
    height: 29px;
    flex-shrink: 0;
  }

  .reservation-btn span {
    padding: 8px 24px;
    font-size: 12px;
  }

  .menu-box {
    width: 60px;
    height: 60px;
  }

  .nav {
    top: 60px;
    height: calc(100vh - 60px);
  }
}
/* ========================= /
/  fv
/* =========================*/

/* ========================= /
/  cta
/* =========================*/
.cta {
  padding: 0 0 15px;
  display: flex;
  justify-content: center;
  /* 背景画像の基本設定 */
  background: linear-gradient(
    98deg,
    #F6F4F0 1.96%,
    #F6F4F0 50.98%,
    #F6F4F0 100%
  );
  /* background-image: url("../img/bge.png"); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

/* ========================= /
/  セクション３
/* =========================*/

.movie {
  width: calc(100% - 40px); /* 両端20pxずつ余白 */
  margin: 0 auto 35px;
  aspect-ratio: 1 / 1;       /* 正方形（1:1） */
  position: relative;
}

.movie video {
  width: 100%;
  height: 100%;
  object-fit: cover;         /* はみ出さず綺麗に埋める */
  display: block;
}

/* ========================= /
/  よくある質問
/* =========================*/
/* style.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Serif JP";
  color: #3c3c3c;
  line-height: 1.7;
}

.container {
  background-color: #fff;
  background-image: url("../img/bg_nav.png");
  max-width: 600px;
  /* margin: 60px 0 0; */
  padding: 20px 30px;
}

h1 {
  font-size: 24px;
  font-weight: 700;
  color: #759472;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}

h1::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #759472;
  margin: 10px auto 0;
}

.faq-item {
  border-bottom: 1px solid rgba(117, 148, 114, 0.5);
}

.question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.question-left {
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 20px; /* Qアイコンのスペースを確保 */
}

.question-left::before {
  content: "Q";
  position: absolute;
  left: 0;
  font-family: "Noto Serif JP";
  color: #759472;
  font-weight: 700;
  font-size: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.q-text {
  font-family: "Noto Serif JP";
  font-weight: 700;
  font-size: 14px;
  color: #759472;
}

.plus {
  color: #759472;
  font-size: 20px;
  min-width: 20px;
  transition: transform 0.3s ease;
}

.answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.answer-content {
  padding: 0 0 20px 20px; /* Qアイコンに合わせてパディングを調整 */
}

.answer p,
.answer ul {
  color: #505050;
  font-size: 12px;
}

.answer p {
  margin-bottom: 15px;
}

.answer ul {
  list-style: none;
}

.answer li {
  padding-left: 1em;
  text-indent: -1em;
}

.answer li::before {
  content: "・";
}

button:focus {
  outline: none;
}

.faq__link {
  color: #759472;
  font-family: "Noto Sans JP";
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: none;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
}

/* ========================= /
/  セクション12ボタン
/* =========================*/
.sec12_cta {
  padding: 10px 0 15px;
  display: flex;
  justify-content: center;
  /* 背景画像の基本設定 */
  background: #F6F4F0;
  background-image: url("../img/bg_nav.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.sec12_cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 5px 18px 5px 26px;

  font-size: 1.7rem;
  font-family: "Noto Serif JP";
  font-weight: bold;

  color: var(--white);
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 999em;

  transition: all 0.3s ease-out;
}

.sec12_cta-btn:hover {
  color: var(--primary-color);
  background: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 0 4px 0 var(--shadow-color);
}

.sec12_cta-btn::after {
  content: "";
  width: 20px;
  height: 27px;
  background: var(--white);
  mask: url(../img/btn-arrow.svg) no-repeat center/contain;
  -webkit-mask: url(../img/btn-arrow.svg) no-repeat center/contain;
  transition: background-color 0.3s ease-out;
}

.sec12_cta-btn:hover::after {
  background: var(--primary-color);
}

.sec12_cta-label {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1/1;

  font-size: 8px;
  line-height: 1.375;
  font-weight: bold;
  text-align: center;

  /* ラベルの配色を白背景・緑文字に変更 */
  color: var(--primary-color);
  background: var(--white);
  border-radius: 50%;
}

.sec12_cta-btn:hover .cta-label {
  color: var(--white);
  background: var(--primary-color);
}

/* ========================= /
/  フッター
/* =========================*/
.fixed {
  position: sticky;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  padding: clamp(1px, 2.5641025641vw, 20px) 0;
  transition: all 0.3s ease;
}

.fixed__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0 20px;
}

.fixed__button {
  height: 60px;
  border-radius: 10px;
  background: #ae2c5a;
  box-shadow: 0px 0px 2px 0px #333;
  font-weight: 700;
  font-size: 17px;
  line-height: 1;
  color: #ffffff;
  animation: anime1 0.6s ease 0s infinite alternate;
  transform-origin: center;
  font-feature-settings: "palt";
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;

  /* デフォルトで非表示にする */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* このクラスが付与されると表示する */
.fixed__button.active {
  opacity: 1;
  visibility: visible;
}

/* このクラスが付与されると表示する */
.fixed.absolute {
  position: absolute;
  top: -70px;
  bottom: auto;
}

@keyframes anime1 {
  from {
    transform: scale(0.9, 0.9);
  }
  to {
    transform: scale(1, 1);
  }
}

.calendar-icon {
  display: flex;
  align-items: center;
}

.arrow-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* ========================= /
/  コピーライト
/* =========================*/
.copyright {
  background: #F6F6F6;
    background-image: url(../img/bg_nav.png);
  text-align: center;
  padding: 10px 0 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #505050;
  line-height: 1.4;
}

.copyright p:first-child {
  margin-bottom: 3px;
}

.footer_policy{
  background: #F6F6F6;
    background-image: url(../img/bg_nav.png);
  text-align: center;
  padding: 10px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #505050;
  line-height: 1.4;
}

/* ========================= /
/  特商法（policy）
/* =========================*/
.policy-body-inner {
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
  overflow: clip;
  margin-inline: auto;
  margin-top: 60px;
}

.container {
  max-width: 600px;
  padding: 40px 20px; /* 左右の余白を追加 */
}

.container_ttl {
  margin-top: 20px;
  font-size: 1.8rem;
  color: #3c3c3c;
  margin-bottom: 2rem;
  text-align: center;
}

.law-table {
  width: 100%;
  background-color: #fff;
  border-collapse: collapse;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.law-table th,
.law-table td {
  font-size: 10px;
  padding: 1rem;
  border: 1px solid #ddd;
}

.law-table th {
  width: 25%;
  background-color: #f8f9fa;
  text-align: left;
  font-weight: bold;
  vertical-align: top;
}

.law-table td {
  width: 75%;
}

.copyright {
  padding: 20px 0; /* コピーライトの上下パディングを調整 */
  text-align: center;
}