/* =============================================================
   リラクかおん  IR共有用 LP  —  Figma 1920 カンプ再現
   base = 375px / モバイルファースト・min-width で積み上げ
   ============================================================= */
:root {
  --brown: #3b2313;
  --brown-08: rgba(59, 35, 19, 0.08);
  --green: #6f8e44;
  --beige: #f4ebdd;
  --cream: #fff7eb;
  --paper: #fdfbf7;
  --white: #ffffff;
  --line: #b3b3b3;

  --f-jp: "Noto Sans JP", sans-serif;
  --f-en: "Montserrat", sans-serif;
  --f-script: "Alex Brush", cursive;
  --f-mincho: "Shippori Mincho", serif;

  --wrap: 1520px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* アンカーリンクで飛んだ時、固定ヘッダーの下に潜らないよう余白を確保
   （:target = URL の #id と一致した飛び先要素。menu-block__head の id="2" 等も対象） */
:target,
.menu-block__head {
  scroll-margin-top: 90px;
}
@media (min-width: 769px) and (width < 1200px) {
  :target,
  .menu-block__head {
    scroll-margin-top: 112px;
  }
}
@media (min-width: 1200px) {
  :target,
  .menu-block__head {
    scroll-margin-top: 130px;
  }
}

body {
  margin: 0;
  font-family: var(--f-jp);
  color: var(--brown);
  background: #FFF7EB;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

a {
  transition: opacity 0.2s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

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

h1,
h2,
h3,
p,
dl,
dd {
  margin: 0;
}

.wrap {
  width: min(90%, var(--wrap));
  margin-inline: auto;
}

/* -------------------------------------------------------------
   行末の孤立文字（1〜2字だけ）を各幅で抑える
   ------------------------------------------------------------- */
.greeting-lead__title,
.greeting-lead__en,
.strength-lead__title,
.strength-detail__title,
.strength-history__title,
.strength-comfort__title,
.strength-discount__title,
.menu-block__title,
.flow__title,
.flow__step-title,
.faq__title,
.faq__q,
.info__title,
.sec-head__ttl,
.reservation__ttl,
.info-head__ja {
  text-wrap: balance;
}

.greeting-lead__text p,
.strength-lead__text p,
.strength-detail__text p,
.strength-history__text p,
.menu-block__lead p,
.flow__text p,
.faq__a p,
.info__text p,
.strength-comfort__lead,
.strength-discount__lead,
.strength-discount__note p,
.reservation__text,
.sec-head__text {
  text-wrap: pretty;
}

/* 幅で出し分けする改行ヘルパー */
.br-pc {
  display: inline;
}
@media not all and (min-width: 415px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media not all and (min-width: 415px) {
  .br-sp {
    display: inline;
  }
}

/* -------------------------------------------------------------
   共通パーツ
   ------------------------------------------------------------- */
.pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  width: 300px;
  max-width: 100%;
  height: 68px;
  border-radius: 53px;
  background: var(--brown);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.05em;
}
.pill-btn:link,
.pill-btn:visited,
.pill-btn:hover,
.pill-btn:active,
.pill-btn:focus {
  color: var(--white);
}
.pill-btn__arrow {
  position: absolute;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 2px solid var(--white);
  border-radius: 50%;
}
.pill-btn__arrow::before,
.pill-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
}
.pill-btn__arrow::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.pill-btn__arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  margin-left: 2px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: transparent;
}
.pill-btn--center {
  display: flex;
  margin-inline: auto;
}
/* 長いラベル用：幅は内容に合わせ、矢印ぶんの右余白を確保 */
.pill-btn--wide {
  width: auto;
  height: auto;
  min-height: 68px;
  padding: 12px 72px 12px 34px;
  text-align: left;
  line-height: 1.5;
}

.circle-arrow {
  display: inline-block;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  flex: none;
}
.circle-arrow::before,
.circle-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
}
.circle-arrow::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.circle-arrow::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--white);
  border-right: 2px solid var(--white);
  margin-left: 2px;
  background: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* セクション見出し */
.sec-head {
  position: relative;
  padding-top: 46px;
}
.sec-head--center {
  text-align: center;
}
.sec-head__ghost {
  position: absolute;
  top: -0.28em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--f-en);
  font-weight: 600;
  font-size: clamp(70px, 15vw, 205px);
  line-height: 1;
  color: var(--brown-08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.sec-head > *:not(.sec-head__ghost) {
  position: relative;
  z-index: 1;
}
.sec-head__ttl {
  font-weight: 700;
  font-size: clamp(24px, 5vw, 43px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.sec-head__en {
  margin-top: 10px;
  margin-bottom: 40px;
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
}
.sec-head__text {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}

/* --- green アクセント文字（Montserrat / 行間160% / 字間5%）で統一 --- */
.sec-head__en,
.concept__en,
.message__en,
.staff__en,
.firstvisit__en,
.blog__date {
  font-family: var(--f-en);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

/* =============================================================
   Header / gnav
   ============================================================= */
.gnav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.gnav.is-scrolled {
  background: var(--paper);
  box-shadow: 0 2px 14px rgba(59, 35, 19, 0.08);
}
.gnav__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.gnav__logo {
  position: relative;
  display: block;
}
.gnav__nav {
  flex: 1;
}
.gnav__info {
  display: none;
}
.gnav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}
.gnav__list__item a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.gnav__toggle {
  appearance: none;
  border: 0;
  background: var(--brown);
  color: var(--white);
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 0 0 0 16px;
  flex: none;
  position: relative;
  z-index: 110;
}
.gnav__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.25s;
}
.gnav__toggle em {
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.gnav.is-open .gnav__toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.gnav.is-open .gnav__toggle span:nth-child(2) {
  opacity: 0;
}
.gnav.is-open .gnav__toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルドロワー */
@media not all and (min-width: 1200px) {
  body {
    padding-top: 102px;
  }

  .gnav {
    position: fixed;
    right: 0;
    left: 0;
  }

  .gnav__nav {
    position: fixed;
    inset: 0 0 auto;
    width: 100%;
    background: var(--brown);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    padding: 86px min(7vw, 48px) 34px;
    z-index: 90;
  }
  .gnav.is-open .gnav__nav {
    transform: translateY(0);
  }
  .gnav__info {
    display: block;
  }
  .gnav__list {
    flex-direction: column;
    gap: 4px;
  }
  .gnav__list__item a {
    display: block;
    padding: 14px 4px;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 15px;
  }
}

@media not all and (min-width: 1440px) {
  .gnav__logo img {
    display: block;
    width: 220px;
    height: auto;
  }
}

@media not all and (min-width: 769px) {
  .gnav__logo img {
    width: 170px;
  }
}

/* =============================================================
   side actions (右端固定ボタン)
   ============================================================= */
.side-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 80;
  display: flex;
}
.side-actions__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  font-weight: 700;
  font-size: 13px;
  border: 1px solid var(--brown);
}
.side-actions__btn--web {
  background: var(--green);
  color: var(--white);
}
.side-actions__btn--web:link,
.side-actions__btn--web:visited,
.side-actions__btn--web:hover,
.side-actions__btn--web:active,
.side-actions__btn--web:focus {
  color: var(--white);
}
.side-actions__btn--web img {
  filter: brightness(0) invert(1);
}
.side-actions__btn--tel {
  background: var(--beige);
}
.side-actions__btn--insta {
  background: var(--white);
}

/* =============================================================
   Lower page visual heading
   ============================================================= */
.info-head {
  position: relative;
  display: grid;
  place-items: center;
  width: min(88%, 1700px);
  min-height: clamp(230px, 20.5vw, 380px);
  margin: clamp(64px, 7vw, 88px) auto clamp(28px, 3vw, 48px);
  padding: 48px 24px;
  overflow: hidden;
  border-radius: 20px;
  background: #3f2a1d;
  text-align: center;
  isolation: isolate;
}

.info-head__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  filter: brightness(0.5);
}

.info-head__body {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.info-head__ja {
  margin: 0 0 8px;
  font-family: var(--f-jp);
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 22px);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: var(--white);
}

.info-head__en {
  margin: 0;
  font-family: var(--f-en);
  font-weight: 600;
  font-size: clamp(48px, 4.4vw, 74px);
  letter-spacing: 0;
  line-height: 1;
  color: var(--white);
}

@media not all and (min-width: 769px) {
  .info-head {
    width: min(92%, 1700px);
    min-height: 220px;
    margin: 48px auto 32px;
    border-radius: 16px;
  }
}

.strength-lead {
  padding: clamp(76px, 7.2vw, 124px) 24px clamp(70px, 7vw, 116px);
  background: #f4ebdd;
  text-align: center;
}

.strength-lead__inner {
  width: min(100%, 1180px);
  margin-inline: auto;
}

.strength-lead__title {
  font-weight: 700;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-lead__en {
  margin-top: 24px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--green);
}

.strength-lead__text {
  margin-top: clamp(48px, 4vw, 66px);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-lead__text p + p {
  margin-top: 34px;
}

.strength-detail {
  padding: clamp(68px, 6.2vw, 108px) 0 clamp(80px, 7vw, 120px);
}

.strength-detail__inner {
  width: min(92%, var(--wrap));
  margin-inline: auto;
}

.strength-detail__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(44px, 5vw, 86px);
  align-items: start;
}

.strength-detail__row + .strength-detail__row {
  margin-top: clamp(72px, 7vw, 118px);
}

.strength-detail__row--reverse .strength-detail__body {
  order: 2;
}

.strength-detail__row--reverse .strength-detail__image {
  order: 1;
}

.strength-detail__title {
  font-weight: 700;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-detail__en {
  margin-top: 12px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--green);
}

