@charset "UTF-8";

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  background: #ffffff;
  color: #113221;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}

main {
  background: #ffffff;
  position: relative;
}

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

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

ul {
  list-style: none;
}

/* ========== CSS VARIABLES ========== */
:root {
  --red: #D4AF37;
  --red-bright: #F5D76E;
  --red-dark: #AA8C2C;
  --black: #ffffff;
  --black-2: #F7F9F8;
  --black-3: #E9EFEA;
  --white: #113221;
  --white-dim: rgba(17, 50, 33, 0.08);
  --gray: #888;
  --section-gap-sp: 80px;
  --section-gap-pc: 140px;
  --max-width: 1200px;
  --side-pad-sp: 20px;
  --side-pad-pc: 40px;
}

/* ========== UTILITY ========== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad-sp);
}

.section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.section-heading {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 32px;
}

.section-heading.red {
  color: var(--red);
}

.red-line {
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-bottom: 24px;
}

/* ========== HEADER ========== */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.5);
  height: 64px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad-sp);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.header-logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
}

.header-logo-text {
  font-size: 11px;
  font-weight: 700;
  color: #113221;
  line-height: 1.3;
}

.sp-br {
  display: block;
}

.header-nav {
  display: none;
}

.header-btns-wrap {
  display: none;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--red);
  color: var(--white);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  height: 40px;
  width: 144px;
  padding: 0 16px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-btn:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
}

.header-btn-official {
  background: #113221;
  border: 1px solid #113221;
}

.header-btn-official:hover {
  background: #1A4731;
  border-color: #1A4731;
}

.hamburger {
  width: 36px;
  height: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  background: #333333;
  transition: all 0.3s;
}

/* ========== FULLSCREEN MENU ========== */
#fullscreen-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

#fullscreen-menu.open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-close::before {
  content: "×";
  font-size: 24px;
  line-height: 1;
  color: var(--red);
}

.menu-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.menu-nav a {
  font-family: 'Anton SC', sans-serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}

.menu-nav a:hover {
  color: var(--red);
}

.menu-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  margin: 32px 0 0 0;
}

.menu-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 52px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.menu-action-btn-official {
  background: #113221;
  color: #ffffff;
  border: 1px solid #113221;
}

.menu-action-btn-official:hover {
  background: #1A4731;
  border-color: #1A4731;
}

.menu-action-btn-contact {
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
}

.menu-action-btn-contact:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
}

.menu-tel {
  margin-top: 32px;
  text-align: center;
}

.menu-tel a {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  color: var(--red);
  letter-spacing: 0.08em;
}

/* ========== FV ========== */
#fv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 10;
  background: #113221;
}

/* 鬮ｯ・ｷ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ蜿･・ｹ・｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬯ｮ・｢繝ｻ・ｽE繝ｻ・ｽ髫ｴ・ｴ繝ｻ・ｽE繝ｻ・ｽ髯ｷ謳ｾ・ｽ・ｹ鬯ｨ・ｾ陋ｹ繝ｻ繝ｻ・ｽ繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ・ｷ陷ｻ莠･・ｾ證ｦ・ｿ・ｽE繝ｻ・ｽE繝ｻ・ｽ鬯ｩ蟷｢・ｿ・ｽE繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ諛ｶ・ｽ・｣郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ・ｷ繝ｻ・ｽ?髯ｷ・･闕ｵ證ｦ・ｽ繝ｻ繝ｻ・ｽ繝ｻ・ｽ繝ｻ・ｻ驛｢譎｢・ｽ・ｻ*/
.fv-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url('../img/gallery1.jpg') center center / cover no-repeat;
  z-index: 1;
}

@media (min-width: 992px) {
  .fv-bg-image {
    width: 68%;
  }
}

/* 鬮ｯ譎｢・ｽ・ｾ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ蜿･・ｹ・｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｫ・ｴ遶擾ｽｵ郢ｹ・ｱ郢晢ｽｻ遶擾ｽｫ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驛｢譎｢・ｽ・ｨ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隰ｨ蜴・ｽｿ・ｽ?鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ*/
.fv-overlay-shape {
  position: absolute;
  inset: 0;
  background: rgba(17, 50, 33, 0.85);
  /* SP鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ・ｷ髣鯉ｽｨ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬮｣蜴・ｽｽ・ｴ鬮ｦ・ｮ陷ｻ・ｻ繝ｻ・ｽE繝ｻ・ｽ陜｣・､繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴弱・・ｿ・ｽE驛｢譎｢・ｽ・ｻ */
  z-index: 2;
}

@media (min-width: 992px) {
  .fv-overlay-shape {
    background: #113221;
    width: 52%;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    z-index: 2;
  }
}

.fv-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 var(--side-pad-sp);
}

@media (min-width: 992px) {
  .fv-content-container {
    padding: 0 var(--side-pad-pc);
  }
}

.fv-text-block {
  max-width: 460px;
  /* 鬯ｩ閧ｴ蠕励・・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ髮趣ｽｼ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬯ｯ・ｯ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ隲幄肩・ｽ・ｲ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ・ｷ繝ｻ・ｽE繝ｻ・ｽ髯滓汚・ｽ・ｱ驕ｶ謫ｾ・ｽ・ｪ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ髣包ｽｵ隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ髢ｧ・ｲ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻ驍ｵ・ｺ陝ｶ・ｷ繝ｻ・ｽE繝ｻ・ｽ隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ蜈ｷ・ｽ・ｹ驛｢譎｢・ｽ・ｻ*/
  color: #ffffff;
  text-align: left;
}

/* 鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驍ｵ・ｺ闕ｵ貊ゑｽｽ・ｹ隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ */
.fv-category-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.fv-category-line {
  display: block;
  width: 3px;
  height: 16px;
  background: var(--red);
}

.fv-category-text {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.8);
}

/* 鬯ｮ・ｮ隲幢ｽｶ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ諛ｶ・ｽ・｣郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ譎｢・ｽ・ｾ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮｣雋ｻ・ｿ・ｽ髣包ｽｵ隴擾ｽｴ・趣ｽ｣鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ驍ｵ・ｺ郢晢ｽｻ*/
.fv-badge-wrap {
  margin-bottom: 24px;
}

.fv-badge {
  display: inline-block;
  background: #0f172a;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 36px 6px 20px;
  position: relative;
  overflow: hidden;
}

.fv-badge::after {
  content: '';
  position: absolute;
  top: 0;
  right: -10px;
  width: 25px;
  height: 100%;
  background: var(--red);
  transform: skewX(-20deg);
}

/* 鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴主・讓溘・・ｽE繝ｻ・ｽ繝ｻ・ｽE*/
.fv-main-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(34px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.35;
  color: #ffffff;
  margin: 0 0 24px 0;
  letter-spacing: 0.05em;
}

/* 鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴弱・繝ｻ・ｽ繝ｻ・ｽ驍ｵ・ｺ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴主・讓溘・・ｽE繝ｻ・ｽ繝ｻ・ｽE*/
.fv-sub-title {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.fv-sub-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--red);
}

/* 鬯ｮ・ｫ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｫ・ｴ闕ｳ讒ｫ蠕宣垓・ｫ郢晢ｽｻ*/
.fv-desc {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
}

/* 鬩幢ｽ｢隴弱・繝ｻ・ｽ繝ｻ・ｽ驍ｵ・ｺ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ */
.fv-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.fv-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 200px;
  height: 52px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fv-btn-red {
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
}

.fv-btn-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
}

.fv-btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.fv-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.fv-scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fv-scroll span {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: #fff;
}

.fv-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, #fff, transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }

  50% {
    transform: scaleY(1);
    transform-origin: top;
  }

  51% {
    transform-origin: bottom;
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ========== SECTION SPACING ========== */
section {
  margin-bottom: 0;
  padding: 70px 0;
  position: relative;
  z-index: 2;
  background: #0a0a0a;
}

/* ========== CTA BLOCK ========== */
.cta-block {
  background: var(--red);
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 48px var(--side-pad-sp);
  overflow: hidden;
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.cta-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cta-col:first-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 24px;
}

.cta-block .cta-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  display: block;
  margin-bottom: 10px;
}

.cta-tel-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(28px, 6vw, 42px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
}

.cta-btn-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  height: 56px;
  padding: 0 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: 5px;
}

.cta-btn-link>span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cta-tel-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-btn-link:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.cta-tel-link .tel-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.cta-btn-link .btn-icon {
  width: 36px;
  height: 36px;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--red);
}

