@charset "UTF-8";

/* ==========================================================================
   Base & Reset
   ========================================================================== */
html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.06em;
  color: #333333;
  scroll-behavior: smooth;
}

body {
  background-color: #fcfcfc;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

h1, h2, h3, h4, h5, h6, .qa-q {
  font-family: "Noto Serif JP", serif;
}

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

/* None rounded shape/shadow for target images by global rule if necessary */
section img {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ==========================================================================
   Variables
   ========================================================================== */
:root {
  --color-primary: #0A2342; /* Deep Navy for Premium feel */
  --color-accent: #E63946; /* Vibrant Red for Highlights */
  --color-bg-light: #F8F9FA;
  --color-text-main: #2C3E50;
  --header-height: 80px;
  --header-sp-height: 64px;
  
  --margin-section-sp: 80px;
  --margin-section-pc: 120px;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-accent {
  color: var(--color-accent) !important;
}

.section-padding {
  padding-top: var(--margin-section-sp);
  padding-bottom: var(--margin-section-sp);
}
.no-pb {
  padding-bottom: 0 !important;
}
@media (min-width: 768px) {
  .section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

/* Response Visibility Utilities */
.sp-only {
  display: block;
}
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  .pc-only {
    display: block !important;
  }
}


/* Scroll Reveal Animation Base */
.async, .reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.async.is-visible, .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}
.heading-icon {
  margin: 0 0 10px 0;
}
.heading-icon img {
  width: 42px;
  height: auto;
  margin: 0 auto;
}
.heading-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .heading-ja {
    font-size: 2.2rem;
  }
}
.heading-en {
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}
.heading-en::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--color-accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background-color: var(--color-accent);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn:hover {
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.2);
}
.btn-blue {
  background-color: var(--color-primary);
}
.btn-blue:hover {
  filter: brightness(1.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 35, 66, 0.2);
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-sp-height);
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4%;
}
@media (min-width: 768px) {
  .header {
    height: var(--header-height);
    padding: 0 5%;
  }
}

.header-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--color-primary);
  text-decoration: none;
  letter-spacing: 0.1em;
}

/* PC Nav */
.header-nav {
  display: none;
}
@media (min-width: 1024px) {
  .header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-left: auto;
    margin-right: 40px;
  }
  .header-nav a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
    font-size: 0.95rem;
  }
  .header-nav a:hover {
    opacity: 0.7;
  }
}

.header-btn {
  display: none;
}
@media (min-width: 1024px) {
  .header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-accent);
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s;
    letter-spacing: 0.1em;
  }
  .header-btn:hover {
    filter: brightness(0.9);
  }
}

/* Hamburger */
.hamburger {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1000;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
  background-color: #fff;
}

/* SP Menu Modal */
.sp-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(26, 60, 109, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.sp-nav.is-active {
  opacity: 1;
  pointer-events: auto;
}
.sp-nav-list {
  list-style: none;
  padding: 0;
  text-align: center;
  width: 100%;
}
.sp-nav-list li {
  margin-bottom: 25px;
}
.sp-nav-list a {
  color: #fff;
  font-size: 1.25rem;
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 10px;
}
.sp-nav-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 2.22rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   Hero / FV
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-sp-height);
}

@media (min-width: 768px) {
  .hero {
    padding-top: var(--header-height);
  }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-diagonal {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 55%;
  background: var(--color-primary);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
}

.hero-diagonal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(26, 60, 109, 0.3) 100%);
  z-index: 1;
}

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

.hero-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* subtle animation for each slide if desired */
  transform: scale(1.1);
  transition: transform 6s ease;
}

.hero-swiper .swiper-slide-active img {
  transform: scale(1);
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, transparent, var(--color-accent), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 40px;
  max-width: 1000px;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 0 80px;
  }
}

.hero-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-accent);
}

.hero-title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  color: #eee;
  letter-spacing: 0.2em;
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-tags {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-tag {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 12px;
  padding: 8px 18px;
  letter-spacing: 0.1em;
}

/* Scroll Indicator Text */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-family: "Noto Sans JP", sans-serif;
}

@media (min-width: 768px) {
  .hero-scroll {
    left: 80px;
  }
}

.scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-accent);
  animation: scrollAnimLeftRight 2s infinite ease-in-out;
}

@keyframes scrollAnimLeftRight {
  0% { left: -100%; }
  100% { left: 100%; }
}

