/* =========================================
       CSS VARIABLES & BASE STYLES
       ========================================= */
:root {
  --primary: #f7963b;
  --primary-hover: #e0832a;
  --secondary: #d7bb93;
  --secondary-hover: #c4a47a;
  --accent: #d7bb93;
  --accent-hover: #c4a47a;
  --text-main: #312b23;
  --text-dim: #6b5f50;
  --bg-main: #f8f4ed;
  --bg-white: #ffffff;
  --bg-service: #f8f4ed;
  --nav-height: 80px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* html { scroll-behavior: smooth; } Windows等でのマウスホイールの「引っかかり」の原因になるため無効化 */
body,
.voice-text,
.store-info-list li {
  font-size: 16px;
}

p {
  font-size: 16px !important;
}

@media (max-width: 768px) {
  p {
    font-size: 14px !important;
  }
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  background-image: none;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text-main);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

.en {
  font-family: 'Montserrat', sans-serif;
}

.round-font {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 40px;
}

@media(max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

  .sp-only {
    display: block;
  }
}

br.sp-br {
  display: none;
}

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

/* =========================================
       ANIMATIONS
       ========================================= */
.reveal {
  opacity: 0;
  visibility: hidden;
  filter: blur(12px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, filter;
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal.active {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  transform: translate(0, 0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

/* =========================================
       BUTTONS
       ========================================= */
.btn-orange {
  font-family: 'Zen Maru Gothic', arial, sans-serif;

  font-weight: 700;
  padding: 16px 48px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 165, 54, 0.3);
}

.btn-orange:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 165, 54, 0.4);
}

.btn-insta {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-weight: 700;
  padding: 16px 48px;
  background: #E1306C;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.btn-insta:hover {
  background: #c12056;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.4);
}

.btn-blue-outline {
  font-family: 'Zen Maru Gothic', arial, sans-serif;

  font-weight: 700;
  padding: 14px 46px;
  background: transparent;
  color: var(--secondary);
  border: 3px solid var(--secondary);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-blue-outline:hover {
  background: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* =========================================
       NAV
       ========================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #E2E8F0;
}

nav .container {
  max-width: 100%;
  padding: 10px 40px;
}

.nav-inner {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: auto;
}

.nav-logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.logo-accent {
  color: var(--primary);
  margin-left: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 5vw, 24px);
  font-weight: 900;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

@media (max-width: 1200px) and (min-width: 769px) {
  .nav-links {
    gap: 15px;
  }
}

.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-main);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-cta {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-insta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fdfdfd;
  color: #E1306C;
  border: 1px solid rgba(225, 48, 108, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(225, 48, 108, 0.08);
}

.nav-insta:hover {
  background: #ffffff;
  border-color: #E1306C;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(225, 48, 108, 0.2);
}

.nav-insta img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.hamburger-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 300;
}

.hamburger-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  position: absolute;
  left: 0;
  transition: all 0.3s;
}

.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 8px;
}

.hamburger-btn span:nth-child(3) {
  bottom: 0;
}

.hamburger-btn.is-open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.hamburger-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.is-open span:nth-child(3) {
  bottom: 8px;
  transform: rotate(-45deg);
}

/* =========================================
       HERO (LEGEND Style)
       ========================================= */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 700px;
  display: flex;
  align-items: center;
  background: rgba(49, 43, 35, 0.75) !important;
  padding-top: var(--nav-height);
  overflow: hidden;
}

/* 左側 1/3の背景 -> Hide it now */
.hero-left-bg {
  display: none;
}

/* スライダーエリア (右側) */
.hero-slider {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: 80%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  background-color: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 4%, rgba(0, 0, 0, 1) 25%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.1) 4%, rgba(0, 0, 0, 1) 25%);
}

/* スライダーのグラデーション */
.hero-slider-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.03);
  z-index: 2;
}

/* スライド画像 */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 1;
}

.slide-1 {
  animation: slide1Fade 15s infinite linear;
}

.slide-2 {
  animation: slide2Fade 15s infinite linear;
}

.slide-3 {
  animation: slide3Fade 15s infinite linear;
}

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

  33.33% {
    opacity: 1;
    transform: scale(1.1);
  }

  43.33% {
    opacity: 0;
    transform: scale(1.15);
  }

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

  90% {
    opacity: 1;
    transform: scale(1);
  }

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

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

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

  33.33% {
    opacity: 1;
    transform: scale(1);
  }

  66.66% {
    opacity: 1;
    transform: scale(1.1);
  }

  76.66% {
    opacity: 0;
    transform: scale(1.15);
  }

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

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

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

  66.66% {
    opacity: 1;
    transform: scale(1);
  }

  90% {
    opacity: 1;
    transform: scale(1.1);
  }

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

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 0 20px 0 max(24px, 6vw);
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
  background: transparent;
}

.hero-text-box {
  width: 100%;
  max-width: 600px;
  pointer-events: auto;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  animation: slideInLeft 1s forwards;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--secondary);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero-catchcopy-ja {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  animation: slideInLeft 1.2s 0.1s forwards;
  opacity: 0;
}

.hero-catchcopy-ja span {
  color: var(--secondary);
}

/* バッジ */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeIn 1.5s 0.4s forwards;
  opacity: 0;
}

