@charset "utf-8";

:root {
  --ink: #f8f2e8;
  --ink-dark: #201914;
  --muted: #7c746c;
  --paper: #f6f0e6;
  --paper-2: #fffaf2;
  --noir: #0c0b0a;
  --noir-2: #17120e;
  --brown: #3a2519;
  --gold: #caa56a;
  --gold-light: #f1d9a3;
  --gold-deep: #8b6330;
  --wine: #5f1d1d;
  --line: rgba(114, 78, 39, .22);
  --line-light: rgba(255, 255, 255, .14);
  --white: #fff;
  --shadow: 0 20px 60px rgba(25, 16, 9, .18);
  --radius: 24px;
  --header-height: 74px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--ink-dark);
  background: var(--paper);
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: anywhere;
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; vertical-align: middle; }
a { color: var(--gold-deep); text-underline-offset: .18em; }
a:hover { color: var(--wine); }
button, input, textarea, select { font: inherit; }

li{
	text-align: justify;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
}

.visually-hidden,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 9999;
  padding: 8px 12px;
  background: var(--white);
  color: var(--ink-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(12, 11, 10, .88);
  border-bottom: 1px solid rgba(202, 165, 106, .25);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  display: grid;
  text-decoration: none;
  line-height: 1.22;
}

.site-brand__en {
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--gold-light);
  font-weight: 800;
}

.site-brand__ja {
  margin-top: 5px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(.84rem, 1.4vw, 1.08rem);
  font-weight: 700;
  color: var(--white);
}

.global-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}

.global-nav a {
  color: rgba(255, 255, 255, .88);
  text-decoration: none;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
}

.global-nav a:hover { color: var(--gold-light); }

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(202, 165, 106, .34);
  border-radius: 50%;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.menu-button span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}

.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: min(820px, calc(100vh - var(--header-height)));
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 11, 10, .96) 0%, rgba(17, 13, 10, .93) 42%, rgba(61, 37, 20, .62) 100%),
    radial-gradient(circle at 76% 22%, rgba(202, 165, 106, .28), transparent 30%),
    linear-gradient(135deg, #090807 0%, #24150f 55%, #4b2b17 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image:
    linear-gradient(115deg, transparent 0 47%, rgba(241, 217, 163, .22) 48%, transparent 50%),
    linear-gradient(65deg, transparent 0 48%, rgba(255,255,255,.12) 49%, transparent 51%);
  background-size: 120px 120px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(246, 240, 230, .98));
  pointer-events: none;
}

.hero--compact { min-height: 600px; }
.hero--compact .hero-inner { min-height: 560px; padding-bottom: 90px; }
.hero--compact .hero-photo { max-width: 360px; }

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  opacity: .55;
  pointer-events: none;
}
.hero-bg-orb--one {
  width: 420px;
  height: 420px;
  right: 12vw;
  top: 8vh;
  background: radial-gradient(circle, rgba(202,165,106,.34), transparent 66%);
}
.hero-bg-orb--two {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: 12vh;
  background: radial-gradient(circle, rgba(95,29,29,.44), transparent 68%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  min-height: min(760px, calc(100vh - var(--header-height) - 20px));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(290px, .86fr);
  align-items: center;
  gap: clamp(36px, 6vw, 86px);
  padding: 78px 0 130px;
}

.hero-copy { max-width: 760px; }

.hero-eyebrow {
  margin: 0 0 24px;
  font-size: .82rem;
  letter-spacing: .24em;
  font-weight: 800;
  color: var(--gold-light);
}

.hero h1 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  line-height: 1.6;
  font-weight: 700;
  text-shadow: 0 10px 38px rgba(0,0,0,.45);
}

.hero-title__sub {
  display: block;
  font-size: clamp(1.2rem, 2.1vw, 1.7rem);
  letter-spacing: .18em;
  color: rgba(255,255,255,.88);
}

.hero-title__main {
  display: block;
  margin-top: 16px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: .02em;
}