@media (max-width: 900px) {
  .hero {
    height: auto;
    min-height: unset;
    background: var(--color-primary);
    flex-direction: column;
    align-items: stretch;
    padding-top: var(--header-sp-height);
  }

  .hero-bg-grid { display: none; }
  .hero-accent-line { display: none; }
  .hero-scroll { display: none; }

  .hero-diagonal {
    display: block;
    position: relative;
    width: 100%;
    height: 70vw;
    min-height: 300px;
    clip-path: none;
    flex-shrink: 0;
  }

  .hero-swiper {
    height: 100%;
  }

  .hero-content {
    position: relative;
    z-index: 10;
    padding: 36px 20px 48px;
    max-width: 100%;
  }
}

/* Animations included from sample */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-content > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero-label { animation-delay: 0.3s; }
.hero-title { animation-delay: 0.5s; }
.hero-subtitle { animation-delay: 0.7s; }
.hero-tags { animation-delay: 0.85s; }

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-banner {
  background-color: var(--color-primary);
  background-image: linear-gradient(135deg, #05162a 0%, #0a2342 50%, #163b5f 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 40%);
  pointer-events: none;
}


.cta-header {
  margin-bottom: 50px;
}

.cta-header-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
}
.cta-header-ja span {
  display: block;
}

@media (min-width: 992px) {
  .cta-header-ja {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    white-space: nowrap;
  }
  .cta-header-ja span {
    display: inline;
  }

}

.cta-header-en {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  opacity: 0.9;
  text-transform: uppercase;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .cta-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
}

.cta-col {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 5%;
  text-align: left;
}

@media (min-width: 992px) {
  .cta-col {
    flex-direction: column;
    text-align: center;
    padding: 0 40px;
  }
  .cta-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
  }
}