.strength-detail__text {
  margin-top: clamp(38px, 3.5vw, 54px);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-detail__text p + p {
  margin-top: 34px;
}

.strength-detail__body .pill-btn {
  margin-top: clamp(28px, 3vw, 44px);
}

/* 代表あいさつページは段落間の余白なし（改行のみで続ける） */
.greeting .strength-detail__text p + p,
.greeting .strength-lead__text p + p,
.greeting .greeting-lead__text p + p {
  margin-top: 0;
}

/* --- 代表あいさつ：導入（手紙のような見せ方／枠で囲む） --- */
.greeting-lead {
  padding: clamp(40px, 4vw, 72px) 24px clamp(48px, 5vw, 84px);
  background: #f4ebdd;
}

.greeting-lead__panel {
  width: min(94%, 1240px);
  margin-inline: auto;
  padding: clamp(44px, 4.6vw, 80px) clamp(24px, 4vw, 72px) clamp(40px, 4.2vw, 72px);
  border-radius: 20px;
  background: rgba(255, 247, 235, 0.82);
}

.greeting-lead__inner {
  max-width: 720px;
  margin-inline: auto;
}

.greeting-lead__portrait {
  width: clamp(150px, 18vw, 208px);
  margin: 0 auto clamp(22px, 2.6vw, 36px);
}

.greeting-lead__portrait img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
}

.greeting-lead__label {
  text-align: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(12px, 0.9vw, 14px);
  letter-spacing: 0.18em;
  color: var(--green);
}

.greeting-lead__title {
  margin-top: clamp(18px, 2vw, 28px);
  text-align: center;
  font-family: var(--f-mincho);
  font-weight: 500;
  font-size: clamp(24px, 2.9vw, 40px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--brown);
}

.greeting-lead__en {
  margin-top: clamp(10px, 1.2vw, 16px);
  text-align: center;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--green);
}

.greeting-lead__text {
  margin-top: clamp(34px, 3.6vw, 52px);
  font-family: var(--f-mincho);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 2.3;
  letter-spacing: 0.06em;
  color: var(--brown);
}

.greeting-lead__sign {
  margin-top: clamp(28px, 3vw, 44px);
  text-align: right;
  font-family: var(--f-mincho);
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.12em;
  color: var(--brown);
}

@media not all and (min-width: 769px) {
  .greeting-lead {
    padding: 32px 16px 44px;
  }
  .greeting-lead__panel {
    width: 100%;
    padding: 40px 22px 36px;
    border-radius: 16px;
  }
  .greeting-lead__title {
    font-size: 24px;
    line-height: 1.8;
  }
}

.strength-detail__image {
  margin: 0;
}

.strength-detail__image img {
  width: 100%;
  aspect-ratio: 746 / 496;
  object-fit: cover;
  border-radius: 20px;
}

.strength-history {
  display: grid;
  align-items: center;
  min-height: clamp(420px, 33.9vw, 650px);
  padding: clamp(38px, 3vw, 42px) 0;
  background-image: url("system_panel/uploads/images/strength3.jpg");
  background-position: center;
  background-size: cover;
}

.strength-history__panel {
  width: min(78%, 1488px);
  min-height: clamp(330px, 29.2vw, 562px);
  margin-inline: auto;
  padding: clamp(58px, 4.8vw, 84px) 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.strength-history__title {
  font-weight: 700;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-history__en {
  margin-top: 8px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--green);
}

.strength-history__text {
  width: min(100%, 1240px);
  margin: clamp(38px, 3.4vw, 54px) auto 0;
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-history__text p + p {
  margin-top: 34px;
}

.commitment-hero {
  background-image: url("system_panel/uploads/images/commitment2.jpg");
}

/* こだわり詳細：中央ブロックだけベージュ帯 */
.commitment-detail--band {
  background: var(--beige);
}

/* =============================================================
   メニュー詳細ブロック（wrap 内に収める）
   ============================================================= */
.menu-block {
  padding: clamp(56px, 5vw, 92px) 0 clamp(64px, 5.5vw, 100px);
}

/* menu-block どうしの間は詰める */
.menu-block:has(+ .menu-block) {
  padding-bottom: clamp(20px, 2.2vw, 36px);
}
.menu-block + .menu-block {
  padding-top: clamp(20px, 2.2vw, 36px);
}

.menu-block > .wrap {
  padding: clamp(48px, 5vw, 84px) clamp(28px, 4vw, 64px);
  border-radius: 24px;
  background: var(--beige);
}

.menu-block__head {
  position: relative;
  text-align: center;
  padding-top: clamp(20px, 2.4vw, 40px);
  margin-bottom: clamp(36px, 4vw, 60px);
}

.menu-block__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--f-en);
  font-weight: 600;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(59, 35, 19, 0.08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.menu-block__title {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--brown);
}

.menu-block__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 4.4vw, 76px);
  align-items: stretch;
}

.menu-block__lead {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.menu-block__lead > p {
  margin-bottom: clamp(28px, 3vw, 44px);
}

/* 画像・悩みなしの全幅リード（独自のミックス法など） */
.menu-block__lead--full {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.menu-block__lead--full > p {
  margin-bottom: 0;
}

.menu-block__lead--full > p + p {
  margin-top: 0;
}

.menu-block__image {
  margin: 0;
  align-self: stretch;
}

.menu-block__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 720 / 500;
  object-fit: cover;
  border-radius: 20px;
}

.menu-block__concern {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  align-items: flex-start;
  margin-top: auto;
  padding: clamp(26px, 2.6vw, 36px) clamp(28px, 3vw, 44px);
  border-radius: 16px;
  background: var(--cream);
}

.menu-block__concern-label {
  flex: none;
  align-self: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--brown);
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.04em;
  color: var(--brown);
}

.menu-block__concern-list {
  font-size: clamp(14px, 0.95vw, 16px);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.menu-block__concern-list li {
  position: relative;
  padding-left: 1.1em;
}

.menu-block__concern-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.menu-block__price {
  margin-top: clamp(40px, 4vw, 64px);
  padding: clamp(40px, 4vw, 64px) clamp(24px, 4vw, 72px);
  border-radius: 20px;
  background: var(--cream);
}

.menu-block__price-title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: 0.06em;
  color: var(--brown);
}

.menu-block__price-list {
  max-width: 880px;
  margin: clamp(28px, 3vw, 44px) auto 0;
}

.menu-block__price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: clamp(16px, 1.6vw, 22px) 6px;
  border-bottom: 1px solid rgba(59, 35, 19, 0.14);
  font-weight: 700;
  font-size: clamp(15px, 1vw, 18px);
  letter-spacing: 0.04em;
  color: var(--brown);
}

.menu-block__price-row dd {
  margin: 0;
  white-space: nowrap;
}

.strength-quality {
  padding: clamp(68px, 6.2vw, 108px) 0 clamp(80px, 7vw, 120px);
}

.strength-comfort {
  padding: 0 24px clamp(80px, 7vw, 120px);
}

.strength-comfort__inner {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}

.strength-comfort__title {
  font-weight: 700;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-comfort__en {
  margin-top: 12px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(15px, 1.08vw, 20px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  color: var(--green);
}

.strength-comfort__lead {
  margin-top: clamp(46px, 4vw, 60px);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-comfort__list {
  margin: clamp(58px, 5vw, 78px) 0 0;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.strength-comfort__item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-comfort__term {
  font-weight: 700;
}

.strength-comfort__desc {
  margin: 0;
}

.strength-discount {
  padding: clamp(34px, 3.1vw, 54px) 24px clamp(86px, 7.5vw, 132px);
  background: #f4ebdd;
}

.strength-discount__panel {
  width: min(88%, 1488px);
  margin-inline: auto;
  padding: clamp(28px, 2.4vw, 41px) 24px;
  border-radius: 20px;
  background: rgba(255, 247, 235, 0.82);
}

.strength-discount__inner {
  max-width: 1000px;
  margin-inline: auto;
}

.strength-discount__title {
  text-align: center;
  font-weight: 700;
  font-size: clamp(30px, 2.45vw, 44px);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-discount__lead {
  margin-top: clamp(34px, 3vw, 48px);
  text-align: center;
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-discount__list {
  margin: clamp(42px, 4vw, 56px) 0 0;
  border-bottom: 1px solid var(--line);
}

.strength-discount__item {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.strength-discount__item dt {
  font-weight: 700;
}

.strength-discount__item dd {
  margin: 0;
}

.strength-discount__note {
  margin-top: clamp(38px, 3.6vw, 54px);
  font-weight: 500;
  font-size: clamp(13px, 0.9vw, 16px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--brown);
}

/* =============================================================
   Info（店舗情報・アクセス：区切り線で分けた情報ブロック）
   ============================================================= */
.info {
  padding: clamp(56px, 5.4vw, 96px) 0 clamp(72px, 6.5vw, 116px);
}

.info__inner {
  width: min(92%, 1180px);
  margin-inline: auto;
}

.info__block + .info__block {
  margin-top: clamp(44px, 4.6vw, 76px);
  padding-top: clamp(44px, 4.6vw, 76px);
  border-top: 1px solid rgba(59, 35, 19, 0.16);
}

.info__title {
  position: relative;
  padding-left: 18px;
  font-weight: 700;
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--brown);
}

.info__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.24em;
  bottom: 0.24em;
  width: 4px;
  border-radius: 2px;
  background: var(--green);
}

.info__text {
  margin-top: clamp(18px, 2vw, 28px);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.info__text p + p {
  margin-top: 0;
}

.info__text a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.info__map {
  margin: clamp(24px, 2.8vw, 40px) 0 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--beige);
}

.info__map > div {
  width: 100%;
  height: 100%;
}

.info__map iframe {
  display: block;
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  border: 0;
}

.info__block .pill-btn {
  margin-top: clamp(24px, 2.8vw, 36px);
  width: 300px;
}

/* =============================================================
   Staff（スタッフ紹介：一覧カード）  ※ staff.html
   ============================================================= */
.staff-list {
  padding: clamp(40px, 4vw, 72px) 0 clamp(72px, 6.5vw, 116px);
}

.staff-head {
  width: min(92%, 900px);
  margin: 0 auto clamp(36px, 4.5vw, 64px);
  text-align: center;
}

.staff-head__ttl {
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 40px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--brown);
}

.staff-head__en {
  margin-top: clamp(8px, 1vw, 14px);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--green);
}

.staff-list__inner {
  width: min(94%, 1400px);
  margin-inline: auto;
  display: grid;
  gap: clamp(24px, 3vw, 44px);
}

.staff-card {
  display: grid;
  grid-template-columns: clamp(150px, 22vw, 260px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  align-content: start;
  padding: clamp(24px, 3vw, 44px);
  border-radius: 20px;
  background: var(--beige);
}

/* 1024px 以上：1行2列（写真は小さめに／左右で高さをそろえる） */
@media (min-width: 1024px) {
  .staff-list__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: clamp(24px, 2.6vw, 40px);
  }
  .staff-card {
    grid-template-columns: clamp(130px, 11vw, 168px) minmax(0, 1fr);
    gap: clamp(18px, 2vw, 28px);
    padding: clamp(24px, 2.4vw, 36px);
  }
}

.staff-card__photo {
  margin: 0;
}

.staff-card__photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 16px;
}

.staff-card__name {
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.4;
  letter-spacing: 0.06em;
  color: var(--brown);
}

.staff-card__skill {
  margin-top: 8px;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.04em;
  color: var(--green);
}

.staff-card__list {
  margin: clamp(16px, 2vw, 24px) 0 0;
  border-bottom: 1px solid rgba(59, 35, 19, 0.16);
}

.staff-card__row {
  padding: clamp(12px, 1.4vw, 18px) 0;
  border-top: 1px solid rgba(59, 35, 19, 0.16);
}

.staff-card__label {
  display: inline-block;
  margin: 0;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(111, 142, 68, 0.14);
  font-weight: 700;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.08em;
  color: var(--green);
}

.staff-card__text {
  margin: 10px 0 0;
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--brown);
}

@media not all and (min-width: 769px) {
  .staff-list {
    padding: 32px 0 68px;
  }
  .staff-head__ttl {
    font-size: 24px;
  }
  .staff-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 20px;
  }
  .staff-card__photo {
    width: min(220px, 62%);
  }
}

