@charset "UTF-8";

/* =============================================================================
 * CSS変数（デザイントークン）
 *   テンプレ流用時はここの値だけ書き換えればOK。
 *   役割（用途）ベースの命名にしているので、ブランド差し替え時は右辺だけ変更する。
 * ========================================================================== */

/* ────────────────────────────────────────────────────────────────
 * Font Tokens
 *   --font-basic         : 本文・基本（標準的な可読フォント / 例: Noto Sans JP）
 *   --font-display       : 英字見出し / セクションタイトル（装飾的・太め）
 *   --font-display-light : 英字見出しの細字バリアント
 * ──────────────────────────────────────────────────────────────── */
:root {
  --font-basic: "Noto Sans JP", system-ui, -apple-system, sans-serif;
  --font-display-light: "montserrat", sans-serif;
  --font-display: "montserrat", sans-serif;

  /* Swiper */
  --swiper-theme-color: #007aff;
}

@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-translate-x: 0;
      --tw-translate-y: 0;
      --tw-translate-z: 0;
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-space-y-reverse: 0;
      --tw-divide-y-reverse: 0;
      --tw-border-style: solid;
      --tw-leading: initial;
      --tw-font-weight: initial;
      --tw-tracking: initial;
      --tw-duration: initial;
      --tw-ease: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-content: ""
    }
  }
}

@layer theme {
  :root, :host {
    --color-gray-100: oklch(96.7% .003 264.542);
    --color-white: #fff;
    --spacing: .25rem;
    --container-7xl: 80rem;
    --text-sm: .875rem;
    --text-sm--line-height: calc(1.25 / .875);
    --text-lg: 1.125rem;
    --text-lg--line-height: calc(1.75 / 1.125);
    --text-xl: 1.25rem;
    --text-xl--line-height: calc(1.75 / 1.25);
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --tracking-tighter: -.05em;
    --tracking-normal: 0em;
    --tracking-widest: .1em;
    --ease-out: cubic-bezier(0, 0, .2, 1);
    --default-transition-duration: .15s;
    --default-transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    --vw-pc: 1280;
    --vw-sp: 375;
    --ease-rintosull-out: cubic-bezier(.19, 1, .22, 1);
    /*カラー*/
    --brand-primary: #eb5902; /* メインブランド色（CTA・見出しアクセント等） */
    --text-base: #352f2d; /* 本文 */
    --text-mute: #828282; /* 補足テキスト */
    --text-base-light: #5d5957;
    --bg-grey: #f7f7f7;

    /* MV高さ = 自然サイズ(600vw-sp相当) と 90svh の小さい方 */
    --mv-h: min(calc((100vw / var(--vw-sp)) * 600), 90svh);
    @media (min-width: 801px) {
      :root {
        --mv-h: min(calc(100vw * 1321 / 2561), 90svh);
      }
    }
  }
}

@layer base {
  body {
    font-family: var(--font-basic), sans-serif;
    font-size: calc((100vw / var(--vw-sp)) * 14);
    color: var(--text-base);
    -webkit-font-smoothing: antialiased;
    font-weight: 400;
    line-height: 1.6
  }
  @media (min-width:801px) {
    body {
      font-size: 16px
    }
  }
  a {
    color: var(--text-base);
    background-color: #0000;
    text-decoration: none
  }
  p {
    font-size: calc((100vw / var(--vw-sp)) * 14);
    word-break: break-all;
    margin: 0
  }
  @media (min-width:801px) {
    p {
      font-size: 16px
    }
  }
  small {
    font-size: 80%
  }
  img {
    max-width: 100%;
    height: auto;
    display: block
  }
  section {
    padding: calc((100vw / var(--vw-sp)) * 50) 0;
  }
  @media (min-width:801px) {
    section {
      padding: calc((100vw / var(--vw-pc)) * 80) 0;
    }
  }
}

@layer components;

@layer utilities {
  .start {
    inset-inline-start: var(--spacing)
  }
  .end {
    inset-inline-end: var(--spacing)
  }
}

/* =============================================================================
 * 共通リセット / Normalize
 * ========================================================================== */