.hero-title__accent {
  display: block;
  width: fit-content;
  margin-top: 24px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 217, 163, .58);
  border-radius: 999px;
  color: var(--gold-light);
  background: rgba(0,0,0,.28);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(.86rem, 1.55vw, 1.08rem);
  line-height: 1.6;
  letter-spacing: .08em;
}

.hero-lead {
  margin: 28px 0 0;
  max-width: 620px;
  color: rgba(255,255,255,.86);
  font-size: clamp(.98rem, 1.55vw, 1.14rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 14px;
  border: 1px solid rgba(241, 217, 163, .46);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 700;
  letter-spacing: .04em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 12px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .06em;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
}

.button:hover { transform: translateY(-2px); }
.button--primary {
  color: #17100a;
  background: linear-gradient(135deg, #f4ddb0 0%, #caa56a 58%, #9b7138 100%);
  box-shadow: 0 18px 38px rgba(0,0,0,.28);
}
.button--primary:hover { color: #17100a; box-shadow: 0 22px 48px rgba(0,0,0,.35); }
.button--ghost {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.32);
  background: rgba(255,255,255,.08);
}
.button--ghost:hover { color: var(--gold-light); background: rgba(255,255,255,.13); }

.hero-photo {
  margin: 0;
  position: relative;
  justify-self: center;
  width: min(430px, 100%);
  filter: drop-shadow(0 30px 70px rgba(0,0,0,.5));
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(241, 217, 163, .55);
  border-radius: 28px;
  z-index: -1;
}

.hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(241, 217, 163, .35);
  background: #1b1714;
}

.hero-photo figcaption {
  margin-top: 12px;
  color: rgba(255,255,255,.58);
  font-size: .76rem;
  text-align: center;
}

.notice-band {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.notice-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  border-radius: 22px;
  background: var(--paper-2);
  border: 1px solid rgba(202,165,106,.45);
  box-shadow: var(--shadow);
}

.notice-band strong {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 1.3rem;
}

.notice-band p {
  margin: 0;
  font-weight: 800;
  color: var(--wine);
  text-align: right;
}

.label,
.section-kicker {
  display: block;
  margin: 0 0 8px;
  color: var(--gold-deep);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.section {
  padding: clamp(50px, 3vw, 110px) 0;
  position: relative;
}

.section--lead { padding-top: clamp(82px, 10vw, 130px); }
.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(202,165,106,.18), transparent 32%),
    linear-gradient(135deg, #0d0b0a 0%, #20150f 66%, #3a2014 100%);
}
.section--application { background: #efe4d4; }
.section--split { background: var(--paper-2); }

.section-heading { margin-bottom: 32px; }
.section-heading--center { text-align: center; }

.section-heading h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.5vw, 2rem);
  line-height: 1.28;
  letter-spacing: .05em;
}

.section-heading p:not(.section-kicker) {
  margin: 14px 0 0;
  color: var(--muted);
}
.section--dark .section-heading p:not(.section-kicker) { color: rgba(255,255,255,.74); }
.section--dark .section-kicker { color: var(--gold-light); }

.point-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.point-card {
  position: relative;
  min-height: 238px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid rgba(202,165,106,.3);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,250,242,.96));
  box-shadow: 0 16px 36px rgba(42,25,13,.09);
  overflow: hidden;
text-align: justify;
}

.point-card::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(202,165,106,.13);
}

.point-card--wide { grid-column: span 2; }

.point-card__number {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--noir);
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .04em;
}

.point-card h3 {
  margin: 18px 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.18rem, 1.8vw, 1.4rem);
  line-height: 1.45;
color:#8E0002;
}