.cta-icon-circle {
  width: clamp(70px, 15vw, 90px);
  height: clamp(70px, 15vw, 90px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .cta-icon-circle {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }
}

.cta-body {
  flex: 1;
}

.cta-col-label {
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.cta-web-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 300px;
  height: 54px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.cta-web-link .arrow {
  color: var(--color-primary);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

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

.cta-tel-link {
  display: block;
  font-size: clamp(1.4rem, 7.5vw, 2.8rem);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

.cta-tel-link:hover {
  opacity: 0.8;
}

.cta-tel-link small {
  font-size: 0.5em;
  margin-right: 5px;
  font-weight: 500;
}

.cta-tel-time {
  font-size: clamp(0.75rem, 2vw, 0.85rem);
  opacity: 0.9;
  font-weight: 500;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .cta-banner {
    padding: 60px 0;
  }
  .cta-header {
    margin-bottom: 40px;
  }
  .cta-header-ja {
    font-size: clamp(1.2rem, 5vw, 1.8rem);
  }
}

/* ==========================================================================
   Section Guide (Flow Line)
   ========================================================================== */
.section-guide {
  background-color: var(--color-bg-light);
  text-align: center;
  padding: 40px 0 100px 0;
}
.guide-text {
  font-family: "Noto Serif JP", serif;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 30px;
  letter-spacing: 0.2em;
  opacity: 0.8;
}
.guide-line {
  position: relative;
  display: inline-block;
  width: 1px;
  height: 80px;
  background-color: #ddd;
  overflow: hidden;
}
.guide-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent);
  animation: guideLineMove 3s infinite;
}
@keyframes guideLineMove {
  0% { transform: translateY(-100%); }
  30% { transform: translateY(0); }
  60% { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* ==========================================================================
   About Section (Broken Grid 40:60 Async)
   ========================================================================== */
.about {
  background-color: #fff;
}
.grid-2col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .grid-2col {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .grid-2col.async.left-img .col-img {
    width: 40%;
  }
  .grid-2col.async.left-img .col-text {
    width: 60%;
  }
  .grid-2col.async.right-img .col-text {
    width: 60%;
  }
  .grid-2col.async.right-img .col-img {
    width: 40%;
  }
}
.col-img img {
  width: 100%;
}
.col-text h3 {
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.4;
  font-weight: 700;
}
.col-text p {
  margin-bottom: 1.5em;
  font-size: 1rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features {
  background-color: var(--color-bg-light);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 100%;
}
.feature-item:hover {
  transform: translateY(-10px);
}
.feature-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feature-item:hover .feature-img img {
  transform: scale(1.1);
}
.feature-num {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-accent);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  padding: 10px 20px;
  z-index: 2;
  line-height: 1;
}
.feature-content {
  padding: 25px;
}
.feature-content h3 {
  font-size: 1.20rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.4;
  border: none;
  padding: 0;
}
.feature-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
}

/* ==========================================================================
   Service Section
   ========================================================================== */
.service {
  background-color: #fff;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.service-item {
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s;
}
.service-item:hover {
  transform: translateY(-5px);
}
.service-item .col-img {
  width: 100% !important;
  margin-bottom: 20px;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.service-item .col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-item .col-text {
  width: 100% !important;
}
.service-item .col-text h3 {
  font-size: 1.25rem;
  margin: 10px 0 15px;
}
.service-item .col-text p {
  font-size: 0.95rem;
  line-height: 1.6;
}
.tv {
  background-color: var(--color-bg-light);
}

/* ==========================================================================
   Menu Recommend (Parallax)
   ========================================================================== */
.menu-recommend {
  background-image: url('../img/menu_bg.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 80px 0;
  position: relative;
}
.menu-recommend::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 35, 66, 0.75); /* Reduced opacity for better image visibility */
  z-index: 1;
}
.menu-recommend .inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.menu-item {
  background: #ffffff; /* Solid white background for visibility */
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15); /* More depth shadow */
}
@media (min-width: 768px) {
  .menu-item {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
  }
  .menu-item-img {
    width: 40%;
  }
  .menu-item-text {
    width: 60%;
  }
}
.menu-item-img img {
  width: 100%;
}
.menu-item h3 {
  color: var(--color-primary); /* Use primary navy for header */
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  border-bottom: 2px solid var(--color-accent); /* Bold accent color border */
  padding-bottom: 10px;
}
.menu-item p {
  color: #333333; /* Darker text for readability */
}
.menu-spec {
  margin: 15px 0;
  font-weight: 500;
  color: var(--color-accent); /* Highlight with Accent Red */
  border-left: 2px solid var(--color-accent);
  padding-left: 10px;
}

/* ==========================================================================
   TV (Third View) Section
   ========================================================================== */
.tv-list {
  background: #fff;
  padding: 25px;
  border-left: 4px solid var(--color-accent);
}
@media (min-width: 768px) {
  .tv-list {
    padding: 30px;
  }
}
.tv-list ul {
  list-style: none;
  padding: 0;
}
.tv-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 10px;
}
.tv-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

/* ==========================================================================
   Menu Price
   ========================================================================== */
.menu-price {
  background-color: #fff;
}
.price-message-top {
  text-align: center;
  margin-bottom: 60px;
}
.message-icon img {
  width: 50px;
  height: auto;
  margin: 0 auto 20px;
}
.main-catch {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}
.main-catch::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--color-accent);
}
.sub-catch {
  font-size: 0.9rem;
  color: #888;
  letter-spacing: 0.1em;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .main-catch {
    font-size: 2.4rem;
  }
}
.price-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.price-desc {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
.price-slider-wrap {
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
}
.price-slider {
  padding-bottom: 20px;
}
.price-slider .swiper-wrapper {
  transition-timing-function: linear !important; /* Forces constant speed */
}
.price-slider .swiper-slide {
  width: auto;
}
.price-slider img {
  width: 280px;
  height: 210px;
  object-fit: cover;
  border-radius: 0;
  cursor: pointer;
}
@media (min-width: 768px) {
  .price-slider img {
    width: 320px;
    height: 240px;
  }
}
.price-btn-wrap {
  margin-top: 40px;
  text-align: center;
}
.btn.outline {
  background-color: transparent;
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
}
.btn.outline:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery {
  background-color: var(--color-bg-light);
}
.gallery-slider .swiper-slide {
  width: 80%; /* SP */
}
@media (min-width: 768px) {
  .gallery-slider .swiper-slide {
    width: 300px;
  }
}
.gallery-slider img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .gallery-slider img {
    height: 300px;
  }
}
.gallery-slider img:hover {
  opacity: 0.8;
}

/* Modal */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
.modal-content {
  max-width: 90%;
  max-height: 90vh;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  user-select: none;
}

/* ==========================================================================
   Flow Section
   ========================================================================== */