html {
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.15
}
body {
  margin: 0
}
body * {
  box-sizing: border-box
}
main {
  display: block
}
h1 {
  margin: .67em 0;
  font-size: 2em
}
h1, h2, h3, h4, h5, h6 {
  margin-top: 0
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible
}
pre {
  font-family: monospace;
  font-size: 1em
}
abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted
}
b, strong {
  font-weight: bolder
}
code, kbd, samp {
  font-family: monospace;
  font-size: 1em
}
sub, sup {
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
  position: relative
}
sub {
  bottom: -.25em
}
sup {
  top: -.5em
}
img {
  border-style: none
}
button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15
}
button, input {
  overflow: visible
}
button, select {
  text-transform: none
}
button, [type=button], [type=reset], [type=submit] {
  appearance: auto
}
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0
}
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted buttontext
}
fieldset {
  padding: .35em .75em .625em
}
legend {
  box-sizing: border-box;
  max-width: 100%;
  color: inherit;
  white-space: normal;
  padding: 0;
  display: table
}
progress {
  vertical-align: baseline
}
textarea {
  overflow: auto
}
[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0
}
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto
}
[type=search] {
  appearance: textfield;
  outline-offset: -2px
}
[type=search]::-webkit-search-decoration {
  appearance: none
}
::-webkit-file-upload-button {
  font: inherit;
  appearance: auto
}
details {
  display: block
}
summary {
  display: list-item
}
template, [hidden] {
  display: none
}
.text_eng {
  font-family: var(--font-display);
}

/* =============================================================================
 * Swiper
 * ========================================================================== */
:host {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative
}
.swiper {
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  list-style: none;
  display: block;
  position: relative;
  overflow: hidden
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column
}
.swiper-wrapper {
  z-index: 1;
  width: 100%;
  height: 100%;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
  display: flex;
  position: relative
}
.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  transform: translate(0, 0)
}
.swiper-horizontal {
  touch-action: pan-y
}
.swiper-vertical {
  touch-action: pan-x
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  transition-property: transform;
  display: block;
  position: relative
}
.swiper-slide-invisible-blank {
  visibility: hidden
}

/* =============================================================================
 * Footer
 * ========================================================================== */
