/* ===================================================================
   アンジェブリッサ ロケーションフォトキャンペーン LP
   =================================================================== */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, ul, ol, li, figure, dl, dd { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", -apple-system, "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input { font: inherit; }

/* ---------- Tokens ---------- */
:root {
  --navy: #194375;
  --navy-light: #3b6da9;
  --gold: #afa380;
  --orange: #ff7c00;
  --grey: #f0f0f0;
  --red: #ff0000;
  --text: #2c2c2c;
  --header-h: 78px;
  --nav-h: 64px;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-script: "Dancing Script", cursive;
}
@media (min-width: 769px) {
  :root { --header-h: 90px; --nav-h: 68px; }
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-heading {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 22px;
  letter-spacing: .08em;
  margin-bottom: 40px;
}

.script-heading {
  text-align: center;
  font-family: var(--font-script);
  color: var(--navy);
  font-size: 40px;
  margin-bottom: 4px;
}
.script-heading.gold { color: var(--gold); }

.sub-heading-jp {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 20px;
  letter-spacing: .1em;
  margin-bottom: 48px;
}

/* ---------- Header (fixed) ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: #fff;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.site-header .logo img { height: 34px; width: auto; }
@media (min-width: 769px) {
  .site-header { padding: 0 40px; }
  .site-header .logo img { height: 42px; }
}
.header-cta {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 20px;
  border-radius: 4px;
  letter-spacing: .04em;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .header-cta { font-size: 17px; padding: 18px 32px; }
}

/* hamburger */
.hamburger {
  display: none;
}

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 50;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}
.site-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 28px;
  height: var(--nav-h);
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.site-nav a {
  color: #fff;
  font-size: 16px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.site-nav a:hover { opacity: .8; }

@media (max-width: 1024px) {
  .site-nav ul { gap: 0 16px; }
  .site-nav a { font-size: 13px; }
}

@media (max-width: 769px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
  }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--navy);
    transition: transform .25s ease, opacity .25s ease;
  }
  .hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.is-open span:nth-child(2) { opacity: 0; }
  .hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    bottom: 0;
    height: auto;
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding: 32px 32px;
    gap: 26px 0;
  }
  .site-nav a { font-size: 17px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  margin-top: var(--header-h);
  min-height: 620px;
  background-image: url(../images/hero-bg.jpg);
  background-size: cover;
  background-position: 75% 44%;
  display: flex;
  align-items: center;
  padding: 60px 0 40px;
}
@media (min-width: 769px) {
  .hero { min-height: 838px; padding: 90px 0 60px; }
}
.hero-inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-bubble {
  position: relative;
  width: 260px;
  margin-bottom: 28px;
}
.hero-bubble svg { width: 100%; height: auto; filter: drop-shadow(0 4px 10px rgba(0,0,0,.15)); }
.hero-bubble-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
}
@media (min-width: 769px) {
  .hero-bubble { width: 320px; }
  .hero-bubble-text { font-size: 26px; }
}