.cta-block p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .cta-container {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .cta-col:first-child {
    border-bottom: none;
    padding-bottom: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
}

/* ========== ABOUT ========== */
#about {
  padding: 70px 0;
  position: relative;
  background: #ffffff;
  color: #333333;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  filter: saturate(1.15) contrast(1.05);
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(204, 0, 0, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: 16px;
  background: var(--red);
  padding: 12px 20px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffffff;
}

.about-body {
  padding-top: 32px;
}

.about-heading-custom {
  margin-bottom: 28px;
}

.about-title-sub {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 20px !important;
  /* SP鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ 20px */
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #333333;
  display: block;
  margin-bottom: 0px !important;
}

.about-title-main {
  font-family: 'Noto Sans JP', sans-serif !important;
  font-size: 36px !important;
  font-weight: 900;
  line-height: 1.3 !important;
  color: #333333;
  display: block;
  word-break: keep-all;

}

.about-body p {
  font-size: 16px;
  color: #555555;
  line-height: 1.95;
}

.about-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 600px) {
  .about-actions {
    flex-direction: row;
    gap: 20px;
  }
}

.about-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 280px;
  height: 52px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-btn-official {
  background: #333333;
  color: #ffffff;
}

.about-btn-official:hover {
  background: #555555;
  transform: translateY(-2px);
}

.about-btn-recruit {
  background: var(--red);
  color: #ffffff;
}

.about-btn-recruit:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
}

.about-name-en {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

/* ========== WORKS ========== */
#works {
  background: #f5f5f5;
  padding: 80px 0;
  color: #333333;
}

.works-inner {
  padding: 0 var(--side-pad-sp);
}

.works-head {
  text-align: center;
  margin-bottom: 48px;
}

.works-head .section-heading {
  font-size: clamp(40px, 10vw, 80px);
  margin-bottom: 8px;
  color: #333333;
}

.works-lead {
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.works-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 28px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: background 0.3s, border-color 0.3s;
  cursor: default;
}

.works-card:hover {
  background: rgba(204, 0, 0, 0.04);
  border-color: rgba(204, 0, 0, 0.35);
}

.works-card-num {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0em;
  color: var(--red);
  align-self: flex-start;
}

.works-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.works-card-img {
  max-width: 150%;
  max-height: 150%;
  object-fit: contain;
}

.works-card-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #333333;
  text-align: center;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .works-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .works-card {
    padding: 32px 24px 28px;
  }

  .works-card-icon {
    width: 72px;
    height: 72px;
  }

  .works-card-title {
    font-size: 20px;
  }
}

@media (min-width: 950px) {
  .works-inner {
    padding: 0 var(--side-pad-pc);
  }
}

/* ========== TROUBLE (鬮ｫ・ｴ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ譎｢・ｽ・ｾ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬮ｯ讖ｸ・ｽ・ｳ髮九・繝ｻ・ｽ繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ) ========== */
#trouble {
  background-color: var(--red);
  background-image: linear-gradient(rgb(234 179 179 / 80%), rgba(204, 0, 0, 0.8)), url('../img/REPESENTATIVEbg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 60px var(--side-pad-sp);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {
  #trouble {
    position: relative;
    background: none !important;
    isolation: isolate;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
  }

  #trouble::before {
    content: '';
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 0;
    pointer-events: none;
    background-color: var(--red);
    background-image: linear-gradient(rgb(234 179 179 / 80%), rgba(204, 0, 0, 0.8)), url('../img/REPESENTATIVEbg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }

  #trouble>* {
    position: relative;
    z-index: 1;
  }
}

.trouble-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 0;
}

.trouble-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.trouble-header .section-label {
  margin-bottom: 0;
  color: #ffffff;
}

.trouble-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 5vw, 28px);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin: 0;
}

.trouble-lead {
  font-size: 16px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  margin: 0;
}

.trouble-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  background: #ffffff;
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}

.trouble-cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--red-bright);
}

.trouble-works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trouble-works-card {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s;
}

.trouble-works-card:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.5);
}

.trouble-works-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.trouble-works-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9) grayscale(10%);
  transition: transform 0.6s ease, filter 0.4s ease;
}

.trouble-works-card:hover .trouble-works-img-wrap img {
  transform: scale(1.05);
  filter: brightness(1) grayscale(0%);
}

.trouble-works-body {
  padding: 16px 16px 18px;
  text-align: center;
}

.trouble-works-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.5;
}

@media (min-width: 600px) {
  .trouble-works-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 950px) {
  #trouble {
    padding: 60px var(--side-pad-pc);
  }

  .trouble-inner {
    grid-template-columns: 260px 1fr;
    gap: 0 48px;
    align-items: start;
  }

  .trouble-header {
    position: sticky;
    top: 80px;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    padding-right: 40px;
  }

  .trouble-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* ========== SERVICE ========== */
#service {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
}

#service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/servicebg.jpg') center center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

#service .section-label {
  color: var(--red);
}

#service .section-heading {
  color: #333333;
}

#service .service-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#service .service-card-body h3 {
  color: #ffffff;
}

#service .service-card-body p {
  color: rgba(255, 255, 255, 0.9);
}

#service .service-point-label {
  color: var(--red);
}

#service .service-num {
  color: rgba(255, 255, 255, 0.15);
}

#service .h3-line {
  background: var(--red);
}

.service-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad-sp);
}

/* SP: stacked cards with full image */
.service-sticky-wrap {
  display: block;
}

.service-sticky-head {
  padding: 0 var(--side-pad-sp);
  margin-bottom: 0;
  overflow: visible;
}

.service-sticky-head .section-heading {
  font-size: clamp(40px, 8vw, 64px);
  white-space: nowrap;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 560px;
}

.service-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: saturate(0.8);
}

.service-card:hover .service-card-img {
  transform: scale(1.06);
}

/* Black gradient from bottom to half */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.6) 30%,
      rgba(0, 0, 0, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 80px 32px 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
}

.service-num {
  font-family: 'Oswald', sans-serif;
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  letter-spacing: -0.02em;
}

.service-point-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 5vw, 34px);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-card h3 .h3-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--red);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 16px;
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.95;
  max-width: 100% !important;
}

.service-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  background: var(--red);
  color: #ffffff !important;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 28px;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(204, 0, 0, 0.2);
}

.service-btn:hover {
  background: var(--red-bright);
  color: #ffffff !important;
}

/* ========== PHOTO STRIP ========== */
.photo-strip {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: var(--section-gap-sp);
  position: relative;
  z-index: 2;
  background: #ffffff;
}

.photo-strip-inner {
  display: flex;
  gap: 3px;
}

.photo-strip-img {
  flex: 1;
  height: 200px;
  background-size: cover;
  background-position: center;
  filter: grayscale(40%) brightness(0.75);
  transition: filter 0.4s, flex 0.4s;
}

.photo-strip-img:hover {
  filter: grayscale(0%) brightness(0.9);
  flex: 2;
}

@media (min-width: 768px) {

  /* Photo Strip PC gap */
  .photo-strip {
    margin-bottom: 0;
    padding-bottom: var(--section-gap-pc);
  }

  .photo-strip-img {
    height: 480px;
  }
}

/* ========== MENU / PRICE ========== */
#menu {
  background: var(--black-2);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/menu.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.22;
  /* 鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ髯具ｽｹ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ鬯倩ｲｻ・ｽ・ｸ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩搾ｽｵ繝ｻ・ｽE繝ｻ・ｽ鬯ｮ・ｦ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ鬯倩ｲｻ・ｽ・ｸ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ */
  pointer-events: none;
  z-index: 1;
}

#menu::after {
  content: 'MENU';
  position: absolute;
  left: -10px;
  bottom: -20px;
  font-family: 'Anton SC', sans-serif;
  /* Unified font */
  font-size: 140px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  letter-spacing: 0.1em;
  pointer-events: none;
  z-index: 0;
}

.menu-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 10;
  /* Ensure text is above background pseudo-elements */
}

.menu-list {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.menu-name {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.menu-desc {
  font-size: 16px;
  color: #fff;
  /* Re-adjusted for visibility */
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.menu-price {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 400;
  color: var(--red);
  white-space: nowrap;
  letter-spacing: 0.05em;
  align-self: center;
}

/* ========== RECRUIT ========== */
#recruit {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  color: #333333;
  padding: 0;
}

/* 鬩幢ｽ｢隴取得・ｿ・ｽE驛｢譎｢・ｽ・ｻ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻ繝ｻ・ｽ?陋ｹ繝ｻ繝ｻ・ｽ繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ髣費ｽｨ遶上・繝ｻ・ｽ繝ｻ・ｽ郢晢ｽｻ驛｢譎｢・ｽ・ｻ*/
.recruit-hero {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.3) 100%),
    url('../img/gallery1.jpg') center center / cover no-repeat;
  padding: 80px 0;
  color: #ffffff;
  position: relative;
}

.recruit-hero-content {
  max-width: 650px;
}

.recruit-red-line {
  width: 32px;
  height: 4px;
  background: var(--red);
  margin-bottom: 20px;
}

.recruit-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  margin: 0;
}

.recruit-hero-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 4px;
  margin-bottom: 40px;
}

.recruit-hero-lead {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 28px;
}

