@charset "UTF-8";
/**
 * uaplus.css version 0.0.1
 */
*,
*::after,
*::before {
  box-sizing: border-box;
}

:focus-visible {
  outline-offset: 3px;
}

:where(html) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

:where(html) {
  line-height: 1.5;
}

:where(html) {
  scrollbar-gutter: stable;
}

:where(h1) {
  font-size: 2em;
  margin-block: 0.67em;
}

:where(abbr[title]) {
  cursor: help;
  text-decoration-line: underline;
  text-decoration-style: dotted;
}

@media (forced-colors: active) {
  mark {
    color: HighlightText;
    background-color: Highlight;
  }
}
:where(del, ins, s)::before,
:where(del, ins, s)::after {
  clip-path: inset(100%);
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  content: "test";
}

:where(s)::before {
  content: "stricken text start ";
}

:where(s)::after {
  content: " stricken text end";
}

:where(del)::before {
  content: "deletion start ";
}

:where(del)::after {
  content: " deletion end";
}

:where(ins)::before {
  content: "insertion start ";
}

:where(ins)::after {
  content: " insertion end";
}

:where(audio, iframe, img, svg, video) {
  max-block-size: 100%;
  max-inline-size: 100%;
}

:where(fieldset) {
  min-inline-size: 0;
}

:where(label):has(+ :where(textarea, input, select)) {
  display: block;
}

:where(textarea:not([rows])) {
  min-block-size: 6em;
}

:where(button, input, select, textarea) {
  font-family: inherit;
  font-size: inherit;
}

:where([type=search]) {
  -webkit-appearance: textfield;
}

@supports (-webkit-touch-callout: none) {
  :where([type=search]) {
    border: 1px solid -apple-system-secondary-label;
    background-color: canvas;
  }
}
:where([type=tel], [type=url], [type=email], [type=number]):not(:placeholder-shown) {
  direction: ltr;
}

:where(table) {
  border-collapse: collapse;
  border: 1px solid;
}

:where(th, td) {
  border: 1px solid;
  padding: 0.25em 0.5em;
}

:where(dialog)::backdrop {
  background: oklch(0% 0 0deg / 0.3);
}

:where(dialog),
:where(dialog)::backdrop {
  opacity: 0;
  transition: opacity 300ms ease-out, display 300ms allow-discrete, overlay 300ms allow-discrete;
}

:where(dialog[open]),
:where(dialog[open])::backdrop {
  opacity: 1;
}

@starting-style {
  :where(dialog[open]),
  :where(dialog[open])::backdrop {
    opacity: 0;
  }
}
[hidden]:not([hidden=until-found]) {
  display: none !important;
}

html {
  font-size: 10px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin-block: 0;
  margin-inline: auto;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
}

h1, h2, h3, h4, h5, h6, p {
  margin-block: 0;
  margin-inline: 0;
  padding: 0;
  font-weight: normal;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

button {
  all: unset;
  cursor: pointer;
}

/* =========================
   Font Family Variables
   ========================= */
:root {
  /* English */
  --font-en-serif: "Marcellus", serif;
  --font-en-script: "Parisienne", cursive;
  /* Japanese */
  --font-jp-mincho: "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --font-jp-gothic: "游ゴシック", "Yu Gothic", "Hiragino Sans", sans-serif;
  /* Base */
  --font-base: var(--font-jp-gothic);
}

/* =========================
     Base
     ========================= */
body {
  font-family: var(--font-base);
}

/* =========================
     Headings（真のタイトル）
     ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-jp-mincho);
}

/* =========================
   Font Utility
   ========================= */
.font-en {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* =========================
     Decorative / Utility
     ========================= */
/* 英字セクションタイトル */
.section-title__en {
  font-family: var(--font-en-serif);
}

/* 装飾用スクリプト体（AnnabelleJF代替） */
.font-script {
  font-family: var(--font-en-script);
}

/* ボタン・強調テキスト（高級感） */
.button,
.text-mincho {
  font-family: var(--font-jp-mincho);
}

#wpadminbar {
  display: none !important;
}

:root {
  --header-height: 17.3rem;
  /* タイトル上下余白 */
  --fv-title-space: clamp(10rem, 12vw, 15rem);
  /* タイトル文字 */
  --fv-title-font-size: clamp(4.8rem, 6vw, 8rem);
  --fv-title-line-height: 1.3;
  --fv-title-lines: 1;
  /* FV画像 */
  --fv-visual-height: 600px;
  /* ===== タイトル文字の実高 ===== */
  --fv-title-text-height: calc(
    var(--fv-title-font-size) *
    var(--fv-title-line-height) *
    var(--fv-title-lines)
  );
  /* ===== 固定FV全体の高さ ===== */
  --fv-fixed-total-height: calc(
    (var(--fv-title-space) * 2) +
    var(--fv-title-text-height) +
    var(--fv-visual-height)
  );
  /* ===== スクロール開始位置 ===== */
  --fv-offset: calc(
    var(--header-height) +
    var(--fv-fixed-total-height)
  );
  /* ★ 上限値（PC大画面用の安全装置） */
  --fv-offset-max: 1000px;
}
@media (max-width: 768px) {
  :root {
    --header-height: 8rem;
    --fv-visual-height: 300px;
    --fv-title-space: 8rem;
    /* SPは別で目視 */
    --fv-offset: 500px;
  }
}

/* =========================
   Header Wrapper
   ========================= */
.header__wrapper {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* =========================
     Header Inner
     ========================= */
.header__inner {
  max-width: 1440px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 17.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 5rem;
  background-color: #F9F8F6;
  color: #54372D;
  z-index: 200;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .header__inner {
    padding-inline: 2rem;
    height: 8rem;
  }
}

/* =========================
     Branding
     ========================= */
.header__branding {
  display: flex;
  align-items: center;
  min-width: 0;
  z-index: 1000;
}

.header__title-link {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header__logo {
  width: clamp(50px, 13vw, 64px);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  display: block;
}
@media (max-width: 768px) {
  .header__logo {
    width: 32px;
  }
}

.header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* サイト名 */
.header__title-text {
  font-family: var(--font-en-serif);
  display: flex;
  flex-direction: column;
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.25;
  color: #54372D;
  letter-spacing: 0.56em;
}
@media (max-width: 768px) {
  .header__title-text {
    display: none;
  }
}

/* =========================
     Navigation (PC)
     ========================= */
.header__nav-wrapper {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3.5rem);
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 2.5vw, 3.5rem);
}

.header__nav-item {
  font-family: var(--font-en-serif);
  font-size: clamp(1rem, 1.6vw, 2rem);
  font-weight: regular;
  line-height: 1.35;
  letter-spacing: 0.2em;
  color: #54372D;
  display: flex;
  align-items: center;
  padding: 1rem 0.6rem;
  transition: color 0.3s ease;
}
.header__nav-item:hover {
  color: #949E33;
}

/* =========================
     CTA (PC)
     ========================= */
.header__cta-link {
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: regular;
  line-height: 1.35;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background-color: #949E33;
  padding-block: clamp(1rem, 1.4vw, 1.2rem);
  padding-inline: clamp(4.8rem, 5vw, 6.8rem);
  border-radius: 40px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.header__cta-link:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}

.header__cta-text {
  font-family: var(--font-jp-mincho);
  position: relative;
}

.header__cta-link i {
  position: absolute;
  top: 25%;
  left: 15%;
}

@media (max-width: 768px) {
  .header__nav--pc,
  .header__cta--pc {
    display: none;
  }
}

/* =========================
   Hamburger Button
   ========================= */
.header__hamburger {
  display: none;
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 40px;
    min-height: 3rem;
    color: #FFFFFF;
    background-color: #949E33;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    z-index: 201;
  }
}

/* コンテンツラッパー */
.header__hamburger-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding-block: 0.6rem;
  padding-inline: 0.9rem;
  transition: gap 0.3s ease, padding 0.3s ease;
}

/* テキスト */
.header__hamburger-text {
  font-family: var(--font-jp-mincho);
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5714285714;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}

/* バー全体 */
.header__hamburger-bars {
  position: relative;
  width: 1.2rem;
  height: 0.8rem;
  overflow: hidden;
}

/* バー */
.header__hamburger-bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #FFFFFF;
  transition: transform 0.3s ease, opacity 0.2s ease;
  transform-origin: center;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}
.header__hamburger-bar:nth-child(1) {
  top: 0;
}
.header__hamburger-bar:nth-child(2) {
  top: 0.35rem;
}
.header__hamburger-bar:nth-child(3) {
  bottom: 0;
}

/* =========================
     Open State
     ========================= */
.header__hamburger.is-open {
  background-color: #949E33;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  min-height: 3rem;
}
.header__hamburger.is-open .header__hamburger-content {
  gap: 0;
  padding: 0;
}
.header__hamburger.is-open .header__hamburger-text {
  opacity: 0;
  pointer-events: none;
  width: 0;
  overflow: hidden;
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(1) {
  transform: translateY(0.35rem) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-bar:nth-child(3) {
  transform: translateY(-0.35rem) rotate(-45deg);
}

/* =========================
   Navigation (SP)
   ========================= */
.header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 199;
  width: 100%;
  height: 100vh;
  background-color: #D4CEBE;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
@media (min-width: 769px) {
  .header__drawer {
    display: none;
  }
}

.header__drawer.is-open {
  transform: translateX(0);
}

.header__nav--sp {
  width: 100%;
  height: 100%;
}

/* 中身（縦並び） */
.header__nav-list--sp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding-inline: 6rem 0;
  padding-block: 14rem;
  font-size: 2.4rem;
  line-height: 1.3333333333;
}

.header__nav-item--sp {
  font-size: 2.4rem;
  line-height: 1.3333333333;
  letter-spacing: 0.24em;
  color: #CA7F13;
}

/* =========================
   Pre Footer
   ========================= */
.pre-footer {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  background-color: #F9F8F6;
  position: relative;
}

/* =========================
     Reserve Block
     ========================= */
.pre-footer__reserve {
  position: relative;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.pre-footer__reserve-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.pre-footer__reserve-link:hover .pre-footer__reserve-image::after {
  background-color: rgba(70, 70, 70, 0.8);
}

.pre-footer__reserve-inner {
  position: absolute;
  z-index: 2;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 768px) {
  .pre-footer__reserve-inner {
    min-height: 220px;
  }
}

.pre-footer__reserve-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pre-footer__reserve-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(70, 70, 70, 0.5);
  z-index: 1;
  transition: background-color 0.3s ease;
}
.pre-footer__reserve-image img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
     Common Title
     ========================= */
.pre-footer__title {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  line-height: 0.875;
  letter-spacing: 0.12rem;
  font-weight: bold;
  color: #CA7F13;
  transition: color 0.3s ease-in-out;
}
.pre-footer__title--reserve {
  text-shadow: 4px 4px 10px #333333;
}
@media (max-width: 768px) {
  .pre-footer__title {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.12rem;
  }
}

/* 英字見出し（RESERVE / SALONS / SNS） */
.pre-footer__heading-text {
  font-family: var(--font-en-serif);
  font-size: clamp(4.8rem, 1.6vw, 8rem);
  line-height: 1.1666666667;
  letter-spacing: 0.8rem;
  color: #CA7F13;
  transition: color 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .pre-footer__heading-text {
    font-size: 4.8rem;
    letter-spacing: 0.48rem;
  }
}

/* =========================
     Links Block
     ========================= */
.pre-footer__links {
  padding-block: 6.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .pre-footer__links {
    padding-block: 0;
  }
}
.pre-footer__links::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background-color: #CA7F13;
}
@media (max-width: 768px) {
  .pre-footer__links::after {
    display: none;
  }
}

.pre-footer__links-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(3.2rem, 4vw, 6.4rem);
}
@media (max-width: 768px) {
  .pre-footer__links-list {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.pre-footer__links-item {
  position: relative;
  width: 50%;
}

/* リンク全体をクリック可能に */
.pre-footer__links-link {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  padding-block: clamp(5rem, 4vw, 7rem) clamp(7rem, 13vw, 14rem);
}
.pre-footer__links-link:hover .pre-footer__title,
.pre-footer__links-link:hover .pre-footer__heading-text {
  color: #54372D;
}
@media (max-width: 768px) {
  .pre-footer__links-link {
    padding-block: 5rem 7rem;
  }
}

/* =========================
     Divider（中央の縦線）
     ========================= */
/* PCのみ：2カラムの間に線 */
@media (min-width: 769px) {
  .pre-footer__links-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -3.2rem;
    transform: translateY(-50%);
    width: 1px;
    height: 110%;
    background-color: #CA7F13;
  }
}
/* SP：各ブロック下に線 */
@media (max-width: 768px) {
  .pre-footer__links-item {
    width: 100%;
  }
  .pre-footer__links-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background-color: #CA7F13;
  }
}
/* =========================
   Footer
   ========================= */
.footer {
  background-color: #F9F8F6;
}

/* inner */
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding-block: 12rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .footer__inner {
    padding-block: 10rem 0.8rem;
  }
}

/* =========================
   Footer Branding
   ========================= */
.footer__branding {
  margin-inline: 12vw auto;
}

.footer__branding-link {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  text-decoration: none;
  color: inherit;
  width: fit-content;
}

/* ロゴ */
.footer__logo {
  width: clamp(50px, 13vw, 60px);
  aspect-ratio: 1/1;
  flex-shrink: 0;
  display: block;
}
.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 768px) {
  .footer__logo {
    width: 50px;
  }
}

/* サイト名 */
.footer__site-name {
  font-family: var(--font-en-serif);
  font-size: clamp(2rem, 2.2vw, 2.8rem);
  line-height: 1.3;
  letter-spacing: 0.56rem;
  color: #54372D;
  display: inline-block;
}
@media (max-width: 768px) {
  .footer__site-name {
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: 0.4rem;
  }
}

/* =========================
     Footer Navigation
     ========================= */
.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 4.4rem;
  color: #54372D;
}
@media (max-width: 768px) {
  .footer__nav {
    gap: 3rem;
  }
}

/* =========================
   Footer Navigation (Primary)
   ========================= */
.footer__nav-group--primary {
  display: flex;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .footer__nav-group--primary {
    flex-direction: column;
    gap: 1.1rem;
  }
}

/* 各行（3個 / 2個） */
.footer__nav-row {
  list-style: none;
}

/* SPでは、row--top の3つ目のセパレーターを消す */
@media (max-width: 768px) {
  .footer__nav-row--top .footer__nav-item:nth-child(3) .footer__separator {
    display: none;
  }
}

/* 行の中のリンク群 */
.footer__nav-sublist {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 768px) {
  .footer__nav-sublist {
    gap: 1.2rem;
  }
}

/* SPでは、nav-group--secondary の2つ目のリンクの余白を他と同じにする */
.footer__nav-group--secondary .footer__nav-item:nth-child(2) .footer__nav-item-link {
  margin-left: 3.2rem;
}
@media (max-width: 768px) {
  .footer__nav-group--secondary .footer__nav-item:nth-child(2) .footer__nav-item-link {
    margin-left: 1.2rem;
  }
}

/* 各リンク */
.footer__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
}
@media (max-width: 768px) {
  .footer__nav-item {
    gap: 1.2rem;
  }
}