.point-card p { margin: 0; color: #4f453d; }

.overview-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.overview-card {
  padding: 24px;
  border-radius: 22px;
  background: var(--paper-2);
  border: 1px solid rgba(202,165,106,.28);
  box-shadow: 0 14px 30px rgba(42,25,13,.08);
text-align: justify;
}

.overview-card span {
  display: block;
  color: var(--gold-deep);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.overview-card strong {
  display: block;
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.1rem;
  line-height: 1.8;
text-align: justify;
}

.overview-card small {
  display: block;
  margin-top: 6px;

}

.info-panel,
.text-card,
.contact-card,
.step-card,
.pre-confirmation__panel {
  border: 1px solid rgba(202,165,106,.3);
  border-radius: var(--radius);
  background: rgba(255,250,242,.92);
  box-shadow: 0 16px 38px rgba(42,25,13,.08);
}

.info-panel { padding: 26px; }
.definition-list {
  display: grid;
  gap: 0;
  margin: 0;
}
.definition-list div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(202,165,106,.24);
}
.definition-list div:last-child { border-bottom: 0; }
.definition-list dt { font-weight: 800; color: var(--gold-deep); }
.definition-list dd { margin: 0; }

.timeline {
  display: grid;
  gap: 26px;
}
.timeline-day {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  padding: 28px;
  border: 1px solid rgba(241,217,163,.22);
  border-radius: var(--radius);
  background: rgba(255,255,255,.055);
}
.timeline-date {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  padding: 22px;
  border-radius: 20px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(241,217,163,.25);
}
.timeline-date span {
  display: block;
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .18em;
  font-size: .76rem;
}
.timeline-date strong {
  display: block;
  margin-top: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.45rem;
}
.timeline-date small {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,.72);
}
.timeline-body { display: grid; gap: 16px; }
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
}
.timeline-item--highlight {
  background: linear-gradient(135deg, rgba(202,165,106,.2), rgba(255,255,255,.08));
  border-color: rgba(241,217,163,.35);
}
.timeline-item time {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .06em;
}
.timeline-item h3 {
  margin: 0 0 6px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
}
.timeline-item p { margin: 0; color: rgba(255,255,255,.82); }

/* 日程表：時間＋交通機関表示 */
.timeline-meta {
  display: grid;
  gap: 6px;
  align-self: start;
}

.timeline-meta time {
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .06em;
}

.transport-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(241, 217, 163, .42);
  background: rgba(241, 217, 163, .12);
  color: var(--gold-light);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .04em;
}

.note-box {
  padding: 18px 20px;
  border-radius: 18px;
  background: #f7eddf;
  border: 1px solid rgba(202,165,106,.25);
}
.note-box p { margin: .4em 0; }
.note-box h4 { margin: 0 0 8px; }
.note-box--dark {
  margin-top: 24px;
  background: rgba(0,0,0,.22);
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.78);
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.fee-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--paper-2);
  border: 1px solid rgba(202,165,106,.3);
  box-shadow: 0 16px 34px rgba(42,25,13,.08);
text-align: center;
}
.fee-card--option { background: linear-gradient(180deg, #fffaf2, #f2e5d0); }
.fee-card h3 {
  margin: 0 0 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.22rem;
}

.fee-card strong {
  display: block;
  color: var(--wine);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  letter-spacing: .04em;
border-bottom: 1px solid #9B0002;
padding-bottom: 10px;
}

.fee-card h4 {
  display: block;
	font-family: "Noto Serif JP", serif;
  letter-spacing: .04em;
font-size: 1.1em;
margin-bottom: 0;
padding-bottom: 0;
color: var(--gold-deep);
}
.fee-card p{
	margin-top: 8px;
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 70px);
}
.simple-list {
  margin: 0;
  padding-left: 1.4em;
}
.simple-list li + li { margin-top: 8px; }
.small-note { margin-top: 18px; color: var(--muted); }

.notice-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 20px;
}
.text-card { padding: 28px; }
.option-notes h3,
.text-card h3,
.contact-card h3,
.step-card h3 {
  margin: 0 0 14px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.35rem;
}
.contact-card h4{
  font-size: 1.1rem;
	
}

.text-card ul,.text-card ol,
.step-card ul,
.accordion-list ul {
  margin: 0;
  padding-left: 1.25em;
text-align: justify;
}
.text-card li + li,
.step-card li + li,
.accordion-list li + li { margin-top: 8px; }
.large-text { font-weight: 800; color: var(--wine); }