.recruit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.recruit-tag {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.recruit-tag .tag-icon {
  background: var(--red);
  color: #ffffff;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}

.recruit-hero-desc {
  font-size: clamp(14px, 2.5vw, 16px);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* 鬩幢ｽ｢隴弱・繝ｻ・ｽ繝ｻ・ｽ驛｢譎｢・ｽ・ｧ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻ繝ｻ・ｽ?陋ｹ繝ｻ繝ｻ・ｽ繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩墓得・ｽ・ｩ繝ｻ・ｽE繝ｻ・ｽ陞｢・ｹ郢晢ｽｻ驛｢譎｢・ｽ・ｻ*/
.recruit-body {
  background: #ffffff;
}

.price-section {
  padding: 80px 0;
}

.recruit-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px 48px;
  margin-bottom: 64px;
}

@media (min-width: 992px) {
  .recruit-columns {
    grid-template-columns: 1fr 1fr;
  }
}

.recruit-col {
  position: relative;
}

.recruit-col-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(24px, 4vw, 28px);
  font-weight: 700;
  color: #333333;
  margin-top: 12px;
  margin-bottom: 32px;
}

.recruit-col-title .color-red {
  color: var(--red);
}

.recruit-appeal-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

@media (min-width: 600px) {
  .recruit-appeal-wrap {
    flex-direction: row;
    align-items: flex-start;
  }
}

.recruit-appeal-text {
  font-size: 16px;
  line-height: 1.9;
  color: #555555;
  flex: 1;
  width: 100%;
}

.recruit-appeal-img {
  width: 240px;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .recruit-appeal-img {
    width: 140px;
  }
}

.recruit-appeal-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 鬯ｩ諷包ｽｴ蜈ｷ・ｽ・ｸ隶壹・・ｿ・ｽE鬮ｯ・ｷ繝ｻ・ｽE繝ｻ・ｽ髯樊ｺ假ｽ・ｹ晢ｽｻ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴擾ｽｴ郢晢ｽｻ*/
.recruit-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.recruit-info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #333333;
  flex-shrink: 0;
}

.card-icon-wrap svg {
  color: #333333;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-title-bold {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.card-desc-small {
  font-size: 16px;
  color: #777777;
  margin: 2px 0 0 0;
}

/* 鬩幢ｽ｢隴弱・繝ｻ・ｽ繝ｻ・ｽ隴∫浹證ｮﾎ斐・・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻ髯具ｽｹ繝ｻ・ｽE繝ｻ・ｽ驍ｵ・ｺ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢繝ｻ・ｽE繝ｻ・ｽ郢晢ｽｻ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴弱・繝ｻ・ｽ繝ｻ・ｽ驍ｵ・ｺ繝ｻ・ｽE繝ｻ・ｽ鬩幢ｽ｢隴趣ｽ｢繝ｻ・ｽE繝ｻ・ｽ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻ驛｢譎｢・ｽ・ｻ*/
.recruit-footer {
  text-align: center;
  margin-top: 60px;
}

.recruit-footer-line-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.recruit-footer-line-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: #e0e0e0;
  z-index: 1;
}

.recruit-footer-line-text {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  background: #ffffff;
  padding: 0 24px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.1em;
}

.recruit-footer-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 600px) {
  .recruit-footer-actions {
    flex-direction: row;
    gap: 24px;
  }
}

.recruit-action-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 320px;
  height: 56px;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.recruit-action-red {
  background: var(--red);
  color: #ffffff;
  border: 1px solid var(--red);
}

.recruit-action-red:hover {
  background: var(--red-bright);
  border-color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(204, 0, 0, 0.2);
}

.recruit-action-white {
  background: #ffffff;
  color: #333333;
  border: 1.5px solid #333333;
}

.recruit-action-white:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
}

.btn-arrow {
  position: relative;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  display: inline-block;
}

/* ========== MESSAGE ========== */
#message {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
  z-index: 1;
}

#message::before {
  display: none;
}

#message .section-label {
  color: #888888;
}

#message .section-heading {
  color: #333333;
}

#message .h3-line {
  background: var(--red);
}

#message .red-line {
  background: var(--red);
}

.message-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.message-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.message-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-subheading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 32px !important;
  font-weight: 700;
  color: var(--red);
  margin-top: 24px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.message-text-static {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
  color: #666666;
  padding: 16px 0;
}

.message-quote-wrap {
  text-align: center;
  margin-top: 60px;
  background: #0a0a0a;
  padding: 80px var(--side-pad-sp);
}

.message-quote {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(20px, 5vw, 36px);
  font-weight: 700;
  line-height: 1.5;
  color: var(--white);
  padding: 0;
  display: inline-block;
  max-width: 900px;
  width: 100%;
}

.quote-emphasize {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: inherit;
  font-weight: 900;
  color: var(--red);
  -webkit-text-stroke: 0;
  vertical-align: baseline;
  line-height: inherit;
  display: inline;
}

.message-quote em {
  color: var(--red);
  font-style: normal;
}

/* ========== ACCESS ========== */
#access {
  padding: 70px 0;
  background: #f5f5f5;
  color: #333333;
}

#access .section-heading {
  color: #333333;
}

.access-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.access-info dt {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 4px;
  margin-top: 20px;
}

.access-info dt:first-child {
  margin-top: 0;
}

.access-info dd {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
}

.access-info dd a {
  color: var(--red);
  border-bottom: 1px solid rgba(204, 0, 0, 0.4);
  transition: border-color 0.2s;
}

.access-info dd a:hover {
  border-color: var(--red);
}

.sns-buttons {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 16px;
  color: var(--white);
  transition: all 0.2s;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.08em;
}

.sns-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.sns-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.map-wrap {
  width: 100%;
  height: 450px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FOOTER ========== */
#footer {
  background: var(--black-2);
  border-top: 1px solid rgba(204, 0, 0, 0.3);
  padding: 48px var(--side-pad-sp) 32px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo-img {
  height: 36px;
  width: auto;
  margin-bottom: 24px;
  display: block;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 245, 245, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--red);
}

.footer-copy {
  font-size: 16px;
  color: rgba(245, 245, 245, 0.3);
  letter-spacing: 0.1em;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 24px 0;
}

/* ========== BACK TO TOP ========== */
#back-top {
  position: fixed;
  bottom: 80px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--red);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

#back-top.visible {
  opacity: 1;
  pointer-events: all;
}

#back-top:hover {
  background: var(--red-bright);
}

/* ========== SP FIXED CTA ========== */
#sp-fixed-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2100;
  height: 56px;
}

.sp-cta-tel {
  flex: 1;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}

.sp-cta-web {
  flex: 1;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  border-left: 1px solid rgba(204, 0, 0, 0.3);
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ========== PC STYLES ========== */
@media (min-width: 768px) {
  :root {
    --side-pad-sp: var(--side-pad-pc);
  }

  body {
    padding-bottom: 0;
  }

  #sp-fixed-cta {
    display: none;
  }

  #back-top {
    bottom: 32px;
    right: 32px;
  }

  /* Header */
  .header-logo-img {
    height: 54px;
  }

  .header-logo-text {
    font-size: 15px;
  }

  .sp-br {
    display: none;
  }

  .header-inner {
    max-width: 100% !important;
    padding: 0 40px;
  }

  .header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    margin-right: 32px;
  }

  .header-nav a {
    font-family: 'Anton SC', sans-serif;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #333333;
    transition: color 0.2s;
  }

  .header-nav a:hover {
    color: var(--red);
  }

  .header-btns-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hamburger {
    display: none;
  }

  /* Sections */
  section {
    margin-bottom: 0;
    padding: 100px 0;
  }

  .cta-block {
    padding: 64px var(--side-pad-pc);
  }

  /* About */
  #about {
    padding: 100px 0;
  }

  .about-inner {
    grid-template-columns: 45% 1fr;
    gap: 64px;
    align-items: start;
  }

  .about-body {
    padding-top: 0;
  }

  .about-title-sub {
    font-size: 20px !important;
  }

  .about-title-main {
    font-size: 36px !important;

  }

  /* Service 鬩包ｽｯ繝ｻ・ｽE繝ｻ・ｽ驛｢譎｢・ｽ・ｻsticky left */
  .service-sticky-wrap {
    display: grid;
    grid-template-columns: calc(max(var(--side-pad-pc), (100vw - var(--max-width)) / 2) + 340px) 1fr;
    align-items: start;
    gap: 0;
    width: 100%;
  }

  .service-sticky-head {
    position: sticky;
    top: 80px;
    align-self: start;
    padding-left: max(var(--side-pad-pc), calc((100vw - var(--max-width)) / 2));
    padding-right: 48px;
    box-sizing: border-box;
  }

  .service-cards {
    flex-direction: column;
    overflow: hidden;
  }

  .service-card {
    min-height: 500px;
  }

  /* Voice */
  .voice-card {
    flex: 0 0 calc(50% - 8px);
  }

  /* Message */
  .message-inner {
    grid-template-columns: 40% 1fr;
    gap: 64px;
    align-items: center;
  }

  /* Access */
  .access-grid {
    grid-template-columns: 38% 1fr;
    gap: 48px;
  }

  .map-wrap {
    height: 480px;
  }

  /* Footer */
  .footer-inner {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 48px;
    align-items: end;
  }

  .footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .footer-nav {
    justify-content: flex-end;
  }
}