.footer_main {
  color: #FFFFFF;
  background: var(--text-base);
  padding: 40px 0 80px;
  position: relative
}
@media (max-width:800px) {
  .footer_main {
    padding: calc((100vw / var(--vw-sp)) * 30) 0 calc((100vw / var(--vw-sp)) * 80);
    color: #FFF;
  }
}
@media (min-width:801px) {
  .footer_main {
    padding-top: 60px;
  }
}
.footer_main_inner {
  max-width: 800px;
  margin: 80px auto 0;
}
@media (max-width:800px) {
  .footer_main_inner {
    max-width: 100%;
    padding: 0 calc((100vw / var(--vw-sp)) * 20);
    margin: 0 auto;
  }
  .footer_main_inner img {
    width: calc((100vw / var(--vw-sp)) * 164);
  }
}
@media (min-width:801px) {
  .footer_main_inner {
    margin-top: 0;
    padding: 0 40px;
  }
}
.footer_navi {
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  padding-bottom: 40px;
}
@media (max-width:800px) {
  .footer_navi {
    padding-bottom: calc((100vw / var(--vw-sp)) * 30);
    margin-bottom: calc((100vw / var(--vw-sp)) * 30);
    border-bottom: 1px solid #fff;
    margin-top: calc((100vw / var(--vw-sp)) * 25);
  }
}
@media (min-width:801px) {
  .footer_navi {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.footer_navi ul {
  flex-wrap: wrap;
  gap: 20px 80px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex
}
@media (max-width:800px) {
  .footer_navi ul {
    gap: calc((100vw / var(--vw-sp)) * 7) calc((100vw / var(--vw-sp)) * 30);
  }
}
@media (min-width:801px) {
  .footer_navi ul {
    gap: 10px 50px;
  }
}
.footer_navi ul li {
  width: auto
}
.footer_navi ul li a {
  color: #FFFFFF;
  font-size: 14px
}
@media (max-width:800px) {
  .footer_navi ul li a {
    font-size: calc((100vw / var(--vw-sp)) * 12)
  }
}
.footer_navi ul li a:hover {
  text-decoration: underline
}
.footer_copyright {
  transform-origin: 0 0;
  font-size: 10px;
  transform: scale(.9);
  letter-spacing: 0.1em;
}
@media (max-width:800px) {
  .footer_copyright {
    font-size: calc((100vw / var(--vw-sp)) * 10);
    transform-origin: 0 0;
    transform: scale(.9);
    letter-spacing: 0.1em;
  }
}

/* =============================================================================
 * ヘッダー
 *   状態:
 *     body[data-past-mv]                  … MV を抜けた後（白ヘッダー）
 *     body[data-past-mv][data-spmenu-open] … 白ヘッダー時にメニューを開いた状態
 *                                            （透過時の見た目に戻す）
 *   MV 上（data-past-mv 無し）でメニューを開いても何も変えない。
 * ========================================================================== */

/* 共通：色変化を滑らかに */
.site_header,
.site_header_logo img,
.header_navi_burger_label,
.header_navi_burger_circle,
.header_navi_burger_circle::before {
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    filter 0.3s ease;
}

.site_header {
  z-index: 1000;
  padding: calc((100vw / var(--vw-sp)) * 12) calc((100vw / var(--vw-sp)) * 20) calc((100vw / var(--vw-sp)) * 12) calc((100vw / var(--vw-sp)) * 15);
  align-items: center;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: calc((100vw / var(--vw-sp)) * 60);
}
/* menu 等のページ内アンカー（#リンク）でスクロールした際に、
   固定ヘッダー（高さ約60px）分の余白を確保して対象セクションが隠れないようにする。
   scroll-padding-top はスクロールコンテナに効き、scrollIntoView / #ジャンプ 両方に反映される。
   値 = ヘッダー高さ60 + 余白12。 */
html {
  scroll-padding-top: calc((100vw / var(--vw-sp)) * 72);
}
@media (min-width: 801px) {
  html {
    scroll-padding-top: 72px;
  }
}

body[data-past-mv] .site_header {
  background: #FFF;
}
body[data-past-mv] .site_header .header_navi_secondary_global > li > a {
  color: #333333;
}
body[data-past-mv] .site_header .header_navi_secondary_global > li.header_navi_cta > a {
  color: #FFF;
}
body[data-past-mv][data-spmenu-open] .site_header {
  background: var(--text-base);
}

/* ロゴの色切替はブランドによって実装が異なる（白ロゴ→黒ロゴの差し替え/フィルタ/SVG切替）
   ため、ここではプレースホルダのみ。ブランド側の top.css か common 拡張で実装する。
   例)
     body[data-past-mv] .site_header_logo img { filter: brightness(0); }
*/

/* MENU ラベル（MENU ⇄ CLOSE フェード） */
.header_navi_burger_label {
  transition: opacity 0.2s ease;
}
.header_navi_burger_label.is-fading {
  opacity: 0;
}
body[data-past-mv] .header_navi_burger_label {
  color: #333333;
}
body[data-past-mv][data-spmenu-open] .header_navi_burger_label {
  color: #FFF;
}

/* MENU 左の丸（外側＝半透明ハロー、内側＝白い点） */
.header_navi_burger span.header_navi_burger_circle {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: calc((100vw / var(--vw-sp)) * 6);
  width: calc((100vw / var(--vw-sp)) * 11);
  height: calc((100vw / var(--vw-sp)) * 11);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}
.header_navi_burger span.header_navi_burger_circle::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc((100vw / var(--vw-sp)) * 7);
  height: calc((100vw / var(--vw-sp)) * 7);
  border-radius: 50%;
  background: #FFF;
}
body[data-past-mv] .header_navi_burger_circle {
  background-color: rgb(from #333333 r g b / 0.3);
}
body[data-past-mv] .header_navi_burger_circle::before {
  background: #333333;
}
body[data-past-mv][data-spmenu-open] .header_navi_burger_circle {
  background: rgba(255, 255, 255, 0.3);
}
body[data-past-mv][data-spmenu-open] .header_navi_burger_circle::before {
  background: #FFF;
}

/* クリック時の拡大パルス */
.header_navi_burger_circle.is-pulsing {
  animation: header_navi_burger_pulse 0.35s cubic-bezier(.19,1,.22,1);
}
@keyframes header_navi_burger_pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}

@media (min-width:801px) {
  .site_header {
    border-top-width: 6px;
    padding: 0 30px;
    height: 60px;
  }
  .header_navi_burger_label {
    font-size: 13px;
    padding-top: 3px;
  }
  .header_navi_burger span.header_navi_burger_circle {
    width: 11px;
    height: 11px;
  }
  .header_navi_burger span.header_navi_burger_circle::before {
    width: 7px;
    height: 7px;
  }
}
@media (min-width:1000px) {
  .site_header {
    padding-top: 0
  }
}
@media (min-width:1261px) {
  .site_header {
    padding-left: 50px;
    padding-right: 50px
  }
}

.site_header_inner {
  justify-content: space-between;
  align-items: start;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  position: relative
}
@media (min-width:801px) {
  .site_header_inner {
    align-items: center;
  }
}
.site_header_logo_wrapper {
  flex-direction: column;
  align-items: center;
  display: flex
}
@media (min-width:801px) {
  .site_header_logo_wrapper, [data-scrolled] .site_header_logo_wrapper {
    padding-top: 0
  }
}
@media (min-width:1000px) {
  [data-scrolled] .site_header_logo_wrapper {
    padding-top: 16px
  }
}
.site_header_logo {
  z-index: 10;
  width: calc((100vw / var(--vw-sp)) * 130);
  transform-origin: 0 0;
  line-height: 0;
  transition: scale .6s cubic-bezier(.19, 1, .22, 1);
  scale: 1
}
@media (min-width:801px) {
  .site_header_logo {
    width: 138px
  }
}
@media (max-width:1260px) {
  .site_header_logo {
    transform: scale(.728)translateY(0)
  }
}
@media (max-width:999px) {
  .site_header_logo {
    position: static;
    transform: none
  }
}
.site_header_logo img {
  width: 100%
}
@media (min-width:801px) {
  [data-scrolled] .site_header_logo {
    scale: 1
  }
}
@media (min-width:1000px) {
  [data-scrolled] .site_header_logo {
    scale: .728
  }
}

/* =============================================================================
 * ヘッダーナビゲーション
 * ========================================================================== */
.header_navi {
  width: calc((100vw / var(--vw-sp)) * 30);
  flex-direction: column;
  align-items: flex-end;
  height: 100%;
  display: flex
}
@media (min-width:801px) {
  .header_navi {
    width: auto
  }
}
.header_navi_secondary_global > li {
  position: relative
}
.header_navi_secondary_global > li > a {
  padding: 10px 24px 12px;
  font-size: 14px;
  font-weight: 700;
  transition: color .6s cubic-bezier(.19, 1, .22, 1);
  display: block;
  letter-spacing: 0.05rem;
}
@media (min-width:999px) {
  .header_navi_secondary_global > li > a {
    color: #FFF;
    font-family: var(--font-display-light);
  }
}
@media (min-width:1024px) {
  .header_navi_secondary_global > li > a {
    letter-spacing: 0.09rem;
  }
}
@media (min-width:1280px) {
  .header_navi_secondary_global > li > a {
    letter-spacing: 0.15rem;
  }
}
.header_navi_secondary {
  padding-right: 2px;
  line-height: 1;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative
}
@media (max-width:999px) {
  .header_navi_secondary {
    display: none
  }
}
.header_navi_secondary_global {
  z-index: 10;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  display: flex;
  position: relative
}
[data-scrolled] .header_navi_secondary_global {
  transform: translate(-74px)
}
.header_navi_secondary_global > li:last-of-type {
  margin-right: 0;
  font-family: var(--font-basic);
  background: var(--brand-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header_navi_secondary_global > li:last-of-type:hover {
  background: var(--brand-primary);
}
@media (max-width:1260px) {
  .header_navi_secondary_global > li > a {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 12px
  }
}
@media (max-width:1180px) {
  .header_navi_secondary_global > li > a {
    padding-left: 20px;
    padding-right: 20px
  }
}
@media (max-width:1080px) {
  .header_navi_secondary_global > li > a {
    top: 0
  }
}
.header_navi_secondary_global > li > a:hover {
  color: var(--brand-primary)
}
.header_navi_secondary_global > li:last-of-type > a:hover {
  color: #FFF;
}
.header_navi_burger {
  width: calc((100vw / var(--vw-sp)) * 80);
  height: calc((100vw / var(--vw-sp)) * 46);
  background: 0 0;
  border: none;
  padding: 0;
  transition: transform .6s cubic-bezier(.19, 1, .22, 1);
  display: none;
  position: relative;
  color: #FFF;
  font-family: var(--font-display);
  letter-spacing: calc((100vw / var(--vw-sp)) * 1.5);
}
@media (min-width:801px) {
  .header_navi_burger {
    width: auto;
    height: 26px;
  }
}
@media (max-width:999px) {
  .header_navi_burger {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
html:has(.header_navi[data-spmenu-shown]) {
  overflow: hidden
}

/* =============================================================================
 * SPメニュー
 * ========================================================================== */
.sp_menu {
  z-index: 900;
  background: var(--text-base);
  width: 100%;
  height: 100dvh;
  padding-top: 112px;
  transition: padding-top .6s cubic-bezier(.19, 1, .22, 1), transform .6s cubic-bezier(.19, 1, .22, 1);
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  transform: translate(100%)
}
@media (max-width:999px) {
  .sp_menu {
    max-width: 100%;
    padding-top: calc((100vw / var(--vw-sp)) * 70);
    display: block
  }
}
@media (min-width:801px) {
  .sp_menu {
    padding-top: 60px;
  }
}
.sp_menu.is-open {
  transform: translate(0)
}
[data-scrolled] + .sp_menu {
  padding-top: 70px
}
.sp_menu_inner {
  height: 100%;
  overflow: auto;
  padding: 0 calc((100vw / var(--vw-sp)) * 20);
}
@media (min-width:801px) {
  .sp_menu_inner {
    padding: 0 150px;
  }
}
.sp_menu_header {
  border-bottom: solid 0.5px #FFF;
  padding: calc((100vw / var(--vw-sp)) * 16) 0;
}
.sp_menu_header ul {
  justify-content: space-between;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
}
.sp_menu_header ul li {
  flex: 1;
  margin-right: 10px
}
.sp_menu_header ul li:last-of-type {
  margin-right: 0
}
.sp_menu_main > ul > li {
  border-bottom: solid 0.5px #FFF;
}
.sp_menu_main ul li:last-child {
  border-bottom: none;
}
.sp_menu_main > ul > li > a {
  font-size: calc((100vw / var(--vw-sp)) * 18);
  font-weight: 500;
  display: block;
  position: relative;
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFF;
  padding: calc((100vw / var(--vw-sp)) * 8) 0 calc((100vw / var(--vw-sp)) * 10);
  line-height: 1.3;
}
@media (min-width:801px) {
  .sp_menu_main > ul > li > a {
    font-size: 18px;
  }
}
.sp_menu_main > ul > li > a > span {
  font-family: var(--font-display);
  font-size: calc((100vw / var(--vw-sp)) * 14);
  opacity: 0.5;
}
@media (min-width:801px) {
  .sp_menu_main > ul > li > a > span {
    font-size: 14px;
  }
}
.sp_menu_main ul {
  margin: 0;
  padding: 0;
  list-style: none
}

/* =============================================================================
 * 共通CTA
 *   デザイン: 外側に淡いピーチのリング + オレンジ塗り + 内側に白1pxの枠 +
 *            右端に > シェブロン（= 店舗情報の CTA .shop_cta_wrap/.shop_cta_btn と同構造）
 *   ・外側ピーチのリングは「ボタンを包むラッパー要素」側に付ける
 *     （SPメニュー = .sp_menu_header_cta、店舗 = .shop_cta_wrap）
 *   ・.cta_common 自身（a）は 1px #FFF の内枠 + オレンジ塗り
 *   サイズ・余白などセクション固有の調整は各 top.css 側で上書きする。
 * ========================================================================== */
.cta_common {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc((100vw / var(--vw-sp)) * 55);
  position: relative;
  box-sizing: border-box;
  padding: 0 calc((100vw / var(--vw-sp)) * 24);
  border-radius: 9999px;
  background-color: var(--brand-primary);
  border: 1px solid #FFF; /* 内側の白い枠 */
  color: #ffffff;
  font-size: calc((100vw / var(--vw-sp)) * 17);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin: 0 auto;
  transition: transform 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}
@media (min-width: 801px) {
  .sp_menu_header_cta {
    max-width: 350px;
  }
  .cta_common {
    font-size: 18px;
    max-width: 350px;
    height: 50px;
    padding: 0 32px;
  }
}
/* 外側の淡いピーチのリング（ボタンを包むラッパー側に付ける） */
.sp_menu_header_cta {
  border: calc((100vw / var(--vw-sp)) * 4) solid #f5b998;
  border-radius: 9999px;
}
/* 右端の > シェブロン */
.cta_common .chevron {
  position: absolute;
  right: calc((100vw / var(--vw-sp)) * 22);
  top: 50%;
  width: calc((100vw / var(--vw-sp)) * 9);
  height: calc((100vw / var(--vw-sp)) * 9);
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
}
@media (min-width: 801px) {
  .cta_common .chevron {
    right: 28px;
    width: 11px;
    height: 11px;
  }
}

/* =============================================================================
 * 汎用ヘルパー
 *   SP / PC 出し分け（旧 Tailwind: "hidden pc:block" / "block pc:hidden"）
 *   将来ページ追加でも使い回す想定で、is_ 接頭辞のユーティリティに昇格
 * ========================================================================== */
.is_sp_only {
  display: block;
}
.is_pc_only {
  display: none;
}
@media (min-width: 801px) {
  .is_sp_only {
    display: none;
  }
  .is_pc_only {
    display: block;
  }
}
.ls_small-005 {
  letter-spacing: -0.05em;
}
.ls_small-015 {
  letter-spacing: -0.15em;
}
.ls_small-025 {
  letter-spacing: -0.25em;
}
.notes {
  color: var(--text-mute);
}

/* =============================================================================
 * 店舗情報共通箇所（各店舗のservice情報）
 *   .shop_tags は丸ピル型タグの土台のみ提供。
 *   個別の色割当（.tag_pilates / .tag_yoga 等）は使うブランドの top.css 側で
 *   .shop_tags li.tag_xxx { background: ...; } として上書きしてください。
 *   index_260610.php の $shops[].tags 配列の値がそのままクラス suffix になります。
 * ========================================================================== */
.shop_tags {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: calc((100vw / var(--vw-sp)) * 4);
}
.shop_tags li {
  color: #FFF;
  font-family: var(--font-display);
  font-size: calc((100vw / var(--vw-sp)) * 9);
  letter-spacing: 0.1em;
  border-radius: calc((100vw / var(--vw-sp)) * 15);
  padding: calc((100vw / var(--vw-sp)) * 1) calc((100vw / var(--vw-sp)) * 8) calc((100vw / var(--vw-sp)) * 2);
  white-space: nowrap;
  background: #333333; /* デフォルト色（個別色は top.css で上書き） */
}
.shop_tags .tag_machine {
  background: #f31a59;
}
.shop_tags .tag_circuit {
  background: var(--brand-primary);
}
.shop_tags .tag_personal {
  background: #6ec4d0;
}
p.shop_area {
  color: var(--text-mute);
  font-size: calc((100vw / var(--vw-sp)) * 14);
  margin-top: calc((100vw / var(--vw-sp)) * 8);
}

/* =============================================================================
 * floating-cta（フローティングCTA / SP+PC で別 DOM）
 *   - 初期は .is-hidden（opacity:0 + pointer-events:none）
 *   - JS（script.js）が scrollY > 200 で .is-hidden を外して表示
 * ========================================================================== */
/* SP 版: 画面下に幅いっぱいの帯ボタン */
.floating_cta_sp {
  position: fixed;
  top: calc(var(--mv-h) - calc((100vw / var(--vw-sp)) * 70));
  bottom: auto;
  right: calc((100vw / var(--vw-sp)) * 5);
  z-index: 10;
}
.floating_cta_sp_inner {
  margin: 0 auto;
  width: calc((100vw / var(--vw-sp)) * 127);
}
@media (min-width: 801px) {
  .floating_cta_sp {
    /* 100 は MV底からはみ出すボタンの量(px)。
       ボタンを下げたい→値を小さく / 上げたい→値を大きく */
    top: calc(var(--mv-h) - 250px);
    bottom: auto;
  }
  .floating_cta_sp_inner {
    width: 180px;
  }
}

/* リンク（SP/PC 共通） */
.floating_cta_link {
  display: block;
  padding: 0;
  border: 0;
  background-color: transparent;
  opacity: 1;
  transition: opacity 1.2s;
}
.floating_cta_link.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.floating_cta_link:hover {
  cursor: pointer;
}
.floating_cta_link:active {
  transform: translateY(calc((100vw / var(--vw-sp)) * 2));
}
@media (min-width: 801px) {
  .floating_cta_link:active {
    transform: translateY(2px);
  }
}

/* 画像（ホバーで明度アップ） */
.floating_cta_image {
  transition: filter .6s var(--ease-rintosull-out);
}
.floating_cta_image:hover {
  filter: brightness(1.1);
}
/* キラリンアニメーション(.shine_inner)はENBOX固有装飾だったため削除済み。
   必要なブランドでは top.css で実装してください。 */

/* =============================================================================
 * セクション見出しの共通スタイル
 *   各セクションの <h2> "CAMPAIGN / ABOUT / WHY / PLAN / STUDIO / TRIAL"
 *   英字大見出し + 左側に小さな円ドット装飾 + 下に和文サブタイトル。
 *
 *   使い方:
 *     <h2 class="section_title campaign_title">
 *       CAMPAIGN
 *       <small class="section_title_sub">開催中のキャンペーン</small>
 *     </h2>
 *
 *   セクションごとに違う margin-bottom / letter-spacing は
 *   .campaign_title / .about_title 等の派生クラスで上書きする。
 * ========================================================================== */
.section_title {
  display: block;
  margin: 0;
  font-family: var(--font-display-light);
  font-weight: 500;
  font-size: calc((100vw / var(--vw-sp)) * 32);
  line-height: 1;
  color: var(--text-base);
  text-align: center;
  letter-spacing: 0.15em;
}
@media (min-width: 801px) {
  .section_title {
    font-size: calc((100vw / var(--vw-pc)) * 36);
  }
}

/* 和文サブタイトル（<small>） */
.section_title_sub {
  display: block;
  margin-top: calc((100vw / var(--vw-sp)) * 13);
  font-family: var(--font-basic);
  font-weight: 500;
  font-size: calc((100vw / var(--vw-sp)) * 16);
  line-height: 1.6;
  letter-spacing: 0;
  color: var(--text-base);
  font-feature-settings: "halt" 1;
  position: relative;
}
.section_title_sub:before {
  content: '';
  display: block;
  width: calc((100vw / var(--vw-sp)) * 35);
  height: calc((100vw / var(--vw-sp)) * 2);
  background: var(--brand-primary);
  position: absolute;
  top: calc((100vw / var(--vw-sp)) * -5);
  left: 0;
  right: 0;
  margin: auto;
}
@media (min-width: 801px) {
  .section_title_sub {
    margin-top: 28px;
    font-size: 26px;
  }
  .section_title_sub:before {
    width: calc((100vw / var(--vw-pc)) * 72);
    height: calc((100vw / var(--vw-pc)) * 4);
  }
}
.section_title_sub span.section_title_sub_big {
  font-size: calc((100vw / var(--vw-sp)) * 34);
  line-height: 0.8;
}
@media (min-width: 801px) {
  .section_title_sub span.section_title_sub_big {
    font-size: 38px;
  }
}
.section_title_sub span.section_title_sub_big_more {
  font-size: calc((100vw / var(--vw-sp)) * 45);
}
@media (min-width: 801px) {
  .section_title_sub span.section_title_sub_big_more {
    font-size: 49px;
  }
}

/* =============================================================================
 * reveal 系（読み込み時 / スクロール時の演出）
 *   初期は opacity:0 と移動オフセット付与。
 *   JS (script.js) が読み込み完了タイミングで inline style に
 *   transition:none / opacity:1 / transform:none / margin-top:0 を当て
 *   ぱっと表示する（背景タブで止まる事故を避けるため transition も消す）。
 * ========================================================================== */
.reveal_up, .reveal_right, .reveal_left, .reveal_mt, .why_point_reveal_right, .why_point_reveal_left {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal_up {
  transform: translateY(15px);
}
.reveal_right {
  transform: translateX(15px);
}
.reveal_left {
  transform: translateX(-15px);
}
.reveal_mt {
  margin-top: 15px;
}
@media (max-width: 800px) {
  .why_point_reveal_right {
    transform: translateY(15px);
  }
  .why_point_reveal_left {
    transform: translateY(-15px);
  }
}
@media (min-width: 801px) {
  .why_point_reveal_right {
    transform: translateX(15px);
  }
  .why_point_reveal_left {
    transform: translateX(-15px);
  }
}
.reveal_up.is-visible,
.reveal_right.is-visible,
.reveal_left.is-visible,
.reveal_mt.is-visible,
.why_point_reveal_right.is-visible,
.why_point_reveal_left.is-visible {
  opacity: 1;
  transform: none;
}