.footer__nav-item-link {
  font-size: clamp(1rem, 1.6vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0.2rem;
  color: #54372D;
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .footer__nav-item-link {
    font-size: 1.4rem;
  }
}
.footer__nav-item-link:hover {
  color: #949E33;
}

/* セパレーター */
.footer__separator {
  font-size: clamp(1rem, 1.6vw, 2rem);
  color: #54372D;
}
@media (max-width: 768px) {
  .footer__separator {
    font-size: 1.4rem;
  }
}

/* =========================
     Copyright
     ========================= */
.footer__copyright {
  text-align: center;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  letter-spacing: 0.12rem;
  margin-block: 5.2rem 0;
  color: #54372D;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 1.2rem;
    margin-block: 4rem 0;
  }
}

/* =========================
   共通パーツ
   ========================= */
.section__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .section__inner {
    max-width: none;
    width: 100%;
  }
}

/* セクションタイトル */
.section-title {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media (max-width: 1336px) {
  .section-title {
    max-width: none;
    width: 100%;
  }
}
.section-title__inner {
  display: flex;
  flex-direction: column-reverse;
}

.section-title__main {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.2;
  letter-spacing: 0.056rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .section-title__main {
    font-size: 1.2rem;
    letter-spacing: 0.048rem;
  }
}

/* スクリーンリーダー用 */
.section-title__main--sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-title__sub {
  font-family: var(--font-en-serif);
  font-size: clamp(6.4rem, 6vw, 8.4rem);
  line-height: 1.3333333333;
  letter-spacing: 0.336rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .section-title__sub {
    font-size: 4.8rem;
    line-height: 1.3333333333;
    letter-spacing: 0.192rem;
  }
}

.section-title__script {
  position: absolute;
  bottom: 2%;
  left: 3%;
  font-family: var(--font-en-script);
  font-size: clamp(8rem, 7vw, 10rem);
  line-height: 1.4;
  color: rgba(202, 127, 19, 0.0784313725);
}
@media (max-width: 1336px) {
  .section-title__script {
    left: 13%;
  }
}
@media (max-width: 1124px) {
  .section-title__script {
    font-size: clamp(6rem, 6vw, 7rem);
    bottom: unset;
  }
}
@media (max-width: 768px) {
  .section-title__script {
    left: 16%;
    font-size: 5.6rem;
  }
}

/* =========================
   Page FV（Parallax Base）
   ========================= */
.page-fv {
  width: 100%;
  height: 100vh;
  overflow: visible;
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
}

.page-fv__bg {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  margin-top: min(var(--fv-offset), var(--fv-offset-max));
}

.page-fv__bg-layer {
  width: 100%;
  min-height: 100vh;
}

.page-fv__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
}
@media (max-width: 1336px) {
  .page-fv__inner {
    max-width: none;
    width: 100%;
  }
}
/* 固定 */
.page-fv__fixed {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* 座標系をスクロールレイヤーと統一 */
  padding-top: var(--header-height);
  /* 左右中央揃えのみ残す */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* デバッグ用 */
.page-fv__fixed {
  outline: 3px solid red;
  background: rgba(255, 0, 0, 0.05);
}

/* =========================
   Price Item（共通パーツ）
========================= */
.price-item {
  padding-block: 1.2rem;
}

.price-item__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1rem 1.7rem;
}

.price-item__title {
  min-width: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 1.6rem;
}

.price-item__title-main {
  font-family: var(--font-jp-mincho);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-item__title-main {
    line-height: 1;
    letter-spacing: 0.56px;
  }
}

.price-item__title-sub {
  font-family: var(--font-en-serif);
  font-size: clamp(3.4rem, 2vw, 4.8rem);
  line-height: 0.2916666667;
  letter-spacing: 0.192rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-item__title-sub {
    font-size: 3.4rem;
    line-height: 0.4117647059;
    letter-spacing: 0.144rem;
  }
}

.price-item__icon {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #CA7F13;
}

/* =========================
    price Menu 共通Grid
  ========================= */
.front-price__menu {
  width: 55.5555555556%;
  margin-block: clamp(4rem, 6vw, 6rem) 0;
  margin-inline: auto 0;
}
@media (max-width: 1336px) {
  .front-price__menu {
    width: 70%;
  }
}
@media (max-width: 1224px) {
  .front-price__menu {
    width: 75%;
  }
}
@media (max-width: 1024px) {
  .front-price__menu {
    width: 80%;
  }
}
@media (max-width: 924px) {
  .front-price__menu {
    width: 85%;
  }
}
@media (max-width: 768px) {
  .front-price__menu {
    width: 100%;
    margin-inline: auto;
  }
}

/* =========================
   Price List（共通：最低限）
========================= */
.front-price__list,
.page-price__list {
  display: grid;
  position: relative;
}

/* =========================
   Price List（TOP）
   - 768pxでSP
========================= */
.front-price__list {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .front-price__list {
    grid-template-columns: 1fr;
    row-gap: 3.2rem;
  }
  .front-price__list::before, .front-price__list::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CA7F13;
  }
  .front-price__list::before {
    top: -2rem;
  }
  .front-price__list::after {
    bottom: -1rem;
  }
}

/* =========================
   Price List（PAGE）
   - 1366pxでSP相当UI
========================= */
.page-price__list {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 1366px) {
  .page-price__list {
    grid-template-columns: 1fr;
    row-gap: 3.2rem;
  }
  .page-price__list::before, .page-price__list::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #CA7F13;
  }
  .page-price__list::before {
    top: -2rem;
  }
  .page-price__list::after {
    bottom: -1rem;
  }
}

/* =========================
   Item（共通）
========================= */
.front-price__item,
.page-price__item {
  position: relative;
  /* 横ライン */
}
.front-price__item::after,
.page-price__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #CA7F13;
}
.front-price__item:nth-last-child(-n+1)::after,
.page-price__item:nth-last-child(-n+1)::after {
  display: none;
}

/* =========================
   Item（TOP：PC縦ライン）
========================= */
@media (min-width: 769px) {
  .front-price__item:nth-child(odd):not(.front-price__item--full)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #CA7F13;
  }
}
/* =========================
   Item（PAGE：PC縦ライン）
========================= */
@media (min-width: 1367px) {
  .page-price__item:nth-child(odd):not(.page-price__item--full)::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #CA7F13;
  }
}
/* =========================
   フル幅アイテム（共通）
========================= */
.front-price__item--full,
.page-price__item--full {
  grid-column: 1/-1;
}
.front-price__item--full::after,
.page-price__item--full::after {
  display: none;
}

/* =========================
   Item Inner（共通）
========================= */
.front-price__item-inner,
.page-price__item-inner {
  padding-block: clamp(2.4rem, 3vw, 3.2rem);
}

/* =========================
   Item Header（共通）
========================= */
.front-price__item-header,
.page-price__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.front-price__item-header > *,
.page-price__item-header > * {
  min-width: 0;
}

/* =========================
   Icon（共通）
========================= */
.front-price__item-icon,
.page-price__item-icon {
  font-size: clamp(1.6rem, 2vw, 2rem);
  color: #CA7F13;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .front-price__item-icon,
  .page-price__item-icon {
    font-size: 1.6rem;
  }
}

/* =========================
   SP 下線（768px以下のみ）
========================= */
@media (max-width: 768px) {
  .front-price__item-title-main,
  .page-price__item-title-main {
    position: relative;
    padding-bottom: 0.8rem;
  }
  .front-price__item-title-main::after,
  .page-price__item-title-main::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 2.4rem;
    height: 1px;
    background-color: #CA7F13;
  }
}
/* =========================
   Link（共通）
========================= */
.front-price__link,
.page-price__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.front-price__link:hover,
.page-price__link:hover {
  opacity: 0.8;
}

/* =========================
   Map（共通）
========================= */
/* 地図読み込み中 */
.map-loading,
.map-error,
.map-fallback {
  display: none;
}

.js-map.is-loading .map-loading {
  display: flex;
}

.js-map.is-error .map-error,
.js-map.is-error .map-fallback {
  display: block;
}

.map-loading,
.map-error {
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.14rem;
  color: #333;
}

/* 地図読み込み失敗 */
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  color: #777;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
.map-placeholder--archive-salons {
  background-color: #D4CEBE;
}

/* ------------------------------
  固定レイヤー（タイトル）
------------------------------ */
/* FV固定レイヤー内のコンテンツ */
.page-fv__content {
  width: 100%;
  /* CSS変数と同じ値で上部余白を設定 */
}

/* 中央寄せ・最大幅管理 */
.page-fv__content__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ページタイトル */
.page-fv__title {
  font-family: var(--font-en-serif);
  font-size: clamp(4.8rem, 6vw, 8rem);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.8rem;
  padding-block: clamp(10rem, 12vw, 15rem);
  color: #CA7F13;
  background-color: #D4CEBE;
  /* タイトルのスタイル */
}
@media (max-width: 768px) {
  .page-fv__title {
    font-size: 3.2rem;
    padding-block: 8rem;
    letter-spacing: 0.32rem;
  }
}

/* メイン画像 */
.page-fv__image {
  width: 100%;
  aspect-ratio: 1440/600;
  overflow: hidden;
  object-fit: cover;
}
@media (max-width: 768px) {
  .page-fv__image {
    aspect-ratio: 375/300;
  }
}

/* picture / img 共通 */
.page-fv__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* imgの表示制御 */
.page-fv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-fv__content {
  width: 100%;
}

/* 中央寄せ・最大幅管理 */
.page-fv__content__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}

.page-fv__title-wrapper--single-salon {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  padding-block: clamp(4rem, 7vw, 9.5rem);
  background-color: #D4CEBE;
}
@media (max-width: 768px) {
  .page-fv__title-wrapper--single-salon {
    padding-block: 6rem;
  }
}

.page-fv__title-main--single-salon {
  font-family: var(--font-jp-mincho);
  font-size: clamp(4.8rem, 6vw, 8rem);
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.8rem;
  color: #CA7F13;
  background-color: #D4CEBE;
}
@media (max-width: 768px) {
  .page-fv__title-main--single-salon {
    font-size: 3.2rem;
    letter-spacing: 0.32rem;
  }
}

.page-fv__title-sub--single-salon {
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 3vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.48rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .page-fv__title-sub--single-salon {
    font-size: 2.4rem;
    line-height: valc(14/24);
    letter-spacing: 0.24rem;
  }
}

/* メイン画像 */
.page-fv__image {
  width: 100%;
  aspect-ratio: 1440/600;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-fv__image {
    aspect-ratio: 375/300;
  }
}

/* picture / img 共通 */
.page-fv__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* imgの表示制御 */
.page-fv__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb-inner {
  width: 100%;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
}

.breadcrumb {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  padding-block: clamp(2rem, 2vw, 2.4rem) 0;
  padding-inline: clamp(2.4rem, 3.2vw, 3.6rem);
}
@media (max-width: 768px) {
  .breadcrumb {
    padding-block: 1.25rem 0;
    padding-inline: 1.5rem;
  }
}

.breadcrumb li {
  display: inline;
  /*横に並ぶように*/
  list-style: none;
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.18rem;
  color: #CA7F13;
  opacity: 0.8;
  margin: 0;
}
@media (max-width: 768px) {
  .breadcrumb li {
    font-size: 1.4rem;
    line-height: 2.5714285714;
    letter-spacing: 0.14rem;
  }
}

.breadcrumb li:after {
  /* >を表示*/
  content: "|";
  padding: 0 0.8em;
  color: #CA7F13;
}

.breadcrumb li:last-child:after {
  content: "";
}

.breadcrumb-post li:nth-child(2):last-child:after {
  content: "";
}

.breadcrumb li a {
  text-decoration: none;
  color: #CA7F13;
  transition: all 0.3s ease;
  display: inline-block;
}

.breadcrumb li:first-child a:hover:before {
  color: #54372D;
}

.breadcrumb li a:hover {
  color: #54372D;
}

/* =========================
   Front FV
   ========================= */
.front-fv__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 1336px) {
  .front-fv__inner {
    max-width: none;
  }
}

.front-fv__title {
  position: absolute;
  top: 38%;
  left: 3%;
  display: flex;
  flex-direction: column;
  font-size: clamp(3.2rem, 4.8vw, 6.4rem);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: #FFFFFF;
  /* ===== SP共通スタイル ===== */
}
@media (max-width: 768px) {
  .front-fv__title {
    top: 48%;
    letter-spacing: 0.32rem;
    text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1607843137);
  }
}
.front-fv__title {
  /* ===== 376px〜768px：なだらかに縮小 ===== */
}
@media (min-width: 376px) and (max-width: 768px) {
  .front-fv__title {
    font-size: calc(3.2rem - (100vw - 375px) * 0.0023);
  }
}
.front-fv__title {
  /* ===== 〜375px：ピクパ保証 ===== */
}
@media (max-width: 375px) {
  .front-fv__title {
    font-size: 3.2rem;
  }
}
.front-fv__title {
  /* ===== アニメーション ===== */
  transform: scale(0.96);
  opacity: 0;
  animation: fvZoomIn 1.2s ease-out forwards;
}

.front-fv__text-group {
  display: flex;
}
@media (max-width: 768px) {
  .front-fv__text-group--first {
    flex-direction: column;
  }
}

.front-fv__text-line {
  display: block;
}

/* =========================
   Front News
========================= */
.front-news {
  background-color: #F9F8F6;
}

.front-news__inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}

/* =========================
   Inner（横幅ルール集約）
========================= */
.section__inner--front-news {
  margin-inline: auto;
  padding-block: clamp(10rem, 15vw, 17rem) clamp(10rem, 15vw, 20rem);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  /* PC大 */
  max-width: 1080px;
  padding-inline: 0;
  /* PC中 */
}
@media (max-width: 1336px) {
  .section__inner--front-news {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.section__inner--front-news {
  /* SP */
}
@media (max-width: 768px) {
  .section__inner--front-news {
    flex-direction: column;
    padding-block: 2.6rem 12rem;
    padding-inline: 3rem;
  }
}

/* =========================
   Title
========================= */
.front-news__title {
  flex: 1;
  min-width: 0;
}
@media (max-width: 1336px) {
  .front-news__title {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .front-news__title {
    order: 1;
  }
}

@media (max-width: 1336px) {
  .section-title--front-news {
    padding-inline: 0;
  }
}

/* =========================
   CTA
========================= */
.front-news__cta {
  max-width: 160px;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  background: none;
}
@media (max-width: 1336px) {
  .front-news__cta {
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .front-news__cta {
    order: 3;
    width: 100%;
    margin-inline: auto;
    margin-top: 2.2rem;
    justify-content: center;
  }
}

.front-news__cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-jp-mincho);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.16rem;
  color: #FFFFFF;
  background-color: #949E33;
  border-radius: 40px;
  padding: 1rem 4rem;
  white-space: nowrap;
  line-height: 1;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.front-news__cta-link:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}
@media (max-width: 768px) {
  .front-news__cta-link {
    font-size: 1.2rem;
    letter-spacing: 0.12rem;
    padding: 0.8rem 3.2rem;
  }
}

/* =========================
   News List
========================= */
.front-news__list {
  width: 100%;
  display: flex;
  position: relative;
  padding-block: clamp(2rem, 5vw, 4rem);
  /* 両端ライン（PC） */
}
.front-news__list::before, .front-news__list::after {
  content: "";
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  width: 1px;
  background-color: #54372D;
}
.front-news__list::before {
  left: 0;
}
.front-news__list::after {
  right: 0;
}
@media (max-width: 768px) {
  .front-news__list {
    order: 2;
    flex-direction: column;
    gap: 16px;
    padding-block: 2rem 0;
    /* 上下ライン（SP） */
  }
  .front-news__list::before, .front-news__list::after {
    width: auto;
    height: 1px;
    left: 0;
    right: 0;
  }
  .front-news__list::before {
    top: 0;
    bottom: auto;
  }
  .front-news__list::after {
    top: auto;
    bottom: 0;
  }
}

/* =========================
   News Item
========================= */
.front-news__item {
  flex: 1 1 33.3333333333%;
  min-width: 0;
  position: relative;
  /* カード間ライン（PC） */
}
.front-news__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #54372D;
}
@media (max-width: 768px) {
  .front-news__item {
    width: 100%;
  }
  .front-news__item::after {
    display: none;
  }
  .front-news__item {
    /* カード間ライン（SP） */
  }
  .front-news__item:not(:first-child)::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #54372D;
  }
}