@media (min-width: 1024px) {
  .service-card {
    min-height: 540px;
  }

  .voice-card {
    flex: 0 0 calc(33.33% - 12px);
  }
}

/* Body padding for SP fixed CTA */
.sp-only {
  display: none !important;
}

@media (max-width: 949px) {
  body {
    padding-bottom: 56px;
  }

  .sns-buttons {
    justify-content: center;
  }

  .sp-only {
    display: block !important;
  }
}

.first-letter {
  color: #d0090d !important;
}

/* =========================================================================
 FAQ & FLOW Section Styles
========================================================================= */
.faq-details {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.faq-summary {
  padding: 20px;
  font-weight: bold;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  font-size: 16px;
  position: relative;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  color: var(--white);
  font-size: 24px;
}

.faq-details[open] .faq-summary::after {
  content: '-';
  color: var(--red);
}

.faq-details[open] .faq-summary .faq-q-icon {
  color: var(--red);
}

.faq-q-icon {
  color: var(--white);
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
}

.faq-answer {
  padding: 20px;
  background: var(--white);
  color: #fff;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.faq-a-icon {
  font-size: 24px;
  font-family: 'Oswald', sans-serif;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .flow-line {
    display: block !important;
  }
}

/* =========================================================================
 NEW REDESIGN STYLES (PRICE)
========================================================================= */
:root {
  --c-golf: #113221;
  --c-fitness: #b3884b;
  --c-bg: #fafafa;
  --c-light: #f4f6f5;
  --c-border: #e2e8e4;
}

.price-section {
  padding: 100px 0;
  background: var(--c-bg);
  position: relative;
}

.price-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.price-bg-text {
  font-family: 'Anton SC', serif;
  font-size: 120px;
  color: rgba(17, 50, 33, 0.08);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  line-height: 1;
  pointer-events: none;
}

.price-heading-main {
  font-family: 'Noto Serif JP', serif;
  color: var(--c-golf);
  font-size: 56px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.05em;
}

.price-label {
  color: var(--c-golf);
  font-weight: bold;
  position: relative;
  z-index: 1;
}

.price-tax-note {
  font-size: 16px;
  color: #333;
  margin-top: 24px;
  position: relative;
  z-index: 1;
  font-weight: bold;
}

/* Campaign Banner */
.price-campaign-banner {
  background: #FDFBF5;
  border: 1px solid var(--c-fitness);
  border-radius: 8px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.campaign-content-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #333;
  font-weight: bold;
}

.campaign-tag-icon {
  color: var(--c-fitness);
  flex-shrink: 0;
}

.campaign-text {
  font-size: 18px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.campaign-text .arrow {
  color: var(--c-fitness);
  margin: 0 4px;
}

.campaign-text .highlight {
  color: var(--c-fitness);
  font-size: 24px;
  font-weight: 900;
}

.campaign-text .slash {
  color: var(--c-fitness);
  font-weight: 300;
  margin: 0 8px;
}

/* Golf Plan */
.plan-area-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: bold;
}

.golf-title {
  color: var(--c-golf);
}

.plan-icon {
  width: 32px;
  height: 32px;
}

.golf-grid-main {
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.card-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c-golf);
  color: #fff;
  padding: 4px 20px;
  border-radius: 8px 0 16px 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
}

/* Golf Full Card Updates */
.golf-grid-main {
  max-width: var(--max-width);
  margin: 0 auto 40px;
}

.golf-card-full {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  position: relative;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.golf-card-full-inner {
  display: flex;
  align-items: center;
  padding: 32px;
  gap: 32px;
  flex-wrap: wrap;
}

.plan-icon {
  color: var(--c-golf);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.golf-full-left {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.golf-full-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.golf-full-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.golf-full-price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.golf-full-price .price-num {
  font-size: 40px;
  font-family: 'Anton SC', sans-serif;
  color: #b3884b;
  line-height: 1;
}

.golf-full-right {
  flex: 1;
  min-width: 280px;
}

.golf-feature-list {
  border-left: 1px solid #eee;
  padding-left: 32px;
  list-style: none;
  margin: 0;
}

.golf-feature-list li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #333;
}

.check-icon-svg {
  color: var(--c-fitness);
  flex-shrink: 0;
}

/* Plan Card Sub */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card-sub {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.plan-card-sub-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  color: #333;
}

.plan-card-sub-head svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-card-sub-titles {
  text-align: left;
}

.plan-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.plan-card-sub p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.plan-card-price {
  font-size: 32px;
  font-family: 'Anton SC', sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  color: var(--c-golf);
  line-height: 1;
}

.plan-card-note {
  background: #f5f5f5;
  color: #666;
  font-size: 16px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: auto;
}

/* Fitness Sub Card Prices */
.fitness-price-rows {
  margin-top: auto;
}

.fitness-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.fitness-price-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fitness-price-time {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.fitness-price-value {
  font-size: 28px;
  font-family: 'Anton SC', sans-serif;
  color: var(--c-fitness);
  font-weight: bold;
}

.single-row .fitness-price-row {
  justify-content: center;
  gap: 16px;
  border-bottom: none;
}

.single-row .fitness-price-value {
  font-size: 32px;
}

/* =========================================================================
 INFINITE SLIDER
========================================================================= */
.infinite-slider {
  width: 100%;
  overflow: hidden;
  background: var(--c-bg);
  display: flex;
}

.infinite-slider-track {
  display: flex;
  width: 200vw;
  /* 4 images = 100vw, duplicated = 200vw */
  animation: slideInfinite 30s linear infinite;
}

.infinite-slider-track img {}

.golf-full-left {
  flex: 1;
  text-align: center;
  min-width: 280px;
}

.golf-full-title {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 4px;
}

.golf-full-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 12px;
}

.golf-full-price {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.golf-full-price .price-num {
  font-size: 40px;
  font-family: 'Anton SC', sans-serif;
  color: var(--c-golf);
  line-height: 1;
}

.golf-full-right {
  flex: 1;
  min-width: 280px;
}

.golf-feature-list {
  border-left: 1px solid #eee;
  padding-left: 32px;
  list-style: none;
  margin: 0;
}

.golf-feature-list li {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #333;
}

.check-icon-svg {
  color: var(--c-fitness);
  flex-shrink: 0;
}

/* Plan Card Sub */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.plan-card-sub {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.plan-card-sub-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  color: #333;
}

.plan-card-sub-head svg {
  flex-shrink: 0;
  margin-top: 4px;
}

.plan-card-sub-titles {
  text-align: left;
}

.plan-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

.plan-card-sub p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.plan-card-price {
  font-size: 32px;
  font-family: 'Anton SC', sans-serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  color: var(--c-golf);
  line-height: 1;
}

.plan-card-note {
  background: #f5f5f5;
  color: #666;
  font-size: 16px;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  font-weight: bold;
  margin-top: auto;
}

/* Fitness Sub Card Prices */
.fitness-price-rows {
  margin-top: auto;
}

.fitness-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed #eee;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.fitness-price-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.fitness-price-time {
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.fitness-price-value {
  font-size: 28px;
  font-family: 'Anton SC', sans-serif;
  color: var(--c-fitness);
  font-weight: bold;
}

.single-row .fitness-price-row {
  justify-content: center;
  gap: 16px;
  border-bottom: none;
}

.single-row .fitness-price-value {
  font-size: 32px;
}

/* =========================================================================
 INFINITE SLIDER
========================================================================= */
.infinite-slider {
  width: 100%;
  overflow: hidden;
  background: var(--c-bg);
  display: flex;
}

.infinite-slider-track {
  display: flex;
  width: 200vw;
  /* 4 images = 100vw, duplicated = 200vw */
  animation: slideInfinite 30s linear infinite;
}

.infinite-slider-track img {
  width: 25vw;
  height: 25vw;
  /* Square images */
  max-height: 300px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
  /* Removes bottom gap */
}

@keyframes slideInfinite {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* Moves exactly 100vw (the first 4 images) */
  }
}

@media (max-width: 768px) {
  .infinite-slider-track {
    width: 400vw;
    /* SP: 2 images = 100vw, 4 = 200vw, duplicated = 400vw */
  }

  .infinite-slider-track img {
    width: 50vw;
    height: 50vw;
  }
}

/* Safety Box */
.safety-box-new {
  background: #EEF3F0;
  max-width: var(--max-width);
  margin: 0 auto;
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.safety-left {
  text-align: center;
  min-width: 150px;
}

.safety-icon {
  font-size: 48px;
  color: var(--c-golf);
  margin-bottom: 16px;
  line-height: 1;
}

.safety-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--c-golf);
}

.safety-right {
  flex: 1;
  min-width: 250px;
}

.safety-list {
  list-style-type: disc;
  padding-left: 20px;
  font-size: 16px;
  color: #333;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: bold;
}

@media (max-width: 767px) {
  .price-campaign-banner {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .campaign-deco-line {
    width: 60px;
    height: 1px;
  }

  .golf-card-full-inner {
    padding: 24px;
    gap: 24px;
  }
}

.voice-slider-wrap {
  position: relative;
}

.voice-nav-prev,
.voice-nav-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--c-golf);
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s;
}

