#gContainer {

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

/*:root {*/
  --cream:   #faf7f4;
  --beige:   #f0e8de;
  --sand:    #ddd0c2;
  --taupe:   #b5a08e;
  --brown:   #7a6152;
  --dark:    #3a2f28;
  --gold:    #c09a72;
  --green:   #7a9480;
  --white:   #ffffff;
/*}*/

/*html { scroll-behavior: smooth; }*/

/*body {*/
  background-color: var(--cream);
  color: var(--dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  line-height: 1.8;
  font-size: 15px;
/*}*/

/* ─── HEADER ─── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--sand);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--dark);
  text-decoration: none;
}
.logo span {
  color: var(--gold);
}

nav a {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--brown);
  text-decoration: none;
  margin-left: 28px;
  transition: color 0.2s;
}
nav a:hover { color: var(--gold); }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--headerHeight) - var(--extraHeaderHeight));
  max-height: calc(100vh - var(--headerHeight) - var(--extraHeaderHeight));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://img.aflat.asia/img2/mv_is01.jpg');
  background-size: cover;
  background-position: center 40%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,18,10,0.82) 0%, rgba(45,28,16,0.75) 50%, rgba(35,22,12,0.82) 100%);
}

/* subtle texture overlay */
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 30% 60%, rgba(192, 154, 114, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 75% 30%, rgba(122, 148, 128, 0.12) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 60px 40px;
}

.hero-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 32px;
  white-space: nowrap;
}

.hero-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(96px, 18vw, 180px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.85;
  letter-spacing: -0.02em;
  opacity: 0.12;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
  margin-bottom: 16px;
  padding: 0px 10px;
}

.hero-title em {
  font-style: italic;
  font-weight: normal;
  color: var(--gold);
  white-space: nowrap;
}

.hero-subtitle {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 2vw, 17px);
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.18em;
  margin-bottom: 48px;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.05em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(192,154,114,0.6), transparent);
  animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── SECTIONS ─── */
section { padding: 50px 40px; }

.section-inner {
  max-width: 900px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 32px;
}

.section-body {
  color: var(--brown);
  line-height: 2;
  font-size: 14.5px;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* ─── MESSAGE ─── */
.message-section {
  background: var(--beige);
}

.message-layout {
  margin-top: 56px;
}

/* 白いカード内を左テキスト・右写真の2カラムにする */
.message-quote {
  display: grid !important;
  grid-template-columns: 1fr 300px;
  gap: 0;
  align-items: stretch;
}

.message-quote-text {
  padding: 36px 40px 36px 40px;
  position: relative;
}

.message-photo {
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: var(--sand);
  border-radius: 0 2px 2px 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  pointer-events: none;
  height: 100%;
}
/*
.photo-placeholder::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--taupe);
  border-radius: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b5a08e' stroke-width='1.5'%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3Cpath d='M4 20c0-4 3.6-7 8-7s8 3 8 7'/%3E%3C/svg%3E") center/18px no-repeat;
}
*/

/* ─── TIMELINE PHOTO ─── */
.timeline-photo {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 3 / 2;
  max-width: 300px;
  background: var(--sand);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeline-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.timeline-photo .photo-placeholder {
  font-size: 10px;
}

.message-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 2.2;
  color: var(--dark);
  font-weight: 300;
  margin-bottom: 36px;
  background: var(--white);
  border-left: 3px solid var(--gold);
  position: relative;
  overflow: hidden;
}

.message-quote-text::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--sand);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.message-body {
  font-size: 14px;
  color: var(--brown);
  line-height: 2.2;
}

.signature {
  margin-top: 32px;
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.08em;
}

/* ─── HISTORY TIMELINE ─── */
.history-section { background: var(--cream); }

.timeline {
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--sand));
}

.timeline-item {
  position: relative;
  padding: 0 0 48px 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -5px;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--cream);
}

.timeline-dot.milestone {
  width: 15px;
  height: 15px;
  left: -7px;
  top: 4px;
  background: var(--brown);
}

.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.timeline-event {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.timeline-desc {
  font-size: 13px;
  color: var(--taupe);
  line-height: 1.8;
}

.timeline-desc a {
  color: #c09a72;
  text-decoration: underline;
  text-decoration-color: rgba(192, 154, 114, 0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.timeline-desc a:hover {
  color: #a07d52;
  text-decoration-color: #a07d52;
}

/* ─── CUSTOMER STORIES ─── */
.stories-section {
  background: var(--cream);
}
.stories-lead {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--dark);
  margin-bottom: 24px;
}
@media (max-width: 600px) {
  .stories-lead { font-size: 20px; }
}
.stories-section .section-label { color: var(--taupe); }
.stories-section .section-title {
  color: var(--dark);
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.stories-section .divider { background: rgba(122,97,82,0.3) !important; }
.stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}
.story-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(181,160,142,0.35);
  border-radius: 4px;
  padding: 36px 32px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.story-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(122,97,82,0.12);
}
.story-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 10px;
}
.story-context {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--taupe);
  margin-bottom: 18px;
}
.story-quote {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  line-height: 1.9;
  color: var(--dark);
  margin: 0 0 20px 0;
  padding: 0 0 0 18px;
  border-left: 2px solid var(--gold);
  font-style: normal;
}
.story-tag {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--brown);
}
.stories-link-line {
  text-align: center;
  margin-top: 8px;
}
.stories-all-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  color: var(--brown);
  text-decoration: none;
  border-bottom: 1px solid rgba(122,97,82,0.4);
  padding-bottom: 2px;
  transition: border-color 0.3s, color 0.3s;
}
.stories-all-link:hover {
  color: var(--dark);
  border-color: var(--dark);
}