/* =========================
   News Card
========================= */
.front-news-card {
  padding: 1.65rem 2rem;
}
@media (max-width: 768px) {
  .front-news-card {
    padding-inline: 0;
  }
}
.front-news-card__link {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 1.5vw, 1.5rem);
}
.front-news-card__head {
  display: flex;
  flex-direction: column-reverse;
  gap: clamp(0.8rem, 1.2vw, 1.2rem);
}
.front-news-card__title {
  font-family: var(--font-jp-gothic);
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #54372D;
  transition: all 0.3s ease-in-out;
}
.front-news-card__date {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.14rem;
  color: #54372D;
  transition: all 0.3s ease-in-out;
}
.front-news-card__category {
  font-family: var(--font-en-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.14rem;
  color: #54372D;
  transition: all 0.3s ease-in-out;
}
.front-news-card:hover .front-news-card__title {
  color: #949E33;
}
.front-news-card:hover .front-news-card__date {
  color: #949E33;
}
.front-news-card:hover .front-news-card__category {
  color: #949E33;
}

/* =========================
   Front Concept
========================= */
.front-concept {
  background-color: #F9F8F6;
}

.section__inner--front-concept {
  margin-inline: auto;
  padding-block: clamp(10rem, 15vw, 17rem) clamp(10rem, 15vw, 20rem);
  /* PC大 */
  max-width: 1200px;
  padding-inline: 0;
  /* PC中 */
}
@media (max-width: 1336px) {
  .section__inner--front-concept {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.section__inner--front-concept {
  /* SP */
}
@media (max-width: 768px) {
  .section__inner--front-concept {
    position: relative;
    flex-direction: column;
    padding-block: 2.6rem 12rem;
    padding-inline: 3rem;
  }
}

/* =========================
     Front Concept Title Group
  ========================= */
.front-concept__title-group {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .front-concept__title-group {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0;
  }
}

.front-concept__title-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .front-concept__title-wrapper {
    position: absolute;
    top: 81vw;
    left: 2vw;
    transform: none;
    display: flex;
    flex-direction: column;
    gap: 13vw;
  }
}

.section-title--front-concept {
  max-width: 40rem;
  margin-inline: 0 auto;
}
@media (max-width: 768px) {
  .section-title--front-concept {
    max-width: none;
  }
}

.front-concept__title-text {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.6rem, 2vw, 2.8rem);
  line-height: 1.1666666667;
  letter-spacing: 0.28rem;
  color: #CA7F13;
  position: relative;
  width: fit-content;
  min-width: max-content;
  display: flex;
  flex-direction: row;
}
@media (max-width: 768px) {
  .front-concept__title-text {
    font-size: 1.8rem;
    letter-spacing: 0.18rem;
    flex-direction: column;
    gap: 3rem;
    width: auto;
    position: static;
    min-width: auto;
  }
}
.front-concept__title-text-text-line {
  display: block;
  margin: 0;
  padding: 0;
}
@media (max-width: 768px) {
  .front-concept__title-text-text-line {
    display: inline;
  }
}

.front-concept__visual {
  width: clamp(315px, 60.0694444444vw, 865px);
  aspect-ratio: 865/680;
  overflow: hidden;
  margin-left: auto;
}
@media (max-width: 768px) {
  .front-concept__visual {
    width: 100%;
    aspect-ratio: 315/247;
    margin-left: 0;
    order: -1;
  }
}
.front-concept__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
     Front Concept Body
  ========================= */
.front-concept__content-wrapper {
  margin-block: clamp(4rem, 6vw, 8rem) 0;
}
@media (max-width: 768px) {
  .front-concept__content-wrapper {
    margin-block: 4rem 0;
  }
}

.front-concept__body {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: clamp(4rem, 6vw, 6rem);
}
@media (max-width: 768px) {
  .front-concept__body {
    flex-direction: column;
    gap: 0;
  }
}
.front-concept__body-text {
  width: calc((100% - clamp(4rem, 6vw, 6rem)) / 2);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.16rem;
  color: #54372D;
}
@media (max-width: 768px) {
  .front-concept__body-text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.16rem;
    order: 2;
    margin-top: 84vw;
  }
}

.front-concept__image {
  width: calc((100% - clamp(4rem, 6vw, 6rem)) / 2);
  aspect-ratio: 540/210;
  overflow: hidden;
}
@media (max-width: 768px) {
  .front-concept__image {
    position: absolute;
    top: 0;
    right: 8vw;
    width: 35%;
    aspect-ratio: 108/245;
    transform: translateY(calc(78.4126984127vw + 1.2rem));
  }
}
.front-concept__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
     Front Concept CTA
  ========================= */
.front-concept__cta {
  margin-block: clamp(2rem, 2vw, 2.4rem) 0;
  text-align: right;
}

.front-concept__cta-link {
  position: relative;
  display: inline-block;
  padding-right: 1.8rem;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.18rem;
  color: #54372D;
  transition: all 0.3s ease-in-out;
  transform: translateY(-2px);
}
.front-concept__cta-link::before {
  content: "";
  position: absolute;
  left: -3%;
  bottom: 17%;
  width: 104%;
  height: 1px;
  background: currentColor;
}
.front-concept__cta-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 84%;
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  /* border-right: 1px solid currentColor; */
  transform: translateY(-50%) rotate(35deg);
}
.front-concept__cta-link:hover {
  opacity: 0.4;
}

/* =========================
   Front Feature
========================= */
.front-feature {
  background-color: #464646;
}

.section__inner--feature {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-block: 4rem 6rem;
  position: relative;
  contain: layout style;
}

/* =========================
     Inner（横幅ルール集約）
  ========================= */
.front-feature__container {
  width: 100%;
  margin-inline: auto;
  padding-block: clamp(10rem, 15vw, 16rem) clamp(4rem, 6vw, 6rem);
  /* PC大 */
  max-width: 1305px;
  padding-inline: 0;
  /* PC中 */
}
@media (max-width: 1336px) {
  .front-feature__container {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.front-feature__container {
  /* SP */
}
@media (max-width: 768px) {
  .front-feature__container {
    padding-inline: 0;
  }
}

.front-feature__title,
.front-feature__content {
  width: 100%;
  max-width: 100%;
}

/* =========================
     折り返し設定
  ========================= */
@media (max-width: 1336px) {
  .front-feature__nav-label-line {
    display: block;
  }
}

@media (max-width: 1336px) {
  .front-feature__body-title-line {
    display: block;
  }
}
@media (max-width: 768px) {
  .front-feature__body-title-line {
    display: inline;
  }
}

/* =========================
     Front Feature Title
  ========================= */
.front-feature__title-anchor {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.front-feature__title {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 16%;
  left: 38%;
  z-index: 2;
  max-width: 1305px;
}
@media (max-width: 768px) {
  .front-feature__title {
    left: 50%;
    transform: translateX(calc(-50% + 85px));
  }
}

.section-title--front-feature {
  max-width: none;
  margin: 0;
  position: relative;
}

.section-title__script--front-feature {
  position: absolute;
  bottom: 9%;
  left: -3%;
  font-size: 8rem;
  z-index: -1;
}
@media (max-width: 1336px) {
  .section-title__script--front-feature {
    left: 13%;
  }
}
@media (max-width: 1124px) {
  .section-title__script--front-feature {
    font-size: clamp(6rem, 6vw, 7rem);
    bottom: unset;
  }
}
@media (max-width: 768px) {
  .section-title__script--front-feature {
    left: 16%;
    font-size: 5.6rem;
  }
}

/* =========================
     Content
  ========================= */
.front-feature__content {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  z-index: 1;
}

/* =========================
     Front Feature Nav
  ========================= */
.front-feature__nav {
  width: 30%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 768px) {
  .front-feature__nav {
    display: none;
  }
}

.front-feature__nav-button {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  width: 100%;
  color: #CA7F13;
  cursor: pointer;
}

.front-feature__nav-label {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.18rem;
  color: #CA7F13;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.front-feature__nav-num {
  font-family: var(--font-jp-mincho);
  font-size: clamp(2rem, 2vw, 2.4rem);
  line-height: 1.625;
  color: #CA7F13;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), font-weight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.front-feature__nav-item .front-feature__nav-label,
.front-feature__nav-item .front-feature__nav-num {
  opacity: 1;
  font-weight: 400;
}
.front-feature__nav-item.is-active .front-feature__nav-label,
.front-feature__nav-item.is-active .front-feature__nav-num {
  opacity: 1;
  font-weight: 600;
}

@media (min-width: 769px) {
  .front-feature__content:has(.front-feature__panel.is-show) .front-feature__nav-item:not(.is-active) .front-feature__nav-label,
  .front-feature__content:has(.front-feature__panel.is-show) .front-feature__nav-item:not(.is-active) .front-feature__nav-num {
    opacity: 0.7;
  }
}
/* =========================
     Front Feature Panels
  ========================= */
.front-feature__panels {
  flex: 1;
}

.front-feature__panel {
  display: none;
}
.front-feature__panel.is-active {
  display: block;
}

.front-feature__panel-inner {
  display: flex;
  flex-direction: row;
  gap: 5vw;
  width: 100%;
  max-width: 100%;
}
@media (max-width: 1120px) {
  .front-feature__panel-inner {
    gap: 3vw;
  }
}
@media (max-width: 768px) {
  .front-feature__panel-inner {
    flex-direction: column;
    gap: 3.2rem;
  }
}

/* =========================
     Front Feature Image
  ========================= */
.front-feature__image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 450/630;
  overflow: hidden;
}
@media (max-width: 768px) {
  .front-feature__image {
    aspect-ratio: 315/275;
  }
}
.front-feature__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* =========================
     Front Feature Body (概要)
  ========================= */
.front-feature__body {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.front-feature__body-label {
  font-family: var(--font-en-serif);
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #CA7F13;
  position: relative;
}
.front-feature__body-label::after {
  content: "";
  position: absolute;
  left: 35%;
  bottom: -85%;
  width: 1.3em;
  height: 2px;
  background: #CA7F13;
}
@media (max-width: 768px) {
  .front-feature__body-label {
    font-size: 1.4rem;
    line-height: 1.9285714286;
    letter-spacing: 0.14rem;
  }
  .front-feature__body-label::before {
    content: "";
    position: absolute;
    left: -130%;
    top: 50%;
    transform: translateY(-50%);
    width: 5em;
    height: 1px;
    background: #CA7F13;
  }
  .front-feature__body-label::after {
    left: auto;
    right: -130%;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    width: 5em;
    height: 1px;
    background: #CA7F13;
  }
}

.front-feature__body-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.front-feature__body-title {
  font-family: var(--font-jp-mincho);
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.24rem;
  text-align: center;
  padding-block: 4.5rem 0;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .front-feature__body-title {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.18rem;
    padding-block: 1.8rem 0;
  }
}

.front-feature__body-text {
  font-size: 1.2vw;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.18rem;
  padding-block: 5.3rem 0;
  text-align: center;
  color: #CA7F13;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .front-feature__body-text {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
    padding-block: 3rem 0;
  }
}

/* =========================
  Slider
========================= */
/* =========================
   Front Price
========================= */
.front-price {
  background-color: #F9F8F6;
}

.section__inner--front-price {
  max-width: 1440px;
  margin: 0 auto;
  padding-block: clamp(4rem, 6vw, 6rem);
}
@media (max-width: 1336px) {
  .section__inner--front-price {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section__inner--front-price {
    padding-block: 12rem;
    padding-inline: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  .section__inner--front-price {
    padding-inline: 3rem;
  }
}

.front-price__content {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .front-price__content {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .front-price__content {
    padding-inline: 0;
  }
}

/* =========================
    Front FAQ
   ========================= */
.front-faq {
  background-color: #F9F8F6;
}

.section__inner--front-faq {
  max-width: 1440px;
  margin: 0 auto;
  padding-block: clamp(3rem, 8vw, 11.5rem) clamp(3rem, 5vw, 7.7rem);
}
@media (max-width: 1336px) {
  .section__inner--front-faq {
    max-width: none;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .section__inner--front-faq {
    padding-block: 1.5rem;
    padding-inline: 3.6rem;
  }
}
@media screen and (max-width: 480px) {
  .section__inner--front-faq {
    padding-inline: 3rem;
  }
}

/* セクションタイトル */
.section-title--front-faq {
  max-width: 1200px;
  width: 100%;
}
@media (max-width: 1336px) {
  .section-title--front-faq {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media (max-width: 768px) {
  .section-title--front-faq {
    padding-inline: 0;
  }
}

.section-title__script--front-faq {
  left: 15%;
}

/* =========================
   accordion コンテンツ制御
   ========================= */
.front-faq__content {
  max-width: 1080px;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
}
@media (max-width: 1336px) {
  .front-faq__content {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .front-faq__content {
    padding-block: 1.6rem 3.1rem;
    padding-inline: 0;
  }
}

@media screen and (max-width: 768px) {
  .front-faq__title {
    padding-inline: 0;
  }
}

.front-faq__fig {
  position: absolute;
  bottom: -9px;
  left: 3px;
  width: 99%;
  height: 43px;
}
@media screen and (max-width: 768px) {
  .front-faq__fig {
    bottom: -8px;
    left: -22px;
    width: 120%;
    height: 33px;
  }
}

.front-faq__item {
  max-width: 1080px;
  max-height: 10rem;
  margin: 0 auto;
}
@media screen and (max-width: 1160px) {
  .front-faq__item {
    /* 1060px以下ではFAQ内のコンテンツ幅を100%＋左右余白はinner管理に */
    max-width: none;
    width: 100%;
  }
}

.front-faq__item--open {
  max-height: none;
}

/* =========================
  Accordion
========================= */
.front-faq__list {
  max-width: 1080px;
  margin: 0 auto;
}
.front-faq__item {
  position: relative;
  box-sizing: border-box;
  background-color: #D4CEBE;
  /* 中心からのシフト量（%） */
  --cut-height: 30%;
  --cut-shift: -50%;
}
@media screen and (max-width: 768px) {
  .front-faq__item {
    --cut-height: 17%;
    --cut-shift: -38%;
  }
}
.front-faq__item + .front-faq__item {
  margin-top: 2rem;
}
.front-faq__dl {
  margin: 0;
}
.front-faq {
  /* ===== Question ===== */
}
.front-faq__question {
  margin: 0;
  position: relative;
  z-index: 1;
}
.front-faq__question-button {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-block: 4rem;
  padding-inline: 1.8rem 1.6rem;
  background-color: transparent;
  cursor: pointer;
  text-align: left;
  position: relative;
  border: none;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .front-faq__question-button {
    width: auto;
    max-width: none;
    width: 98%;
    box-sizing: border-box;
    gap: 1em;
    padding-block: 1.8rem;
    padding-inline: 1.6rem;
  }
}
.front-faq__item--open .front-faq__question-button {
  gap: 2rem;
  padding-block: 4rem 2.4rem;
}
@media screen and (max-width: 768px) {
  .front-faq__item--open .front-faq__question-button {
    gap: 1rem;
    padding-block: 1.8rem 1.6rem;
  }
  .front-faq__item--open .front-faq__icon {
    right: 1.2rem;
    top: 48%;
  }
}
.front-faq__label {
  font-weight: normal;
}
.front-faq__label--q {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 0.5833333333;
  letter-spacing: 0.096rem;
  color: #CA7F13;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .front-faq__label--q {
    font-size: 2.5rem;
    line-height: 1.32;
  }
}
.front-faq__label--a {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.3428571429;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .front-faq__label--a {
    font-size: 2.5rem;
    line-height: 1.32;
  }
}
.front-faq__question-text {
  flex: 1;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.072rem;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .front-faq__question-text {
    font-size: 1.6rem;
    line-height: 1.5;
    max-width: 84%;
  }
}
.front-faq {
  /* ▼ アイコン */
}
.front-faq__icon {
  position: absolute;
  right: clamp(2rem, 2.8vw, 3.8rem);
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #54372D;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateY(-50%) rotate(0deg);
  transition: transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .front-faq__icon {
    right: 1.2rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.front-faq {
  /* ===== Answer ===== */
}
.front-faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.5rem);
  transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
  margin: 0;
  padding-block: 0;
  padding-inline: clamp(1.6rem, 2.6vw, 2rem);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .front-faq__answer {
    width: auto;
    max-width: none;
    gap: 1em;
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: 1.6rem;
  }
}
.front-faq__answer-text {
  margin: 0;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.8;
  letter-spacing: 0.072rem;
  text-align: left;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .front-faq__answer-text {
    gap: 1rem;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.front-faq {
  /* ===== Open state ===== */
}
.front-faq__item--open .front-faq__answer {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 3.7rem;
}
@media screen and (max-width: 768px) {
  .front-faq__item--open .front-faq__answer {
    padding-bottom: 1.6rem;
  }
}
.front-faq__item--open .front-faq__icon {
  transform: translateY(-50%) rotate(180deg);
}

/* =========================
   Front FV（PC）アニメーション
========================= */
@keyframes fvZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  60% {
    opacity: 1;
    transform: scale(1.01);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
/* =========================
   Front Feature Panel Animation（PC）
========================= */
/* =========================
   PC：切替アニメーション用（ズームイン）
========================= */
@media (min-width: 769px) {
  .front-feature__panels {
    overflow: hidden;
  }
  .front-feature__panel {
    display: none;
    opacity: 0;
    transform: scale(0.98);
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .front-feature__panel.is-active {
    display: block;
  }
  .front-feature__panel.is-show {
    opacity: 1;
    transform: scale(1);
  }
}
/* =========================
  Front Feature（SP）slider
========================= */
@media (max-width: 768px) {
  .front-feature__panels {
    display: flex;
    overflow-x: scroll;
    scroll-behavior: smooth;
    gap: 1.6rem;
    padding-inline: 7.5%;
    transition: opacity 0.25s ease;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .front-feature__panels::-webkit-scrollbar {
    display: none;
  }
  .front-feature__panel {
    display: block;
    opacity: 1;
    transform: none;
  }
}
.sidebar__section {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-left: 1rem;
}
.sidebar__section::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  width: 1px;
  height: 110%;
  background-color: #CA7F13;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .sidebar__section {
    flex-direction: column;
    padding-inline: 3rem;
  }
  .sidebar__section::before {
    display: none;
  }
}
@media (max-width: 480px) {
  .sidebar__section {
    padding-inline: 1.6rem;
  }
}

.sidebar__title {
  font-family: var(--font-en-serif);
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.1666666667;
  letter-spacing: 0.24rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .sidebar__title {
    font-size: 2.4rem;
    letter-spacing: 0.24rem;
  }
}

.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .sidebar__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem 0;
  }
}

.sidebar__item {
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  font-weight: 500;
  line-height: 0.875;
  letter-spacing: 0.16rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .sidebar__item {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.14rem;
    width: 40%;
  }
}

.pagination-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(40px, 10vw, 60px) 0;
}

/* =========================
  Pagination
========================= */
.pagination-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: clamp(40px, 10vw, 60px) 0;
}

/* ul 専用（ここが超重要） */
ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: clamp(5px, 1.4vw, 10px);
  padding: 0;
  margin: 0;
  list-style: none;
}

/* li はレイアウト管理のみ */
ul.page-numbers li {
  list-style: none;
}

/* 数字・リンク共通 */
ul.page-numbers li a,
ul.page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(30px, 8vw, 40px);
  aspect-ratio: 1/1;
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #CA7F13;
  transition: background-color 0.3s, color 0.3s;
}

/* 現在ページ */
ul.page-numbers li .current {
  background-color: #D4CEBE;
  color: #fff;
}

/* 前・次ボタン（文字を消す） */
ul.page-numbers li a.prev,
ul.page-numbers li a.next {
  font-size: 0;
  position: relative;
}

/* Font Awesome 矢印 */
ul.page-numbers li a.prev::before,
ul.page-numbers li a.next::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 1;
  color: #CA7F13;
}

ul.page-numbers li a.prev::before {
  content: "\f053"; /* fa-chevron-left */
}

ul.page-numbers li a.next::before {
  content: "\f054"; /* fa-chevron-right */
}

/* =========================
   Reserve Guide
   ========================= */
.reserve-guide__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
  background-color: #F9F8F6;
}
@media (max-width: 1336px) {
  .reserve-guide__inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .reserve-guide__inner {
    padding-block: 8rem;
    padding-inline: 4.5rem;
  }
}
@media (max-width: 480px) {
  .reserve-guide__inner {
    padding-inline: 3rem;
  }
}

.reserve-guide__list {
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 7vw, 12rem);
}
@media (max-width: 768px) {
  .reserve-guide__list {
    gap: 3.2rem;
  }
}

/* =========================
未成年同意書セクション
========================= */
.reserve-guide__item--consent {
  display: flex;
  align-items: center;
}

.reserve-guide__content {
  display: flex;
  gap: clamp(2.4rem, 6vw, 10rem);
}
@media (max-width: 768px) {
  .reserve-guide__content {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.4rem;
  }
}

.reserve-guide__body {
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 5vw, 4.2rem);
}
@media (max-width: 768px) {
  .reserve-guide__body {
    gap: 1.6rem;
  }
}

/* title */
.reserve-guide__body-title-line {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.32rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-guide__body-title-line {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.24rem;
    display: block;
  }
}

/* text */
.reserve-guide__text-line {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-guide__text-line {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.14rem;
  }
}

.reserve-guide__text-group {
  display: inline;
}
@media (max-width: 768px) {
  .reserve-guide__text-group {
    display: block;
  }
}

/* action */
.reserve-guide__action--download {
  max-width: 240px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  padding-inline: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.4rem, 3.2vw, 3.2rem);
  background-color: #D4CEBE;
}
@media (max-width: 768px) {
  .reserve-guide__action--download {
    max-width: none;
    width: 80%;
  }
}

.reserve-guide__action-text {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-guide__action-text {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.18rem;
  }
}

.reserve-guide__button {
  font-size: clamp(1rem, 1.6vw, 1.8rem);
  font-weight: regular;
  line-height: 1.35;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background-color: #949E33;
  padding-block: clamp(0.8rem, 1.2vw, 1rem);
  padding-inline: clamp(2.4rem, 3.2vw, 3.6rem);
  border-radius: 40px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  text-align: center;
}
.reserve-guide__button:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}
.reserve-guide__button:hover .reserve-guide__button-text {
  color: #949E33;
}
.reserve-guide__button:hover i {
  color: #949E33;
}
.reserve-guide__button:active {
  color: #949E33;
}
.reserve-guide__button:active .reserve-guide__button-text {
  color: #949E33;
}
.reserve-guide__button:active i {
  color: #949E33;
}