.voice-nav-prev:hover,
.voice-nav-next:hover {
  background: var(--c-golf);
  color: #fff;
}

.voice-nav-prev {
  left: -24px;
}

.voice-nav-next {
  right: -24px;
}

@media (max-width: 1048px) {
  .voice-nav-prev {
    left: 0;
  }

  .voice-nav-next {
    right: 0;
  }
}

@media (max-width: 767px) {

  .voice-nav-prev,
  .voice-nav-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .voice-nav-prev {
    left: -5px;
  }

  .voice-nav-next {
    right: -5px;
  }
}

/* Voice Slider & Message */
.voice-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  padding-bottom: 24px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.voice-slider::-webkit-scrollbar {
  display: none;
}

.voice-card-slide {
  flex: 0 0 calc((100% - 48px) / 3);
  scroll-snap-align: start;
  background: #F7F9F8;
  padding: 32px 24px;
  border-radius: 12px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

@media (max-width: 991px) {
  .voice-card-slide {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 767px) {
  .voice-card-slide {
    flex: 0 0 85%;
    padding: 32px 32px;
  }
}

.voice-stars {
  color: #FFB800;
  font-size: 20px;
  margin-top: -12px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.sp-only {
  display: none;
}

.pc-only {
  display: inline;
}

@media (max-width: 767px) {
  .sp-only {
    display: inline;
  }

  .pc-only {
    display: none;
  }
}

padding: 80px 0;
}

.price-head {
  text-align: center;
  margin-bottom: 40px;
}

.price-head .section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}

.price-head .section-heading {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 400;
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 16px;
}

.price-tax-note {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

.price-campaign-banner {
  background: linear-gradient(135deg, var(--red) 0%, #F5D76E 100%);
  border-radius: 12px;
  padding: 32px 24px;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}



.plan-category {
  margin-bottom: 60px;
}

.category-title-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.category-title-en {
  font-family: 'Oswald', sans-serif;
  color: var(--c-fitness);
  font-size: 20px;
  letter-spacing: 0.1em;
  font-weight: bold;
}

.category-title-ja {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  color: #333;
  font-weight: bold;
  margin: 0;
}

.category-title-line {
  flex: 1;
  height: 1px;
  background: var(--c-fitness);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.fitness-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.plan-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 24px 32px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.plan-card.recommend {
  border: 2px solid var(--red);
}

.plan-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  font-size: 16px;
  letter-spacing: 0.1em;
}

.plan-card-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
}

.plan-card-sub {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  font-weight: 500;
}

.plan-card-price {
  font-family: 'Anton SC', sans-serif;
  font-size: 42px;
  color: var(--red);
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.plan-card-note {
  font-size: 16px;
  color: #444;
  background: #f4f6f5;
  padding: 8px 0;
  border-radius: 6px;
  font-weight: 700;
  margin-top: auto;
}

.plan-card-multi-price {
  text-align: left;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  margin-top: 10px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.plan-card-multi-price p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 22px;
  font-family: 'Anton SC', sans-serif;
  color: var(--red);
  margin-bottom: 16px;
  border-bottom: 1px dashed #dcdcdc;
  padding-bottom: 12px;
}

.plan-card-multi-price p:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.plan-card-multi-price span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  color: #444;
  font-weight: 700;
}

.plan-attention {
  font-size: 16px;
  color: #555;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.plan-attention p {
  margin-bottom: 6px;
  line-height: 1.6;
}

.plan-attention p:last-child {
  margin-bottom: 0;
}

.plan-options {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  margin-bottom: 80px;
}

.options-title {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--white);
  border-bottom: 2px solid #eaeaea;
  padding-bottom: 12px;
}

.options-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 16px;
  color: #333;
  font-weight: 500;
}

.options-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.options-list li span:last-child {
  font-weight: 700;
  color: var(--red);
  font-family: 'Anton SC', sans-serif;
  font-size: 20px;
  letter-spacing: 0.05em;
}

.safety-section {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--white);
}

.safety-title {
  font-family: 'Oswald', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.05em;
}

.safety-title span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  color: #666;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.safety-list li {
  font-size: 16px;
  color: #444;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  line-height: 1.8;
}

.safety-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: bold;
}

/* ========== NEW SERVICE SECTION ========== */
.service-section-new {
  background: #fff;
  padding: 80px 0 120px;
  position: relative;
  z-index: 2;
}

.service-head-new {
  text-align: center;
  margin-bottom: 60px;
}

.service-head-new .section-heading {
  font-family: 'Anton SC', sans-serif;
  font-size: clamp(40px, 8vw, 64px);
  margin-bottom: 8px;
  color: var(--white);
}

/* PC Layout */
.service-pc-layout {
  display: flex;
  align-items: flex-start;
  position: relative;
  width: 100%;
}

.service-left-sticky {
  width: 45%;
  position: sticky;
  top: calc(50vh - clamp(250px, 50vh - 100px, 350px));
  height: clamp(500px, 100vh - 200px, 700px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.service-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.service-img-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  z-index: 0;
  transition: opacity 0.7s ease-in-out;
}

.service-img-item.active {
  opacity: 1;
  z-index: 10;
}

.service-right-scroll {
  width: 55%;
  padding-left: 80px;
}

.service-text-block {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
  opacity: 0.4;
  transition: opacity 0.5s ease-in-out;
}

.service-text-block.active {
  opacity: 1;
}

/* Common Text Styling */
.svc-num-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.svc-num {
  color: var(--red);
  font-family: 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.svc-line {
  height: 2px;
  width: 48px;
  background: var(--red);
}

.svc-title-en {
  font-family: 'Anton SC', sans-serif;
  font-size: 48px;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.svc-title-ja {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 32px;
  line-height: 1.6;
}

.svc-desc {
  font-size: 16px;
  color: #555;
  line-height: 2;
}

.svc-equip {
  margin-top: 32px;
  background: #113221;
  ;
  padding: 24px;


}

.svc-equip-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.svc-equip-desc {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.8;
}

.service-sp-layout {
  display: none;
}

@media (max-width: 950px) {
  .service-pc-layout {
    display: none;
  }

  .service-sp-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }

  .service-sp-item {
    display: flex;
    flex-direction: column;
  }

  .service-sp-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }

  .service-sp-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .svc-title-en {
    font-size: 36px;
  }

  .svc-title-ja {
    font-size: 20px;
  }
}

/* ========== SERVICE STICKY PROGRESS NAV ========== */
.service-progress-nav {
  position: sticky;
  top: calc(50vh - 100px);
  margin: 0 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}

.progress-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.progress-item.active {
  opacity: 1;
}

.progress-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--white);
  background: transparent;
  margin-bottom: 8px;
  transition: background 0.3s, border-color 0.3s;
}

.progress-item.active .progress-circle {
  background: var(--red);
  border-color: var(--red);
}