.badge {
  background: linear-gradient(135deg, #ffc880, var(--primary));
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px solid #fff;
  line-height: 1.4;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.badge svg {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
  flex-shrink: 0;
  color: #fff;
}

@media (min-width: 768px) {
  .badge {
    width: clamp(95px, 9vw, 135px);
    height: clamp(95px, 9vw, 135px);
    font-size: clamp(11px, 1vw, 15px);
  }

  .badge svg {
    width: clamp(20px, 2vw, 28px);
    height: clamp(20px, 2vw, 28px);
    margin-bottom: 6px;
  }

  .hero-badges {
    gap: clamp(10px, 1vw, 16px);
  }
}

@media (max-width: 768px) {
  #hero {
    flex-direction: column;
    min-height: 100svh;
  }

  .hero-slider {
    width: 100%;
    height: 100%;
  }

  .hero-slider-overlay {
    background: linear-gradient(to bottom, transparent 30%, rgba(49, 43, 35, 0.85) 70%, rgba(49, 43, 35, 0.95) 100%);
  }

  .hero-left-bg {
    display: none;
  }

  .hero-content {
    width: 100%;
    height: 100%;
    margin-left: 0;
    padding: 0 12px 80px 12px;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
  }

  .hero-text-box {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-tag {
    margin-left: auto !important;
    margin-right: auto !important;
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  .hero-tag::before {
    background: var(--primary) !important;
  }

  .hero-catchcopy-ja {
    font-size: clamp(18px, 6.2vw, 24px) !important;
    white-space: normal !important;
    word-break: break-all !important;
    text-align: center !important;
    line-height: 1.5 !important;
    width: 100% !important;
    display: block !important;
    letter-spacing: 0.02em !important;
    color: var(--text-main) !important;
  }

  .hero-badges {
    justify-content: center !important;
    gap: 8px !important;
    width: 100% !important;
  }

  .badge {
    width: clamp(90px, 25vw, 102px) !important;
    height: clamp(90px, 25vw, 102px) !important;
    font-size: clamp(10px, 2.6vw, 12px) !important;
    border-width: 3px !important;
  }

  .hero-scroll {
    left: 50%;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 16.666%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  text-decoration: none;
}

.hero-scroll span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--secondary), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.8);
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-30px);
    opacity: 0;
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

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

/* =========================================
       MARQUEE
       ========================================= */
.marquee-wrap {
  position: relative;
  background: var(--secondary);
  padding: 18px 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

/* Elegant left/right fade masks */
.marquee-wrap::before,
.marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrap::before {
  left: 0;
  background: linear-gradient(to right, #ffffff 10%, transparent);
}

.marquee-wrap::after {
  right: 0;
  background: linear-gradient(to left, #ffffff 10%, transparent);
}

.marquee-track {
  display: flex;
  animation: mq 25s linear infinite;
  width: max-content;
  white-space: nowrap;
}

.mq-item {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  padding: 0 25px;
}

.mq-sep {
  color: var(--primary);
  margin-left: 25px;
  font-weight: 800;
}

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

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

/* =========================================
       SECTION BASE
       ========================================= */
.sec {
  padding: 120px 0;
}

.sec-bg-white {
  background: var(--bg-white);
}

.sec-bg-blue {
  background: rgba(49, 43, 35, 0.85);
  color: #fff;
}

.sec-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.sec-eyebrow-line {
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.sec-bg-blue .sec-eyebrow-line {
  background: #fff;
}

.sec-eyebrow-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
}

.sec-bg-blue .sec-eyebrow-text {
  color: #fff;
}

.sec-heading {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-main);
  word-break: keep-all;
}

.sec-heading em {
  font-style: normal;
  color: var(--primary);
}

.sec-bg-blue .sec-heading {
  color: #fff;
}

.content-lead {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .content-lead {
    font-size: 24px;
  }
}

/* =========================================
       RECOMMEND
       ========================================= */
#recommend {
  position: relative;
  background: rgba(243, 241, 231, 0.5);
  overflow: hidden;
  border-top: 1px solid rgba(135, 70, 73, 0.08);
}

#recommend .container {
  position: relative;
  z-index: 2;
}

#recommend .sec-heading {
  color: var(--text-main);
}

#recommend .sec-eyebrow-text {
  color: var(--primary);
}

#recommend .sec-eyebrow-line {
  background: var(--primary);
}

.recommend-split {
  display: flex;
  flex-direction: column-reverse;
  gap: 15px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .recommend-split {
    flex-direction: row;
    align-items: stretch;
    gap: 40px;
  }

  .recommend-visuals {
    height: auto;
    align-items: stretch;
  }

  .recommend-visuals::before {
    top: 0;
    left: 0;
    right: auto;
    width: 100%;
    height: 100%;
  }

  .rec-img-large {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    margin: 0;
  }

  .rec-img-small {
    display: none;
  }
}

/* Visuals - Overlapping Premium Images */
.recommend-visuals {
  flex: 1;
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-visuals::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 12%;
  left: auto;
  width: 90%;
  height: 90%;
  border: 2px solid rgba(212, 175, 55, 0.4);
  /* Gold / secondary color */
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
  transform: translate(15px, 15px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .recommend-visuals {
    min-height: 380px;
  }
}

.rec-img-large {
  width: 80%;

  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: 6px solid #fff;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rec-img-small {
  position: absolute;
  bottom: -20px;
  left: 6%;
  right: auto;
  width: 48%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border: 6px solid #fff;
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-img-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hover effect on images */
.recommend-visuals:hover .rec-img-large {
  transform: translate(5px, -3px) scale(1.02);
}

.recommend-visuals:hover .rec-img-small {
  transform: translate(-8px, 4px) scale(1.04);
}

.recommend-visuals:hover::before {
  transform: translate(22px, 22px);
}

/* Content List Side */
.recommend-content-side {
  flex: 1;
}

.recommend-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rec-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-white);
  border: 1px solid rgba(135, 70, 73, 0.08);
  padding: 18px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  z-index: 1;
}

.rec-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.rec-item:hover::after {
  transform: scaleX(1);
}

.rec-item:hover {
  border-color: var(--primary);
  transform: translateX(8px);
  box-shadow: 0 8px 20px rgba(135, 70, 73, 0.15);
}

.rec-icon-wrap {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(247, 150, 59, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.rec-icon-wrap svg {
  width: 16px;
  height: 16px;
  stroke-width: 3px;
  display: block;
}

.rec-item:hover .rec-icon-wrap {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}

.rec-text {
  position: relative;
  z-index: 2;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s;
}

.rec-item:hover .rec-text {
  color: #ffffff;
}

.recommend-footer {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  background: rgba(247, 150, 59, 0.06);
  color: var(--text-main);
  padding: 24px;
  border-radius: 12px;
  margin-top: 30px;
  border: 1px solid rgba(247, 150, 59, 0.12);
}

/* =========================================
       ABOUT
       ========================================= */
#about {
  background: rgba(248, 244, 237, 0.97);
}



.about-split {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-visual {
  flex: 1;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.about-visual:hover img {
  transform: scale(1.05);
}

.about-content {
  flex: 1;
}

.about-content p {
  margin-bottom: 24px;
  color: var(--text-dim);
  line-height: 2;
}

/* =========================================
       SERVICE (Normale Style)
       ========================================= */
#service {
  background: #ffffff;
  padding: 0;
}

.service-lead-text {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.8;
  color: var(--text-dim);
}

.service-lead-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s;
}

.service-lead-link:hover {
  color: var(--secondary);
}

.service-sticky-wrap {
  display: block;
  padding: 80px 0;
}

.service-sticky-head {
  padding: 0 20px;
  margin-bottom: 40px;
}

.service-sticky-head .sec-eyebrow {
  justify-content: flex-start;
}

.service-sticky-head .sec-heading {
  text-align: left;
  margin-bottom: 0;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: auto;
  background: var(--bg-white);
  border: 1px solid rgba(215, 187, 147, 0.2);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(247, 150, 59, 0.12);
}

.service-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-card::after {
  display: none;
}

.service-card-body {
  position: relative;
  z-index: 2;
  padding: 30px 24px;
  text-align: left;
  flex-grow: 1;
}

.service-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  color: rgba(215, 187, 147, 0.15);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  font-weight: 800;
}

.service-icon-wrap-new {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
  box-shadow: 0 4px 15px rgba(247, 150, 59, 0.2);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s;
}

.service-icon-wrap-new svg {
  width: 24px;
  height: 24px;
}

.service-card:hover .service-icon-wrap-new {
  transform: rotate(360deg);
  background-color: var(--secondary);
}