/* ─── PHILOSOPHY ─── */
.philosophy-section {
  background: var(--dark);
  color: var(--white);
}

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

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.philosophy-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--gold);
  overflow: hidden;
}

.philosophy-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.88) saturate(0.9);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.philosophy-card:hover .philosophy-card-img {
  transform: scale(1.04);
  filter: brightness(0.95) saturate(1);
}

.philosophy-card-body {
  padding: 32px 28px;
}

.philosophy-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: rgba(192,154,114,0.3);
  line-height: 1;
  margin-bottom: 16px;
}

.philosophy-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
}

.philosophy-text a {
  color: #c09a72;
  text-decoration: underline;
  text-decoration-color: rgba(192,154,114,0.4);
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.philosophy-text a:hover { color: #e0bb90; }

.philosophy-text {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 2;
}

/* ─── SALE / CAMPAIGN ─── */
.sale-section { background: var(--beige); }

.sale-banner {
  background: var(--white);
  border: 1px solid var(--sand);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.sale-banner::before {
  content: '25';
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 300;
  color: var(--beige);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.sale-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 6px 20px;
  margin-bottom: 24px;
}

.sale-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5vw, 52px);
  color: var(--dark);
  font-weight: 300;
  line-height: 1.2;
  position: relative;
  margin-bottom: 16px;
  white-space: nowrap;
}

.sale-heading em {
  font-style: italic;
  color: var(--gold);
  margin: 0px 0.2em;
}

.sale-period {
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: 0.1em;
  position: relative;
  margin-bottom: 32px;
}

.sale-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.sale-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-top: 3px solid var(--gold);
  padding: 36px 28px 28px;
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
}

.sale-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.sale-card-icon {
  font-size: 26px;
  margin-bottom: 14px;
}

.sale-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
  font-weight: 400;
}

.sale-card-discount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.sale-card-condition {
  font-size: 12px;
  color: var(--taupe);
  background: var(--beige);
  padding: 8px 12px;
  margin-bottom: 14px;
  line-height: 1.7;
  border-left: 2px solid var(--gold);
}

.sale-card-desc {
  font-size: 12.5px;
  color: var(--brown);
  line-height: 1.9;
  flex: 1;
}

.sale-card-links {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--beige);
}

.sale-card-links p {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--taupe);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sale-card-links a {
  display: block;
  font-size: 12px;
  color: var(--brown);
  text-decoration: none;
  padding: 5px 0;
  border-bottom: 1px solid var(--beige);
  transition: color 0.2s;
}

.sale-card-links a:last-child { border-bottom: none; }

.sale-card-links a:hover { color: var(--gold); }

.sale-card-links a::after {
  content: ' →';
  font-size: 11px;
  color: var(--gold);
}

/* ─── HOW TO USE ─── */
.howto-block {
  margin-top: 52px;
  background: var(--white);
  border: 1px solid rgba(192,154,114,0.25);
  border-top: 2px solid var(--gold);
  padding: 36px 40px;
}

.howto-block-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.howto-block-heading {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.howto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.howto-panel {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 24px 24px 20px;
}

.howto-panel-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 14px;
}

.howto-panel-label span.howto-icon {
  font-size: 16px;
}

.howto-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.howto-steps li {
  counter-increment: step;
  display: flex;
  gap: 12px;
  font-size: 12.5px;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 10px;
}

.howto-steps li:last-child { margin-bottom: 0; }

.howto-steps li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.howto-note {
  margin-top: 14px;
  font-size: 11.5px;
  color: var(--taupe);
  line-height: 1.7;
  padding-left: 4px;
}

@media (max-width: 640px) {
  .howto-grid { grid-template-columns: 1fr; }
  .howto-block { padding: 28px 20px; }
}

.cta-btn {
  display: inline-block;
  margin-top: 48px;
  padding: 16px 48px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.cta-btn:hover { background: var(--brown); }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 60px 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

footer .foot-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

footer .foot-tagline {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  margin-bottom: 32px;
  white-space: nowrap;
}

footer p { margin-top: 8px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  header { padding: 0 20px; }
  nav { display: none; }
  section { padding: 72px 24px; }
  .message-quote { grid-template-columns: 1fr !important; }
  .message-photo { min-height: 220px; border-radius: 0 0 2px 2px; }
  .message-quote { padding: 28px 28px 28px 32px; }
  .sale-banner { padding: 40px 24px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 24px; }
  .stories-grid { grid-template-columns: 1fr; gap: 20px; }
  .story-card { padding: 28px 24px; }
  .story-quote { font-size: 14px; }
}

}/*#gContainer*/