.progress-num {
  font-family: 'Oswald', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.progress-line {
  width: 2px;
  height: 40px;
  background: var(--white);
  opacity: 0.3;
  margin-bottom: 8px;
}

/* ========== SERVICE LOOPING BACKGROUND TEXT ========== */
.service-bg-text-sticky {
  position: sticky;
  top: 50vh;
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.service-bg-text-wrap {
  position: absolute;
  top: -110px;
  /* Vertically center the 180px text around the 50vh mark */
  left: 0;
  width: 100%;
  overflow: hidden;
}

.service-bg-text-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

.service-bg-text-group {
  display: flex;
}

.service-bg-text-item {
  font-family: 'Anton SC', sans-serif;
  font-size: 180px;
  color: var(--white);
  opacity: 0.04;
  padding-right: 120px;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 950px) {
  .service-bg-text-wrap {
    top: -50px;
  }

  .service-bg-text-item {
    font-size: 80px;
    opacity: 0.02;
    padding-right: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-bg-text-track {
    animation: none;
  }
}

/* --- CUSTOM FITNESS SECTION STYLES --- */
.fitness-plans-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.fitness-plan-card {
  background: #fff;
  border-radius: 8px;
  position: relative;
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

/* Light Plan */
.fitness-plan-light {
  padding: 40px;
}

.fitness-card-tag {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--c-golf) !important;
  color: #fff;
  padding: 6px 24px;
  border-radius: 8px 0 16px 0;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.05em;
}

.fitness-light-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.fitness-light-left {
  flex: 1;
  max-width: 350px;
  text-align: center;
}

.fitness-icon {
  margin-bottom: 16px;
  line-height: 1;
  color: var(--c-golf);
}

.fitness-light-titles {
  margin-bottom: 24px;
}

.fitness-title-dark {
  color: var(--c-golf);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
}

.fitness-bottom-head .fitness-title-dark {
  font-size: 20px;
}

.fitness-desc {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.fitness-price-rows {
  display: flex;
  flex-direction: column;
}

.fitness-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px dashed #eee;
  padding: 12px 0;
}

.fitness-price-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fitness-price-time {
  font-size: 16px;
  color: #333;
  font-weight: bold;
}

.fitness-price-value {
  font-family: 'Anton SC', sans-serif;
  font-size: 28px;
  font-weight: bold;
}

.fitness-price-value.gold {
  color: var(--c-fitness);
}

.fitness-light-right {
  flex: 1;
}

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

.fitness-feature-list li {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fitness-feature-list li:last-child {
  margin-bottom: 0;
}

/* Bottom Row */
.fitness-bottom-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.fitness-bottom-row .fitness-plan-card {
  flex: 1;
  padding: 32px 24px;
  text-align: center;
}

.fitness-bottom-head {
  margin-bottom: 24px;
}

.fitness-divider {
  width: 100%;
  height: 1px;
  background-color: var(--c-fitness);
  margin: 16px 0;
  opacity: 0.5;
}

.fitness-price-center {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 16px;
  margin-top: 16px;
}

.fitness-price-center .fitness-price-time {
  font-size: 16px;
}

.fitness-price-center .fitness-price-value {
  font-size: 32px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .fitness-light-inner {
    flex-direction: column;
    gap: 32px;
  }

  .fitness-light-left {
    max-width: 100%;
  }

  .fitness-bottom-row {
    flex-direction: column;
  }

  .fitness-plan-light {
    padding: 32px 20px;
  }

  .fitness-feature-list li {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

/* --- OVERRIDES FROM USER REQUEST --- */
.price-campaign-banner {
  background: #D4AF37 !important;
  border: 3px solid #113221 !important;
  color: #113221 !important;
  box-shadow: 0 4px 15px rgba(235, 188, 188, 0.2) !important;
}

.price-campaign-banner .highlight {
  color: #b3884b;
  font-size: 1.4em !important;
  text-decoration: underline !important;
  font-weight: bold !important;
}

.plan-attention {
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.fitness-light-inner {
  padding: 32px !important;
  gap: 32px !important;
  justify-content: flex-start !important;
}

.fitness-light-left {
  min-width: 280px !important;
  text-align: center !important;
}

/* --- ROUND 3 USER REQUESTS --- */
.header-btn,
.header-btn-official {
  color: #fff !important;
  font-weight: bold !important;
}

.header-btn span,
.header-btn-official span {
  color: #fff !important;
  font-weight: bold !important;
}

.plan-card-title,
.fitness-title-dark,
.golf-full-title {
  font-size: 22px !important;
  font-weight: 900 !important;
}

.fitness-light-inner {
  justify-content: center !important;
  gap: 32px !important;
}

.fitness-light-left {
  min-width: 240px !important;
  text-align: center !important;
  margin: 0 auto !important;
}

.fitness-light-right {
  margin: 0 auto !important;
}

#flow .first-letter {
  color: #fff !important;
}

.faq-summary {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  margin-bottom: 8px;
  font-weight: bold;
}

.faq-details[open] .faq-summary {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.faq-answer {
  background: #fdfdfd;
  border: 1px solid #ddd;
  border-top: none;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 20px;
}

.btn-voice {
  background: var(--c-fitness) !important;
  color: #fff !important;
  padding: 20px 48px !important;
  font-size: 24px !important;
  border-radius: 50px !important;
  font-weight: bold !important;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2) !important;
  display: inline-block !important;
}

#message {
  background: #ffffff !important;
}

.access-info,
.access-info dt,
.access-info dd,
.access-info p {
  color: #fff !important;
}

.footer-copy {
  color: #333 !important;
}

/* --- ROUND 4 USER REQUESTS --- */
.fitness-light-inner {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  gap: 0 !important;
}

.fitness-light-left {
  flex: 1 !important;
  text-align: center !important;
  padding-right: 40px !important;
  min-width: 250px !important;
}

.fitness-light-right {
  flex: 1 !important;
  padding-left: 40px !important;
  min-width: 250px !important;
}

@media (max-width: 767px) {
  .fitness-light-left {
    padding-right: 0 !important;
    margin-bottom: 24px !important;
  }

  .fitness-light-right {
    padding-left: 0 !important;
  }
}

/* FAQ Summary Button override */
.faq-summary {
  border-radius: 4px !important;
  border: 2px solid var(--c-golf) !important;
  padding: 24px !important;
  position: relative !important;
}

.faq-answer {
  border: 2px solid var(--c-golf) !important;
  border-top: none !important;
  border-radius: 0 0 4px 4px !important;
}

/* --- ROUND 5 USER REQUESTS --- */

/* FAQ text color */
.faq-summary,
.faq-answer,
.faq-q-icon,
.faq-a-icon {
  color: #333 !important;
}

/* Flow heading color */
#flow-heading,
#flow-heading .first-letter {
  color: var(--white) !important;
}

/* Footer alignment */
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.footer-copy {
  text-align: center;
  display: block;
  width: 100%;
}

/* Access dl/dt colors */
.access-info dt {
  color: var(--c-fitness) !important;
  font-weight: bold;
  background: transparent !important;
}

.access-info dd {
  color: #fff !important;
}

/* --- ROUND 6 USER REQUESTS --- */
.fitness-plan-light {
  padding: 0 !important;
}

/* 繝ｻ・ｽ?繝ｻ・ｽ? HERO 繝ｻ・ｽ?繝ｻ・ｽ? */
.hero {
  position: relative;
  min-height: 500px;
  /* Reduced min-height */
  height: 80vh;
  /* Reduced height */
  padding: 0 !important;
  /* Remove section padding */
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--c-golf, #113221);
  /* Left side background (Green) */
  --accent: #c8f000;
}

/* Left panel */
.hero-left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 80px 64px;
  z-index: 2;
}

.tag-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.tag-line-bar {
  width: 32px;
  height: 2px;
  background: var(--accent);
}

.tag-line span {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 700;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1.1;
  letter-spacing: 0.05em;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease 0.75s both;
  color: #f0ede8;
}

.hero-title .line2 {
  color: #f0ede8;
  -webkit-text-stroke: 0;
}

.hero-title .line3 {
  color: var(--accent);
  font-size: clamp(24px, 4vw, 48px);
  margin-top: 10px;
}

.hero-sub {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
  max-width: 500px;
  margin-bottom: 48px;
  font-weight: 300;
  animation: fadeUp 0.9s ease 0.9s both;
}

/* 繝ｻ・ｽ?繝ｻ・ｽ? RIGHT PANEL 繝ｻ・ｽ?繝ｻ・ｽ? */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #141414;
  /* clip-path removed for straight divider */
  z-index: 0;
}

.accent-slash {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--accent);
  z-index: 3;
  transform-origin: top left;
  animation: slideIn 0.6s ease 0.3s both;
}

/* Hero Images Slider */
.hero-image-slider {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 80%;
  height: 70%;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.hero-img-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
}

.hero-img-slide:nth-child(1) {
  animation: fade1 15s infinite;
}

.hero-img-slide:nth-child(2) {
  animation: fade2 15s infinite;
}

.hero-img-slide:nth-child(3) {
  animation: fade3 15s infinite;
}

@keyframes fade1 {
  0% {
    opacity: 1;
    transform: scale(1.05);
  }

  25% {
    opacity: 1;
    transform: scale(1.02);
  }

  33% {
    opacity: 0;
    transform: scale(1);
  }

  92% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}

@keyframes fade2 {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  25% {
    opacity: 0;
    transform: scale(1.05);
  }

  33% {
    opacity: 1;
    transform: scale(1.05);
  }

  58% {
    opacity: 1;
    transform: scale(1.02);
  }

  66% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

@keyframes fade3 {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  58% {
    opacity: 0;
    transform: scale(1.05);
  }

  66% {
    opacity: 1;
    transform: scale(1.05);
  }

  92% {
    opacity: 1;
    transform: scale(1.02);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* 繝ｻ・ｽ?繝ｻ・ｽ? GRID & SCAN 繝ｻ・ｽ?繝ｻ・ｽ? */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 240, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 240, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* 繝ｻ・ｽ?繝ｻ・ｽ? MARQUEE STRIP 繝ｻ・ｽ?繝ｻ・ｽ? */
.bottom-strip {
  position: relative;
  z-index: 10;
  background: var(--accent);
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
  animation: fadeIn 0.6s ease 1.4s both;
}

.marquee-track {
  display: flex;
  animation: marquee 18s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: #0a0a0a;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.marquee-sep {
  color: rgba(0, 0, 0, 0.4);
}

/* 繝ｻ・ｽ?繝ｻ・ｽ? KEYFRAMES 繝ｻ・ｽ?繝ｻ・ｽ? */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideIn {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-right {
    height: 400px;
  }

  .hero-left {
    padding: 60px 20px 40px 20px;
  }
}

/* Update CTA for 3 columns on PC, stack on SP */
@media (max-width: 768px) {
  .cta-3col-row {
    grid-template-columns: 1fr !important;
  }
}

/* SP CTA colors */
.sp-cta-line {
  background: #06C755;
}

.sp-cta-contact {
  background: #555;
}

#sp-fixed-cta a {
  font-size: 16px !important;
  font-weight: bold !important;
  color: #fff !important;
  padding: 10px 4px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- CURRENT USER REQUEST FIXES --- */
.hero-right::before {
  background: #fff !important;
}

.bottom-strip.cta-block {
  height: auto !important;
  min-height: 0 !important;
  padding: 36px var(--side-pad-sp) !important;
  background: var(--c-golf) !important;
  display: block !important;
  overflow: visible !important;
}

.bottom-strip .cta-container {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 24px !important;
}

.cta-col-tel {
  border: none !important;
  padding-bottom: 0 !important;
}

.cta-3col-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

.bottom-strip .cta-col:first-child {
  border: none !important;
  padding-bottom: 0 !important;
}

.bottom-strip .cta-btn-link {
  max-width: none;
}

.fitness-plan-light {
  overflow: visible;
}

.fitness-card-tag {
  top: 0 !important;
}

.fitness-light-inner {
  align-items: center !important;
  padding: 32px !important;
  gap: 32px !important;
}

.fitness-light-left,
.fitness-light-right {
  flex: 1 !important;
  min-width: 280px !important;
}

.fitness-light-left {
  padding-right: 0 !important;
}

.fitness-light-right {
  padding-left: 0 !important;
}

.fitness-feature-list {
  border-left: 1px solid #eee !important;
  padding-left: 32px !important;
  margin: 0 !important;
}

.golf-feature-list li,
.fitness-feature-list li {
  align-items: center !important;
  gap: 12px !important;
}

.safety-list {
  list-style: none !important;
  padding-left: 0 !important;
}

.safety-list li {
  padding-left: 0 !important;
}

.safety-list li::before {
  content: none !important;
}

#flow-heading {
  color: #fff !important;
}

#flow-heading .first-letter {
  color: #d0090d !important;
}

.btn-voice {
  font-size: 20px !important;
}

#access .access-section-label {
  display: block !important;
  margin-top: -18px !important;
  margin-bottom: 40px !important;
}

@media (max-width: 900px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
    background: var(--c-golf, #113221) !important;
  }

  .hero-left {
    padding: 96px 20px 28px !important;
    background: var(--c-golf, #113221) !important;
  }

  .tag-line-bar {
    display: none !important;
  }

  .hero-right {
    height: auto !important;
    padding: 0 0 36px !important;
    background: #fff !important;
    overflow: visible !important;
  }

  .hero-right::before,
  .grid-overlay,
  .scan-line {
    display: none !important;
  }

  .accent-slash {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: calc(100% - 40px) !important;
    height: 6px !important;
    margin: 0 20px 24px !important;
    transform: none !important;
    animation: none !important;
  }

  .hero-image-slider {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: calc(100% - 40px) !important;
    height: auto !important;
    aspect-ratio: 4 / 3 !important;
    margin: 0 auto !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22) !important;
  }
}

@media (max-width: 768px) {
  .cta-3col-row {
    grid-template-columns: 1fr !important;
  }

  .fitness-light-inner,
  .golf-card-full-inner {
    padding: 40px 24px 24px !important;
  }

  .fitness-light-left,
  .golf-full-left {
    margin-bottom: 18px !important;
  }

  .fitness-feature-list,
  .golf-feature-list {
    border-left: none !important;
    padding-left: 0 !important;
  }

  .fitness-feature-list li,
  .golf-feature-list li {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .price-campaign-banner {
    padding: 18px 16px !important;
  }

  .campaign-content-inner {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .campaign-text {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 4px !important;
    font-size: 15px !important;
    line-height: 1.6;
  }

  .campaign-text .slash {
    display: none;
  }

  .golf-full-title {
    margin-top: 12px !important;
    margin-bottom: 8px !important;
  }
}

/* --- CTA COMPACT RESERVATION STYLE --- */
.bottom-strip.cta-block {
  background: #ffd514 !important;
  padding: 42px 0 46px !important;
}

.bottom-strip .cta-container {
  max-width: 1120px !important;
  gap: 22px !important;
  padding: 0 var(--side-pad-sp) !important;
}

.bottom-strip .cta-col-tel::before {
  content: "ご予約はコチラ";
  display: block;
  width: 100%;
  max-width: 760px;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  color: var(--c-golf);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-align: center;
  background:
    linear-gradient(var(--c-golf), var(--c-golf)) left center / 28% 1px no-repeat,
    linear-gradient(var(--c-golf), var(--c-golf)) right center / 28% 1px no-repeat;
}

.bottom-strip .cta-col-tel::after {
  content: "\\  邵ｺ鬆托ｽｰ闍難ｽｻ・ｽ邵ｺ・ｫ邵ｺ莨∝ｴ暮圦・ｱ邵ｺ荳岩味邵ｺ霈費ｼ・ /";
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.bottom-strip .cta-col-tel .cta-label,
.bottom-strip .cta-col:not(.cta-col-tel) .cta-label,
.bottom-strip .cta-col-tel p {
  display: none !important;
}

.bottom-strip .cta-tel-link {
  color: #fff !important;
  font-size: clamp(48px, 9vw, 92px) !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  text-shadow: 0 5px 14px rgba(17, 50, 33, 0.18);
}

.bottom-strip .cta-tel-link .tel-icon {
  display: none !important;
}

.bottom-strip .cta-3col-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  margin-top: 6px;
}

.bottom-strip .cta-btn-link {
  height: 72px !important;
  padding: 0 28px !important;
  border-radius: 8px !important;
  color: var(--c-golf) !important;
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(17, 50, 33, 0.14) !important;
  font-size: 20px !important;
  letter-spacing: 0.08em !important;
}

.bottom-strip .cta-3col-row .cta-col:nth-child(2) .cta-btn-link {
  background: var(--c-golf) !important;
  color: #fff !important;
}

.bottom-strip .cta-btn-link .btn-icon {
  width: 44px !important;
  height: 44px !important;
  background: rgba(17, 50, 33, 0.10) !important;
  color: var(--c-golf) !important;
}

.bottom-strip .cta-3col-row .cta-col:nth-child(2) .btn-icon {
  background: rgba(212, 175, 55, 0.20) !important;
  color: var(--red) !important;
}

.bottom-strip .cta-btn-link .btn-arrow {
  border-color: currentColor !important;
}

@media (max-width: 768px) {
  .bottom-strip.cta-block {
    padding: 30px 0 34px !important;
  }

  .bottom-strip .cta-container {
    gap: 16px !important;
  }

  .bottom-strip .cta-col-tel::before {
    margin-bottom: 8px;
    font-size: 20px;
    letter-spacing: 0.08em;
  }

  .bottom-strip .cta-col-tel::after {
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .bottom-strip .cta-tel-link {
    font-size: clamp(36px, 12vw, 52px) !important;
  }

  .bottom-strip .cta-3col-row {
    gap: 12px !important;
  }

  .bottom-strip .cta-btn-link {
    height: 58px !important;
    padding: 0 18px !important;
    font-size: 16px !important;
  }

  .bottom-strip .cta-btn-link .btn-icon {
    width: 36px !important;
    height: 36px !important;
  }
}

/* --- CURRENT HEADER CTA PRICE FIXES --- */
.bottom-strip.cta-block {
  background: #eec400 !important;
}

.bottom-strip .cta-col-tel {
  display: flex !important;
}

.bottom-strip .cta-col-tel .cta-tel-link {
  order: 3;
}

.bottom-strip .cta-col-tel p {
  display: block !important;
  order: 2;
  margin: 0 0 8px !important;
  color: #fff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
}

.bottom-strip .cta-col-tel::after {
  content: none !important;
}

.bottom-strip .cta-tel-link {
  font-size: clamp(34px, 6.3vw, 64px) !important;
}

.bottom-strip .cta-3col-row {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

#fullscreen-menu {
  justify-content: center !important;
  padding: 44px 20px 28px !important;
  overflow-y: auto !important;
}

.menu-nav ul {
  gap: 14px !important;
}

.menu-nav a {
  font-size: clamp(22px, 7vh, 30px) !important;
  line-height: 1 !important;
}

.menu-actions {
  margin-top: 22px !important;
  max-width: 260px !important;
}

.menu-action-btn {
  min-height: 48px !important;
  padding: 0 20px !important;
}

.menu-tel {
  margin-top: 16px !important;
  font-size: 16px !important;
}

.golf-card-full .recommend-card-inner,
.fitness-plan-light .recommend-card-inner {
  display: grid !important;
  grid-template-columns: 51.5% 48.5% !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  padding: 32px !important;
}

.golf-card-full .recommend-card-left,
.fitness-plan-light .recommend-card-left {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 32px 0 0 !important;
  text-align: center !important;
}

.golf-card-full .recommend-card-right,
.fitness-plan-light .recommend-card-right {
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  flex: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.golf-card-full .recommend-feature-list,
.fitness-plan-light .recommend-feature-list {
  border-left: 1px solid #eee !important;
  padding-left: 36px !important;
  margin: 0 !important;
}

@media (max-width: 768px) {
  .bottom-strip .cta-3col-row {
    grid-template-columns: 1fr !important;
  }

  .bottom-strip .cta-col-tel p {
    font-size: 13px !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 6px !important;
  }

  .bottom-strip .cta-tel-link {
    font-size: clamp(28px, 9vw, 40px) !important;
  }

  #sp-fixed-cta {
    display: flex !important;
  }

  #sp-fixed-cta a {
    flex: 1 1 33.333% !important;
  }

  .golf-card-full .recommend-card-inner,
  .fitness-plan-light .recommend-card-inner {
    grid-template-columns: 1fr !important;
    padding: 40px 24px 24px !important;
  }

  .golf-card-full .recommend-card-left,
  .fitness-plan-light .recommend-card-left {
    padding: 0 !important;
    margin-bottom: 18px !important;
  }

  .golf-card-full .recommend-feature-list,
  .fitness-plan-light .recommend-feature-list {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

/* --- PRICE CAMPAIGN VISIBILITY FIX --- */
.price-campaign-banner .campaign-text {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.price-campaign-banner .campaign-normal,
.price-campaign-banner .campaign-offer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.price-campaign-banner .arrow {
  color: var(--c-golf) !important;
  font-weight: 900 !important;
}

.price-campaign-banner .highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  padding: 1px 8px;
  background: #000 !important;
  color: #fff !important;
  border-radius: 4px;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 1.25;
  text-decoration: none !important;
}

@media (max-width: 768px) {
  .price-campaign-banner .campaign-text {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px 10px !important;
    font-size: 15px !important;
  }

  .price-campaign-banner .campaign-normal {
    width: 100%;
  }

  .price-campaign-banner .arrow {
    width: 100%;
    text-align: center;
  }

  .price-campaign-banner .arrow::before {
    content: "▼";

  }

  .price-campaign-banner .arrow {
    font-size: 0 !important;
  }

  .price-campaign-banner .arrow::before {
    font-size: 20px !important;
  }

  .price-campaign-banner .campaign-offer {
    width: 100%;
    gap: 5px;
    white-space: nowrap;
  }

  .price-campaign-banner .highlight {
    min-width: 40px;
    padding: 1px 6px;
    font-size: 20px !important;
  }
}

/* --- CURRENT FV CTA PRICE FAQ ACCESS FIXES --- */
.plan-attention p {
  position: relative;
  padding-left: 1.2em !important;
}

.plan-attention p::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

#faq {
  background: none !important;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#faq::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url("../img/faqbg.jpeg") center / cover no-repeat fixed;
}

@supports (-webkit-touch-callout: none) {
  #faq {
    clip-path: inset(0);
  }

  #faq::before {
    position: fixed;
    inset: 0;
    height: 100svh;
    background-attachment: scroll;
  }
}

.access-info a[href^="https://indoor-golf.co.jp/"] {
  color: #fff !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero {
    height: calc(100svh - 64px) !important;
    min-height: 480px !important;
    max-height: 760px !important;
    overflow: hidden !important;
  }

  .hero-left {
    flex: 0 0 auto !important;
    padding: 76px 18px 12px !important;
  }

  .tag-line {
    margin-bottom: 12px !important;
  }

  .tag-line span {
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
  }

  .hero-title {
    font-size: clamp(32px, 9.4vw, 46px) !important;
    line-height: 1.03 !important;
    margin-bottom: 14px !important;
  }

  .hero-title .line3 {
    font-size: clamp(18px, 5.5vw, 28px) !important;
    margin-top: 6px !important;
  }

  .hero-sub {
    font-size: 12.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 0 !important;
  }

  .hero-right {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    padding: 0 !important;
  }

  .accent-slash {
    height: 4px !important;
    margin: 0 18px 12px !important;
    width: calc(100% - 36px) !important;
  }

  .hero-image-slider {
    width: calc(100% - 36px) !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }
}

@media (max-width: 900px) and (max-height: 680px) {
  .hero {
    min-height: 430px !important;
  }

  .hero-left {
    padding-top: 68px !important;
    padding-bottom: 8px !important;
  }

  .hero-title {
    font-size: clamp(28px, 8.6vw, 40px) !important;
    margin-bottom: 10px !important;
  }

  .hero-sub {
    font-size: 11.5px !important;
    line-height: 1.45 !important;
  }

  .hero-image-slider {
    height: min(30svh, 180px) !important;
  }
}

@media (max-width: 768px) {
  #sp-fixed-cta {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    height: 56px !important;
  }

  #sp-fixed-cta a {
    width: auto !important;
    min-width: 0 !important;
    flex: none !important;
    padding: 8px 4px !important;
    gap: 3px !important;
    justify-content: center !important;
  }

  #sp-fixed-cta svg {
    width: 17px !important;
    height: 17px !important;
  }
}