/* 顔写真なしのカード（本文のみ・全幅） */
.staff-card--nophoto {
  grid-template-columns: minmax(0, 1fr);
}

/* =============================================================
   Voice
   ============================================================= */
.voice {
  padding: clamp(56px, 6vw, 110px) 0 clamp(72px, 7vw, 130px);
}
.voice__inner {
  display: grid;
  gap: clamp(48px, 5vw, 86px);
  width: min(90%, 1180px);
  margin-inline: auto;
}
.voice-section__head {
  display: flex;
  align-items: center;
  gap: 18px;
}
.voice-section__head::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(59, 35, 19, 0.2);
}
.voice-section__ttl {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.voice-section__list {
  margin-top: clamp(22px, 2.5vw, 34px);
}
.voice .webgene-blog {
  display: grid;
  gap: 14px;
}
.voice .webgene-item {
  border-radius: 16px;
  background: var(--paper);
  overflow: hidden;
}
.voice .news-item {
  display: block;
  padding: 0;
}
.voice .news__sec1-box {
  width: 100%;
}
.voice .news__sec1-p-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 112px;
  padding: 24px 28px;
}
.voice .news__sec1-p-box-wrap {
  min-width: 0;
}
.voice .news__sec1-title {
  margin: 0 0 8px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--green);
}
.voice .news__sec1-p {
  margin: 0;
  font-weight: 700;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.voice .icon {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--brown);
  border-radius: 50%;
}
.voice .news__sec1-news-arrow {
  width: 16px;
  height: auto;
}
.voice .webgene-pagination ul {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.voice-detail {
  padding: clamp(56px, 6vw, 110px) 0 clamp(72px, 7vw, 130px);
}
.voice-detail__inner {
  width: min(90%, 920px);
  min-height: clamp(240px, 24vw, 360px);
  margin-inline: auto;
}
.voice-detail .webgene-item {
  background: var(--paper);
  border-radius: 20px;
  padding: clamp(34px, 4vw, 64px);
}
.voice-detail .newsdetail__sec1-title {
  padding-bottom: clamp(24px, 3vw, 40px);
  border-bottom: 1px solid rgba(59, 35, 19, 0.18);
}
.voice-detail .newsdetail__sec1-date {
  margin: 0 0 14px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--green);
}
.voice-detail .newsdetail__sec1-h1 {
  margin: 0;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.65;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.voice-detail .newsdetail__sec1-p {
  margin: clamp(28px, 3vw, 42px) 0 0;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: var(--brown);
}
.voice-detail .webgene-pagination {
  margin-top: clamp(42px, 5vw, 72px);
}
.voice-detail .webgene-pagination__box-1 {
  margin-bottom: clamp(30px, 4vw, 52px);
}
.voice-detail .pagelink {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.voice-detail .newsdetail__prev,
.voice-detail .newsdetail__next {
  min-width: 0;
}
.voice-detail .newsdetail__next {
  text-align: right;
}
.voice-detail .newsdetail__prev,
.voice-detail .newsdetail__prev a,
.voice-detail .newsdetail__next a {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--green);
}
.voice-detail .back-btn {
  display: flex;
  justify-content: center;
}
.voice-detail .btn-block__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  height: 64px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--brown);
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
}
.voice-detail .btn-block__link:link,
.voice-detail .btn-block__link:visited,
.voice-detail .btn-block__link:hover,
.voice-detail .btn-block__link:active,
.voice-detail .btn-block__link:focus {
  color: var(--white);
}
.voice-detail .back-btn__arrow {
  width: 18px;
  height: auto;
  filter: brightness(0) invert(1);
  transform: scaleX(-1);
}

@media not all and (min-width: 769px) {
  .info {
    padding: 48px 0 68px;
  }
  .info__title {
    font-size: 21px;
  }

  .voice {
    padding: 46px 0 68px;
  }

  .voice__inner {
    width: min(92%, 460px);
    gap: 42px;
  }

  .voice-section__head {
    gap: 14px;
  }

  .voice-section__list {
    margin-top: 20px;
  }

  .voice .webgene-blog {
    gap: 12px;
  }

  .voice .news__sec1-p-box {
    gap: 16px;
    min-height: 96px;
    padding: 20px 18px;
  }

  .voice .news__sec1-title {
    font-size: 13px;
  }

  .voice .news__sec1-p {
    font-size: 16px;
  }

  .voice .icon {
    width: 36px;
    height: 36px;
  }

  .voice .news__sec1-news-arrow {
    width: 14px;
  }

  .voice-detail {
    padding: 46px 0 68px;
  }

  .voice-detail__inner {
    width: min(92%, 460px);
    min-height: 220px;
  }

  .voice-detail .webgene-item {
    border-radius: 16px;
    padding: 28px 20px 34px;
  }

  .voice-detail .newsdetail__sec1-h1 {
    font-size: 22px;
    line-height: 1.7;
  }

  .voice-detail .newsdetail__sec1-p {
    font-size: 15px;
    line-height: 2;
  }

  .voice-detail .pagelink {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .voice-detail .newsdetail__next {
    text-align: left;
  }

  .voice-detail .btn-block__link {
    width: 100%;
    min-width: 0;
  }
}

/* =============================================================
   Flow（ご予約から施術までの流れ：番号つき縦タイムライン）
   ============================================================= */
.flow {
  padding: clamp(64px, 6vw, 108px) 0 clamp(72px, 6.5vw, 116px);
}

.flow__inner {
  width: min(92%, 900px);
  margin-inline: auto;
}

.flow__head {
  text-align: center;
  margin-bottom: clamp(44px, 5vw, 76px);
}

.flow__title {
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--brown);
}

.flow__en {
  margin-top: clamp(10px, 1.2vw, 16px);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--green);
}

.flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow__step {
  position: relative;
  display: grid;
  grid-template-columns: clamp(56px, 7vw, 84px) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  padding-bottom: clamp(38px, 4.4vw, 60px);
}

.flow__step:last-child {
  padding-bottom: 0;
}

/* 番号どうしをつなぐ縦線（番号バッジの背面を通す） */
.flow__step::before {
  content: "";
  position: absolute;
  left: clamp(28px, 3.5vw, 42px);
  top: clamp(56px, 7vw, 84px);
  bottom: 0;
  width: 2px;
  background: rgba(59, 35, 19, 0.16);
  transform: translateX(-1px);
}

.flow__step:last-child::before {
  display: none;
}

.flow__num {
  position: relative;
  z-index: 1;
  width: clamp(56px, 7vw, 84px);
  height: clamp(56px, 7vw, 84px);
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--brown);
  color: var(--white);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(18px, 1.9vw, 28px);
  letter-spacing: 0.02em;
}

.flow__body {
  padding-top: clamp(6px, 0.8vw, 14px);
}