.hero-lead {
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 18px;
}
@media (min-width: 769px) {
  .hero-lead { font-size: 34px; }
}
.hero-campaign-bar {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .05em;
  padding: 14px 28px;
  margin-bottom: 34px;
}
@media (min-width: 769px) {
  .hero-campaign-bar { font-size: 24px; padding: 16px 36px; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-badge {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
  padding: 8px;
}
@media (min-width: 769px) {
  .hero-badge { width: 140px; height: 140px; font-size: 15px; }
}
.hero-notes {
  margin-top: 20px;
  color: var(--navy);
  font-size: 12px;
  line-height: 1.8;
}
@media (min-width: 769px) {
  .hero-notes { font-size: 13px; }
}

/* ---------- Catch copy ---------- */
.catchcopy {
  text-align: center;
  padding: 64px 24px 40px;
  color: var(--navy);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.9;
}
@media (min-width: 769px) {
  .catchcopy { font-size: 26px; padding: 90px 24px 50px; }
}

.plan-title-block {
  text-align: center;
  padding: 0 24px 50px;
}
.plan-title-block .script-heading { font-size: 34px; }
@media (min-width: 769px) {
  .plan-title-block .script-heading { font-size: 46px; }
}

/* ---------- Plan sections ---------- */
.plan-section { padding: 60px 0; }
.plan-section:nth-of-type(even) { background: #fafafa; }
.plan-heading {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 769px) {
  .plan-heading { font-size: 30px; }
}
.plan-heading .accent-red { color: var(--red); }

.plan-price-box {
  max-width: 560px;
  margin: 0 auto 34px;
  text-align: center;
}
.plan-price-box .campaign-label {
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 28px;
}
.plan-price-box .campaign-sub {
  color: var(--gold);
  font-size: 14px;
  margin-top: 4px;
  letter-spacing: .03em;
}
.plan-price-box hr {
  border: none;
  border-top: 1px solid var(--navy);
  margin: 18px auto;
  width: 100%;
}
.plan-price-box .price {
  color: var(--navy);
  font-weight: 700;
  font-size: 34px;
}
.plan-price-box .price small { font-size: 16px; font-weight: 500; margin-left: 6px; white-space: nowrap; }
.plan-price-box .price-disclaimer {
  font-size: 12px;
  color: #555;
  margin-top: 14px;
  line-height: 1.7;
}

.plan-inclusions {
  max-width: 760px;
  margin: 0 auto 30px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.9;
  text-align: center;
}
.plan-desc {
  max-width: 760px;
  margin: 0 auto 46px;
  font-size: 15px;
  line-height: 2;
  color: var(--text);
  text-align: left;
}
.plan-desc.narrow { padding: 0 4px; }

.spot-subheading {
  text-align: center;
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 17px;
  letter-spacing: .1em;
  margin-bottom: 34px;
}

.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0 auto 30px;
  max-width: 1000px;
  padding: 0 24px;
}
@media (min-width: 769px) {
  .spot-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 48px; padding: 0; }
}
.spot-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}
.spot-card h4 {
  text-align: center;
  font-family: var(--font-serif);
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 10px;
}
.spot-card p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

.spot-footnote {
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 12px;
  color: #666;
  line-height: 1.8;
}

/* ---------- Set plans (2 columns) ---------- */
.setplan-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--grey);
}
.setplan-card {
  background: var(--grey);
  padding: 26px 18px 40px;
}
@media (min-width: 769px) {
  .setplan-card { padding: 40px 36px 56px; }
}
.setplan-card h3 {
  font-family: var(--font-serif);
  color: var(--navy);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .setplan-card h3 { font-size: 22px; }
}
.setplan-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 22px;
}
.setplan-card .campaign-label { font-family: var(--font-script); color: var(--gold); font-size: 22px; display: block; text-align: center; }
.setplan-card .campaign-sub { color: var(--gold); font-size: 12px; text-align: center; margin-top: 4px; }
.setplan-card .price { color: var(--navy); font-weight: 700; font-size: 26px; text-align: center; margin: 16px 0; }
.setplan-card .price small { font-size: 13px; font-weight: 500; white-space: nowrap; }
@media (max-width: 420px) {
  .setplan-card .price { font-size: 21px; }
}
.setplan-card .price-disclaimer { font-size: 11px; color: #555; text-align: center; line-height: 1.7; margin-bottom: 18px; }
.setplan-card .plan-inclusions { font-size: 12px; margin-bottom: 20px; }
.setplan-card .plan-desc { font-size: 13px; line-height: 1.85; }

/* ---------- Horizontal scroll gallery ---------- */
.gallery-section { padding: 56px 0; }
.gallery-scroll-wrap { position: relative; }
.gallery-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 0 16px 24px;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll::after {
  content: "";
  flex: 0 0 10px;
}
.gallery-item {
  flex: 0 0 auto;
  width: 62vw;
  max-width: 320px;
  scroll-snap-align: start;
  cursor: pointer;
  overflow: hidden;
}
@media (min-width: 769px) {
  .gallery-item { width: 280px; }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  color: var(--navy);
  font-size: 18px;
}
.gallery-arrow.prev { left: 6px; }
.gallery-arrow.next { right: 6px; }
.gallery-arrow[hidden] { display: none; }
@media (max-width: 768px) {
  .gallery-arrow { width: 36px; height: 36px; font-size: 15px; }
}

/* ---------- Wide visual ---------- */
.wide-visual { width: 100%; }
.wide-visual img { width: 100%; height: clamp(220px, 40vw, 480px); object-fit: cover; }

/* ---------- Chapel plans ---------- */
.chapel-heading-block { text-align: center; padding: 64px 24px 44px; }
.chapel-heading-block .script-heading { font-size: 34px; }
@media (min-width: 769px) { .chapel-heading-block .script-heading { font-size: 46px; } }

.chapel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 30px;
}
@media (min-width: 769px) {
  .chapel-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
}
.chapel-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 18px;
}
.chapel-card h4 {
  text-align: center;
  font-family: var(--font-script);
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 8px;
}
.chapel-card .price {
  text-align: center;
  color: var(--navy);
  font-weight: 700;
  font-size: 22px;
}
.chapel-card .price small { font-size: 13px; font-weight: 500; margin-left: 4px; white-space: nowrap; }