.service-point-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-weight: 800;
}

.service-card-body h3 {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.h3-line {
  display: block;
  width: 30px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 12px;
  border-radius: 2px;
}

.service-card-body p {
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 500px;
}

@media (min-width: 1024px) {
  .service-sticky-wrap {
    display: block;
    width: 100%;
    padding: 100px 0;
  }

  .service-sticky-head {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
  }

  .service-sticky-head .sec-eyebrow {
    justify-content: center;
  }

  .service-sticky-head .sec-heading {
    text-align: center;
  }

  .service-lead-text {
    text-align: center;
  }

  .service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px;
  }

  .service-card {
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
  }

  .service-card:nth-child(even) {
    flex-direction: column;
  }

  .service-card-img-wrap {
    width: 100%;
    height: 230px;
    align-self: stretch;
  }

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

  .service-card-body {
    width: 100%;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .service-num {
    top: 15px;
    right: 20px;
    font-size: 70px;
  }

  .service-icon-wrap-new {
    width: 50px;
    height: 50px;
  }

  .service-icon-wrap-new svg {
    width: 28px;
    height: 28px;
  }

  .service-card-body h3 {
    font-size: 24px;
  }

  /* removed .service-card-body p font-size */
}

/* =========================================
       PRICING
       ========================================= */
#pricing {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.pricing-bg-js {
  position: absolute;
  top: -40%;
  left: 0;
  width: 100%;
  height: 180%;
  background-image: url('../img/fvbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

#pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  /* 背景がより見えるように透過度を0.6に調整 */
  z-index: 1;
}

#pricing .container {
  position: relative;
  z-index: 2;
}

#pricing .sec-eyebrow-line {
  background: var(--primary);
}

#pricing .sec-eyebrow-text {
  color: var(--primary);
}

#pricing .sec-heading {
  color: var(--text-main);
}

.pricing-box {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.pricing-img {
  width: 100%;
  height: 360px;
}

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

.pricing-content {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: stretch;
}

.pricing-label {
  display: inline-block;
  background: rgba(255, 165, 54, 0.12);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.pricing-main-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.pricing-sub-col {
  flex: 1.2;
  border-left: 1px dashed rgba(215, 187, 147, 0.35);
  padding-left: 40px;
}

.pricing-content h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
}

.sub-menu-list li strong {
  font-size: 16px;
}

.pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.pricing-list li {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-list li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-content p {
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 30px;
}

.price-highlight {
  color: var(--primary);
  font-weight: 800;
  font-size: 20px;
}

.tax-info {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 500;
  margin-left: 4px;
}

.price-tiers {
  margin-bottom: 25px;
}

.price-tier-item {
  border-bottom: 1px dashed #ddd;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.price-tier-item:last-child {
  border-bottom: none;
}

.price-tier-name {
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-main);
}

.price-tier-name svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
}

.price-tier-val {
  white-space: nowrap;
  font-size: 14px;
}

@media(max-width: 768px) {
  .pricing-box {
    flex-direction: column;
  }

  .pricing-img {
    height: 220px;
    min-height: auto;
  }

  .pricing-content {
    flex-direction: column;
    gap: 30px;
    padding: 0px !important;
  }

  .pricing-sub-col {
    border-left: none;
    padding-left: 0;
  }

  .pricing-content h4 {
    font-size: 16px;
  }

  .content-lead {
    text-align: center;
    margin-top: 24px;
  }

  .pricing-label {
    margin: 0 auto 10px;
    display: block;
    text-align: center;
  }

  .pricing-main-col p {
    text-align: center;
  }

  .pricing-list li {
    font-size: 16px;
  }
}

/* =========================================
       INFINITE MARQUEE SLIDER
       ========================================= */
.pricing-marquee-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  overflow: hidden;
  display: flex;
  pointer-events: auto;
}

@media (hover: hover) {
  .pricing-marquee-wrap:hover .pricing-marquee-track {
    animation-play-state: paused;
  }
}

.pricing-marquee-track {
  display: flex;
  width: max-content;
  animation: pricingMarquee 25s linear infinite;
  will-change: transform;
}

.pricing-marquee-track img {
  width: 250px;
  height: 160px;
  object-fit: cover;
  flex-shrink: 0;
  pointer-events: auto;
  cursor: pointer;
  margin-right: 20px;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pricing-marquee-track img:hover {
  transform: scale(1.04);
  border-color: var(--primary);
}

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

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

@media (max-width: 768px) {
  .pricing-marquee-track img {
    width: 150px;
    height: 100px;
    margin-right: 15px;
  }
}

/* =========================================
       VOICE
       ========================================= */
.voice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 30px;
}

.voice-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.voice-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.voice-card::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: serif;
  font-size: 80px;
  color: rgba(215, 187, 147, 0.2);
  line-height: 1;
}

.voice-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 10px;
}

.voice-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
}

.voice-stars {
  display: flex;
  gap: 4px;
  color: #FFB800;
}

.voice-stars svg {
  width: 18px;
  height: 18px;
  fill: #FFB800;
  stroke: #FFB800;
}

.voice-text-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
}

.voice-text {
  color: var(--text-main);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.voice-text.is-clamped {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.voice-read-more {
  background: none;
  border: none;
  color: var(--primary);
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  cursor: pointer;
  padding: 0;
  align-self: flex-end;
}

.voice-read-more svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}

.voice-read-more.is-open svg {
  transform: rotate(180deg);
}

/* =========================================
       PREMIUM GALLERY
       ========================================= */
section#gallery {
  background: rgba(248, 244, 237, 0.6);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.gallery-item {
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(49, 43, 35, 0.04);
  border: 1px solid rgba(215, 187, 147, 0.15);
  background: var(--bg-white);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(247, 150, 59, 0.15);
  border-color: var(--primary);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(49, 43, 35, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-overlay svg {
  width: 28px;
  height: 28px;
  color: #fff;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover .gallery-img-wrap img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(49, 43, 35, 0.96);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  max-width: 85%;
  max-height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox.is-active .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border: 4px solid #fff;
  pointer-events: auto !important;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10000;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.lightbox-close {
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
}

.lightbox-close svg {
  width: 24px;
  height: 24px;
}

.lightbox-prev {
  left: 30px;
  width: 60px;
  height: 60px;
}

.lightbox-next {
  right: 30px;
  width: 60px;
  height: 60px;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .lightbox-prev {
    left: 10px;
    width: 45px;
    height: 45px;
  }

  .lightbox-next {
    right: 10px;
    width: 45px;
    height: 45px;
  }

  .lightbox-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 24px;
    height: 24px;
  }
}

/* =========================================
       MESSAGE
       ========================================= */
#message {
  position: relative;
  background-image: linear-gradient(rgba(49, 43, 35, 0.72), rgba(49, 43, 35, 0.72)), url('../img/fvbg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 100px 0;
}

@media (max-width: 1024px) {
  #message {
    background-attachment: scroll;
  }
}

#message .sec-heading {
  color: #ffffff;
}

#message .sec-eyebrow-text {
  color: #ffffff;
}