.accordion-list {
  display: grid;
  gap: 12px;
}
.accordion-list details {
  border: 1px solid rgba(241,217,163,.2);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
  overflow: hidden;
}
.accordion-list summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
  color: var(--gold-light);
}
.accordion-list details > div {
  padding: 0 22px 22px;
  color: rgba(255,255,255,.83);
}

.table-scroll { overflow-x: auto; }
.cancel-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(42,25,13,.08);
}
.cancel-table th,
.cancel-table td {
  padding: 16px 18px;
  border: 1px solid rgba(202,165,106,.25);
  text-align: left;
  vertical-align: middle;
text-align: center;
}
.cancel-table thead th {
  color: var(--white);
  background: var(--noir);
}
.cancel-table tbody th { width: 60%; font-weight: 700; }
.cancel-table td { font-weight: 800; color: var(--wine); }

.step-list { display: grid; gap: 18px; }
.step-card { padding: 28px; }
.step-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--noir);
  color: var(--gold-light);
  font-weight: 800;
  letter-spacing: .12em;
  font-size: .78rem;
}
.step-card h3 { margin-top: 16px; }
.bank-box {
  margin: 18px 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: #f6ead7;
  border: 1px solid rgba(202,165,106,.3);
}
.bank-box p { margin: .25em 0; font-weight: 700; }
.application-cta {
  margin-top: 28px;
  padding: 26px;
  text-align: center;
  border-radius: var(--radius);
  background: var(--noir);
  color: var(--white);
}
.application-cta p { margin: 12px 0 0; color: rgba(255,255,255,.66); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 20px;
}
.contact-card { padding: 28px; }
.contact-card p { margin: .55em 0; }
.contact-card hr {
  border: 0;
  border-top: 1px solid rgba(202,165,106,.28);
  margin: 20px 0;
}
.contact-card--sub { background: #fff6e8; }
.contact-card--sub p { font-size: 0.9rem;}

.site-footer {
  color: rgba(255,255,255,.78);
  background: var(--noir);
  padding: 36px 0;
}
.site-footer__inner {
  display: grid;
  gap: 18px;
  text-align: center;
}
.footer-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.footer-nav a,
.footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-size: .88rem;
}
.footer-nav a:hover,
.footer-links a:hover { color: var(--gold-light); }
.footer-links { font-size: .86rem; opacity: .82; }
.copyright { margin: 0; font-size: .8rem; color: rgba(255,255,255,.5); }