/* --- SPFV READABILITY REDESIGN --- */
.title-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.55em);
  animation: titleFloatIn 0.55s cubic-bezier(.2, .8, .2, 1) forwards;
  animation-delay: calc(var(--i) * 0.045s);
}

@keyframes titleFloatIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .title-char {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

@media (max-width: 900px) {
  .hero {
    height: 100svh !important;
    min-height: 560px !important;
    max-height: none !important;
  }

  .hero-left {
    padding: 78px 18px 22px !important;
  }

  .tag-line {
    display: flex !important;
    flex-wrap: wrap;
    gap: 7px !important;
    margin-bottom: 22px !important;
  }

  .tag-line .hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 5px 9px;
    background: #111;
    color: var(--accent) !important;
    border: 1px solid rgba(200, 240, 0, 0.35);
    border-radius: 3px;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    line-height: 1.1;
  }

  .hero-title {
    margin-bottom: 22px !important;
  }

  .hero-sub {
    max-width: 31em;
    margin-top: 0 !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
  }

  .hero-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    padding: 0 0 20px !important;
  }

  .accent-slash {
    width: 100vw !important;
    height: 5px !important;
    margin: 0 calc(50% - 50vw) 18px !important;
    flex: 0 0 auto;
  }

  .hero-image-slider {
    width: calc(100% - 36px) !important;
    height: min(42svh, 340px) !important;
    min-height: 250px !important;
    aspect-ratio: 4 / 5 !important;
    border-radius: 10px !important;
  }
}