#message .sec-eyebrow-line {
  background: #ffffff;
}

#message .message-text p {
  color: rgba(255, 255, 255, 0.9);
}

#message .content-lead {
  color: #ffffff;
}

#message .profile-title {
  color: rgba(255, 255, 255, 0.7);
}

#message .profile-name {
  color: #ffffff;
}

.message-box {
  max-width: 1000px;
  margin: 0 auto;
  background: transparent;
  border-radius: 0px;
  padding: 0px;
  box-shadow: none;
  border: none;
  display: flex;
  gap: 50px;
  align-items: stretch;
}

.message-visual {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
}

.message-visual img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

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

.message-text {
  margin-bottom: 40px;
}

.message-text p {

  color: var(--text-dim);
  line-height: 2;
  margin-bottom: 16px;
}

.message-text p:last-child {
  margin-bottom: 0;
}

.message-profile {
  display: flex;
  align-items: center;
  gap: 24px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.profile-title {
  font-size: 13px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.profile-name {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--text-main);
}

/* =========================================
       CONTACT
       ========================================= */
.contact-bg {
  position: relative;
  background: transparent;
  padding: 100px 0;
}

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.map-side {
  flex: 1;
  min-height: 400px;
  background: #EAE9E2;
}

.map-side iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-placeholder-box {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #dfdfdf;
  border-right: 1px solid #e2e8f0;
}

.map-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-dim);
}

.map-placeholder-icon {
  width: 48px;
  height: 48px;
  stroke-width: 1.5px;
  color: var(--primary);
  opacity: 0.8;
}

.map-placeholder-text {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.content-side {
  flex: 1;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.store-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 24px;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
}

.store-info-list {
  list-style: none;
  margin-bottom: 32px;
}

.store-info-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--text-dim);
}

.store-info-list li svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-msg {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  text-align: center;
}

/* =========================================
       FOOTER
       ========================================= */
footer {
  background: #fff;
  color: var(--text-main);
  padding: 60px 0 30px;
  text-align: center;
  border-top: 1px solid #E2E8F0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.copyright {
  font-size: 11px;
  color: #999;
  letter-spacing: 0.1em;
  font-family: 'Montserrat', sans-serif;
}

/* =========================================
       SP RESPONSIVE ADJUSTMENTS
       ========================================= */
@media(max-width: 1024px) {
  .about-split {
    flex-direction: column;
  }

  .contact-card {
    flex-direction: column;
  }

  .map-side {
    flex: none;
    height: 300px;
    width: 100%;
  }
}