.reserve-guide__button-text {
  font-family: var(--font-jp-mincho);
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.16rem;
  color: #FFFFFF;
  transition: color 0.3s ease-in-out;
  position: relative;
}

.reserve-guide__button i {
  position: absolute;
  top: 29%;
  left: 10%;
  color: #FFFFFF;
  transition: color 0.3s ease-in-out;
}

/* =========================
電話案内セクション
========================= */
.reserve-guide__lead {
  display: flex;
  gap: clamp(2rem, 6vw, 6rem);
}
@media (max-width: 1024px) {
  .reserve-guide__lead {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 0;
    gap: 2.4rem;
  }
}

.reserve-guide__lead-body {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 2vw, 2.4rem);
}

.reserve-guide__lead-title {
  font-family: var(--font-en-serif);
  font-size: clamp(3.4rem, 2vw, 4.8rem);
  line-height: 1.5;
  letter-spacing: 0.48rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-guide__lead-title {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.24rem;
    text-align: center;
  }
}

.reserve-guide__lead-text {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-guide__lead-text {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.14rem;
  }
}

.reserve-guide__action--phone {
  max-width: 420px;
  width: 65%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-inline: clamp(2rem, 5vw, 4rem);
  padding-block: clamp(2.4rem, 3.2vw, 3.2rem);
  position: relative;
}
.reserve-guide__action--phone::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: #CA7F13;
}
@media (max-width: 1336px) {
  .reserve-guide__action--phone {
    width: 45%;
  }
}
@media (max-width: 1224px) {
  .reserve-guide__action--phone {
    width: 35%;
  }
}
@media (max-width: 1024px) {
  .reserve-guide__action--phone {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .reserve-guide__action--phone {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.6rem;
    padding-block: 0;
    padding-inline: 0;
  }
  .reserve-guide__action--phone::before {
    display: none;
  }
}

.reserve-guide__action-phone-number {
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0.32rem;
  color: #CA7F13;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .reserve-guide__action-phone-number {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.24rem;
  }
}

.reserve-guide__action-hours-time {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  line-height: 2.2857142857;
  letter-spacing: 0.14rem;
  color: #CA7F13;
  white-space: nowrap;
  border-radius: 9999px;
  border: 1px solid #CA7F13;
  padding-block: 0.1em;
  padding-inline: 2.8em;
}
@media (max-width: 768px) {
  .reserve-guide__action-hours-time {
    font-size: 1.4rem;
    line-height: 2.2857142857;
    letter-spacing: 0.14rem;
  }
}

/* ==========================
 form
========================== */
.form-inner {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
}
@media (max-width: 1336px) {
  .form-inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(8rem, 14vw, 20rem);
  }
}
@media screen and (max-width: 768px) {
  .form-inner {
    padding-block: 0 8rem;
    padding-inline: 5rem;
  }
}
@media (max-width: 480px) {
  .form-inner {
    padding-inline: 5rem;
  }
}

.wpcf7 br {
  display: none;
}

.form-row {
  display: flex;
  align-items: center;
  margin-block: clamp(2.4rem, 5vw, 4rem);
  gap: clamp(5rem, 7vw, 14rem);
}
.form-row--tall {
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: clamp(0.8rem, 1vw, 1.2rem);
  column-gap: clamp(5rem, 7vw, 14rem);
  margin-block: clamp(1rem, 1.2vw, 1.2rem) clamp(2.4rem, 5vw, 4rem);
}
.form-row--tall .form-label {
  flex: 0 0 280px;
  width: 280px;
}
@media (max-width: 768px) {
  .form-row--tall .form-label {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}
.form-row--tall .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .form-row--tall .wpcf7-form-control-wrap {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}
.form-row--tall .form-note {
  flex: 1 1 100%;
  margin-top: 1.2rem;
  margin-left: calc(280px + clamp(5rem, 7vw, 14rem));
  width: calc(100% - 280px - clamp(5rem, 7vw, 14rem));
  font-size: 1.2rem;
  line-height: 2.3333333333;
  letter-spacing: 0.12rem;
}
@media (max-width: 1240px) {
  .form-row--tall .form-note {
    margin-left: calc(280px + clamp(2.5rem, 4vw, 5rem));
    width: calc(100% - 280px - clamp(2.5rem, 4vw, 5rem));
  }
}
@media (max-width: 768px) {
  .form-row--tall .form-note {
    flex: unset;
    max-width: unset;
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 1240px) {
  .form-row {
    gap: clamp(2.5rem, 4vw, 5rem);
  }
}
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-block: 3.2rem 0;
  }
}

.form-row-wrap--contact-time {
  display: flex;
  gap: clamp(5rem, 7vw, 14rem);
}
@media (max-width: 1240px) {
  .form-row-wrap--contact-time {
    gap: clamp(2.5rem, 4vw, 5rem);
  }
}
@media (max-width: 768px) {
  .form-row-wrap--contact-time {
    flex-direction: column;
    gap: 2rem;
  }
  .form-row-wrap--contact-time .form-row {
    margin-block: 3.2rem 0;
  }
  .form-row-wrap--contact-time .form-row--contact-time {
    margin-block: 0;
  }
}

.form-row-wrap--inquiry-type {
  display: flex;
  gap: clamp(5rem, 7vw, 14rem);
}
@media (max-width: 1240px) {
  .form-row-wrap--inquiry-type {
    gap: clamp(2.5rem, 4vw, 5rem);
  }
}
@media (max-width: 768px) {
  .form-row-wrap--inquiry-type {
    flex-direction: column;
    gap: 2rem;
  }
  .form-row-wrap--inquiry-type .form-row {
    margin-block: 3.2rem 0;
  }
  .form-row-wrap--inquiry-type .form-row--inquiry-type {
    margin-block: 0;
  }
}