@media (max-width: 900px) and (max-height: 680px) {
  .hero {
    min-height: 520px !important;
  }

  .hero-left {
    padding-top: 68px !important;
    padding-bottom: 16px !important;
  }

  .tag-line {
    margin-bottom: 16px !important;
  }

  .hero-title {
    margin-bottom: 16px !important;
  }

  .hero-sub {
    font-size: 12px !important;
    line-height: 1.5 !important;
  }

  .accent-slash {
    margin-bottom: 14px !important;
  }

  .hero-image-slider {
    height: min(36svh, 260px) !important;
    min-height: 210px !important;
  }

  /* --- ROUND 7 USER REQUESTS: Header Hamburger Breakpoint --- */
  @media (max-width: 930px) {
    .header-nav {
      display: none !important;
    }

    .header-btns-wrap {
      display: none !important;
    }

    .hamburger {
      display: flex !important;
    }

    .sp-br {
      display: block !important;
    }

    .header-logo-img {
      height: 44px !important;
    }

    .header-logo-text {
      font-size: 12px !important;
    }

    .header-inner {
      padding: 0 20px !important;
    }
  }

  /* --- ROUND 8 USER REQUESTS: Price Color Update --- */
  .price-num,
  .plan-card-price,
  .options-list li span:last-child,
  .fitness-price-value,
  .fitness-price-value.gold {
    color: #d8b649 !important;
  }
}

.golf-card-full .price-num {
  color: #b3884b !important;
}

@media (max-width: 375px) {
  .hero-title {
    font-size: clamp(24px, 7vw, 26px) !important;
    letter-spacing: -0.02em !important;
  }
}