@media(max-width: 768px) {
  .about-visual {
    height: 300px;
  }

  body,
  p,
  .voice-text,
  .store-info-list li,
  .rec-text {
    font-size: 14px;
  }

  .nav-logo-img {
    height: 60px;
  }

  .recommend-footer {
    font-size: 16px;
    padding: 20px 10px !important;
  }

  .nav-cta {
    display: none;
  }

  .hamburger-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 250;
  }

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

  .nav-links a {
    font-size: 18px;
    font-weight: 800;
  }

  #hero {
    flex-direction: column;
    height: auto;
    min-height: auto;
    padding-top: var(--nav-height);
    padding-bottom: 0;
    display: flex;
    background: white !important;
  }

  .hero-left-bg {
    display: none;
  }

  .hero-slider {
    width: 100%;
    height: 380px;
    position: relative;
    order: 1;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }

  .hero-content {
    position: relative;
    width: 100%;
    padding: 40px 10px !important;
    order: 2;
    z-index: 5;
    background: transparent;
    pointer-events: auto;
  }

  .hero-text-box {
    max-width: 100%;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .hero-slider-overlay {
    background: transparent;
  }

  .hero-tag {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
  }

  .hero-tag::before {
    background: var(--primary) !important;
  }

  .hero-catchcopy-ja {
    font-size: clamp(20px, 5.5vw, 26px) !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    line-height: 1.5 !important;
    white-space: normal !important;
    word-break: break-all !important;
    width: 100% !important;
    display: block !important;
    letter-spacing: 0.02em !important;
    color: var(--text-main) !important;
  }

  .hero-badges {
    width: 100% !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  .badge {
    width: clamp(90px, 25vw, 102px) !important;
    height: clamp(90px, 25vw, 102px) !important;
    font-size: clamp(10px, 2.6vw, 12px) !important;
    border-width: 3px !important;
  }

  .badge svg {
    width: 18px;
    height: 18px;
    margin-bottom: 4px;
  }

  .hero-scroll {
    display: none;
  }

  .bg-car,
  .bg-wrench {
    display: none;
  }

  .shape-1 {
    width: 180px;
    height: 180px;
    top: -40px;
    left: -40px;
    stroke-width: 0.8;
  }

  .shape-2 {
    width: 100px;
    height: 100px;
    top: 120px;
    left: 20px;
    stroke-width: 1.2;
  }

  .shape-3 {
    width: 220px;
    height: 220px;
    bottom: -80px;
    right: -50px;
    stroke-width: 0.8;
  }

  .sec {
    padding: 80px 0;
  }

  .pricing-bg-js {
    background-position: 60% center;
  }

  .pricing-box {
    padding: 30px 20px;
  }

  .content-side {
    padding: 40px 20px;
  }

  .message-box {
    flex-direction: column;
    padding: 30px 20px;
    gap: 30px;
  }

  .message-visual img {
    aspect-ratio: 4 / 3;
  }

  .message-text {
    margin-bottom: 30px;
  }

  .message-profile {
    justify-content: flex-start;
    gap: 16px;
  }

  .profile-img {
    width: 80px;
    height: 80px;
  }

  .profile-name {
    font-size: 20px;
  }
}

/* =========================================
       FLOATING CTA (SP)
       ========================================= */
.sp-floating-cta {
  display: none;
}

@media(max-width: 768px) {
  body {
    padding-bottom: 70px;
  }

  .sp-floating-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px;
    gap: 10px;
  }

  .sp-cta-btn {
    flex: 1;
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Zen Maru Gothic', arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s, opacity 0.3s;
  }

  .sp-cta-btn:active {
    opacity: 0.8;
  }

  .contact-inner,
  #pricing .container,
  .service-cards,
  .container {
    padding: 0 10px !important;
  }

  .content-side,
  .message-box,
  .voice-card,
  .pricing-box,
  .service-card-body {
    padding: 30px 10px !important;
  }

  .message-box {
    padding: 30px 0px !important;
  }

  .rec-item {
    padding: 18px 18px;
  }

  .service-sticky-head {
    padding: 0 10px !important;
  }

  .service-sticky-head .sec-eyebrow {
    justify-content: center !important;
  }

  .service-sticky-head .sec-heading {
    text-align: center !important;
  }

  .service-point-label {
    text-align: center !important;
  }

  .service-card-body h3 {
    text-align: center !important;
  }

  .service-icon-wrap-new {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .h3-line {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .pricing-content .btn-orange {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(247, 150, 59, 0.4);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(247, 150, 59, 0.55);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
}

@media(max-width: 768px) {
  .back-to-top {
    bottom: 90px;
    /* SP用フローティングCTA（70px）の上に配置 */
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

/* =========================================
   ELEGANT CTA (Image Matched)
   ========================================= */
.elegant-cta-wrapper {
  position: relative;
  width: 100%;
  padding: 100px 20px;
  text-align: center;
  background-image: linear-gradient(rgba(49, 43, 35, 0.82), rgba(49, 43, 35, 0.55)), url('../img/cta-striky-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }

  .elegant-cta-wrapper {
    background-attachment: scroll;
  }
}

.elegant-cta-logo-text {
  margin-bottom: 20px;
}

.elegant-cta-logo-text h3 {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.elegant-cta-logo-text p {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  letter-spacing: 0.2em;
}

.elegant-cta-phone {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 5px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
}

.elegant-cta-phone svg {
  color: var(--primary);
  filter: drop-shadow(0 2px 8px rgba(247, 150, 59, 0.5));
}

.elegant-cta-hours {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.elegant-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.e-cta-btn {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(247, 150, 59, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  min-width: 280px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.e-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(247, 150, 59, 0.45);
  background: var(--primary-hover);
}

@media(max-width: 768px) {
  .elegant-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .e-cta-btn {
    width: 100%;
    min-width: unset;
  }
}

/* =========================================
       STAFF SECTION
       ========================================= */
#staff {
  background-color: var(--bg-main);
}

.staff-card {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 50px;
  align-items: center;
}

.staff-visual {
  flex: 1;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  aspect-ratio: 4 / 5;
}

.staff-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff-info {
  flex: 1.3;
}

.staff-position {
  font-size: 13px;
  color: var(--primary);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.staff-name {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.staff-name-kana {
  font-size: 14px;
  font-weight: normal;
  color: var(--text-dim);
}

.staff-career-box {
  background: var(--bg-main);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.staff-career-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 6px;
}

.staff-career-list {
  list-style: none;
  padding-left: 0;
  font-size: 14px;
  color: var(--text-main);
  line-height: 1.6;
}

.staff-message-text p {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.staff-message-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .staff-card {
    flex-direction: column;
    padding: 24px 10px;
    gap: 30px;
  }

  .staff-visual {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
  }

  .staff-position {
    text-align: center;
  }

  .staff-name {
    font-size: 24px;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
  }

  .elegant-cta-wrapper {
    padding: 24px 10px;
  }

  .elegant-cta-logo-text h3 {
    font-size: 30px;
    letter-spacing: 0em;
  }
}

/* =========================================
   FEATURES GRID (Strengths)
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.feature-item {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  position: relative;
  border-top: 4px solid var(--primary);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.feature-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 800;
  color: rgba(215, 187, 147, 0.18);
  position: absolute;
  top: 15px;
  right: 20px;
  line-height: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(247, 150, 59, 0.08);
  color: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.4;
  margin-bottom: 15px;
}

.feature-item p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: justify;
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
   SERVICE CARDS 2x2 OVERRIDE
   ========================================= */
@media (min-width: 1025px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* =========================================
   NEW PRICING STYLES
   ========================================= */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card-new {
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card-header {
  background: var(--primary);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
}

.pricing-card-header h4 {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.05em;
}

.pricing-card-body {
  padding: 30px 24px;
  flex-grow: 1;
}

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

.price-list-new li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px dashed #E2E8F0;
  gap: 16px;
}

.price-list-new li:last-child {
  border-bottom: none;
}

.price-name {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 500;
  line-height: 1.4;
}

.price-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

.price-tax {
  font-size: 11px;
  color: var(--text-dim);
  font-weight: normal;
}

.price-note {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  font-style: italic;
}

.pricing-disclaimer {
  margin-top: 30px;
  background: rgba(247, 150, 59, 0.04);
  border-left: 4px solid var(--primary);
  padding: 20px;
  border-radius: 0 8px 8px 0;
}

.pricing-disclaimer p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}

.pricing-disclaimer p:last-child {
  margin-bottom: 0;
}

/* Pricing Related Links */
.pricing-links-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  width: 100%;
}

.pricing-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.pricing-link-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.5px;
}

.pricing-link-btn.btn-orange-solid {
  background: #f7963b;
  color: #fff;
  padding: 12px 28px;
  box-shadow: 0 4px 12px rgba(247, 150, 59, 0.35);
}

.pricing-link-btn.btn-orange-solid:hover {
  background: #e0832a;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(247, 150, 59, 0.45);
}

.pricing-link-btn.btn-orange-outline {
  background: transparent;
  color: #f7963b;
  border: 2px solid #f7963b;
  padding: 10px 28px;
}

.pricing-link-btn.btn-orange-outline:hover {
  background: rgba(247, 150, 59, 0.05);
  transform: translateY(-2px);
}

.pricing-link-btn.btn-tan-outline {
  background: transparent;
  color: #312b23;
  border: 2px solid #d7bb93;
  padding: 10px 28px;
}

.pricing-link-btn.btn-tan-outline:hover {
  background: rgba(215, 187, 147, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .pricing-links-container {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
    gap: 12px;
  }

  .pricing-link-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
   HERO BADGES STYLE
   ========================================= */
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.hero-badges .badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(49, 43, 35, 0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero-badges .badge svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}

@media (max-width: 768px) {
  .hero-badges {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .hero-badges .badge {
    padding: 8px 16px;
    font-size: 12px;
  }
}

/* =========================================
   TEXT LOGO STYLES
   ========================================= */
.nav-logo-text {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.nav-logo-text:hover {
  color: var(--primary-hover);
}

.footer-logo-text {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.footer-logo-text:hover {
  color: var(--primary-hover);
}

@media (max-width: 768px) {
  .nav-logo-text {
    font-size: 16px;
  }

  .footer-logo-text {
    font-size: 18px;
  }
}

/* =========================================
   NEW HERO LAYOUT (FV CLONE)
   ========================================= */
.hero-new-layout {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  background-color: #312b23;
  display: flex;
  flex-direction: column;
}

/* Layer 1: Left Background (Dark Slider) - covered by slant, so hidden */
.hero-bg-left {
  display: none;
}

/* Layer 1: Right Background (Image Slider) - expanded to 80% to stretch far left underneath the slant */
.hero-bg-right {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-right .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 20% center;
  /* Shift the subject (woman/laptop) leftwards */
}

.hero-slider-overlay-new {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

/* Layer 2: Slanted White Shape - semi-transparent with glassmorphism to show the image underneath */
.hero-center-slant {
  position: absolute;
  top: 0;
  left: 0;
  transform: skewX(-15deg);
  transform-origin: top left;
  width: 50%;
  height: 100%;
  background: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  /* Strong shadow to create a floating layer effect */
  box-shadow: 20px 0 50px rgba(0, 0, 0, 0.3);
  z-index: 3;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-left: none;
}

/* Layer 3: Content Wrapper */
.hero-content-wrapper {
  position: relative;
  z-index: 10;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Top Dark Green/Orange Ribbon */
.hero-top-ribbon {
  background: linear-gradient(to right, #f7963b 0%, #f7963b 70%, transparent 100%);
  color: #fff;
  text-align: left;
  padding: 16px 6%;
  width: 54%;
  margin-top: 100px;
  /* Space for fixed nav */
  position: relative;
  z-index: 15;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
}

.hero-top-ribbon p {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin: 0;
}

/* Main Content Container */
.hero-main-container {
  flex: 1;
  position: relative;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 6%;
  gap: 40px;
}

/* Left: Golden Emblem - hidden to clean up left-aligned text space */
.hero-emblem {
  display: none;
}

/* Center Content - now left-aligned */
.hero-center-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  z-index: 20;
}

.hero-main-text {
  text-align: left;
}

.hero-subtitle {
  color: #d7bb93;
  /* Warm tan */
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.hero-logo-img {
  width: 100%;
  max-width: 390px;
  height: auto;
}

.hero-title {
  color: #312b23;
  /* Deep brown */
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 38px;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.05em;
}

/* Golden Badges */
.hero-golden-badges {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.golden-badge {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f8f4ed 0%, #d7bb93 50%, #c4a47a 100%);
  padding: 6px;
  box-shadow: 0 10px 20px rgba(49, 43, 35, 0.12);
}

.gb-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f7963b;
  /* Orange */
  border: 2px solid #f8f4ed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.gb-inner p {
  color: #fff;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 15px !important;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 !important;
  padding: 0 !important;
}

/* Bottom Catchphrase - left aligned on cream background */
.hero-bottom-catch {
  text-align: left;
  padding: 0 0 30px 0;
  position: relative;
  z-index: 20;
}

.hero-bottom-catch h2 {
  color: #312b23;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 32px;
  font-weight: 800;
  line-height: 1.5;
  margin: 0;
  text-shadow: none;
}

/* Responsive Overrides */
@media (max-width: 1400px) {
  /* Removed old slant styles to prevent conflict with 35% layout */
}

@media (max-width: 1200px) {
  /* Removed to keep desktop layout consistent down to 992px */
}

@media (max-width: 992px) {

  /* ---- Tablet & Smartphone FV: 縦並びのクリーンなスタックレイアウト ---- */
  .hero-new-layout {
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .hero-bg-left {
    display: none;
  }

  /* 画像：上部配置（SP/Tabletでは先に表示） */
  .hero-bg-right {
    order: 1;
    position: relative;
    width: 100%;
    height: 380px;
    min-height: 380px;
    flex-shrink: 0;
  }

  .hero-bg-right .slide {
    background-position: center center;
  }

  .hero-center-slant {
    display: none;
  }

  /* テキストエリア：下部配置 */
  .hero-content-wrapper {
    order: 2;
    width: 100%;
    background: #f8f4ed;
    padding-bottom: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* 業務一覧リボン (画像の下に配置されるため、 margin-top: 0 に変更して隙間をなくす) */
  .hero-top-ribbon {
    margin-top: 0 !important;
    padding: 14px 20px;
    width: 100%;
    background: #f7963b;
    /* スマホ・タブレットではベタ塗りで視認性アップ */
  }

  .hero-top-ribbon p {
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
  }

  .hero-main-container {
    padding: 24px 20px 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* コンテンツ全体を中央揃え */
    text-align: center;
  }

  .hero-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* バッジなども中央揃え */
    width: 100%;
  }

  .hero-logo-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .hero-golden-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 16px;
    margin: 20px auto 0 auto;
    flex-wrap: wrap;
  }

  .golden-badge {
    width: 110px;
    /* バッジを大きめにリサイズ */
    height: 110px;
    flex-shrink: 0;
    /* 円形が潰れるのを防ぐ */
  }

  .gb-inner p {
    font-size: 12px !important;
    /* 文字が枠内に収まるよう調整 */
    line-height: 1.35;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 下部キャッチコピー帯 */
  .hero-bottom-catch {
    padding: 18px 16px;
    background: #312b23;
    /* 深いブラウンの背景帯 */
    width: 100%;
    text-align: center;
    margin-top: 24px;
  }

  .hero-bottom-catch h2 {
    font-size: 15px;
    color: #ffffff;
    /* 白文字 */
    line-height: 1.5;
    text-align: center;
    text-shadow: none;
  }
}

@media (max-width: 576px) {

  /* ---- Small Smartphone: さらなる極小画面向け微調整 ---- */
  .hero-bg-right {
    height: 300px;
    /* スマホでの画像の高さを適切に調整 */
    min-height: 300px;
  }

  .hero-top-ribbon {
    margin-top: 0 !important;
    padding: 10px 8px;
  }

  .hero-top-ribbon p {
    font-size: 12px;
    letter-spacing: 0.05em;
  }

  .hero-main-container {
    padding: 16px 12px 0 12px;
  }

  .hero-logo-img {
    width: 100%;
    max-width: 270px;
    height: auto;
  }

  .hero-subtitle {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .hero-golden-badges {
    gap: 10px;
    margin: 16px auto 0 auto;
    flex-wrap: nowrap;
    /* スマホ画面幅に収まるよう一行に配置 */
    justify-content: center;
  }

  .golden-badge {
    width: 92px;
    /* スマホでもバッジを大きく確保 */
    height: 92px;
    flex-shrink: 0;
  }

  .gb-inner p {
    font-size: 11px !important;
    /* !importantでグローバルPの影響を確実に防ぐ */
    line-height: 1.3;
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-bottom-catch {
    padding: 14px 10px;
    margin-top: 20px;
  }

  .hero-bottom-catch h2 {
    font-size: 13px;
    line-height: 1.4;
  }
}

/* =========================================
   TV SECTION (RECOMMEND CLONE)
   ========================================= */
.tv-new-layout {
  position: relative;
  width: 100%;
  padding: 0;
  background: #f8f4ed;
  overflow: hidden;
}

.tv-top-chevron {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, #f7963b 0%, #e0832a 100%);
  padding: 60px 20px 80px;
  text-align: center;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  margin-bottom: -60px;
  /* Overlap the bottom area */
}

.tv-top-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.rings-icon-tv-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  /* Strong white drop shadow (sada shadow) directly on the icon shape, plus a dark shadow for depth */
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 3px rgba(255, 255, 255, 0.9)) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.25));
}

.rings-icon-tv {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.tv-heading {
  color: #fff;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
}

.tv-bottom-area {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding: 120px 20px 80px;
}

.tv-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Creates a translucent center that reveals the background heavily on the sides */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 30%, rgba(255, 255, 255, 0.7) 70%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
}

.tv-checklist-container {
  position: relative;
  z-index: 5;
  width: 100%;
  display: flex;
  justify-content: center;
}

.tv-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: max-content;
  max-width: 100%;
}

.tv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
}

.tv-check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .tv-top-chevron {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
    padding: 40px 20px 60px;
  }

  .tv-heading {
    font-size: 24px;
  }

  .tv-bottom-area {
    padding: 80px 20px 50px;
    background-color: rgba(255, 255, 255, 0.9);
    /* More solid on mobile to ensure readability */
  }

  .tv-overlay {
    background: rgba(255, 255, 255, 0.85);
    /* Solid white fade for mobile */
  }

  .tv-checklist-container>div {
    width: 100%;
    max-width: 100%;
    padding: 0;
    box-sizing: border-box;
  }

  .tv-checklist {
    width: 100%;
    max-width: 100%;
  }

  .tv-checklist li {
    font-size: 16px;
  }
}

/* =========================================
   CTA SECTION CLONE
   ========================================= */
.cta-new-layout {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
  margin-top: 0;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
}

.cta-top-chevron {
  background: linear-gradient(135deg, #f7963b 0%, #e0832a 100%);
  padding: 40px 20px 80px;
  text-align: center;
  position: relative;
  z-index: 10;
  clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
  margin-bottom: -60px;
}

.cta-top-chevron p {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}

.cta-bottom-area {
  position: relative;
  width: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  padding: 100px 20px 80px;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Radial or linear blur matching the screenshot */
  background: linear-gradient(to right, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0.95) 75%, rgba(255, 255, 255, 0.3) 100%);
  z-index: 1;
}

.cta-content-inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  width: 100%;
}

.cta-badges {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.cta-badge {
  width: 40px;
  height: 40px;
  background: #f7963b;
  /* Orange */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.cta-subtitle {
  color: #312b23;
  /* Deep brown */
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.cta-logo-text {
  color: #312b23;
  font-size: 28px;
  font-weight: 800;
  margin: 0;
}

.cta-phone {
  margin: 15px 0;
}

.cta-phone a {
  color: #f7963b;
  font-size: 42px;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: sans-serif;
}

.cta-hours {
  color: #312b23;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: sans-serif;
}

.cta-hours p {
  margin: 0;
}

.cta-hours-note {
  font-size: 12px;
  margin-top: 5px !important;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.cta-btn {
  background: #f7963b;
  color: #fff;
  padding: 15px 0;
  width: 32%;
  text-align: center;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: opacity 0.3s;
  display: block;
  font-family: sans-serif;
}

.cta-btn:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-top-chevron {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  }

  .cta-top-chevron p {
    font-size: 15px;
  }

  .cta-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .cta-phone a {
    font-size: 32px;
  }

  .cta-buttons-row {
    flex-direction: column;
  }

  .cta-btn {
    width: 100%;
  }
}

/* =========================================
   SERVICE & STRENGTH CLONE
   ========================================= */
.service-new-layout {
  padding: 120px 0 150px 0;
  /* ゆったりとした余白を設定 */
  background-color: #ffffff;
  overflow: hidden;
  /* Prevent large absolute numbers from causing horizontal scroll */
}

.strength-list {
  display: flex;
  flex-direction: column;
  gap: 120px;
  margin-top: 80px;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.strength-item.reverse {
  flex-direction: row-reverse;
}

.strength-img-col {
  flex: 1;
  position: relative;
  /* Make sure right edge doesn't overflow on small screens */
  max-width: 100%;
}

.strength-img-col img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* The green line under the image and number */
.strength-img-col::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -120px;
  /* Starts exactly where the giant number starts */
  width: calc(100% + 120px);
  height: 2px;
  background-color: #d7bb93;
  /* Warm tan accent */
}

.strength-number {
  position: absolute;
  left: -120px;
  /* Pull it out heavily to the left */
  bottom: -30px;
  /* Sit directly on or slightly overlap the bottom line */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 5;
  line-height: 0.85;
}

.strength-label {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #d7bb93;
  margin-bottom: -15px;
  letter-spacing: 0.1em;
  padding-left: 5px;
}

.strength-num {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 160px;
  font-weight: 800;
  color: #d7bb93;
  letter-spacing: -0.05em;
}

.strength-text-col {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}

.strength-text-col h3 {
  color: #312b23;
  /* Deep brown */
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.6;
}

.strength-text-col p {
  color: #333;
  font-size: 16px;
  line-height: 2;
  font-family: sans-serif;
  margin: 0;
}

@media (max-width: 1200px) {
  .strength-item {
    gap: 30px;
  }

  .strength-text-col {
    padding: 0 20px;
  }

  .strength-num {
    font-size: 130px;
  }

  .strength-label {
    font-size: 22px;
  }

  .strength-number {
    left: -80px;
    bottom: -20px;
  }

  .strength-img-col::after {
    left: -80px;
    width: calc(100% + 80px);
  }
}

@media (max-width: 992px) {
  .strength-list {
    gap: 100px;
    margin-top: 50px;
  }

  .strength-item,
  .strength-item.reverse {
    flex-direction: column;
    gap: 40px;
  }

  .strength-img-col {
    width: calc(100% - 40px);
    margin-left: 40px;
    margin-right: 0;
  }

  .strength-img-col::after {
    left: -40px;
    width: calc(100% + 40px);
  }

  .strength-number {
    left: -50px;
    bottom: -15px;
  }

  .strength-label {
    font-size: 18px;
    margin-bottom: -10px;
  }

  .strength-num {
    font-size: 100px;
  }

  .strength-text-col {
    width: 100%;
    padding: 0 0px;
  }

  .strength-text-col h3 {
    font-size: 22px;
  }

  .strength-img-col img {
    height: 250px;
  }
}

/* =========================================
   ABOUT NEW (TV Layout)
   ========================================= */
.about-tv-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  overflow: hidden;
  /* To keep the rounded corners with the full image */
}

.about-card-tv {
  display: flex;
  align-items: stretch;
  /* Stretch image to fill height */
}

.about-visual-tv {
  flex: 1;
  /* Remove gap so image touches the center */
}

.about-visual-tv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Remove bottom space */
}

.about-text-tv {
  flex: 1;
  text-align: left;
  padding: 50px;
  /* Move padding to the text area only */
}

.about-tv-title {
  color: #312b23;
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-text-tv p {
  color: #333;
  line-height: 2;
  margin-bottom: 20px;
  font-size: 16px;
}

@media (max-width: 992px) {
  .about-tv-content-container {
    margin: 0 20px;
    width: auto;
  }

  .about-card-tv {
    flex-direction: column;
  }

  .about-text-tv {
    padding: 40px 20px;
  }

  .about-tv-title {
    font-size: 24px;
  }

  .about-text-tv p {
    font-size: 15px;
  }
}

/* =========================================
   STAFF NEW (TV Layout)
   ========================================= */
.staff-tv-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  /* High legibility for the profile */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
}

.staff-card-tv {
  display: flex;
  gap: 50px;
  align-items: center;
}

.staff-visual-tv {
  flex: 1;
}

.staff-visual-tv img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  /* Slightly softer for profile photo */
}

.staff-info-tv {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.staff-name-new {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #2D2721;
  margin-bottom: 10px;
  display: flex;
  align-items: baseline;
  gap: 15px;
}

.staff-name-new span {
  font-family: sans-serif;
  font-size: 14px;
  color: #d7bb93;
  font-weight: normal;
  letter-spacing: 0.1em;
}

.staff-career-new {
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid #e0dcd0;
  border-bottom: 1px solid #e0dcd0;
}

.staff-career-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.staff-career-new li {
  color: #312b23;
  font-size: 15px;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}

.staff-message-new h4 {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  color: #312b23;
  margin-bottom: 20px;
}

.staff-message-new p {
  color: #333;
  line-height: 2;
  font-size: 15px;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .staff-tv-content-container {
    padding: 30px 20px;
  }

  .staff-card-tv {
    flex-direction: column;
    gap: 30px;
  }
}

/* =========================================
   CONTACT NEW (TV Layout)
   ========================================= */
.contact-tv-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  /* Frosted box */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
  overflow: hidden;
}

.contact-tv-card {
  display: flex;
}

.contact-tv-info {
  flex: 1;
  padding: 50px 40px;
  color: #333;
}

.contact-store-name {
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 28px;
  color: #312b23;
  margin-bottom: 30px;
  font-weight: 700;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.contact-info-list i {
  color: #f7963b;
  /* Orange accent */
  margin-top: 3px;
}

.contact-tv-map {
  flex: 1;
  min-height: 400px;
}

.contact-tv-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.1);
  display: block;
}

@media (max-width: 992px) {
  .contact-tv-content-container {
    margin: 0 20px;
    width: 100%;
  }

  .contact-tv-card {
    flex-direction: column;
  }

  .contact-tv-info {
    padding: 40px 20px;
  }

  .contact-tv-map {
    width: 100%;
    height: 350px;
  }
}

/* =========================================
   VOICE & PRICING NEW (TV Layout)
   ========================================= */
.pricing-tv-content-container,
.voice-tv-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  /* High legibility */
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
}

@media (max-width: 992px) {

  .pricing-tv-content-container,
  .voice-tv-content-container {
    padding: 30px 20px;
    margin: 0 20px;
    width: auto;
  }
}

/* =========================================
   FEATURES (特徴)
   ========================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 5px solid var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: var(--secondary);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 20px;
}

.feature-title {
  color: var(--primary);
  font-family: 'Zen Maru Gothic', arial, sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.feature-desc {
  font-size: 15px;
  color: var(--text-dim);
  text-align: left;
  line-height: 1.8;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* =========================================
   LOGO IMAGE SIZING
   ========================================= */
.nav-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.hero-logo-img {
  height: auto;
  width: 100%;
  max-width: 390px;
  display: block;
  margin-top: 10px;
}

.cta-logo-img {
  height: 60px;
  width: auto;
  display: block;
  margin: 0 auto 20px auto;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 35px;
  }

  .hero-logo-img {
    height: auto;
  }

  .cta-logo-img {
    height: 45px;
  }
}

/* =========================================
   GALLERY (TV Layout)
   ========================================= */
.gallery-tv-content-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 1);
}

.gallery-swiper {
  width: 100%;
  padding-bottom: 50px;
}

.gallery-slide-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  pointer-events: auto !important;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-slide-img:hover {
  transform: scale(1.03);
}

.gallery-tv-content-container .swiper-button-next,
.gallery-tv-content-container .swiper-button-prev {
  color: var(--accent);
  top: 50%;
  transform: translateY(-50%);
  margin-top: -25px;
  /* Adjust vertical centering due to pagination padding at the bottom */
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-tv-content-container .swiper-button-next:hover,
.gallery-tv-content-container .swiper-button-prev:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.gallery-tv-content-container .swiper-button-prev {
  left: 10px;
}

.gallery-tv-content-container .swiper-button-next {
  right: 10px;
}

.gallery-tv-content-container .swiper-button-prev::after,
.gallery-tv-content-container .swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* Hide on mobile where swiping is natural and screen edge space is limited */
@media (max-width: 992px) {

  .gallery-tv-content-container .swiper-button-next,
  .gallery-tv-content-container .swiper-button-prev {
    display: none;
  }
}

.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media (max-width: 992px) {
  .gallery-tv-content-container {
    padding: 30px 20px;
    margin: 0 20px;
    width: auto;
  }

  .tv-top-chevron,
  .cta-top-chevron {
    padding: 40px 10px 80px;
  }

  .tv-bottom-area,
  .cta-bottom-area {
    padding: 90px 10px 40px;
    display: block;
  }

  .feature-card,
  .about-text-tv {
    padding: 40px 10px;
  }

  .strength-text-col {
    width: 100%;
    padding: 30px 10px;
  }

  .pricing-tv-content-container,
  .voice-tv-content-container,
  .about-tv-content-container {
    padding: 30px 0px;
    margin: 0 0px;
    width: auto;
  }

  .pricing-card-body {
    padding: 30px 10px;
    flex-grow: 1;
  }

  .staff-tv-content-container,
  .pricing-disclaimer {
    padding: 20px 10px;
    margin: 0;
  }

  .contact-tv-content-container {
    margin: 0 0px;
    width: 100%;
  }

  .contact-tv-info {
    padding: 40px 10px;
  }

  .contact-tv-map {
    width: 100%;
    height: 350px;
    min-height: 350px;
  }

  .contact-tv-map iframe {
    height: 350px;
  }

  /* SPでプライスセクション下の余白を詰める */
  #pricing .tv-bottom-area {
    padding-bottom: 0 !important;
  }

  .pricing-tv-content-container {
    padding-bottom: 0 !important;
  }

}

@media (max-width: 768px) {

  /* SPでrecommendの背景画像を変更し、顔を見せる */
  #recommend .tv-bottom-area {
    background-image: url('../img/TvSp.jpg') !important;
    background-position: top center !important;
  }

  #recommend .tv-checklist-container {
    padding-top: 150px;
  }

  /* 上部（顔部分）がはっきり見えるようにオーバーレイをグラデーションに変更 */
  #recommend .tv-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.7) 150px, rgba(255, 255, 255, 0.95) 210px, rgba(255, 255, 255, 1) 100%) !important;
  }
}

/* iOS Safari background-attachment: fixed bug fix */
@supports (-webkit-touch-callout: none) {

  body,
  #message,
  .elegant-cta-wrapper {
    background-attachment: scroll !important;
  }
}