

:root {
  --red:        #C41E3A;
  --red-dark:   #9B1830;
  --navy:       #12122A;
  --navy-mid:   #1E1E3F;
  --gold:       #D4A017;
  --cream:      #FEF7F0;
  --gray-light: #F4F4F8;
  --gray:       #6B7280;
  --gray-dark:  #374151;
  --border:     #E5E7EB;
  --white:      #FFFFFF;
  --shadow-sm:  0 1px 4px rgba(0,0,0,.07);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --radius:     8px;
}

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

html {
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.75;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 88px 0;
}

.section-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 580px;
}

.section-header {
  margin-bottom: 52px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-block;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: center;
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.45);
}

.btn-ghost:hover {
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}

.btn-outline-dark:hover {
  background: var(--red);
  color: var(--white);
}

.img-ph {
  background: #DDDDE8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9999B0;
  font-size: 12px;
}

.img-ph svg {
  width: 40px;
  height: 40px;
  color: #AAAAC0;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  display: flex;
  align-items: center;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.logo-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -.02em;
}

.logo-name em {
  color: var(--red);
  font-style: normal;
}

.hero {
  color: var(--white);
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: var(--navy);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .5;
}

.hero-wrap {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

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

.hero-eyebrow {
  display: inline-block;
  background: rgba(196, 30, 58, .22);
  color: #F5AABD;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 26px;
}

.hero h1 {
  font-size: 54px;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 17px;
  line-height: 1.85;
  color: rgba(255,255,255,.80);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-deco {
  flex-shrink: 0;
  width: 340px;
  opacity: .06;
}

.hero-deco svg {
  width: 100%;
  height: auto;
}

.intro {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.intro-img {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.intro-wrap-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-text-center {
  width: 100%;
}

.intro-text-center .section-tag,
.intro-text-center .section-title,
.intro-text-center p {
  display: inline-block;
  width: 100%;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-top: 40px;
  justify-items: center;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 20px;
}

.stat-num {
  font-size: 34px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-lbl {
  font-size: 13px;
  color: var(--gray);
}

.locations {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.loc-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.loc-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.loc-card-body {
  padding: 18px 20px 22px;
}

.loc-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--red);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.loc-card-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--navy);
}

.loc-card-body p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.65;
}

.services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-img {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: var(--gray-light);
}

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

.svc-card > h3,
.svc-card > p {
  padding-left: 28px;
  padding-right: 28px;
}

.svc-card > h3 {
  padding-top: 24px;
  padding-bottom: 12px;
}

.svc-card > p {
  padding-bottom: 24px;
}

.svc-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--navy);
}

.svc-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.packages {
  background: var(--navy-mid);
  color: var(--white);
}

.packages .section-tag {
  background: rgba(196, 30, 58, .18);
  color: #F5AABD;
}

.packages .section-title {
  color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pkg-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
}

.pkg-card.featured {
  background: var(--red);
  border-color: var(--red);
}

.pkg-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--gold);
  color: var(--navy);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pkg-img {
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}

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

.pkg-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.pkg-card p {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}

.pkg-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.pkg-price small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

.pkg-duration {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  margin-bottom: 20px;
}

.pkg-card .btn {
  width: 100%;
  margin-top: auto;
}

.pkg-btn-featured {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.pkg-btn-featured:hover {
  background: var(--cream);
  border-color: var(--cream);
}

.howitworks {
  background: var(--white);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.step {
  text-align: center;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--red);
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--red);
  margin: 0 auto 24px;
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

.seasonal {
  background: var(--cream);
}

.seasonal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.season-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
}

.season-head {
  padding: 20px 20px 16px;
  background: var(--red);
  color: var(--white);
}

.season-head.spring  { background: #C41E3A; }
.season-head.summer  { background: #1A4A8A; }
.season-head.autumn  { background: #B05800; }
.season-head.winter  { background: #2A5A8A; }

.season-head h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 3px;
}

.season-months {
  font-size: 11px;
  opacity: .8;
}

.season-body {
  padding: 18px 20px;
}

.season-body li {
  font-size: 13px;
  color: var(--gray-dark);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.season-body li:last-child {
  border-bottom: none;
}

.season-body li::before {
  content: '›';
  color: var(--red);
  font-size: 16px;
  line-height: 1.3;
  flex-shrink: 0;
}

.testimonials {
  background: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.testi-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--border);
}

.testi-quote {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-quote::before {
  content: '\201C';
  color: var(--red);
  font-size: 24px;
  line-height: .5;
  vertical-align: -.3em;
  margin-right: 4px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 13px;
}

.author-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #DDDDE8;
}

.author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.author-from {
  font-size: 12px;
  color: var(--gray);
}

.faq {
  background: var(--gray-light);
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
}

.faq-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.faq-a {
  display: none;
  padding: 0 26px 22px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.85;
}

.faq-item.open .faq-a {
  display: block;
}

.contacts {
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.contact-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--gray-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.contact-ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.contact-ico svg {
  width: 26px;
  height: 26px;
  color: var(--red);
}

.contact-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
  font-size: 15px;
  color: var(--gray-dark);
  line-height: 1.7;
}

.contact-card a:hover {
  color: var(--red);
}

.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
}

.footer-upper {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  padding: 56px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .logo-name {
  color: var(--white);
  font-size: 18px;
  display: block;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.85;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 12px;
}

@media (max-width: 1024px) {
  .locations-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .seasonal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-upper {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }

  .hero h1 { font-size: 36px; }
  .hero { padding: 70px 0; }
  .hero-deco { display: none; }
  .hero-wrap { flex-direction: column; }

  .section-title { font-size: 28px; }

  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .intro-stats { grid-template-columns: 1fr 1fr; }

  .services-grid,
  .testi-grid,
  .contacts-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .locations-grid,
  .packages-grid,
  .seasonal-grid {
    grid-template-columns: 1fr;
  }

  .footer-upper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-lower {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  z-index: 999;
  display: none;
  border-top: 2px solid var(--red);
}

.cookie-banner.show {
  display: block;
}

.cookie-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1;
  min-width: 280px;
}

.cookie-content p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 14px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }
}

.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-modal:not([hidden]) {
  display: flex;
}

.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.cookie-modal-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--gray);
  line-height: 1;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-close:hover {
  color: var(--navy);
}

.cookie-modal-body {
  padding: 24px;
}

.cookie-option {
  margin-bottom: 20px;
}

.cookie-option label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.cookie-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  cursor: pointer;
}

.cookie-option span {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-dark);
}

.cookie-option strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy);
}

.cookie-modal-info {
  font-size: 12px;
  color: var(--gray);
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.cookie-modal-info a {
  color: var(--red);
  text-decoration: underline;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
}

.cookie-modal-actions .btn {
  flex: 1;
}

.btn-contact {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-contact:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}