/* ---------- Photo list grid ---------- */
.photo-grid-section { padding: 50px 0 60px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
@media (min-width: 769px) {
  .photo-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
}
.photo-grid .g-item { cursor: pointer; overflow: hidden; }
.photo-grid .g-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-grid .g-item:hover img { transform: scale(1.04); }

/* ---------- Customer voice ---------- */
.voice-section { padding: 56px 0 64px; background: #fafafa; }
.voice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.voice-card { position: relative; overflow: hidden; }
.voice-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.voice-card figcaption {
  position: absolute;
  left: 0; right: 0; top: 0;
  padding: 8px 6px;
  font-size: 10px;
  color: #fff;
  text-align: center;
  background: linear-gradient(180deg, rgba(0,0,0,.55), transparent);
  line-height: 1.4;
}
@media (min-width: 769px) {
  .voice-card figcaption { font-size: 13px; padding: 14px 10px; }
}

/* ---------- FAQ ---------- */
.faq-section { padding: 64px 0 70px; }
.faq-search-wrap {
  max-width: 1100px;
  margin: 0 auto 40px;
  padding: 0 24px;
  display: flex;
  justify-content: flex-end;
}
.faq-search {
  position: relative;
  width: 100%;
  max-width: 280px;
}
.faq-search input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--navy);
  padding: 8px 28px 8px 4px;
  font-size: 15px;
  color: var(--navy);
  background: transparent;
}
.faq-search input::placeholder { color: #8a8a8a; }
.faq-search .icon {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--navy);
  pointer-events: none;
}
.faq-no-result {
  text-align: center;
  color: #888;
  padding: 30px 0;
  display: none;
}
.faq-no-result.is-visible { display: block; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.faq-item {
  border-bottom: 1px solid var(--navy);
}
.faq-item[hidden] { display: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  color: var(--navy);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
}
.faq-q .chevron { flex: 0 0 auto; transition: transform .25s ease; }
.faq-item.is-open .faq-q .chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-item.is-open .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--text);
}

/* ---------- Brand ---------- */
.brand-section { padding: 20px 0 60px; }
.brand-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 24px;
}
.brand-box {
  border: 1px solid var(--gold);
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-box img, .brand-box svg { max-width: 260px; width: 100%; height: auto; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 22px 20px;
  font-size: 13px;
  letter-spacing: .04em;
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 86vh;
  width: auto;
  object-fit: contain;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  color: #fff;
  font-size: 28px;
  padding: 10px 16px;
  z-index: 5;
}
.lightbox-close { top: 14px; right: 18px; font-size: 34px; }
.lightbox-prev { left: 6px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 6px; top: 50%; transform: translateY(-50%); }
@media (max-width: 768px) {
  .lightbox-prev, .lightbox-next { font-size: 22px; padding: 8px 10px; }
}