.page-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #17100a;
  background: linear-gradient(135deg, #f4ddb0, #caa56a);
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0,0,0,.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s;
}
.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pre-main { background: var(--paper); }
.pre-confirmation { padding: 74px 0 100px; }
.pre-confirmation__panel { padding: clamp(28px, 5vw, 48px); }
.pre-confirmation__panel h2 {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}
.pre-confirmation__lead { margin: 14px 0 22px; font-weight: 700; }
.pre-confirmation__panel ol { padding-left: 1.35em; }
.pre-confirmation__panel li + li { margin-top: 12px; }
.pre-confirmation__question {
  margin: 28px 0 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f5e7d3;
  font-weight: 800;
text-align: center;
}
.pre-yes-no {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pre-btn {
  display: grid;
  place-items: center;
  gap: 4px;
  min-height: 96px;
  padding: 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 800;
}
.pre-btn--yes {
  color: #17100a;
  background: linear-gradient(135deg, #f4ddb0, #caa56a);
}
.pre-btn--no {
  color: var(--white);
  background: var(--noir);
}
.pre-btn__main { font-size: 1.8rem; line-height: 1; }
.pre-btn__sub { font-size: .86rem; }
.pre-btn.is-disabled { opacity: .56; cursor: not-allowed; }
.pre-note { margin: 14px 0 0; color: var(--muted); font-size: .9rem; }

@media (max-width: 1100px) {
  .global-nav { gap: 14px; }
  .global-nav a { font-size: .78rem; }
  .overview-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  :root { --header-height: 68px; }
  .header-inner { width: min(100% - 28px, 1240px); }
  .menu-button { display: block; }
  .global-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    background: rgba(12,11,10,.96);
    border-bottom: 1px solid rgba(202,165,106,.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: .24s;
  }
  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .global-nav a {
    display: block;
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .hero,
  .hero--compact { min-height: auto; }
  .hero-inner,
  .hero--compact .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 48px 0 112px;
    gap: 36px;
  }
  .hero-photo {
    order: -1;
    width: min(330px, 82vw);
  }
  .hero-photo::before { inset: 14px -14px -14px 14px; }
  .hero-copy { text-align: center; margin-inline: auto; }
  .hero-title__accent,
  .hero-meta,
  .hero-cta { justify-content: center; margin-inline: auto; }
  .notice-band { margin-top: -34px; }
  .notice-band__inner { display: grid; text-align: center; }
  .notice-band p { text-align: center; }
  .point-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .point-card--wide { grid-column: span 2; }
  .timeline-day,
  .notice-grid,
  .split-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .timeline-date { position: static; }
}

@media (max-width: 640px) {
  .container,
  .hero-inner { width: min(100% - 28px, 1120px); }
  .site-brand__en { font-size: .58rem; }
  .site-brand__ja { font-size: .83rem; }
  .hero-title__main { font-size: clamp(2.15rem, 12vw, 3.2rem); }
  .hero-title__accent { border-radius: 18px; }
  .hero-meta span { flex: 1 1 auto; justify-content: center; min-width: 28%; }
  .hero-cta .button { width: 100%; }
  .section { padding: 62px 0; }
  .section--lead { padding-top: 78px; }
  .notice-band__inner { padding: 20px 18px; }
  .point-grid,
  .overview-grid,
  .fee-grid { grid-template-columns: 1fr; }
  .point-card--wide { grid-column: auto; }
  .point-card,
  .text-card,
  .step-card,
  .contact-card,
  .info-panel { padding: 22px; }
  .definition-list div { grid-template-columns: 1fr; gap: 4px; }
  .timeline-day { padding: 18px; }
  .timeline-item { grid-template-columns: 1fr; gap: 6px; }
  .pre-yes-no { grid-template-columns: 1fr; }
  .page-top { right: 14px; bottom: 14px; }
}

.logo img{
	width: 300px;
	max-width: 95%;
}

/* お申込みボタン 強調 */
.application-cta {
  text-align: center;
  margin-top: 40px;
}

.application-cta .button--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 22px 42px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 999px;
  background: linear-gradient(135deg, #c9a24d 0%, #f4df9b 45%, #b8872f 100%);
  color: #111;
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.35);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.application-cta .button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(201, 162, 77, 0.5);
  opacity: 1;
}

.application-cta .button--primary::after {
  content: " →";
  margin-left: 0.4em;
}

.application-cta p {
  margin-top: 14px;
  font-size: 1.2rem;
  color:#caa56a;
font-weight: bold;
}

/* スマホ調整 */
@media (max-width: 600px) {
  .application-cta .button--primary {
    width: 100%;
    min-width: 0;
    padding: 20px 24px;
    font-size: 1.1rem;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
}

.number{
	text-align: center;
	margin: 40px auto 10px auto;
	font-size: 90%;
}

/* ================================
   HERO内ツアーポイント
================================ */

.hero-points {
  width: min(660px, 100%);
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(241, 217, 163, .36);
  border-radius: 22px;
  background: rgba(0, 0, 0, .34);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .24);
  backdrop-filter: blur(10px);
  text-align: left;
}

.hero-points__label {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
}

.hero-points__list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points__list li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 255, 255, .84);
  line-height: 1.55;
}

.hero-points__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .75em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4ddb0, #caa56a);
  box-shadow: 0 0 12px rgba(202, 165, 106, .5);
}