.flow__step-title {
  font-weight: 700;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.flow__text {
  margin-top: clamp(14px, 1.6vw, 22px);
  font-weight: 500;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 2.1;
  letter-spacing: 0.04em;
  color: var(--brown);
}

.flow__text p + p {
  margin-top: 20px;
}

/* 初めての方へページは段落間の余白なし（改行のみで続ける） */
.first-visit .flow__text p + p,
.first-visit .strength-lead__text p + p {
  margin-top: 0;
}

/* 中央寄せの文が広い画面で間延び／半端に折れないよう、読みやすい幅に */
.first-visit .strength-lead__text {
  max-width: 30em;
  margin-inline: auto;
}

.first-visit .strength-lead__text p {
  text-wrap: balance;
}

@media not all and (min-width: 769px) {
  .flow {
    padding: 56px 0 72px;
  }
  .flow__head {
    margin-bottom: 40px;
  }
  .flow__title {
    font-size: 26px;
  }
  .flow__step {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 16px;
    padding-bottom: 36px;
  }
  .flow__step::before {
    left: 24px;
    top: 48px;
  }
  .flow__num {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }
  .flow__step-title {
    font-size: 19px;
  }
}

/* =============================================================
   FAQ（よくある質問：カテゴリ別アコーディオン）
   ============================================================= */
.faq {
  padding: clamp(56px, 5.4vw, 96px) 0 clamp(72px, 6.5vw, 116px);
  background: var(--beige);
}

.faq__inner {
  width: min(92%, 860px);
  margin-inline: auto;
}

.faq__head {
  text-align: center;
  margin-bottom: clamp(36px, 4vw, 60px);
}

.faq__title {
  font-weight: 700;
  font-size: clamp(28px, 2.6vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--brown);
}

.faq__en {
  margin-top: clamp(8px, 1vw, 14px);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 18px);
  letter-spacing: 0.06em;
  color: var(--green);
}

.faq__cat {
  margin: clamp(38px, 3.8vw, 60px) 0 4px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--brown);
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: 0.06em;
  color: var(--brown);
}

.faq__cat:first-of-type {
  margin-top: 0;
}

.faq__item {
  border-bottom: 1px solid rgba(59, 35, 19, 0.16);
}

.faq__q {
  position: relative;
  display: block;
  padding: clamp(18px, 2vw, 26px) 34px clamp(10px, 1.2vw, 14px) 34px;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.7;
  letter-spacing: 0.03em;
  color: var(--brown);
}
.js .faq__q {
  padding-right: 46px;
  cursor: pointer;
}

.faq__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: clamp(18px, 2vw, 26px);
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--green);
}

.js .faq__q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 16px;
  height: 16px;
  background:
    linear-gradient(var(--brown), var(--brown)) center / 100% 2px no-repeat,
    linear-gradient(var(--brown), var(--brown)) center / 2px 100% no-repeat;
  transform: translateY(-50%);
  transition: opacity 0.25s ease;
}

.js .faq__item.is-open .faq__q::after {
  background: linear-gradient(var(--brown), var(--brown)) center / 100% 2px no-repeat;
  opacity: 0.55;
}

.faq__a {
  position: relative;
  padding: 2px 34px clamp(22px, 2.4vw, 30px) 34px;
  font-weight: 500;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.03em;
  color: var(--brown);
}

.faq__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--f-en);
  font-weight: 700;
  font-size: 1.05em;
  line-height: 2.1;
  color: rgba(59, 35, 19, 0.45);
}

@media not all and (min-width: 769px) {
  .faq {
    padding: 52px 0 68px;
  }
  .faq__title {
    font-size: 26px;
  }
  .faq__q {
    padding: 18px 28px 10px;
  }
  .js .faq__q {
    padding-right: 40px;
  }
  .faq__q::before,
  .faq__a::before {
    font-size: 1em;
  }
  .faq__a {
    padding-left: 28px;
    padding-right: 4px;
  }
}

@media not all and (min-width: 769px) {
  .strength-lead {
    padding: 58px 20px 72px;
  }

  .strength-lead__title {
    font-size: 28px;
  }

  .strength-lead__text br {
    display: none;
  }

  .strength-detail {
    padding: 56px 0 80px;
  }

  .strength-detail__row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .strength-detail__row + .strength-detail__row {
    margin-top: 64px;
  }

  .strength-detail__row--reverse .strength-detail__body,
  .strength-detail__row--reverse .strength-detail__image {
    order: initial;
  }

  .strength-detail__title {
    font-size: 28px;
  }

  .strength-detail__text {
    margin-top: 30px;
  }

  .strength-history {
    min-height: auto;
    padding: 40px 0;
  }

  .strength-history__panel {
    width: min(92%, 1488px);
    min-height: 0;
    padding: 46px 20px;
    border-radius: 16px;
  }

  .strength-history__title {
    font-size: 28px;
  }

  .strength-history__text br {
    display: none;
  }

  .strength-quality {
    padding: 56px 0 80px;
  }

  .strength-comfort {
    padding: 0 20px 80px;
  }

  .strength-comfort__title {
    font-size: 28px;
  }

  .strength-comfort__lead br {
    display: none;
  }

  .strength-comfort__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .strength-discount {
    padding: 28px 20px 80px;
  }

  .strength-discount__panel {
    width: 100%;
    padding: 22px 20px;
    border-radius: 16px;
  }

  .strength-discount__title {
    font-size: 28px;
  }

  .strength-discount__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 20px 0;
  }

  .menu-block {
    padding: 44px 0 56px;
  }

  .menu-block > .wrap {
    padding: 36px 20px;
    border-radius: 18px;
  }

  .menu-block__ghost {
    font-size: 40px;
  }

  .menu-block__title {
    font-size: 26px;
  }

  .menu-block__intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .menu-block__concern {
    flex-direction: column;
    gap: 14px;
    max-width: none;
    padding: 24px 22px;
  }

  .menu-block__concern-label {
    align-self: flex-start;
  }

  .menu-block__price {
    padding: 36px 20px;
  }

  .menu-block__price-row {
    padding: 16px 2px;
  }
}

/* =============================================================
   mv / hero
   ============================================================= */
.mv {
  padding: 24px 0 60px;
}
.mv__inner {
  position: relative;
  width: min(92%, var(--wrap));
  margin-inline: auto;
}
.mv__photo {
  position: relative;
  overflow: hidden;
  border-radius: 120px 16px 16px 16px;
  aspect-ratio: 3 / 3.4;
}
.mv__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mv__slider .mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  animation: mvSlideFade 15s infinite both;
}
.mv__slider .mv__slide:first-child {
  position: relative;
  animation-name: mvFirstSlideFade;
}
.mv__slider .mv__slide:nth-child(2) {
  animation-delay: 5s;
}
.mv__slider .mv__slide:nth-child(3) {
  animation-delay: 10s;
}
@keyframes mvFirstSlideFade {
  0%,
  33% {
    opacity: 1;
    transform: scale(1.04);
  }
  41%,
  92% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 1;
    transform: scale(1.04);
  }
}
@keyframes mvSlideFade {
  0% {
    opacity: 0;
    transform: scale(1.04);
  }
  8%,
  33% {
    opacity: 1;
    transform: scale(1.04);
  }
  41%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .mv__slider .mv__slide {
    animation: none;
    transform: none;
  }
  .mv__slider .mv__slide:first-child {
    opacity: 1;
  }
}
.mv__copy {
  margin-bottom: 26px;
}
.mv__title {
  font-weight: 700;
  font-size: clamp(30px, 8vw, 44px);
  line-height: 1.35;
  letter-spacing: 0.05em;
}
.mv__title span {
  display: block;
}
.mv__lead {
  margin-top: 20px;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.9;
  color: var(--brown);
}
.mv__lead p {
  margin: 0;
}
.mv__script {
  display: block;
  margin-top: 6px;
  font-family: var(--f-script);
  font-size: clamp(90px, 30vw, 150px);
  line-height: 0.8;
  color: rgba(208, 211, 174, 0.55);
  pointer-events: none;
}

/* =============================================================
   Concept
   ============================================================= */
.concept {
  padding: 0 16px;
}
.concept__inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
  padding: 52px 22px 60px;
}
.concept__panel {
  position: absolute;
  inset: 40px 0 0;
  background: var(--beige);
  border-radius: 32px;
  z-index: 0;
}
.concept__ghost,
.message__ghost,
.staff__ghost,
.blog__ghost,
.firstvisit__ghost {
  position: absolute;
  font-family: var(--f-en);
  font-weight: 600;
  line-height: 1;
  color: var(--brown-08);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}