/* contact-time 行全体 */
.contact-time__row + .contact-time__row {
  margin-top: clamp(1.6rem, 2vw, 2.4rem);
}
.contact-time__row > p {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
@media (max-width: 768px) {
  .contact-time__row > p {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .contact-time__row > p .wpcf7-form-control-wrap {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}

/* inquiry-type 行全体 */
.inquiry-type__row > p {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0;
}
@media (max-width: 768px) {
  .inquiry-type__row > p {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .inquiry-type__row > p .wpcf7-form-control-wrap {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}

/* 「平日」「休日」ラベル */
.contact-time__day {
  min-width: 3em;
  flex-shrink: 0;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 2;
  letter-spacing: 0.14rem;
  color: #333;
  display: flex;
  align-items: center;
  height: 30px;
}
@media (max-width: 768px) {
  .contact-time__day {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

/* CF7が吐く強制改行を無効化 */
.contact-time__row br {
  display: none;
}

.inquiry-type__row br {
  display: none;
}

/* チェックボックス群を横並び */
.contact-time__row .wpcf7-form-control {
  display: flex;
  gap: clamp(1rem, 1.2vw, 1.2rem);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .contact-time__row .wpcf7-form-control {
    width: 100%;
  }
}

.inquiry-type__row .wpcf7-form-control {
  display: flex;
  gap: clamp(1rem, 1.2vw, 1.2rem);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .inquiry-type__row .wpcf7-form-control {
    width: 100%;
  }
}

/* お問い合わせ項目のチェックボックスを横並び */
.wpcf7-form-control-wrap#inquiry-type .wpcf7-form-control,
#inquiry-type.wpcf7-form-control {
  display: flex;
  gap: clamp(1rem, 1.2vw, 1.2rem);
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .wpcf7-form-control-wrap#inquiry-type .wpcf7-form-control,
  #inquiry-type.wpcf7-form-control {
    width: 100%;
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* お問い合わせ項目のラベル幅を280pxに */
.form-row label[for=inquiry-type].form-label {
  width: 280px;
  flex: 0 0 280px;
}
@media (max-width: 768px) {
  .form-row label[for=inquiry-type].form-label {
    width: 100%;
    flex: 1 1 100%;
  }
}

.form-row--inquiry-type.wpcf7-list-item {
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .form-row--inquiry-type.wpcf7-list-item {
    margin: 0;
    width: 100%;
    min-width: 0;
    flex: 0 0 100%;
  }
}

/* お問い合わせ項目のチェックボックス項目を768px以下で適切に折り返す */
@media (max-width: 768px) {
  .wpcf7-form-control-wrap#inquiry-type .wpcf7-list-item,
  #inquiry-type.wpcf7-form-control .wpcf7-list-item {
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
    margin: 0;
  }
}

/* お問い合わせ項目のinput領域の高さを中身に合わせる */
.wpcf7-form-control-wrap#inquiry-type {
  height: auto;
  min-height: 0;
}

/* お問い合わせ項目のform-inputクラスの高さ指定を無効化 */
.wpcf7-form-control-wrap#inquiry-type .form-input,
.wpcf7-form-control-wrap#inquiry-type .form-input-full-width,
#inquiry-type.form-input,
#inquiry-type.form-input-full-width {
  height: auto;
  min-height: 0;
}

/* お問い合わせ項目のチェックボックスコンテナの高さを中身に合わせる */
.wpcf7-form-control-wrap#inquiry-type .wpcf7-form-control,
#inquiry-type.wpcf7-form-control {
  height: auto;
  min-height: 0;
}

/* 共通スタイル */
.form-label {
  width: 280px;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
  text-align: left;
}
@media (max-width: 768px) {
  .form-label {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

.form-label br {
  display: none;
}

.form-label .required,
.form-label .optional {
  display: inline-flex;
  align-items: center;
  order: -1;
  line-height: 1.75;
}

.wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .wpcf7-form-control-wrap {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

.form-input {
  flex: 1;
  width: 100%;
  min-width: 0;
  height: 5rem;
  border: none;
}
@media (max-width: 768px) {
  .form-input {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

.form-row--half .wpcf7-form-control-wrap {
  flex: 0 0 22.5%;
  max-width: 22.5%;
  height: auto;
}
@media (max-width: 768px) {
  .form-row--half .wpcf7-form-control-wrap {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}

.wpcf7-form-control-wrap .form-input--short {
  flex: 0 0 40%;
  max-width: 40%;
}
@media (max-width: 768px) {
  .wpcf7-form-control-wrap .form-input--short {
    flex: unset;
    max-width: unset;
    width: 100%;
  }
}

.form-input--tall {
  min-height: 8em;
  /* 縦に広げる */
  resize: vertical;
  /* ユーザーがさらに縦に広げられる（任意） */
}

/* 同意チェックボックス */
.wpcf7-list-item {
  display: block;
  line-height: 1;
}

/* アクセシブル非表示 */
input[type=checkbox] {
  position: absolute;
  opacity: 0;
  pointer-events: auto;
}

/* 同意チェックボックス横のテキスト */
.wpcf7-list-item-label {
  position: relative;
  height: 2rem;
  padding-left: clamp(1.4rem, 5vw, 3.5rem);
  display: inline-block;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.5;
  letter-spacing: 0.14rem;
  color: #333;
}
@media (max-width: 768px) {
  .wpcf7-list-item-label {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

/* 同意チェックボックス box */
.wpcf7-list-item-label::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1.6px solid;
  border-radius: 2px;
  /* 角丸 */
  background-color: #F9F8F6;
  position: absolute;
  left: 0;
  top: 0;
  box-sizing: border-box;
}

/* チェック時の背景色 */
.wpcf7-list-item input:checked + .wpcf7-list-item-label::before {
  /* チェック時の色 */
}

/* 同意チェックボックス チェックマーク */
.wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  border-top: 2px solid #54372D;
  border-right: 2px solid #54372D;
  transform: rotate(135deg);
  position: absolute;
  left: 1px;
  top: 3px;
}

/* 連絡時間帯・お問い合わせ項目のチェックボックスを30pxに、枠線なしに */
.contact-time__row .wpcf7-list-item-label::before,
.inquiry-type__row .wpcf7-list-item-label::before,
.wpcf7-form-control-wrap#inquiry-type .wpcf7-list-item-label::before,
#inquiry-type.wpcf7-form-control .wpcf7-list-item-label::before {
  width: 30px;
  height: 30px;
  border: none;
}

/* 連絡時間帯・お問い合わせ項目のチェックボックス横のテキストを中央配置 */
.contact-time__row .wpcf7-list-item-label,
.inquiry-type__row .wpcf7-list-item-label,
.wpcf7-form-control-wrap#inquiry-type .wpcf7-list-item-label,
#inquiry-type.wpcf7-form-control .wpcf7-list-item-label {
  height: 30px;
  display: flex;
  align-items: center;
  padding-left: clamp(1.4rem, 5vw, 3.5rem);
}
@media (max-width: 768px) {
  .contact-time__row .wpcf7-list-item-label,
  .inquiry-type__row .wpcf7-list-item-label,
  .wpcf7-form-control-wrap#inquiry-type .wpcf7-list-item-label,
  #inquiry-type.wpcf7-form-control .wpcf7-list-item-label {
    padding-left: 3rem;
    width: 100%;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* 連絡時間帯・お問い合わせ項目のチェックマークサイズ調整 */
.contact-time__row .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.inquiry-type__row .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.wpcf7-form-control-wrap#inquiry-type .wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
#inquiry-type.wpcf7-form-control .wpcf7-list-item input:checked + .wpcf7-list-item-label::after {
  width: 30px;
  height: 12px;
  left: 0;
  top: 6px;
}

/* submitボタンのラッパー（中央揃え） */
.form-submit-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: clamp(3rem, 5vw, 5rem) 0;
  position: relative;
}
.form-submit-wrapper p {
  margin: 0;
  text-align: center;
}

/* submitボタン（確認画面への移行ボタン・送信ボタン） */
.wpcf7-submit {
  display: inline-block;
  padding-block: clamp(1rem, 1.4vw, 1.2rem);
  padding-inline: clamp(4.8rem, 5vw, 6.8rem);
  border-radius: 40px;
  border: 1px solid transparent;
  font-family: var(--font-jp-mincho);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #FFFFFF;
  background-color: #949E33;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.wpcf7-submit:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}

/* 確認画面エリア */
.confirm_text {
  font-size: clamp(12px, 4vw, 16px);
  color: #54372D;
  margin-block: 0 clamp(24px, 5vw, 40px);
  text-align: center;
}

.confirm_area .form-row {
  display: flex;
  align-items: flex-start;
  padding-inline: clamp(80px, 6vw, 100px);
  gap: 5em;
}

.confirm_area .form-label {
  min-width: 10em;
}

/* スピナー */
.wpcf7-spinner {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  order: -1;
  background-color: transparent;
}
.wpcf7-spinner::before {
  background-color: rgba(159, 136, 110, 0.5);
}

/* submitボタンラッパー内のスピナー */
.form-submit-wrapper .wpcf7-spinner {
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}

/* フォーカス時の枠線 */
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 2px solid #D4CEBE;
  border-radius: 5px;
  box-shadow: 0px 0px 1px 0px rgb(39, 29, 19);
}

/* 必須項目 */
.wpcf7-form .required {
  padding-block: 0.5rem;
  padding-inline: 1.8rem;
  border-radius: 999px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 2.3333333333;
  letter-spacing: 0.12rem;
  color: #FFFFFF;
  background-color: #54372D;
}
@media (max-width: 768px) {
  .wpcf7-form .required {
    padding-block: 0.1rem;
    padding-inline: 1.2rem;
  }
}

/* 任意項目 */
.wpcf7-form .optional {
  padding-block: 0.5rem;
  padding-inline: 1.8rem;
  border-radius: 999px;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.75;
  letter-spacing: 0.12rem;
  color: #333;
  background-color: #D4CEBE;
}
@media (max-width: 768px) {
  .wpcf7-form .optional {
    padding-block: 0.1rem;
    padding-inline: 1.2rem;
  }
}

/* エラーメッセージ */
.wpcf7-not-valid-tip {
  color: #E65E04;
}

/* 共通スタイル */
.wpcf7-response-output {
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

/* 個別メッセージのスタイル */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7-response-output.wpcf7-validation-errors {
  color: #E65E04;
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7-response-output.wpcf7-mail-sent-ok {
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7-response-output.wpcf7-mail-sent-ng {
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

.wpcf7 form.spam .wpcf7-response-output,
.wpcf7-response-output.wpcf7-spam-blocked {
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7-response-output.wpcf7-aborted {
  border: none !important;
  margin: 0;
  padding-bottom: 20px;
  text-align: center;
}

:where(button, input, select, textarea) {
  color: #333;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}

/* 確認画面のテキスト */
.form-confirm-area {
  color: #333;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}

/* ブラウザ自動入力の背景色を無効化 */
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  box-shadow: 0 0 0px 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 9999s ease-in-out 0s;
}

.u-recaptcha-policy {
  font-size: clamp(8px, 5vw, 14px);
  line-height: 1.6;
  text-align: center;
  color: #333;
}
.u-recaptcha-policy a {
  text-decoration: underline;
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--page-concept {
  background-color: #F9F8F6;
  padding-bottom: 0;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--page-concept .page-main {
  width: 100%;
  background-color: #F9F8F6;
}

.page-fv__inner--page-concept {
  max-width: 1440px;
  margin: 0 auto;
}

/* =========================
    intro セクション
========================= */
.page-concept__intro {
  background-color: #D4CEBE;
}

.page-concept__intro-body {
  margin-inline: auto;
  padding-block: clamp(4rem, 6vw, 8rem);
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 6vw, 6rem);
  position: relative;
  /* PC大 */
  max-width: 1200px;
  padding-inline: 0;
  /* PC中 */
}
@media (max-width: 1336px) {
  .page-concept__intro-body {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.page-concept__intro-body {
  /* SP */
}
@media (max-width: 768px) {
  .page-concept__intro-body {
    position: relative;
    flex-direction: column;
    padding-block: 2.6rem 12rem;
    padding-inline: 3rem;
    gap: 2.4rem;
  }
}

.page-concept__intro-media {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .page-concept__intro-media {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}

/* ===== タイトル ===== */
@media (max-width: 768px) {
  .section-title__inner--page-concept-company {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
  }
}

.page-concept__title-wrapper {
  position: absolute;
  top: 35%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
}
@media (max-width: 768px) {
  .page-concept__title-wrapper {
    position: static;
    transform: none;
    order: 1;
  }
}

.page-concept__title {
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.4rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .page-concept__title {
    font-size: 1.8rem;
    line-height: 2;
    letter-spacing: 0.18rem;
  }
}

/* ===== ビジュアル ===== */
.page-concept__visual {
  width: clamp(315px, 50vw, 720px);
  aspect-ratio: 720/405;
  overflow: hidden;
  margin-left: auto;
}
@media (max-width: 768px) {
  .page-concept__visual {
    width: 100%;
    aspect-ratio: 315/177;
    margin-left: 0;
    order: 0;
  }
}
.page-concept__visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== リード文 ===== */
.page-concept__lead {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .page-concept__lead {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

/* =========================
    Instagram セクション
========================= */
.page-concept__instagram {
  background-color: #F9F8F6;
}

.page-concept__instagram-inner {
  margin-inline: auto;
  padding-block: clamp(4rem, 7vw, 12rem);
}
@media (max-width: 768px) {
  .page-concept__instagram-inner {
    padding-block: 11rem 12rem;
  }
}
.page-concept__instagram-header {
  max-width: 1200px;
  margin-inline: auto;
}
@media (max-width: 1336px) {
  .page-concept__instagram-header {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.page-concept__instagram-header {
  /* SP */
}
@media (max-width: 768px) {
  .page-concept__instagram-header {
    position: relative;
    flex-direction: column;
    padding-inline: 4.5rem;
  }
}
@media (max-width: 480px) {
  .page-concept__instagram-header {
    padding-inline: 1.6rem;
  }
}

/* ===== Instagram 投稿一覧 ===== */
.page-concept__instagram-list {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(2rem, 4vw, 4rem);
  padding-block: clamp(4rem, 6vw, 6rem) 0;
}
@media (max-width: 1336px) {
  .page-concept__instagram-list {
    max-width: none;
    width: 100%;
    padding-inline: clamp(10rem, 12vw, 15rem);
  }
}
@media screen and (max-width: 768px) {
  .page-concept__instagram-list {
    gap: 2rem;
    padding-block: 6rem 0;
    padding-inline: 4.5rem;
  }
}
@media (max-width: 480px) {
  .page-concept__instagram-list {
    padding-inline: 3rem;
  }
}

/* PC：3列 × 2行 */
.page-concept__instagram-item {
  flex: 0 0 calc((100% - 2 * clamp(2rem, 4vw, 4rem)) / 3);
  aspect-ratio: 1/1;
  background-color: rgba(0, 0, 0, 0.05);
}

/* SP：2列 × 3行 */
@media (max-width: 768px) {
  .page-concept__instagram-item {
    flex: 0 0 calc((100% - 2rem) / 2);
  }
}
/* =========================
    Company セクション
========================= */
.page-concept-company {
  background-color: #F9F8F6;
}

@media (max-width: 1336px) {
  .page-concept-company__inner {
    max-width: none;
    padding-inline: clamp(3rem, 8vw, 14rem);
  }
}
.page-concept-company__inner {
  /* SP */
}
@media (max-width: 768px) {
  .page-concept-company__inner {
    position: relative;
    flex-direction: column;
    padding-block: 2.6rem 12rem;
    padding-inline: 4.5rem;
  }
}
@media (max-width: 480px) {
  .page-concept-company__inner {
    padding-inline: 1.6rem;
  }
}

.page-concept-company__content {
  max-width: 1080px;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 6vw, 6rem);
}
@media (max-width: 1336px) {
  .page-concept-company__content {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 6vw, 8rem);
  }
}
@media screen and (max-width: 768px) {
  .page-concept-company__content {
    padding-block: 1.6rem 3.1rem;
    padding-inline: 0;
  }
}

/* ===== 会社情報の画像 ===== */
.page-concept-company__image {
  width: 100%;
  aspect-ratio: 1080/540;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-concept-company__image {
    aspect-ratio: 343/200;
  }
}
.page-concept-company__image img {
  width: 100%;
  display: block;
}

/* ===== 会社情報 ===== */
.page-concept-company__info {
  display: flex;
  flex-direction: column;
}

/* ===== 会社情報の項目 ===== */
.page-concept-company__dl {
  display: grid;
  width: 100%;
  grid-template-columns: 14rem 1fr;
  column-gap: var(--td-gap, 3rem);
  align-items: start;
}

/* row--doubleの最初のitemとrow--singleのitem：3.6rem */
.page-concept-company__row--double .page-concept-company__item:first-child .page-concept-company__dl,
.page-concept-company__row--single .page-concept-company__item .page-concept-company__dl {
  grid-template-columns: clamp(7rem, 8vw, 8rem) 1fr;
  column-gap: clamp(2.4rem, 3.2vw, 3.6rem);
  padding-inline: 1.4rem;
}

/* row--doubleの2つ目のitem：5.5rem */
.page-concept-company__row--double .page-concept-company__item:last-child .page-concept-company__dl {
  grid-template-columns: clamp(5rem, 5vw, 6rem) 1fr;
  column-gap: clamp(3.6rem, 4vw, 5.5rem);
}
@media (max-width: 768px) {
  .page-concept-company__row--double .page-concept-company__item:last-child .page-concept-company__dl {
    padding-inline: 1.4rem;
  }
}

.page-concept-company__row {
  position: relative;
  padding-top: 2.25rem;
}
.page-concept-company__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #CA7F13;
}
.page-concept-company__row--double {
  display: grid;
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 1300px) {
  .page-concept-company__row--double {
    grid-template-columns: 2.5fr 3fr;
  }
}
@media (max-width: 1120px) {
  .page-concept-company__row--double {
    grid-template-columns: 1fr 1fr;
  }
}
.page-concept-company__row--single {
  display: block;
}
.page-concept-company__row:not(:last-child) {
  padding-bottom: 2.25rem;
}
@media (max-width: 768px) {
  .page-concept-company__row:not(:last-child) {
    padding-bottom: 0;
  }
}
@media (max-width: 768px) {
  .page-concept-company__row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-concept-company__row::before {
    display: none;
  }
  .page-concept-company__row {
    display: block;
  }
}

.page-concept-company__item {
  display: block;
}
@media (max-width: 768px) {
  .page-concept-company__item {
    padding-block: 2.4rem;
    border-top: 1px solid #CA7F13;
    border-bottom: 1px solid #CA7F13;
  }
}

.page-concept-company__term {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  font-weight: 600;
  line-height: 0.7777777778;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .page-concept-company__term {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.14rem;
  }
}

.page-concept-company__desc {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  line-height: 0.875;
  letter-spacing: 0.16rem;
  color: #333;
  margin: 0;
}
@media (max-width: 1000px) {
  .page-concept-company__desc {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
}
@media (max-width: 768px) {
  .page-concept-company__desc {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.12rem;
    display: block;
  }
}

@media (max-width: 1000px) {
  .page-concept-company__desc-line {
    display: block;
  }
}
.page-concept-company__desc-line:first-child {
  padding-block: 0 0.3em;
}

/* =========================
    CTA セクション
========================= */
.page-concept__cta {
  text-align: center;
  padding-block: clamp(4rem, 6vw, 6rem) 0;
}

.page-concept__cta-link {
  display: inline-block;
  font-size: clamp(1rem, 1.8vw, 2rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.2em;
  color: #FFFFFF;
  background-color: #949E33;
  padding-block: clamp(1rem, 1.4vw, 1.2rem);
  padding-inline: clamp(2.4rem, 5vw, 4.8rem);
  border-radius: 40px;
  border: 1px solid transparent;
  transition: background-color 0.3s ease-in-out;
  position: relative;
}
.page-concept__cta-link:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px 0 rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}

.page-concept__cta-text {
  font-family: var(--font-jp-mincho);
  position: relative;
}

.page-concept__cta-link i {
  position: absolute;
  top: 31%;
  left: 8%;
}

/* =========================
    price パララックス内部の設定
 ========================= */
/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--price .page-fv__bg {
  /* コンテンツの高さに応じて自動的に伸びる */
  background-color: #F9F8F6;
  padding-bottom: 0;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--price .page-main {
  width: 100%;
  background-color: #D4CEBE;
}

/* =========================
    intro セクション
========================= */
.page-price__intro {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  background-color: #D4CEBE;
}

.page-price__intro-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: clamp(2rem, 3vw, 5rem);
}
@media (max-width: 1336px) {
  .page-price__intro-content {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .page-price__intro-content {
    flex-direction: column-reverse;
    padding-inline: 0;
  }
}

.page-price__lead {
  flex: 1;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.18rem;
  text-align: left;
  color: #CA7F13;
  opacity: 0.8;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .page-price__lead {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
    gap: 3rem;
    padding-inline: 3rem;
  }
}

.page-price__text-group {
  display: block;
}
@media (min-width: 769px) {
  .page-price__text-group--middle {
    letter-spacing: -0.01em;
    line-height: 2.2;
  }
}
@media (min-width: 769px) {
  .page-price__text-group--long {
    letter-spacing: -0.02em;
    line-height: 1.8;
  }
}
.page-price__text-line {
  display: inline;
}
@media (max-width: 768px) {
  .page-price__text-line {
    display: block;
  }
}

.page-price__menu {
  width: 50%;
  margin-block: 0;
}
@media (max-width: 768px) {
  .page-price__menu {
    width: 100%;
    padding-inline: 3rem;
  }
}

.price-item__header > * {
  min-width: 0;
}

/* =========================
    main content -PC/SP共通
========================= */
.price-detail__title {
  font-family: var(--font-en-serif);
  font-size: clamp(6.4rem, 6vw, 8.4rem);
  letter-spacing: 0.336rem;
  text-align: center;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__title {
    font-size: 8.4rem;
    letter-spacing: 0.336rem;
  }
}

.price-detail__part {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  line-height: 1.3333333333;
  letter-spacing: 0.24rem;
  margin-bottom: 3.2rem;
  color: #CA7F13;
  text-align: center;
}
@media (max-width: 768px) {
  .price-detail__part {
    font-size: 1.8rem;
    line-height: 1.7777777778;
    letter-spacing: 0.18rem;
    margin-bottom: 1.6rem;
  }
}

.price-detail__desc {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  line-height: 1.7777777778;
  letter-spacing: 0.18rem;
  color: #CA7F13;
  text-align: center;
}
@media (max-width: 768px) {
  .price-detail__desc {
    font-size: 1.4rem;
    line-height: 2.2857142857;
    letter-spacing: 0.14rem;
    padding-bottom: 2.4rem;
    text-align: left;
  }
}

/* 上段：コース名 */
.price-detail__course {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  line-height: 1.6666666667;
  text-align: center;
  padding: 1.6rem 1rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__course {
    font-size: 1.6rem;
    line-height: 1.875;
  }
}

/* 下段：箇所 × 価格 */
.price-detail__area {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  line-height: 1.6666666667;
  text-align: center;
  padding: 1.6rem 1rem;
  letter-spacing: 0.72rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__area {
    font-size: 1.8rem;
    line-height: 1.875;
    letter-spacing: 0.64rem;
    padding: 0;
  }
}

.price-detail__price {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.24rem;
  text-align: center;
  padding: 1.6rem 1rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__price {
    font-size: 1.8rem;
    line-height: 1.2777777778;
    letter-spacing: 0.18rem;
  }
}
.price-detail__price-unit {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 1.6666666667;
  letter-spacing: 0.18rem;
  vertical-align: baseline;
}
@media (max-width: 768px) {
  .price-detail__price-unit {
    font-size: 1.4rem;
    line-height: 1.6428571429;
    letter-spacing: 0.14rem;
  }
}

/* 注釈 */
.price-detail__note {
  font-size: 1.2rem;
  line-height: 2.5;
  letter-spacing: 0.48rem;
  text-align: right;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__note {
    font-size: 1.2rem;
    line-height: 1.5;
    letter-spacing: 0.48rem;
    text-align: left;
  }
}

/* custom block内のテキスト */
.price-detail__special-title {
  font-family: var(--font-en-serif);
  font-size: 4.8rem;
  letter-spacing: 0.48rem;
  color: #CA7F13;
}

.price-detail__special-desc {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.18rem;
  opacity: 0.8;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .price-detail__special-desc {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

/* =========================
    price detail wrapper
========================= */
.price-anchor .price-anchor {
  position: relative;
  top: -120px;
}

/* detail section */
.price-detail-wrapper--pc {
  max-width: 1440px;
  margin-inline: auto;
  padding-block: clamp(6rem, 8vw, 10rem) 0;
}
@media screen and (max-width: 768px) {
  .price-detail-wrapper--pc {
    display: none;
  }
}

.price-detail {
  width: 100%;
  max-width: 100%;
  padding-inline: 20vw;
  display: flex;
  flex-direction: column;
  margin-block: clamp(8rem, 8vw, 11.7rem) clamp(4rem, 6vw, 6rem);
  gap: clamp(3rem, 3vw, 5.8rem);
}
.price-detail--body {
  margin-block: 0;
  margin-block: clamp(6rem, 8vw, 8rem) clamp(4rem, 6vw, 6rem);
  gap: clamp(4rem, 6vw, 8rem);
}
@media (max-width: 1336px) {
  .price-detail {
    max-width: none;
    width: 100%;
    padding-inline: clamp(8rem, 19vw, 24rem);
  }
}
@media screen and (max-width: 768px) {
  .price-detail {
    padding-inline: 0;
    gap: 4.8rem;
  }
  .price-detail--body {
    gap: 6rem;
  }
}

.price-detail--pc {
  max-width: 802px;
  margin-inline: auto;
}

.price-detail--sp {
  max-width: none;
  width: 100%;
  padding-inline: 0;
}

/* =========================
     各ブロック
//  ========================= */
.price-detail__block--body {
  margin-top: 0;
}

.price-detail__pricing--body {
  margin-block: 6.4rem 0;
  border-bottom: 1px solid #CA7F13;
}

.price-detail__head {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid #CA7F13;
}

.price-detail__course:first-child {
  grid-column: 2;
}

/* =========================
//   料金テーブル下段 箇所 × 価格
// ========================= */
.price-detail__body {
  display: flex;
  flex-direction: column;
}

.price-detail__row {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  align-items: center;
  border-bottom: 1px solid #CA7F13;
}
.price-detail__row--body:not(:last-child) {
  border-bottom: none;
}

/* =========================
    custom block
  ========================= */
.price-detail__block--special {
  width: 100%;
  max-width: 100%;
  padding-inline: 10vw;
  padding-block: clamp(2.5rem, 8vw, 8rem);
  background-color: #F9F8F6;
}
@media (max-width: 1336px) {
  .price-detail__block--special {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .price-detail__block--special {
    flex-direction: column-reverse;
    padding-inline: 0;
    padding-block: 0;
  }
}

.price-detail__special {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: clamp(3rem, 6vw, 6rem);
}
@media (max-width: 768px) {
  .price-detail__special {
    flex-direction: column-reverse;
  }
}

.price-detail__special-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 3vw, 5.4rem);
  padding-inline: 3rem;
}

.price-detail__special-media {
  width: 64%;
  display: block;
  aspect-ratio: 1/1;
  margin: 0 auto;
  object-fit: cover;
}
.price-detail__special-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================
    SP
  ========================= */
.price-detail-wrapper--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .price-detail-wrapper--sp {
    display: block;
  }
}

/* =========================
   PRICE DETAIL - SP
========================= */
/* タイトル */
.price-detail__title {
  text-align: center;
}

/* ブロック */
/* パーツ名 */
.price-detail__part {
  text-align: center;
  margin-bottom: 1.6rem;
}

/* 説明文 */
.price-detail__desc {
  text-align: center;
  line-height: 1.8;
  padding-bottom: 4.4rem;
  padding-inline: 1.6rem;
}
.price-detail__desc--body {
  padding-bottom: 0;
}

/* 箇所 */
.price-detail__area {
  text-align: center;
  padding-block: 1em;
  padding-inline: 1.6rem;
}
.price-detail__area--body {
  padding-block: 3.2rem 4rem;
}

/* ===== 表エリア ===== */
.price-detail__pricing--sp {
  padding-inline: 1.6rem;
}
@media (max-width: 768px) and (min-width: 376px) {
  .price-detail__pricing--sp {
    padding-inline: 2.4rem;
  }
}

/* ヘッダー */
.price-detail__head {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  padding-inline: 5rem 3rem;
  color: #CA7F13;
  border-bottom: 1px solid #CA7F13;
}

.price-detail__head-label {
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}

/* 行 */
.price-detail__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid #CA7F13;
}

/* コース名 */
.price-detail__course {
  font-size: 1.4rem;
  line-height: 1.6;
}

/* 価格 */
.price-detail__price {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  font-size: 1.6rem;
  white-space: nowrap;
}

.price-detail__price-unit {
  font-size: 1.2rem;
}

/* 注釈 */
.price-detail__note {
  font-size: 1.2rem;
  line-height: 1.6;
  padding-block: 1.6rem 0;
  padding-inline: 1.6rem;
}
@media (max-width: 768px) and (min-width: 376px) {
  .price-detail__note {
    padding-inline: 2.4rem;
  }
}

@media screen and (max-width: 768px) {
  .price-detail--special {
    flex-direction: column-reverse;
    gap: 6rem;
    padding-block: 6rem 8rem;
    padding-inline: 0;
    background-color: #F9F8F6;
  }
}

/* =========================
   SCROLL MARGIN
========================= */
/* section のみに限定 */
.price-detail {
  scroll-margin-top: clamp(10rem, 20vw, 20rem);
}

/* block からは外す */
.price-detail__block {
  scroll-margin-top: unset;
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--single-news .page-fv__bg {
  /* コンテンツの高さに応じて自動的に伸びる */
  background-color: #F9F8F6;
  padding-bottom: 0;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--single-news .page-main {
  width: 100%;
  background-color: #F9F8F6;
}

/* =========================
    intro セクション
========================= */
/* =========================
    flex-layout
========================= */
.single-news__content {
  max-width: 1440px;
  margin: 0 auto;
}

.flex-layout {
  display: flex;
  justify-content: center;
  padding-block: clamp(6rem, 10vw, 12rem) clamp(8rem, 10vw, 17.2rem);
}
@media (max-width: 768px) {
  .flex-layout {
    flex-direction: column;
    padding-block: 8rem;
  }
}

.flex-secondary {
  flex: 0 0 25%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .flex-secondary {
    max-width: none;
    width: 100%;
  }
}

.flex-primary {
  flex: 1;
  min-width: 0;
  max-width: calc(75% - 50px);
}
@media (max-width: 768px) {
  .flex-primary {
    max-width: none;
    width: 100%;
  }
}

/* =========================
    single-news
========================= */
.single-news {
  width: 100%;
  max-width: 690px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1336px) {
  .single-news {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .single-news {
    flex-direction: column;
    padding-inline: 3rem;
  }
}
@media (max-width: 480px) {
  .single-news {
    padding-inline: 1.6rem;
  }
}

/* single-news__header */
.single-news__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-block: 0 clamp(2rem, 2vw, 2.4rem);
}
@media (max-width: 768px) {
  .single-news__header {
    padding-block: 0 1.6rem;
  }
}

.single-news__title {
  font-size: clamp(2rem, 2vw, 2.4rem);
  font-weight: 500;
  letter-spacing: 0.24rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-news__title {
    font-size: 1.8rem;
    line-height: 1.5;
    letter-spacing: 0.18rem;
  }
}

.single-news__meta {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}
@media (max-width: 768px) {
  .single-news__meta {
    gap: 0.8rem;
  }
}

.single-news__category {
  font-family: var(--font-en-serif);
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-news__category {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.12rem;
  }
}

.single-news__date {
  font-family: var(--font-en-serif);
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-news__date {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.12rem;
  }
}

/* single-news__thumbnail */
.single-news__thumbnail {
  width: 100%;
  aspect-ratio: 690/250;
  overflow: hidden;
}
@media (max-width: 768px) {
  .single-news__thumbnail {
    aspect-ratio: 345/250;
  }
}
.single-news__thumbnail img,
.single-news__thumbnail picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* single-news__body */
.single-news__body {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-block: clamp(2.4rem, 3.2vw, 3.2rem) 0;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
}
@media (max-width: 768px) {
  .single-news__body {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
    padding-block: 4rem 0;
  }
}

/* =========================
    singlenews-sections
========================= */
.single-news__sections {
  display: flex;
  flex-direction: column;
  gap: clamp(2.4rem, 3.2vw, 3.2rem);
  padding-block: clamp(2rem, 2vw, 2.4rem) 0;
}
@media (max-width: 768px) {
  .single-news__sections {
    gap: 2.4rem;
  }
}

.single-news__section {
  display: flex;
  flex-direction: column;
  gap: clamp(0.8rem, 1.2vw, 1.2rem);
}

.single-news__section-title {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 1.7777777778;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-news__section-title {
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.16rem;
  }
}

.single-news__section-text {
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
}
@media (max-width: 768px) {
  .single-news__section-text {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

/* ------------------------------
  cta section
  ------------------------------ */
.single-news__cta {
  background-color: #F9F8F6;
}

.single-news__cta-inner {
  margin: 0 auto;
  padding-block: clamp(2.4rem, 3.2vw, 3.6rem) 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single-news__cta-inner {
    padding-block: 2.4rem 3.6rem;
  }
}

.single-news__cta-link {
  display: inline-block;
  padding: 1rem 4rem;
  background-color: #949E33;
  border-radius: 9999px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .single-news__cta-link {
    padding: 1rem 5.4rem;
  }
}
.single-news__cta-link:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}
.single-news__cta-link:hover .single-news__cta-text {
  color: #949E33;
}

.single-news__cta-text {
  font-family: var(--font-jp-mincho);
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.16rem;
  color: #FFFFFF;
}
.single-news__cta-text--pc {
  display: block;
}
.single-news__cta-text--sp {
  display: none;
}
@media (max-width: 768px) {
  .single-news__cta-text {
    font-size: 1.4rem;
    line-height: 1.875;
    letter-spacing: 0.16rem;
  }
  .single-news__cta-text--pc {
    display: none;
  }
  .single-news__cta-text--sp {
    display: block;
  }
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--archive-news .page-fv__bg {
  /* コンテンツの高さに応じて自動的に伸びる */
  background-color: #F9F8F6;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--archive-news .page-main {
  width: 100%;
  background-color: #F9F8F6;
}

/* =========================
    intro セクション
========================= */
/* =========================
    flex-layout
========================= */
.archive-news__content {
  max-width: 1440px;
  margin: 0 auto;
}

.flex-layout {
  display: flex;
  justify-content: center;
  padding-block: clamp(6rem, 10vw, 12rem) clamp(8rem, 10vw, 17.2rem);
}
@media (max-width: 768px) {
  .flex-layout {
    flex-direction: column;
    padding-block: 8rem;
  }
}

.flex-secondary {
  flex: 0 0 25%;
  max-width: 280px;
}
@media (max-width: 768px) {
  .flex-secondary {
    max-width: none;
    width: 100%;
  }
}

.flex-primary {
  flex: 1;
  min-width: 0;
  max-width: calc(75% - 50px);
}
@media (max-width: 768px) {
  .flex-primary {
    max-width: none;
    width: 100%;
  }
}

/* =========================
    archive-news-card
========================= */
.archive-news__body {
  max-width: 864px;
  margin: 0 auto;
  padding-block: 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 1336px) {
  .archive-news__body {
    max-width: none;
    width: 100%;
    padding-inline: clamp(2rem, 5vw, 8rem);
  }
}
@media screen and (max-width: 768px) {
  .archive-news__body {
    gap: 4rem;
    padding-inline: 3rem;
  }
}

.archive-news-card__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.archive-news-card__link {
  display: block;
  padding-block: clamp(2rem, 2vw, 2.6rem);
  padding-inline: clamp(1.8rem, 2vw, 2.4rem);
  background-color: #D4CEBE;
  height: 100%;
}
@media (max-width: 768px) {
  .archive-news-card__link {
    padding-block: 1.2rem;
    padding-inline: 1.2rem;
    min-height: 9rem;
  }
}

.archive-news-card__content {
  position: relative;
}

/* タイトルと日付 */
.archive-news-card__header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  gap: clamp(1rem, 1.5vw, 1.6rem);
}
@media (max-width: 768px) {
  .archive-news-card__header {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* タイトル */
.archive-news-card__title {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.16rem;
  width: 65%;
  max-width: 520px;
  white-space: nowrap;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  color: #CA7F13;
}
@media (max-width: 992px) {
  .archive-news-card__title {
    width: 60%;
  }
}
@media (max-width: 880px) {
  .archive-news-card__title {
    width: 55%;
  }
}
@media (max-width: 768px) {
  .archive-news-card__title {
    font-size: 1.4rem;
    letter-spacing: 0.14rem;
    width: 90%;
    white-space: normal;
    -webkit-line-clamp: 2;
  }
}

/* 日付 */
.archive-news-card__date {
  font-family: var(--font-en-serif);
  font-size: clamp(1.2rem, 1.2vw, 1.6rem);
  font-weight: 400;
  line-height: 0.875;
  letter-spacing: 0.16rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .archive-news-card__date {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.12rem;
  }
}

/* カテゴリ */
.archive-news-card__category {
  font-family: var(--font-en-serif);
  font-size: clamp(2.4rem, 2.4vw, 3.2rem);
  font-weight: 400;
  color: rgba(84, 55, 45, 0.2);
  position: absolute;
  top: -10%;
  right: 0;
}
@media (max-width: 768px) {
  .archive-news-card__category {
    font-size: 2.4rem;
    top: 116%;
  }
}

.page-fv__bg-layer--single-salons {
  position: relative;
  z-index: 2;
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--single-salons .page-fv__bg {
  /* コンテンツの高さに応じて自動的に伸びる */
  background-color: #F9F8F6;
  padding-bottom: 0;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--single-salons .page-main {
  width: 100%;
  background-color: #F9F8F6;
  position: relative;
  z-index: 2;
}

/* =========================
    intro セクション
========================= */
.page-single-salons__intro {
  padding-top: clamp(24rem, 30vh, 36rem);
  background-color: #F9F8F6;
}

/* ------------------------------
  固定レイヤー（タイトル）single-salons
------------------------------ */
/* ------------------------------
  intro section
------------------------------ */
.single-salons__intro {
  background-color: #F9F8F6;
}

.single-salons__intro-body {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-block: clamp(6rem, 10vw, 12rem);
}
@media (max-width: 1336px) {
  .single-salons__intro-body {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .single-salons__intro-body {
    padding-block: 1.6rem 3.1rem;
    padding-inline: 3rem;
  }
}
.single-salons__intro-body {
  text-align: center;
}

.single-salons__intro-text p {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.2rem;
  color: #333;
}
@media (max-width: 768px) {
  .single-salons__intro-text p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
    padding-block: 8rem;
  }
}

.single-salons__intro-text p:empty {
  display: none;
  margin: 0;
  padding: 0;
  height: 0;
  line-height: 0;
}

@media screen and (max-width: 768px) {
  .single-salons__intro-text p:empty {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
  }
  .single-salons__intro-text p:has(> br:only-child) {
    display: none;
    margin: 0;
    padding: 0;
  }
}
/* ------------------------------
  flow section
  ------------------------------ */
.single-salons__flow {
  position: relative;
  width: 100%;
  clip-path: inset(0 0 0 0);
}

.section__inner--single-salons {
  max-width: 1283px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vw, 8rem);
}
@media (max-width: 1336px) {
  .section__inner--single-salons {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .section__inner--single-salons {
    padding-inline: 2.6rem;
    gap: 6rem;
  }
}
@media screen and (max-width: 480px) {
  .section__inner--single-salons {
    padding-inline: 1.6rem;
  }
}

.single-salons__flow-body {
  position: relative;
}

/* 装飾用：絶対配置の起点 */
.single-salons__flow-anchor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* flow リスト */
.single-salons__flow-list {
  max-width: 800px;
  margin: 0 auto;
  padding-block: 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media (max-width: 1336px) {
  .single-salons__flow-list {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 11vw, 14rem);
  }
}
@media screen and (max-width: 768px) {
  .single-salons__flow-list {
    gap: 4rem;
    padding-inline: 3rem;
  }
}

.single-salons__flow-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  gap: 6rem;
  align-items: flex-start;
}
.single-salons__flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1%;
  top: 27%;
  width: 1px;
  height: calc(100% - 60px);
  max-height: 50%;
  background-image: radial-gradient(circle, #949E33 1px, transparent 1px);
  background-size: 1px 8px;
  background-repeat: repeat-y;
}
@media screen and (max-width: 768px) {
  .single-salons__flow-item {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .single-salons__flow-item:not(:last-child)::after {
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
    width: 1px;
    height: 4rem;
    max-height: none;
  }
}

/* flow コンテンツ */
.single-salons__flow-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .single-salons__flow-content {
    align-items: center;
  }
}

/* カウンター設定 */
.single-salons__flow-list {
  counter-reset: step;
}

.single-salons__flow-item {
  counter-increment: step;
}

/* ナンバー丸アイコン*/
.single-salons__flow-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.single-salons__flow-step-num {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-serif);
  font-size: 3.2rem;
  line-height: 1.84375;
  letter-spacing: 0.32rem;
  color: #FFFFFF;
}
.single-salons__flow-step-num::before {
  content: counter(step, decimal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-serif);
  font-size: 3.2rem;
  letter-spacing: 0.32rem;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
}
.single-salons__flow-step-num::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translateX(-50%);
  border-radius: 50%;
  background-color: #949E33;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .single-salons__flow-step-num::after {
    top: 10%;
  }
}
@media screen and (max-width: 768px) and (min-width: 376px) {
  .single-salons__flow-step-num::after {
    line-height: 1;
  }
}

/* flow テキスト*/
.single-salons__flow-title {
  font-family: var(--font-jp-mincho);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.96rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-salons__flow-title {
    font-size: 1.8rem;
    line-height: 0.7777777778;
    letter-spacing: 0.72rem;
  }
}

.single-salons__flow-text p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.18rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-salons__flow-text p {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.14rem;
  }
}

/* flow 画像の起点 */
.single-salons__flow-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* flow 画像 */
.single-salons__flow-image {
  position: absolute;
  width: 180px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.single-salons__flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-salons__flow-image--01 {
  position: absolute;
  top: 58%;
  left: 5.5%;
}

.single-salons__flow-image--02 {
  position: absolute;
  top: 77%;
  left: 82%;
}

.single-salons__flow-image--03 {
  position: absolute;
  top: 90%;
  left: -2%;
}

/* ------------------------------
  staff section
  ------------------------------ */
.single-salons__staff {
  background-color: #464646;
}

.single-salons__staff-inner {
  padding-block: 8rem;
  max-width: 1080px;
}
@media (max-width: 1336px) {
  .single-salons__staff-inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .single-salons__staff-inner {
    padding-block: 6rem 2rem;
    padding-inline: 0;
  }
}

.single-salons__staff-layout {
  display: flex;
  flex-direction: row-reverse;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .single-salons__staff-layout {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2.4rem;
  }
}

/* スタッフ コンテンツ */
.single-salons__staff-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-block: 4.5rem 0;
}
@media screen and (max-width: 768px) {
  .single-salons__staff-body {
    padding-block: 0;
    padding-inline: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .single-salons__staff-body {
    padding-inline: 3rem;
  }
}

/* スタッフ ヘッダー */
.single-salons__staff-header {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .single-salons__staff-header {
    gap: 1.2rem;
  }
}

/* スタッフ タイトル */
.single-salons__staff-title {
  font-family: var(--font-jp-gothic);
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  line-height: 1.9285714286;
  letter-spacing: 0.14rem;
  color: #CA7F13;
}

.single-salons__staff-sub {
  font-family: var(--font-en-serif);
  font-size: clamp(4rem, 6vw, 4.8rem);
  line-height: 0.5625;
  letter-spacing: 0.48rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .single-salons__staff-sub {
    font-size: 3.6rem;
    line-height: 0.75;
    letter-spacing: 0.36rem;
  }
}

/* スタッフ テキスト */
.single-salons__staff-text p {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 2.1111111111;
  letter-spacing: 0.18rem;
  color: #CA7F13;
  opacity: 0.8;
  padding-block: 5.7rem 0;
}
@media (max-width: 768px) {
  .single-salons__staff-text p {
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
    padding-block: 2.4rem 0;
  }
}

/* スタッフ名 */
.single-salons__staff-name {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: baseline;
  gap: 1.2rem;
  padding-block: 2.4rem 0;
}
@media screen and (max-width: 768px) {
  .single-salons__staff-name {
    padding-block: 1.2rem 0;
  }
}

.single-salons__staff-name-main {
  font-size: 1.2rem;
  line-height: 1.6666666667;
  letter-spacing: 0.12rem;
  color: #CA7F13;
}

.single-salons__staff-name-sub {
  font-family: var(--font-en-serif);
  font-size: clamp(1.6rem, 1vw, 2.4rem);
  line-height: 1.5833333333;
  letter-spacing: 0.24rem;
  color: #CA7F13;
}

/* スタッフ写真 */
.single-salons__staff-media {
  width: 45%;
  max-width: 480px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .single-salons__staff-media {
    width: 70%;
    max-width: none;
    margin-inline: auto;
  }
}
@media screen and (max-width: 480px) {
  .single-salons__staff-media {
    width: 75%;
  }
}
.single-salons__staff-media img {
  width: 100%;
  height: auto;
  display: block;
}

/* ------------------------------
  info section  
  ------------------------------ */
.single-salons__info {
  background-color: #D4CEBE;
}

.single-salons__info-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding-block: 8rem;
}
@media (max-width: 1336px) {
  .single-salons__info-inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .single-salons__info-inner {
    padding-block: 6rem;
    padding-inline: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .single-salons__info-inner {
    padding-inline: 3rem;
  }
}

.single-salons__info-body {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .single-salons__info-body {
    flex-direction: column-reverse;
    gap: 5.7rem;
  }
}

.single-salons__info-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
}

.single-salons__info-item {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: clamp(3.2rem, 6.4vw, 6.4rem);
}
@media (max-width: 1366px) {
  .single-salons__info-item {
    gap: clamp(2.4rem, 4.8vw, 4.8rem);
  }
}
@media (max-width: 1080px) {
  .single-salons__info-item {
    gap: clamp(1.6rem, 2.4vw, 2.4rem);
  }
}
@media (max-width: 768px) {
  .single-salons__info-item {
    gap: 1.6rem;
  }
}
.single-salons__info-item {
  position: relative;
}
.single-salons__info-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.6rem;
  width: 120%;
  height: 1px;
  background-color: #CA7F13;
}
@media (max-width: 1220px) {
  .single-salons__info-item::after {
    width: 110%;
  }
}
@media screen and (max-width: 768px) {
  .single-salons__info-item::after {
    width: 106%;
    left: -12px;
  }
}

.single-salons__info-term {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.2rem;
  color: #CA7F13;
  min-width: 86px;
}
@media (max-width: 768px) {
  .single-salons__info-term {
    font-size: 1.6rem;
    line-height: 1.875;
    letter-spacing: 0.16rem;
    min-width: 112px;
  }
}

.single-salons__info-desc {
  font-size: clamp(1.2rem, 1.2vw, 1.4rem);
  line-height: 2.1428571429;
  letter-spacing: 0.14rem;
  color: #333;
  margin-inline: 0;
}
@media (max-width: 768px) {
  .single-salons__info-desc {
    font-size: 1.2rem;
    line-height: 2.5;
    letter-spacing: 0.12rem;
  }
}

.single-salons__info-map {
  width: 50%;
  max-width: 540px;
  aspect-ratio: 540/360;
  overflow: hidden;
  background-color: #F9F8F6;
  position: relative;
}
@media (max-width: 768px) {
  .single-salons__info-map {
    width: 100%;
    max-width: none;
  }
}
.single-salons__info-map img,
.single-salons__info-map iframe {
  width: 100%;
  aspect-ratio: 315/200;
}

/* ------------------------------
  cta section
  ------------------------------ */
.single-salons__cta {
  background-color: #F9F8F6;
}

.single-salons__cta-inner {
  margin: 0 auto;
  padding-block: clamp(6rem, 10vw, 12rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .single-salons__cta-inner {
    padding-block: 6rem;
  }
}

.single-salons__cta-link {
  display: inline-block;
  padding: 1rem 4rem;
  background-color: #949E33;
  border-radius: 22px;
  transition: all 0.3s ease;
}
.single-salons__cta-link:hover {
  color: #949E33;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px rgba(74, 81, 11, 0.1);
  border: 1px solid #949E33;
}
.single-salons__cta-link:hover .single-salons__cta-text {
  color: #949E33;
}

.single-salons__cta-text {
  font-family: var(--font-jp-mincho);
  font-size: 1.6rem;
  line-height: 1.625;
  letter-spacing: 0.16rem;
  color: #FFFFFF;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .single-salons__cta-text {
    font-size: 1.4rem;
    line-height: 1.875;
    letter-spacing: 0.16rem;
  }
}

.page-fv__bg-layer--archive-salons {
  padding-bottom: 0;
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--archive-salons .page-fv__bg {
  /* コンテンツの高さに応じて自動的に伸びる */
  background-color: #F9F8F6;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--archive-salons .page-main {
  width: 100%;
  background-color: #F9F8F6;
}

/* =========================
    content セクション
  ========================= */
.section__inner--archive-salons {
  max-width: 1440px;
  margin: 0 auto;
}

.archive-salons__content-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1336px) {
  .archive-salons__content-wrapper {
    max-width: none;
    width: 100%;
    padding-inline: clamp(4rem, 9vw, 12rem);
  }
}
@media screen and (max-width: 768px) {
  .archive-salons__content-wrapper {
    flex-direction: column;
    padding-inline: 3rem;
  }
}
.archive-salons__content-wrapper .archive-salons__content-title {
  padding-block: clamp(4rem, 8vw, 8rem) 0;
}
@media screen and (max-width: 768px) {
  .archive-salons__content-wrapper .archive-salons__content-title {
    padding-block: 8rem 0;
  }
}

/* =========================
  都道府県リスト
========================= */
.archive-salons__prefecture-area {
  padding-block: clamp(6rem, 10vw, 12rem) 0;
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-area {
    padding-block: 8rem 0;
  }
}

.archive-salons__prefecture-list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.6rem, 2vw, 2rem) clamp(2rem, 5vw, 6rem);
  max-width: 890px;
  /* リストの折り返し調整用*/
}

.archive-salons__prefecture-item {
  list-style: none;
}

.archive-salons__prefecture-name-wrapper {
  display: flex;
  flex-direction: row-reverse;
  align-items: baseline;
  gap: 0.4rem;
  position: relative;
  padding-left: 1.6rem;
}
.archive-salons__prefecture-name-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.2rem;
  height: 1.2rem;
  color: #54372D;
  /* 正三角形（右向き ▶︎） */
  background-color: currentColor;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-name-wrapper::before {
    width: 0.8rem;
    height: 0.8rem;
  }
}

.archive-salons__prefecture-name {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.56rem;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-name {
    font-size: 1.2rem;
    line-height: 1.1666666667;
    letter-spacing: 0.48rem;
  }
}

.archive-salons__prefecture-name-en {
  font-family: var(--font-en-serif);
  font-size: clamp(4rem, 4vw, 4.8rem);
  letter-spacing: 0.48rem;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-name-en {
    font-size: 2rem;
    letter-spacing: 0.2rem;
  }
}

.archive-salons__prefecture-section {
  padding-block: clamp(4rem, 8vw, 8rem) 0;
  /* 固定ヘッダー対策（後で効く） */
  scroll-margin-top: var(--header-height, 120px);
  /* 最後のセクションのみ下パディングを追加 */
}
.archive-salons__prefecture-section:last-of-type {
  padding-block: clamp(4rem, 8vw, 8rem) clamp(6rem, 10vw, 12rem);
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-section {
    padding-block: 8rem 0;
  }
  .archive-salons__prefecture-section:last-of-type {
    padding-block: 8rem;
  }
}

.archive-salons__prefecture-title {
  font-family: var(--font-en-serif);
  font-size: clamp(4rem, 4vw, 4.8rem);
  letter-spacing: 0.48rem;
  text-align: center;
  padding-block: 3rem;
  color: #FFFFFF;
  background-color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .archive-salons__prefecture-title {
    font-size: 2.4rem;
    letter-spacing: 0.2rem;
    padding-block: 1.5rem;
  }
}

/* =========================
    店舗一覧
  ========================= */
.archive-salons__shop-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(3rem, 6vw, 6rem);
}
@media (max-width: 768px) {
  .archive-salons__shop-list {
    grid-template-columns: 1fr;
  }
}

.archive-salons__shop-item {
  margin-block: 0;
}
.archive-salons__shop-item:nth-child(-n+2) {
  margin-block: clamp(3rem, 6vw, 6rem) 0;
}
@media screen and (max-width: 768px) {
  .archive-salons__shop-item:nth-child(-n+2) {
    margin-block: 0;
  }
  .archive-salons__shop-item:first-child {
    margin-block: clamp(3rem, 6vw, 6rem) 0;
  }
  .archive-salons__shop-item:nth-child(2) {
    margin-block: 0 !important;
  }
}

/* =========================
  店舗カード
========================= */
.archive-salons__shop-card {
  height: 100%;
}

.archive-salons__shop-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.archive-salons__shop-layout {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.8rem;
}

/* =========================
    テキストブロック
  ========================= */
.archive-salons__shop-body {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.archive-salons__shop-header {
  display: flex;
  flex-direction: column-reverse;
  gap: 0.4rem;
}

.archive-salons__shop-name {
  font-size: clamp(1.2rem, 1.6vw, 1.6rem);
  font-weight: 500;
  line-height: 0.875;
  letter-spacing: 0.16rem;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .archive-salons__shop-name {
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: 0.14rem;
  }
}

.archive-salons__shop-name-en {
  font-family: var(--font-en-serif);
  font-size: clamp(2rem, 2vw, 3.2rem);
  letter-spacing: 0.32rem;
  color: #CA7F13;
}
@media screen and (max-width: 768px) {
  .archive-salons__shop-name-en {
    font-size: 2rem;
    letter-spacing: 0.12rem;
  }
}

.archive-salons__shop-address {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 1;
  letter-spacing: 0.14rem;
  color: #333;
}

/* =========================
    画像
  ========================= */
.archive-salons__shop-media {
  width: 100%;
  aspect-ratio: 570/360;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  .archive-salons__shop-media {
    aspect-ratio: 315/200;
  }
}
.archive-salons__shop-media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.archive-salons__shop-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder--archive-salons {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

/* パララックスで動く部分の背景色とスクロール設定 */
.page-fv__bg-layer--page-reserve {
  background-color: #F9F8F6;
  padding-bottom: 0;
  width: 100%;
  max-width: none;
  overflow-x: visible;
  position: relative;
}

/* パララックス内のメインコンテンツ */
.page-fv__bg-layer--page-reserve .page-main {
  width: 100%;
}

.page-fv__bg-layer--page-reserve .page-fv__bg {
  width: 100%;
  min-height: auto;
}
@media screen and (max-width: 768px) {
  .page-fv__bg-layer--page-reserve .page-fv__bg {
    width: 100%;
  }
}

.page-fv__bg-scroll {
  position: relative;
  z-index: 1;
}

.page-fv__content {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow-x: clip;
  background-color: #F9F8F6;
}

.page-reserve__intro {
  background-color: #F9F8F6;
}

/* =========================
   Reserve
   ========================= */
.reserve-form {
  background-color: #EDE9E4;
}

.reserve-form__inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
}
@media (max-width: 1336px) {
  .reserve-form__inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(6rem, 14vw, 18rem);
  }
}
@media screen and (max-width: 768px) {
  .reserve-form__inner {
    padding-block: 8rem;
    padding-inline: 4.5rem;
  }
}
@media (max-width: 480px) {
  .reserve-form__inner {
    padding-inline: 3rem;
  }
}

/* ==========================
  Reserve Step
========================== */
.reserve-step {
  margin-bottom: clamp(4rem, 6vw, 8rem);
}

.reserve-step__content {
  display: flex;
  gap: clamp(3.2rem, 6vw, 9.6rem);
}
@media (max-width: 768px) {
  .reserve-step__content {
    flex-direction: column;
    gap: 3.2rem;
  }
}

.reserve-step__header,
.reserve-step__list {
  flex: 1;
}

.reserve-step__header {
  display: flex;
  flex-direction: column;
  gap: clamp(1.6rem, 3vw, 4.8rem);
}
@media (max-width: 768px) {
  .reserve-step__header {
    gap: 1.6rem;
  }
}

.reserve-step__title {
  font-family: var(--font-en-serif);
  font-size: clamp(3.4rem, 2vw, 4.8rem);
  letter-spacing: 0.48rem;
  color: #CA7F13;
}
@media (max-width: 768px) {
  .reserve-step__title {
    font-size: 3.2rem;
    line-height: 1.125;
    letter-spacing: 0.32rem;
  }
}

.reserve-step__description {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.14rem;
  color: #333;
}

/* ステップリスト */
.reserve-step__list {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.2rem, 2vw, 2.6rem);
  margin: 0;
  padding: 0;
}

/* 各ステップ */
.reserve-step__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 1.2vw, 1.6rem);
  color: #333;
  /* 上下の線 */
  border-top: 1px solid #54372D;
  border-bottom: 1px solid #54372D;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
@media (max-width: 768px) {
  .reserve-step__item {
    padding-block: 4rem;
  }
}

/* 数字 */
.reserve-step__number::before {
  content: "Step " counter(step, decimal-leading-zero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en-serif);
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1.4;
  letter-spacing: 0.2rem;
  color: #333;
}
@media (max-width: 768px) {
  .reserve-step__number::before {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    letter-spacing: 0.14rem;
  }
}

/* ラベル */
.reserve-step__label {
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.8rem, 1.8vw, 2.4rem);
  line-height: 1.1666666667;
  letter-spacing: 0.24rem;
  color: #333;
}
@media (max-width: 768px) {
  .reserve-step__label {
    font-size: 1.6rem;
    line-height: 1.1875;
    letter-spacing: 0.16rem;
  }
}

/* 現在のステップ */
.reserve-step__item.is-current {
  /* 上下の線をオレンジに */
  border-top-color: #CA7F13;
  border-bottom-color: #CA7F13;
}
.reserve-step__item.is-current::after {
  background-color: #CA7F13;
}
.reserve-step__item.is-current {
  /* 数字とラベルのテキスト色をオレンジに */
}
.reserve-step__item.is-current .reserve-step__number::before {
  color: #CA7F13;
}
.reserve-step__item.is-current .reserve-step__label {
  color: #CA7F13;
}

/* ==========================
  SP調整
========================== */
@media (max-width: 767px) {
  .reserve-step__list {
    flex-direction: column;
  }
  .reserve-step__item::after {
    top: auto;
    bottom: -50%;
    right: 50%;
    transform: translateX(50%);
    width: 1px;
    height: 100%;
  }
}
/* ==========================
 form
========================== */
/* ==========================
   Confirm（表示専用）
========================== */
.confirm-area__inner {
  max-width: 1020px;
  width: 100%;
  margin: 0 auto;
  padding-block: clamp(2rem, 4vw, 6rem) clamp(4rem, 7vw, 12rem);
}
@media (max-width: 1336px) {
  .confirm-area__inner {
    max-width: none;
    width: 100%;
    padding-inline: clamp(8rem, 14vw, 20rem);
  }
}
@media screen and (max-width: 768px) {
  .confirm-area__inner {
    padding-block: 0 8rem;
    padding-inline: 5rem;
  }
}
@media (max-width: 480px) {
  .confirm-area__inner {
    padding-inline: 5rem;
  }
}

/* dl 全体 */
.confirm-list {
  margin: 0;
  padding: 0;
}

/* 1行（dt + dd） */
.confirm-row {
  display: flex;
  align-items: flex-start;
  gap: clamp(5rem, 7vw, 14rem);
  margin-block: clamp(2.4rem, 5vw, 4rem);
}
@media (max-width: 1240px) {
  .confirm-row {
    gap: clamp(2.5rem, 4vw, 5rem);
  }
}
@media (max-width: 768px) {
  .confirm-row {
    flex-direction: column;
    gap: 1.2rem;
  }
}

/* ラベル（dt） */
.confirm-label {
  width: 310px;
  flex: 0 0 310px;
  display: flex;
  align-items: center;
  gap: 1.6rem;
  font-family: var(--font-jp-mincho);
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
}
@media (max-width: 768px) {
  .confirm-label {
    width: 100%;
    flex: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
}

/* 確認画面の必須・任意バッジ */
.confirm-label .required,
.confirm-label .optional {
  display: inline-flex;
  align-items: center;
  line-height: 1.75;
  margin-right: 1.6rem;
}

/* 値（dd） */
.confirm-value {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
  word-break: break-word;
  /* 未入力時の保険 */
}
.confirm-value:empty::before {
  content: "—";
  color: #54372D;
}

/* textarea系（縦長） */
.confirm-row--tall .confirm-value {
  white-space: pre-wrap;
}

/* 連絡時間帯など span 複数並ぶ場合 */
.confirm-value span {
  display: inline-block;
}
.confirm-value span + span {
  margin-left: 1.6rem;
}

/* 連絡時間帯の統合表示 */
#contact-time-combined .contact-time-display {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}
@media (max-width: 768px) {
  #contact-time-combined .contact-time-display {
    gap: 1.2rem;
  }
}
#contact-time-combined .contact-time-display-item {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  width: 100%;
}
@media (max-width: 768px) {
  #contact-time-combined .contact-time-display-item {
    flex-direction: column;
    gap: 0.8rem;
  }
}
#contact-time-combined .contact-time-display-item .contact-time-label {
  min-width: 3em;
  flex-shrink: 0;
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  line-height: 1.75;
  letter-spacing: 0.16rem;
  color: #333;
}
@media (max-width: 768px) {
  #contact-time-combined .contact-time-display-item .contact-time-label {
    min-width: auto;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: 0.14rem;
  }
}

.confirm-row {
  display: flex;
  gap: 1.6rem;
}

.confirm-value {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

/* 連絡時間帯 */
.contact-time-display {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-time-display-item {
  display: flex;
  gap: 1.6rem;
  min-width: 0;
}

.contact-time-label {
  flex-shrink: 0;
  min-width: 3em;
}

.contact-time-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

@media (max-width: 768px) {
  .contact-time-display-item {
    flex-direction: column;
    gap: 0.4rem;
  }
}
.thanks-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.4rem, 3.2vw, 3.2rem);
  text-align: center;
  padding-block: 0 clamp(8rem, 7vw, 9.5rem);
}

.thanks-message__title {
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.3333333333;
  letter-spacing: 0.36rem;
  text-align: left;
  color: #CA7F13;
}
.thanks-message__title--pc {
  display: block;
}
.thanks-message__title--sp {
  display: none;
}
@media (max-width: 768px) {
  .thanks-message__title {
    font-size: 2.4rem;
    line-height: 1.3333333333;
    letter-spacing: 0.24rem;
  }
  .thanks-message__title--pc {
    display: none;
  }
  .thanks-message__title--sp {
    display: block;
  }
}

.thanks-message__description {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  line-height: 2;
  letter-spacing: 0.72px;
  text-align: left;
  color: #CA7F13;
}

.btn-link--thanks {
  color: #CA7F13;
  text-decoration: underline;
  transition: color 0.3s ease-in-out;
}
.btn-link--thanks:hover {
  color: #54372D;
}

/*# sourceMappingURL=style.css.map */