.flow {
  background-color: var(--color-bg-light);
}
.flow-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.flow-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  padding: 30px;
  border-left: 5px solid var(--color-primary);
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.flow-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
@media (min-width: 768px) {
  .flow-item {
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 40px;
  }
}
.flow-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5f5f5;
  line-height: 1;
  position: absolute;
  top: 10px;
  right: 15px;
  z-index: 1;
}
@media (min-width: 768px) {
  .flow-num {
    font-size: 3.5rem;
    position: static;
    min-width: 80px;
    text-align: center;
    margin-right: 20px;
    color: #eeeeee;
  }
}
.flow-icon {
  width: 50px;
  height: 50px;
  color: var(--color-primary);
  margin-bottom: 15px;
  z-index: 2;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .flow-icon {
    margin-bottom: 0;
    margin-right: 30px;
  }
}
.flow-icon svg {
  width: 100%;
  height: 100%;
}
.flow-content {
  z-index: 2;
}
.flow-content h3 {
  font-weight: 700;
  margin-bottom: 10px;
}
.flow-content p {
  color: #444;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ==========================================================================
   Voice Section
   ========================================================================== */
/* ==========================================================================
   Voice Section
   ========================================================================== */
.voice {
  background-color: #fff;
}
.voice-slider {
  padding-bottom: 50px;
  width: 100%;
}
.voice-slider .swiper-slide {
  height: auto;
}
.voice-card {
  background: #fff;
  padding: 30px;
  border: 1px solid #eaeaea;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease;
}
.voice-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.voice-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.voice-icon {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #f0f0f0;
}
.avatar-icon svg {
  width: 70%;
  height: 70%;
  color: #fff;
}
.avatar-icon.male {
  background-color: #4a90e2;
}
.avatar-icon.female {
  background-color: #e91e63;
}
.avatar-icon.neutral {
  background-color: #9b59b6;
}

.voice-name {
  font-weight: bold;
  color: var(--color-primary);
  font-size: 1.1rem;
}
.voice-stars {
  color: #FBC02D;
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.voice-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
  flex-grow: 1;
}

/* ==========================================================================
   Message Section
   ========================================================================== */
.message {
  background-color: var(--color-bg-light);
  padding-top: var(--margin-section-sp);
  padding-bottom: var(--margin-section-sp);
}
@media (min-width: 768px) {
  .message {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

/* ==========================================================================
   Q&A Section
   ========================================================================== */
.qa {
  background-color: #fff;
}
.qa-list {
  max-width: 800px;
  margin: 0 auto;
}
.qa-item {
  margin-bottom: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  overflow: hidden;
}
.qa-q {
  background-color: var(--color-primary);
  color: #fff;
  padding: 20px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}
.qa-q::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  transition: transform 0.3s;
}
.qa-item.is-open .qa-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.qa-a {
  background-color: #fff;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.qa-item.is-open .qa-a {
  padding: 20px;
  max-height: 500px;
}

/* ==========================================================================
   Contact / Access
   ========================================================================== */
.contact {
  background-color: var(--color-bg-light);
}

.contact-info {
  font-size: 1.05rem;
}
.contact-info p {
  margin-bottom: 10px;
}
.contact-info-list {
  margin-top: 20px;
  margin-bottom: 30px;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #06C755; /* LINE Color */
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}
.sns-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .sns-wrap {
    text-align: center;
  }
}
.map-wrap {
  width: 100%;
}
.map-wrap iframe {
  width: 100%;
  height: 350px;
  display: block;
}
@media (min-width: 768px) {
  .map-wrap iframe {
    height: 450px;
  }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--color-primary);
  color: #fff;
  padding: 40px 0 20px;
  text-align: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  list-style: none;
  padding: 0;
}
.footer-nav a {
  color: #fff;
  text-decoration: none;
  opacity: 0.8;
  font-size: 0.9rem;
}
.footer-nav a:hover {
  opacity: 1;
}
.copyright {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ==========================================================================
   Floating Elements
   ========================================================================== */
.sp-fixed-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 900;
  display: flex;
}
@media (min-width: 768px) {
  .sp-fixed-cta {
    display: none;
  }
}
.sp-cta-btn {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.95rem;
}
.sp-cta-tel {
  background-color: var(--color-primary);
}
.sp-cta-mail {
  background-color: var(--color-accent);
}

.to-top {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%; /* Allow circle for Top button normally, or square if strictly none */
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 1.5rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important;
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 768px) {
  .to-top {
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
  }
}

/* Base adjustment for global image shape restriction */
.to-top { border-radius: 0; } /* Strictly no rounded shapes as requested except voice icon maybe */