.hero-points__list strong {
  color: var(--gold-light);
  font-weight: 800;
}

.hero-points__list span {
  display: block;
  margin-top: 2px;
  font-size: .94em;
}

.point-large {font-size: 140%;
	
}


/* ================================
   オプション料金カード
================================ */

/* OPTIONセクション 背景強調 */
.section--option {
  background:
    radial-gradient(circle at 88% 8%, rgba(202, 165, 106, .20), transparent 32%),
    linear-gradient(180deg, #efe1c8 0%, #e4d0ad 100%);
}

.option-card {
  display: block;
  margin-bottom: 24px;
  padding: 30px 32px;
  border-radius: var(--radius);
  border: 1px solid rgba(202, 165, 106, .38);
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,237,222,.96));
  box-shadow: 0 18px 40px rgba(42, 25, 13, .1);
}

.option-card h3 {
  margin: 0 0 10px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  line-height: 1.45;
  color: var(--wine);	
}

.option-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 700;
}

.option-card > strong {
  display: block;
  margin-top: 8px;
  padding: 0;
  min-width: 0;
  min-height: 0;
  color: var(--wine);
  background: none;
  box-shadow: none;
  font-size: clamp(1.2rem, 3vw, 2em);
  line-height: 1.2;
  letter-spacing: .04em;
}

.op-fee{
font-size: 130%;
color: var(--wine);	
font-weight: bold;
}

.option-fee-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(202, 165, 106, .35);
  color: #51463d;
  font-size: .95rem;
}

.option-fee-note ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.option-fee-note li {
  position: relative;
  padding-left: 1.45em;
  line-height: 1.7;
}

.option-fee-note li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold-deep);
  font-weight: 800;
}

/* スマホ調整 */
@media (max-width: 640px) {
  .option-card {
    padding: 22px;
  }

  .option-card > strong {
    width: auto;
    min-width: 0;
    min-height: 0;
    font-size: 2rem;
  }

  .option-fee-note {
    margin-top: 18px;
    padding-top: 16px;
  }
}

.option-notes {
  margin: 18px 0 0;
  padding: 22px 24px;
  border: 1px solid #51463d;
  border-radius: 18px;
background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,237,222,.96));
}

.option-notes ul {
	 padding-left: 1.35em!important;
}

.option-notes li + li {
  margin-top: 8px;
}



.redbox {
  margin: 26px 0;
  padding: 22px 24px;
  border: 2px solid rgba(142, 0, 2, .35);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(246,237,222,.96));
	color: #8E0002;
}

.redbox > div:first-child {
  margin-bottom: 10px;
  color: #8E0002;
  font-weight: 800;
font-size: 1.2em;
}

.option-notes span{
	background-color:#FFD7D8;
	padding: 6px;
	margin-top: 8px;
	display: inline-block;
}

.redbox ul {
  margin: 0;
  padding-left: 1.35em;
font-weight: 700;
}

.redbox li + li {
  margin-top: 8px;

}

.option-cancel {
  margin-top: 28px;
}

.option-cancel__title {
  margin: 0 0 10px;
  color: var(--wine);
  font-weight: 800;
  font-size: 1.1rem;
}


/* スマホ調整 */
@media (max-width: 960px) {
  .hero-points {
    margin-inline: auto;
  }
}

@media (max-width: 640px) {
  .hero-points {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-points__list {
    gap: 8px;
  }

  .option-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .option-card > strong {
    width: 100%;
    min-width: 0;
    min-height: 74px;
  }

  .redbox {
    padding: 18px;
  }
}

.pc{
	display: block!important;
}
.sp{
	display: none!important;
}

@media (max-width: 768px) {
	.pc{
		display: none!important;
	}
	.sp{
		display: block!important;
	}
}

.red{
	color: #5f1d1d;
}
.fwb{
	font-weight: bold;
}
.fs-120{
	font-size: 120%;
}
.mb-20{
	margin-bottom: 20px;
}
.page-top-anchor {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}