.concept__ghost {
  top: 24px;
  right: 12px;
  font-size: clamp(72px, 17vw, 150px);
  z-index: 4;
}
.concept__media {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}
.concept__img {
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
.concept__img--1 {
  width: 84%;
}
.concept__img--2 {
  width: 58%;
  margin: -36px 0 0 auto;
}
.concept__body {
  position: relative;
  z-index: 1;
}
.concept__ttl {
  font-weight: 700;
  font-size: clamp(22px, 5.4vw, 43px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.concept__en {
  margin-top: 14px;
  font-family: var(--f-en);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--green);
}
.concept__text {
  margin-top: 22px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.concept__text br {
  display: none;
}
.concept .pill-btn {
  margin-top: 30px;
}

/* =============================================================
   Reason
   ============================================================= */
.reason {
  padding: 70px 0 80px;
}
.reason__grid {
  display: grid;
  gap: 22px;
  margin: 46px 0 50px;
}
.reason-card {
  position: relative;
  background: var(--beige);
  border-radius: 20px;
  padding: 34px 30px 34px;
}
.reason-card__icon {
  position: absolute;
  top: 26px;
  right: 26px;
  width: 64px;
  height: 64px;
}
.reason-card__ttl {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-right: 70px;
}
.reason-card__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.reason-card__img {
  margin-top: 22px;
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 450 / 277;
  object-fit: cover;
}

/* =============================================================
   Menu
   ============================================================= */
.menu {
  padding: 60px 0 80px;
}
.menu .sec-head__ttl {
  margin-top: 40px;
}
.menu__list {
  margin-top: 110px;
  display: grid;
  gap: 40px;
}
.menu-item {
  background: var(--beige);
  border-radius: 22px;
  overflow: hidden;
}
.menu-item__media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.menu-item__body {
  position: relative;
  padding: 28px 26px 34px;
}
.menu-item__num {
  width: 92px;
  height: auto;
  margin-bottom: 12px;
}
.menu-item__ttl {
  margin: 28px 0;
  font-weight: 700;
  font-size: clamp(20px, 4.6vw, 34px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.menu-item__text {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.menu-item .circle-arrow {
  display: block;
  margin-top: 20px;
  margin-left: auto;
}

/* =============================================================
   Message
   ============================================================= */
.message {
  padding: 0;
  background: var(--beige);
  overflow: hidden;
}
.message__panel {
  position: relative;
  width: min(90%, var(--wrap));
  margin-inline: auto;
  padding: 56px 0 60px;
}
.message__ghost {
  top: 40px;
  left: 44%;
  right: auto;
  transform: translateX(-50%);
  font-size: clamp(70px, 15vw, 170px);
}
.message__body {
  position: relative;
  z-index: 1;
}
.message__label {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.05em;
}
.message__ttl {
  margin-top: 26px;
  font-weight: 700;
  font-size: clamp(22px, 5vw, 35px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.message__en {
  margin-top: 12px;
  margin-bottom: 40px;
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--green);
}
.message__text {
  margin-top: 24px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.message__text + .message__text {
  margin-top: 20px;
}
.message__text br {
  display: none;
}
.message__figure {
  position: relative;
  z-index: 1;
  margin-top: 32px;
}
.message__figure img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
}
.message .pill-btn {
  margin-top: 30px;
}

/* =============================================================
   Staff
   ============================================================= */
.staff {
  padding: 50px 0;
}
.staff__inner {
  width: 100%;
}
.staff__figure img {
  width: 100%;
  border-radius: 0 160px 20px 0;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.staff__body {
  position: relative;
  margin-top: 34px;
}
.staff__ghost {
  top: -0.3em;
  left: 0;
  font-size: clamp(80px, 18vw, 205px);
}
.staff__ttl {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(22px, 5vw, 35px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.staff__en {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--green);
}
.staff__text {
  position: relative;
  z-index: 1;
  margin-top: clamp(38px, 4vw, 60px);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.staff__text br {
  display: none;
}
.staff .pill-btn {
  margin-top: 72px;
}

/* =============================================================
   Blog
   ============================================================= */
.blog {
  padding: 30px 0;
  background: var(--beige);
}
.blog__panel {
  position: relative;
  width: min(94%, var(--wrap));
  margin-inline: auto;
  background: var(--cream);
  border-radius: 20px;
  padding: 46px 6%;
}
.blog__intro {
  position: relative;
  margin-bottom: 30px;
}
.blog__ghost {
  top: -0.35em;
  left: 0;
  font-size: clamp(70px, 16vw, 110px);
}
.blog__ttl {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(26px, 6vw, 43px);
  letter-spacing: 0.05em;
}
.blog__text {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.blog__text br {
  display: none;
}
.blog__intro .pill-btn {
  margin-top: 24px;
}
.blog__list {
  background: var(--cream);
  border-radius: 16px;
  padding: 8px 22px;
}
.blog__row + .blog__row {
  border-top: 1px solid var(--line);
}
.blog__row a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 4px 20px;
  align-items: center;
  padding: 20px 4px;
}
.blog__date {
  grid-column: 1;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.blog__title {
  grid-column: 2;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.blog__row .circle-arrow {
  grid-column: 3;
  grid-row: 1;
}
.blog .webgene-blog {
  background: var(--cream);
  border-radius: 16px;
  padding: 8px 22px;
}
.blog .webgene-item + .webgene-item {
  border-top: 1px solid var(--line);
}
.blog .news_inner {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) 40px;
  gap: 4px 20px;
  align-items: center;
  margin: 0;
  padding: 20px 4px;
}
.blog .news_inner .col-12 {
  min-width: 0;
}
.blog .news_inner .col-12:first-child {
  grid-column: 1;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.blog .news_inner .col-12:nth-child(2) {
  display: none;
}
.blog .news_inner .col-12:nth-child(3) {
  grid-column: 2;
}
.blog .news_inner .col-12:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--brown);
  border-right: 1.5px solid var(--brown);
  transform: translateY(-50%) rotate(45deg);
}
.blog .news_inner p {
  margin: 0;
}
.blog .news_inner .col-12:nth-child(3) p {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}
.circle-arrow--sm {
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1.5px solid var(--brown);
}
.circle-arrow--sm::before {
  background: var(--brown);
}
.circle-arrow--sm::after {
  border-color: var(--brown);
}

/* =============================================================
   First Visit
   ============================================================= */
.firstvisit {
  padding: 40px 0;
}
.firstvisit__inner {
  width: min(94%, var(--wrap));
  margin-inline: auto;
}
.firstvisit__figure img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.firstvisit__panel {
  position: relative;
  background: var(--beige);
  border-radius: 20px;
  padding: 40px 7%;
  margin-top: -24px;
}
.firstvisit__ghost {
  top: -0.4em;
  right: 0;
  font-size: clamp(60px, 14vw, 110px);
}
.firstvisit__ttl {
  position: relative;
  z-index: 1;
  font-weight: 700;
  font-size: clamp(24px, 5.5vw, 35px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.firstvisit__en {
  position: relative;
  z-index: 1;
  margin-top: 10px;
  font-family: var(--f-en);
  font-weight: 700;
  color: var(--green);
}
.firstvisit__text {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}
.firstvisit__text br {
  display: none;
}
.firstvisit .pill-btn {
  margin-top: 26px;
}

/* =============================================================
   Access
   ============================================================= */
.access {
  padding: 70px 0 80px;
}
.access .sec-head__ttl {
  margin-top: 32px;
}
.access__inner {
  margin-top: 64px;
  display: grid;
  gap: 36px;
}
.access__name {
  font-family: var(--f-jp);
  font-weight: 600;
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.access__table {
  margin-top: 24px;
}
.access__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(59, 35, 19, 0.2);
  font-family: var(--f-jp);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.access__row dt {
  font-weight: 700;
}
.access__row dd {
  line-height: 1.8;
}
.access__tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.access__tel img {
  width: 18px;
  flex: none;
}
.access__note {
  display: block;
  font-size: 13px;
}
.access__map img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 1408 / 1434;
  object-fit: contain;
}
.access__map > div {
  width: 100%;
  height: 100%;
}
.access__map iframe {
  display: block;
  width: 100%;
  height: clamp(480px, 46vw, 640px);
  border: 0;
  border-radius: 20px;
}

/* =============================================================
   Reservation
   ============================================================= */
.reservation {
  background: var(--brown);
  color: var(--white);
  padding: 40px 0 0;
}
.reservation__panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  padding: 60px 6% 52px;
  text-align: center;
  overflow: hidden;
}
.sec-head__ghost--light {
  color: rgba(255, 255, 255, 0.08);
  top: 20px;
  font-size: clamp(64px, 13vw, 160px);
}
.reservation__head {
  position: relative;
  z-index: 1;
}
.reservation__ttl {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
}
.reservation__text {
  margin-top: 22px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.reservation__group-note {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 16px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.03em;
}
.reservation__actions {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.reservation__web {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 340px;
  max-width: 100%;
  height: 74px;
  padding: 0 56px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.05em;
  color: var(--white);
}
.reservation__web:link,
.reservation__web:visited,
.reservation__web:hover,
.reservation__web:active,
.reservation__web:focus {
  color: var(--white);
}
.reservation__arrow {
  position: absolute;
  right: 20px;
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--white);
  border-radius: 50%;
}
.reservation__arrow::before,
.reservation__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--white);
}
.reservation__arrow::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.reservation__arrow::after {
  width: 8px;
  height: 8px;
  border-top: 1.5px solid var(--white);
  border-right: 1.5px solid var(--white);
  margin-left: 2px;
  background: transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}
.reservation__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.reservation__tel-num {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 340px;
  max-width: 100%;
  height: 74px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
}
.reservation__tel-num:link,
.reservation__tel-num:visited,
.reservation__tel-num:hover,
.reservation__tel-num:active,
.reservation__tel-num:focus {
  color: var(--white);
}
.reservation__tel-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}
.reservation__tel-row {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.1;
  font-size: clamp(22px, 5vw, 30px);
}
.reservation__tel-num img {
  width: 30px;
  flex: none;
  filter: brightness(0) invert(1);
}
.reservation__hours {
  position: relative;
  z-index: 1;
  margin-top: 44px;
  font-weight: bold;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.reservation__note {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--brown);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* =============================================================
   Footer
   ============================================================= */
.site-footer {
  position: relative;
  background: var(--brown);
  color: var(--white);
  padding: 40px 20px 90px;
  text-align: center;
}
.site-footer__inner {
  width: min(90%, var(--wrap));
  margin-inline: auto;
  margin-top: 20px
}
.site-footer__logo {
  display: block;
  width: 200px;
  max-width: 60%;
  margin: 0 auto 24px;
}
.site-footer__logo img {
  width: 100%;
  height: auto;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-top: 24px;
}
.site-footer__nav a {
  font-size: 13px;
  letter-spacing: 0.03em;
}
.site-footer__copy {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* =============================================================
   >= 768px
   ============================================================= */
@media (min-width: 769px) {
  .mv__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    grid-template-areas:
      "copy photo"
      "script photo";
    align-items: start;
    column-gap: 40px;
  }
  .mv__copy {
    grid-area: copy;
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 26px;
    margin-bottom: 0;
  }
  .mv__title {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    height: 66vw;
    max-height: 700px;
    font-size: clamp(34px, 5.6vw, 73px);
    line-height: 1.05;
    letter-spacing: 0.05em;
  }
  .mv__title span {
    display: block;
  }
  .mv__lead {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    height: 60vw;
    max-height: 620px;
    column-gap: 6px;
    margin-top: 0;
    font-size: clamp(11px, 1.05vw, 15px);
    line-height: 1.9;
  }
  .mv__lead p {
    display: block;
  }
  .mv__copy {
    grid-area: copy;
  }
  .mv__photo {
    grid-area: photo;
  }
  .mv__script {
    grid-area: script;
    position: relative;
    z-index: -1;
    margin-top: -30px;
  }
  .mv__photo {
    aspect-ratio: 1272 / 821;
    border-radius: 260px 20px 20px 20px;
  }

  .concept__text br,
  .message__text br,
  .staff__text br,
  .blog__text br {
    display: inline;
  }

  .reason__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reason-card {
    display: flex;
    flex-direction: column;
  }
  .reason-card__text {
    margin-bottom: 24px;
  }
  .reason-card__img {
    position: static;
    margin-top: auto;
  }

  .menu-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    overflow: visible;
  }
  .menu-item__media {
    align-self: stretch;
    transform: translate(-24px, -36px);
  }
  .menu-item--reverse .menu-item__media {
    order: 2;
    transform: translate(24px, -36px);
  }
  .menu-item__media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 320px;
    border-radius: 22px;
  }

  .message__panel {
    padding-right: 44%;
  }
  .message__figure {
    position: absolute;
    top: 60px;
    right: 6%;
    width: 32%;
    margin: 0;
  }

  .staff__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }
  .staff__body {
    margin-top: 0;
  }

  .blog__panel {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 50px;
    align-items: start;
  }
  .blog__intro {
    margin-bottom: 0;
    align-self: center;
  }

  .firstvisit__inner {
    position: relative;
    padding-left: 40%;
  }
  .firstvisit__figure {
    position: absolute;
    left: 0;
    top: 30px;
    width: 46%;
  }
  .firstvisit__panel {
    margin-top: 0;
    padding: 56px 8% 56px 12%;
  }

  .access__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    align-items: stretch;
    gap: 50px;
  }
  .access__map {
    height: 100%;
  }
  .access__map img {
    aspect-ratio: 1408 / 1434;
  }
  .access__map iframe {
    height: 100%;
  }

  .reservation__actions {
    flex-direction: row;
    justify-content: center;
    gap: 56px;
  }
  .reservation__actions::before {
    content: "";
    order: 1;
    align-self: stretch;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
  }
  .reservation__web {
    order: 0;
  }
  .reservation__tel {
    order: 2;
  }
}

/* =============================================================
   >= 1200px  ナビ横並び
   ============================================================= */
/* 768px - 1199px MV adjustment */
@media (min-width: 769px) and (width < 1024px) {
  .mv {
    padding: 20px 0 54px;
  }
  .mv__inner {
    display: block;
    width: min(92%, var(--wrap));
  }
  .mv__copy {
    display: block;
    margin-bottom: 22px;
  }
  .mv__title {
    writing-mode: horizontal-tb;
    height: auto;
    max-height: none;
    font-size: 38px;
    line-height: 1.35;
  }
  .mv__lead {
    writing-mode: horizontal-tb;
    height: auto;
    max-height: none;
    margin-top: 16px;
    font-size: 13px;
  }
  .mv__photo {
    aspect-ratio: 1272 / 821;
    border-radius: 180px 16px 16px 16px;
  }
  .mv__script {
    position: absolute;
    left: 0;
    bottom: 18px;
    margin: 0;
    font-size: 120px;
    z-index: -1;
  }
}

@media (min-width: 1024px) and (width < 1200px) {
  .mv__inner {
    grid-template-columns: 300px 1fr;
    column-gap: 32px;
    align-items: start;
  }
  .mv__copy {
    gap: 22px;
  }
  .mv__title {
    height: 520px;
    max-height: none;
    font-size: 52px;
  }
  .mv__lead {
    height: 470px;
    max-height: none;
    font-size: 13px;
  }
  .mv__photo {
    align-self: start;
  }
  .mv__script {
    margin-top: -110px;
  }

  .concept {
    padding-inline: 32px;
  }

  .concept__inner {
    max-width: 920px;
    padding-inline: 44px;
  }
}

/* =============================================================
   <= 1199px responsive polish
   ============================================================= */
@media not all and (min-width: 1200px) {
  html,
  body {
    overflow-x: hidden;
  }

  .gnav__inner {
    align-items: flex-start;
  }

  .gnav__logo img {
    width: min(220px, 54vw);
  }

  .sec-head {
    padding-top: 36px;
  }

  .sec-head__ghost {
    font-size: clamp(58px, 13vw, 126px);
  }

  .sec-head__ttl {
    font-size: clamp(24px, 4.4vw, 34px);
  }

  .sec-head__text {
    max-width: 760px;
    margin-inline: auto;
  }

  .reason {
    padding: 64px 0 52px;
  }

  .reason__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin: 40px auto 42px;
  }

  .reason-card {
    padding: 30px 24px 30px;
  }

  .reason-card__icon {
    top: 24px;
    right: 22px;
    width: 58px;
    height: 58px;
  }

  .reason-card__ttl {
    padding-right: 62px;
    font-size: 20px;
  }

  .reason-card__text {
    font-size: 14px;
  }

  .menu {
    padding: 36px 0 72px;
  }

  .menu .sec-head__ttl {
    margin-top: 16px;
  }

  .menu__list {
    margin-top: 48px;
    gap: 56px;
  }

  .menu-item__body {
    padding: 32px 30px 36px;
  }

  .menu-item__ttl {
    margin: 22px 0;
    font-size: clamp(22px, 3.2vw, 28px);
  }

  .message__text br,
  .blog__text br {
    display: none;
  }

  .staff__inner {
    display: grid;
    row-gap: 34px;
  }

  .staff__body {
    order: 0;
    margin-top: 0;
  }

  .staff__figure {
    order: 1;
  }

  .message__panel,
  .firstvisit__inner {
    width: min(90%, 900px);
  }

  .blog__panel {
    width: min(94%, 1180px);
  }

  .message__ttl,
  .staff__ttl,
  .firstvisit__ttl {
    font-size: clamp(24px, 3.8vw, 32px);
  }

  .access {
    padding: 64px 0 72px;
  }

  .access__inner {
    margin-top: 48px;
    gap: 40px;
  }

  .access__row {
    grid-template-columns: 120px 1fr;
    font-size: 16px;
  }

  .reservation__panel {
    padding: 52px 5% 44px;
  }
}

@media (min-width: 769px) and (width < 1024px) {
  .mv__inner {
    width: min(90%, 720px);
  }

  .mv__title {
    font-size: clamp(36px, 5.2vw, 40px);
  }

  .mv__photo {
    border-radius: 150px 16px 16px 16px;
  }

  .reason__grid {
    grid-template-columns: 1fr;
    max-width: 580px;
  }

  .menu__list {
    max-width: 680px;
    margin-inline: auto;
    gap: 34px;
  }

  .menu-item {
    display: block;
    overflow: hidden;
  }

  .menu-item__media,
  .menu-item--reverse .menu-item__media {
    transform: none;
  }

  .menu-item--reverse .menu-item__media {
    order: initial;
  }

  .menu-item__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    border-radius: 22px 22px 0 0;
  }

  .message__panel {
    padding: 62px 0 66px;
  }

  .message__figure {
    position: relative;
    top: auto;
    right: auto;
    width: min(360px, 82%);
    margin: 34px auto 0;
  }

  .staff__inner {
    width: min(90%, 720px);
    margin-inline: auto;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .staff__figure img {
    border-radius: 20px 140px 20px 20px;
  }

  .staff .pill-btn {
    margin-top: 44px;
  }

  .blog__panel {
    display: block;
    padding: 46px 6%;
  }

  .blog__intro {
    margin-bottom: 34px;
  }

  .firstvisit__inner {
    padding-left: 0;
  }

  .firstvisit__figure {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }

  .firstvisit__panel {
    margin-top: -28px;
    padding: 50px 7%;
  }

  .access__inner {
    grid-template-columns: 1fr;
  }

  .reservation__actions {
    flex-direction: column;
    gap: 22px;
  }

  .reservation__actions::before {
    display: none;
  }

  .reservation__web,
  .reservation__tel {
    order: initial;
  }

  .reservation__web,
  .reservation__tel-num {
    width: 340px;
  }
}

@media not all and (min-width: 769px) {
  body {
    padding-top: 79px;
    padding-bottom: 56px;
  }

  .gnav.is-scrolled {
    background: transparent;
    box-shadow: none;
  }

  .gnav__logo img {
    width: min(170px, 50vw);
  }

  .gnav__toggle {
    width: 60px;
    height: 60px;
  }

  .side-actions__btn {
    height: 54px;
    gap: 6px;
    font-size: 12px;
  }

  .side-actions__btn img {
    width: 20px;
    height: 20px;
  }

  .mv {
    padding: 18px 0 52px;
  }

  .mv__inner {
    width: min(92%, 460px);
  }

  .mv__copy {
    margin-bottom: 32px;
  }

  .mv__title {
    font-size: clamp(30px, 8vw, 34px);
    line-height: 1.45;
    letter-spacing: 0.02em;
  }

  .mv__lead {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 18px;
    font-size: 13px;
    line-height: 1.9;
  }

  .mv__photo {
    aspect-ratio: 1 / 1.18;
    border-radius: 92px 12px 12px 12px;
  }

  .mv__script {
    margin-top: 4px;
    font-size: clamp(82px, 28vw, 112px);
  }

  .concept {
    padding: 12px 16px 56px;
  }

  .concept__inner {
    padding: 42px 20px 48px;
  }

  .concept__panel {
    inset: 34px 0 0;
    border-radius: 22px;
  }

  .concept__ghost {
    top: 30px;
    right: auto;
    left: 14px;
    font-size: clamp(64px, 18vw, 88px);
  }

  .concept__media {
    margin-bottom: 40px;
  }

  .concept__img--1 {
    width: 78%;
  }

  .concept__img--2 {
    width: 60%;
    margin-top: -28px;
  }

  .concept__ttl {
    font-size: clamp(22px, 6vw, 26px);
  }

  .concept__text,
  .sec-head__text,
  .menu-item__text,
  .message__text,
  .staff__text,
  .blog__text,
  .firstvisit__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .reason {
    padding: 58px 0 42px;
  }

  .reason .sec-head__text,
  .menu .sec-head__text {
    width: min(100%, 23em);
    margin-inline: auto;
    text-align: left;
  }

  .reason .sec-head__text br,
  .menu .sec-head__text br {
    display: none;
  }

  .reason__grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 34px 0 36px;
  }

  .reason-card {
    border-radius: 18px;
    padding: 28px 22px;
  }

  .reason-card__icon {
    width: 50px;
    height: 50px;
  }

  .reason-card__ttl {
    padding-right: 54px;
    font-size: 20px;
  }

  .menu {
    padding: 34px 0 62px;
  }

  .menu__list {
    margin-top: 36px;
    gap: 24px;
  }

  .menu-item {
    border-radius: 18px;
  }

  .menu-item__body {
    padding: 26px 22px 30px;
  }

  .menu-item__num {
    width: 72px;
  }

  .menu-item__ttl {
    margin: 18px 0;
    font-size: 22px;
  }

  .message__panel {
    width: min(90%, 460px);
    padding: 46px 0 52px;
  }

  .message__ghost {
    left: 0;
    transform: none;
    font-size: clamp(64px, 18vw, 90px);
  }

  .message__figure img {
    max-width: 330px;
  }

  .staff {
    padding: 52px 0;
  }

  .staff__inner {
    width: min(90%, 460px);
    margin-inline: auto;
  }

  .staff__figure img {
    border-radius: 20px 100px 20px 20px;
  }

  .staff .pill-btn {
    margin-top: 36px;
  }

  .blog {
    padding: 34px 0;
  }

  .blog__panel {
    width: min(92%, 460px);
    padding: 36px 6%;
  }

  .blog__list {
    padding: 6px 14px;
  }

  .blog .webgene-blog {
    padding: 6px 14px;
  }

  .blog__row a,
  .blog .news_inner {
    grid-template-columns: auto minmax(0, 1fr) 16px;
    gap: 4px 12px;
  }

  .blog .news_inner .col-12:nth-child(3)::after {
    right: 0px;
  }

  .firstvisit {
    padding: 44px 0;
  }

  .firstvisit__inner {
    width: min(92%, 460px);
  }

  .firstvisit__panel {
    padding: 36px 6%;
  }

  .access {
    padding: 58px 0 64px;
  }

  .access__inner {
    margin-top: 38px;
  }

  .access__map iframe {
    height: clamp(340px, 88vw, 460px);
  }

  .access__name {
    font-size: clamp(30px, 8vw, 38px);
  }

  .access__row {
    grid-template-columns: 1fr;
    gap: 4px;
    font-size: 14px;
  }

  .reservation {
    padding: 34px 0 0;
  }

  .reservation__panel {
    border-radius: 22px;
    padding: 40px 6% 34px;
  }

  .reservation__ttl {
    font-size: 24px;
  }

  .reservation__actions {
    gap: 20px;
  }

  .reservation__tel {
    width: 100%;
  }

  .reservation__web,
  .reservation__tel-num {
    width: 100%;
    height: 64px;
    font-size: 16px;
  }

  .reservation__tel-row {
    font-size: 22px;
  }

  .site-footer {
    padding-bottom: 24px;
  }

  .js .rv--media {
    translate: -24px 0;
  }

  .js .rv--media.rv--from-right {
    translate: 24px 0;
  }

  .js .mv__photo.rv--media {
    translate: -32px 0;
  }

  .js .reason-card__img.rv--media,
  .js .reason-card__img.rv--media.rv--from-right {
    translate: 0 -28px;
  }
}

@media (min-width: 640px) and (width < 769px) {
  .mv__inner {
    width: min(92%, 680px);
  }

  .mv__photo {
    aspect-ratio: 16 / 11;
    border-radius: 140px 14px 14px 14px;
  }

  .message__panel,
  .staff__inner,
  .blog__panel,
  .firstvisit__inner {
    width: min(92%, 680px);
  }

  .message__figure img {
    max-width: 400px;
  }

  .blog__panel,
  .firstvisit__panel {
    padding-inline: 7%;
  }
}

@media not all and (min-width: 1200px) {
  .sec-head {
    padding-top: 0;
  }

  .sec-head__ttl,
  .menu .sec-head__ttl,
  .access .sec-head__ttl {
    margin-top: 0;
  }

  .sec-head__ghost,
  .concept__ghost,
  .message__ghost,
  .staff__ghost,
  .blog__ghost,
  .firstvisit__ghost {
    position: static;
    display: block;
    transform: none;
    margin: 0 0 14px;
    font-size: clamp(34px, 8vw, 64px);
    line-height: 0.9;
    color: rgba(59, 35, 19, 0.1);
    text-align: inherit;
  }

  .sec-head__ghost--light {
    color: rgba(255, 255, 255, 0.14);
  }
}

/* >= 1200px navigation */
@media (min-width: 1200px) {
  .mv {
    padding-top: 0;
  }
  .gnav__inner {
    position: relative;
    padding-right: 64px;
  }
  .gnav__logo {
    position: absolute;
    top: 0;
    left: 0;
  }
  .gnav__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 42px;
    padding-left: 220px;
  }
  .gnav__info {
    display: block;
  }
  .gnav__list {
    justify-content: flex-end;
  }
  .gnav__list__item a {
    font-size: 18px;
  }
  .gnav__toggle {
    display: none;
  }
  .mv__inner {
    width: calc(100% - 128px);
  }
  .side-actions {
    left: auto;
    top: auto;
    bottom: 50px;
    transform: none;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }
  .side-actions__btn {
    flex: none;
    width: 200px;
    height: 62px;
    justify-content: flex-start;
    gap: 14px;
    padding-left: 19px;
    border-radius: 10px 0 0 10px;
    font-size: 18px;
  }
  .side-actions__btn img {
    flex: none;
  }
}

/* =============================================================
   >= 1440px  1920 カンプ再現
   ============================================================= */
@media (min-width: 1440px) {
  :root {
    --wrap: 1520px;
  }
  .mv {
    padding: 0;
  }
  .mv__inner {
    display: block;
    position: relative;
    width: calc(100% - 128px);
    min-height: 860px;
  }
  .mv__photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 66%;
  }
  .mv__photo {
    aspect-ratio: 1272 / 821;
    border-radius: 400px 20px 20px 20px;
  }
  .mv__copy {
    position: absolute;
    left: clamp(48px, 8vw, 150px);
    top: 88px;
    margin: 0;
    gap: 44px;
    align-items: flex-start;
    z-index: 1;
  }
  .mv__title {
    height: 760px;
    max-height: none;
    font-size: 70px;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  .mv__lead {
    height: 680px;
    max-height: none;
    font-size: 15px;
    letter-spacing: 0.06em;
  }
  .mv__script {
    position: absolute;
    left: -64px;
    bottom: 30px;
    margin: 0;
    font-size: 325px;
    z-index: -1;
  }

  /* --- Concept : 1920 カンプ再現（1440〜1920 は等比スケール） --- */
  .concept {
    padding: 0 0 90px;
    margin-top: 65px;
    margin-bottom: 100px;
    overflow: hidden;
  }
  .concept__inner {
    position: relative;
    width: min(100vw, 1920px);
    height: min(41vw, 787px);
    max-width: none;
    margin-inline: auto;
    padding: 0;
  }
  .concept__panel {
    position: absolute;
    inset: 6.568% 0 -110px 0;
    background: #f4ebdd;
    border-radius: min(2.08vw, 40px);
    z-index: 0;
  }
  .concept__ghost {
    top: 12.12%;
    left: 42.19%;
    right: auto;
    font-size: min(10.68vw, 205px);
    color: rgba(59, 35, 19, 0.08);
    z-index: 4;
  }
  .concept__media {
    position: absolute;
    left: 5.94%;
    top: 0;
    width: 47.34%;
    height: 87.54%;
    margin: 0;
    z-index: 2;
  }
  .concept__img {
    position: absolute;
    border-radius: min(1.04vw, 20px);
  }
  .concept__img--1 {
    left: 0;
    top: 0;
    width: 78.44%;
    margin: 0;
  }
  .concept__img--2 {
    left: 49.28%;
    top: 62%;
    width: 50.72%;
    margin: 0;
  }
  .concept__body {
    position: absolute;
    left: 57.5%;
    top: 27.97%;
    width: 30%;
    z-index: 3;
  }
  .concept__ttl {
    font-size: min(2.24vw, 43px);
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .concept__en {
    margin-top: min(0.52vw, 10px);
    font-size: 18px;
    line-height: 1.6;
    letter-spacing: 0.05em;
  }
  .concept__text {
    margin-top: clamp(32px, 2.55vw, 49px);
    font-size: min(0.94vw, 18px);
    line-height: 2;
    letter-spacing: 0.05em;
  }
  .concept__text br {
    display: inline;
  }
  .concept .pill-btn {
    margin-top: clamp(34px, 2.7vw, 52px);
    width: min(19.64vw, 377px);
    height: min(4.17vw, 80px);
    font-size: min(0.94vw, 18px);
  }

  /* --- Reason : 1920 カンプ再現（左右 110px の余白、1440〜1920 は等比スケール） --- */
  .reason {
    padding: 60px 0 clamp(80px, 5.7vw, 110px);
  }
  .reason .sec-head {
    padding-top: 84px;
  }
  .reason .wrap {
    width: min(100% - 220px, 1699px);
  }
  .reason .sec-head__en {
    font-size: 18px;
  }
  .reason .sec-head__text {
    margin-top: 20px;
    font-size: clamp(16px, 1.04vw, 20px);
    font-weight: 500;
  }
  .reason__grid {
    gap: clamp(28px, 3.07vw, 59px);
    margin: clamp(44px, 3.23vw, 62px) 0 clamp(48px, 3.75vw, 72px);
  }
  .reason-card {
    padding: clamp(40px, 2.97vw, 57px) clamp(30px, 2.24vw, 43px)
      clamp(28px, 1.98vw, 38px);
  }
  .reason-card__ttl {
    font-size: clamp(24px, 1.7vw, 30px);
    padding-right: clamp(74px, 5.2vw, 100px);
  }
  .reason-card__text {
    margin-top: clamp(16px, 1.04vw, 20px);
    margin-bottom: clamp(24px, 1.67vw, 32px);
    font-size: clamp(15px, 0.94vw, 18px);
    line-height: 1.8;
  }
  .reason-card__icon {
    top: clamp(26px, 1.82vw, 35px);
    right: clamp(26px, 1.82vw, 35px);
    width: clamp(64px, 4.53vw, 87px);
    height: clamp(64px, 4.53vw, 87px);
  }
  .reason .pill-btn {
    width: clamp(320px, 19.64vw, 377px);
    height: clamp(68px, 4.17vw, 80px);
    font-size: clamp(16px, 0.94vw, 18px);
  }

  .menu {
    padding: 30px 0 120px;
  }
  .menu__list {
    gap: 96px;
  }
  .menu-item__media img {
    min-height: 507px;
  }
  .menu-item__body {
    padding: 60px 70px;
  }
  .menu-item__num {
    width: 110px;
  }
  .menu-item__text {
    font-size: 18px;
  }

  .message__panel {
    display: grid;
    grid-template-columns: 1fr 467px;
    align-items: center;
    column-gap: 90px;
    width: min(90%, var(--wrap));
    margin-inline: auto;
    padding: 90px 0;
    min-height: 820px;
  }
  .message__ghost {
    top: 51px;
    left: 44%;
    right: auto;
    transform: translateX(-50%);
    font-size: 170px;
  }
  .message__ttl {
    font-size: 35px;
  }
  .message__text {
    font-size: 17px;
  }
  .message__figure {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin: 0;
  }
  .message__figure img {
    max-width: none;
  }

  .staff {
    padding: 110px 0;
  }
  .staff__inner {
    gap: 88px;
  }
  .staff__figure img {
    border-radius: 0 220px 20px 0;
    aspect-ratio: 912 / 599;
  }
  .staff__ghost {
    font-size: 205px;
  }
  .staff__ttl {
    margin-top: 72px;
    font-size: 35px;
  }
  .staff__text {
    margin-top: clamp(48px, 3.125vw, 60px);
    font-size: 18px;
  }
  .staff .pill-btn {
    margin-top: 76px;
  }

  .blog {
    padding: 50px 0;
  }
  .blog__panel {
    grid-template-columns: 420px 1fr;
    gap: 70px;
    padding: 70px 110px;
  }
  .blog__ttl {
    font-size: 43px;
  }
  .blog__ghost {
    font-size: 110px;
  }
  .blog__list {
    padding: 0 40px;
  }

  .blog .webgene-blog {
    padding: 0 40px;
  }

  .blog__row a,
  .blog .news_inner {
    padding: 30px 4px;
  }

  .blog__title,
  .blog__date,
  .blog .news_inner .col-12:first-child,
  .blog .news_inner .col-12:nth-child(3) p {
    font-size: 18px;
  }

  .firstvisit {
    padding: 110px 0;
  }
  .firstvisit__inner {
    display: grid;
    grid-template-columns: 659px 1fr;
    align-items: center;
    padding-left: 0;
  }
  .firstvisit__figure {
    position: relative;
    left: 0;
    top: 0;
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    z-index: 2;
    transform: translate(-32px, 36px);
  }
  .firstvisit__panel {
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: stretch;
    margin: 0;
    padding: 78px 8% 78px calc(659px + 48px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .firstvisit__ttl {
    font-size: 35px;
  }
  .firstvisit__text {
    font-size: 18px;
  }
  .firstvisit__ghost {
    font-size: 110px;
    top: 0px;
  }

  .access {
    padding: 100px 0 120px;
  }
  .access__inner {
    gap: 90px;
  }
  .access__row {
    grid-template-columns: 150px 1fr;
  }

  .reservation {
    padding: 110px 0 0;
  }
  .reservation__panel {
    padding: 84px 8% 30px;
    border-radius: 32px;
  }
  .reservation__ttl {
    font-size: 43px;
  }
  .reservation__text,
  .reservation__hours {
    font-size: 18px;
  }
  .reservation__actions {
    margin-top: 60px;
    gap: 72px;
  }
}

/* =============================================================
   >= 1441px  MV 調整（1440px ちょうどは上のカンプ再現のまま）
   ============================================================= */
@media (min-width: 1441px) {
  .mv__photo {
    /* 画像は元寸 1272px 固定。%スケールしない */
    width: 1272px;
    max-width: 100%;
  }
  .mv__photo {
    max-width: 1272px;
  }
  .mv__copy {
    left: clamp(16px, 3vw, 56px);
    gap: 20px;
  }
  .mv__title {
    /* 縦書き：line-height = 列（行）どうしの間隔 / letter-spacing = 文字送り（上下の字間） */
    line-height: 1.3;
    letter-spacing: 0.03em;
  }
  .mv__lead {
    font-size: 18px;
    /* 縦書き：line-height = 列どうしの左右間隔 */
    line-height: 1.6;
    letter-spacing: 0.08em;
  }
  .mv__script {
    left: -125px;
  }
}

/* デスクトップでは下部固定バー不要ぶんの余白調整 */
@media (min-width: 1200px) {
  .site-footer {
    padding-bottom: 40px;
  }
}

/* フッター：PC はロゴ左寄せ・ナビ右寄せで1行に（予約パネルと同じ横幅） */
@media (min-width: 769px) {
  .site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
  }
  .site-footer__logo {
    flex: none;
    width: clamp(180px, 16vw, 240px);
    max-width: none;
    margin: 0;
  }
  .site-footer__nav {
    flex: 1;
    justify-content: flex-end;
    gap: 10px 16px;
    margin-top: 0;
  }
  .site-footer__nav a {
    font-size: 18px;
  }
}

/* 1200px 以上はフッターナビを1行に固定（中途半端な2列を防ぐ） */
@media (min-width: 1200px) {
  .site-footer__nav {
    flex-wrap: nowrap;
    white-space: nowrap;
  }
}

/* 1440〜1599px はロゴと重ならないようナビ文字を少し詰める */
@media (min-width: 1440px) and (width < 1600px) {
  .gnav__list__item a {
    font-size: 15px;
  }
}

/* =============================================================
   スクロールリビール（top.js が html.js と .rv / .is-in を付与）
   transform を戻すのは .rv--up / .rv--left だけ。
   （中央寄せ transform を持つゴースト等を壊さないため）
   ============================================================= */
.js .rv,
.js .rv--media {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    translate 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* MV コピーの1文字ずつ表示（top.js が .char / .is-inview を付与）
   縦書きのため移動はさせず、フェードのみで順に出す */
.js .char {
  opacity: 0;
  transition: opacity 0.5s ease;
}
/* タイトルは行 span が display:block のため、文字は inline-block で上書き。
   リード文は inline のまま（縦書きの句読点位置を崩さない） */
.js .mv__title .char {
  display: inline-block;
}
.js .char.is-inview {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js .char {
    opacity: 1 !important;
    transition: none !important;
  }
}

.js .rv--up {
  transform: translateY(40px);
}
.js .rv--left {
  transform: translateX(-40px);
}
.js .rv--wipe {
  clip-path: inset(0 100% 0 0);
}
.js .rv--fade {
  transition-duration: 1.4s;
}
/* 画像：横からスライドイン。individual translate なので既存の transform と両立 */
.js .rv--media {
  opacity: 1;
  overflow: hidden;
  translate: -9% 0;
  clip-path: inset(0 100% 0 0);
  will-change: translate, clip-path;
}
.js .rv--media.rv--from-right {
  translate: 9% 0;
  clip-path: inset(0 0 0 100%);
}
/* MV 画像はファーストビュー内なので、大きめ・ゆっくり・少し遅らせて見せる */
.js .mv__photo.rv--media {
  translate: -18% 0;
  transition-duration: 1.1s;
  transition-delay: 0.35s;
}

.js .reason-card__img.rv--media,
.js .reason-card__img.rv--media.rv--from-right {
  translate: 0 -12%;
  clip-path: inset(0 0 100% 0);
}

.js .rv.is-in,
.js .rv--media.is-in {
  opacity: 1;
}
.js .rv--up.is-in,
.js .rv--left.is-in {
  transform: none;
}
.js .rv--wipe.is-in {
  clip-path: inset(0 0 0 0);
}
.js .rv--media.is-in {
  translate: 0 0;
  clip-path: inset(0 0 0 0);
}
.js .reason-card__img.rv--media.is-in,
.js .reason-card__img.rv--media.rv--from-right.is-in {
  translate: 0 0;
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: reduce) {
  .js .rv,
  .js .rv--media {
    opacity: 1 !important;
    clip-path: none !important;
    translate: 0 0 !important;
    transition: none !important;
  }
  .js .rv--up,
  .js .rv--left {
    transform: none !important;
  }
}

/* Concept の画像枠は concept__img--2 を下側にはみ出させるレイアウトのため、
   リビールの overflow:hidden / clip-path をこのブロックだけ無効化する
   （はみ出た部分が切られて下の角丸が消えていた）。スライドインは維持。 */
.js .concept__media.rv--media,
.js .concept__media.rv--media.rv--from-right,
.js .concept__media.rv--media.is-in,
.js .concept__media.rv--media.rv--from-right.is-in {
  overflow: visible;
  clip-path: none;
}
