@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&display=swap');

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

:root {
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --c-text: #333;
  --c-dark: #111;
  --c-accent: #fd8a9f;
  --c-bg-light: #f9f7f4;
  --inner-width: 1100px;
  --section-py: 100px;
}

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

body {
  font-family: var(--font-sans);
  color: var(--c-text);
  background: #fff;
  scrollbar-gutter: stable;
}

/* ========== Header ========== */
.site-header {
  display: flex;
  align-items: center;
  height: 80px;
  padding-left: 11%;
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.site-header .logo {
  display: block;
  flex-shrink: 0;
}

.site-header .logo img {
  display: block;
  height: 48px;
  width: auto;
}

.header-right {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin-left: auto;
}

.site-nav-wrap,
.site-nav-wrap nav {
  height: 100%;
}

.site-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0 20px;
  height: 100%;
}

.site-nav li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
}

.site-nav li.is-active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 4px;
  background: #111;
}

.site-nav a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.site-nav a:hover {
  opacity: 0.5;
}

.link-gold {
  color: #fd8a9f!important;
  font-weight: 600;
  text-decoration: none;
}

.site-nav ruby {
  ruby-align: center;
  margin-top: 2px;
  margin-bottom: 10px;
}

.site-nav rt {
  font-size: 9px;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 86px;
  background: #111;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  align-self: flex-start;
  height: calc(100% + 10px);
  transition: opacity 0.2s;
}

.contact-btn:hover {
  opacity: 0.75;
}

.contact-btn i {
  font-size: 20px;
  color: #fff;
}

.contact-btn span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #fff;
}

/* ========== Common Section ========== */
.section {
  padding: var(--section-py) 0;
}

.section-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading__en {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.45em;
  color: var(--c-dark);
  margin-bottom: 8px;
  text-align: center;
  text-indent: 0.45em;
}

.section-heading__ja {
  display: block;
  font-size: 50px;
  letter-spacing: 0.12em;
  color: #999;
  text-align: center;
}

/* ========== Button ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 32px;
  border: 1px solid var(--c-dark);
  color: var(--c-dark);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: var(--c-dark);
  color: #fff;
}

/* ========== Hero Slider ========== */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  min-height: 600px;
}

.hero-slide__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide__copy {
  position: absolute;
  top: 28%;
  left: 8%;
  z-index: 1;
  background: rgba(255, 255, 255, 0.75);
  padding: 28px 36px;
  backdrop-filter: blur(2px);
}

.hero-slide__copy p {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 700;
  line-height: 1.8;
  color: var(--c-dark);
  text-shadow: none;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
}

.hero-slide__copy rt {
  font-size: 0.3em;
  letter-spacing: 0.08em;
}

.swiper-slide-active .hero-slide__copy p {
  opacity: 1;
  transform: translateY(0);
}

/* bands variant (slide_003) */
.hero-slide__copy--bands {
  background: none;
  backdrop-filter: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-slide__copy--bands span {
  display: block;
  background: #fff;
  box-shadow: 10px 10px 0 #111;
  padding: 3px 10px;
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-dark);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 1.4s ease 0.6s, transform 1.4s ease 0.6s;
}

.hero-slide__copy--bands span:nth-child(2) {
  transition-delay: 1.1s;
}

.hero-slide__copy--bands span:nth-child(3) {
  transition-delay: 1.6s;
}

.swiper-slide-active .hero-slide__copy--bands span {
  opacity: 1;
  transform: translateY(0);
}

.hero .swiper-pagination {
  bottom: 28px;
}

.hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.55);
  opacity: 1;
  transition: background 0.3s;
}

.hero .swiper-pagination-bullet-active {
  background: #fff;
}

/* スクロールインジケーター（SP のみ表示） */
.hero-scroll {
  display: none;
}

@media (max-width: 768px) {
  .hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: absolute;
    bottom: 72px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }

  .hero-scroll__mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
  }

  .hero-scroll__wheel {
    display: block;
    width: 3px;
    height: 7px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 2px;
    animation: scroll-wheel 1.6s ease-in-out infinite;
  }

  @keyframes scroll-wheel {
    0%   { opacity: 1; transform: translateY(0); }
    80%  { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; transform: translateY(0); }
  }

  .hero-scroll__label {
    font-family: var(--font-sans);
    font-size: 9px;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.9);
  }
}

/* ========== Sub Page MV ========== */
.sub-mv {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

.sub-mv::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.sub-mv__title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sub-mv__title p, .sub-mv__title h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
}

.sub-mv--saiori .sub-mv__title rt {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.35em;
  letter-spacing: 0.6em;
  padding-bottom: 5px;
}

/* ========== Breadcrumb ========== */
.breadcrumb {
  background: #F9F7F4;
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #999;
}

.breadcrumb-inner a {
  color: #999;
  text-decoration: none;
  transition: opacity 0.2s;
}

.breadcrumb-inner a:hover {
  opacity: 0.6;
}

/* ========== Contact Form ========== */
.contact-section {
  background: #fff;
}

.contact-section .section-inner {
  max-width: none;
  padding: 0 20px;
}

.contact-lead {
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.9;
  font-size: 14px;
}

.contact-form {
  max-width: 1100px;
  margin: 0 auto;
  background: #F9F7F4;
  padding: 64px 80px 56px;
}

.contact-form .section-heading {
  margin-bottom: 24px;
}

.contact-form .section-heading__en {
  font-size: 40px;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  margin-bottom: 10px;
}

.contact-form .section-heading__ja {
  font-size: 13px;
  letter-spacing: 0.12em;
  color: #999;
}

.contact-form .contact-lead {
  margin-bottom: 40px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-dark);
}

.form-row .required {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: #d23a3a;
  color: #fff;
  padding: 2px 8px;
}

.form-row input,
.form-row textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid #e5e5e3;
  background: #fff;
  color: var(--c-text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  width: 100%;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #8b6916;
}

.form-row textarea {
  resize: vertical;
  min-height: 180px;
  line-height: 1.8;
}

.form-privacy-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: #888;
  line-height: 1.9;
  text-align: center;
  margin-top: 40px;
}

.form-privacy-note a {
  color: #fd8a9f;
  text-decoration: underline;
}

.form-actions {
  text-align: center;
  margin-top: 24px;
}

.submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 320px;
  padding: 18px 56px;
  background: var(--c-dark);
  color: #fff;
  border: 1px solid var(--c-dark);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.submit-btn i {
  position: absolute;
  right: 24px;
  font-size: 14px;
}

.submit-btn:hover {
  background: #fff;
  color: var(--c-dark);
}

/* ========== Thanks Page ========== */
.thanks-text {
  text-align: center;
  line-height: 2;
  margin-bottom: 50px;
  font-size: 14px;
}

.thanks-actions {
  text-align: center;
}

/* ========== Vision Section (Top Page) ========== */
.vision-section {
  background: #fff;
}

.vision-section .section-inner {
  max-width: 880px;
  padding: 0 24px;
  text-align: center;
}

.vision-label {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.35em;
  color: var(--c-dark);
  margin-bottom: 36px;
}

.vision-heading {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  margin-bottom: 70px;
}

.vision-body {
  text-align: left;
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.04em;
  color: #444;
  max-width: 780px;
  margin: 0 auto;
}

.vision-body p {
  text-indent: 1em;
  margin-bottom: 0;
}

.vision-divider {
  display: inline-block;
  margin-top: 56px;
  width: 60px;
  height: 1px;
  background: var(--c-dark);
}

/* ========== Company Page ========== */
.company-message { background: #fff; }

.message-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.message-grid::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: var(--c-dark);
  margin: 48px auto 0;
}


.message-title {
  font-family: var(--font-serif);
  font-size: 46px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--c-dark);
  margin-bottom: 60px;
  text-align: center;
  font-feature-settings: "palt"!important;
}

.message-text {
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 2.4;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  color: var(--c-text);
}

.bracket-close {
  letter-spacing: -0.35em;
}

.message-signature {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-align: right;
  color: var(--c-dark);
}

.company-overview { background: #fff; }

.company-overview .section-heading,
.company-history .section-heading {
  text-align: left;
  margin-bottom: 40px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d9d4cb;
}

.company-overview .section-heading__en,
.company-history .section-heading__en {
  text-align: left;
  text-indent: 0;
  margin-bottom: 10px;
}

.company-overview .section-heading__ja,
.company-history .section-heading__ja {
  display: block;
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  text-align: left;
}

.overview-list {
  max-width: 880px;
  margin: 0 auto;
  border-top: 1px solid #b3b3b3;
}

.overview-row {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid #b3b3b3;
}


.overview-row dt {
  width: 160px;
  flex-shrink: 0;
  padding: 26px 20px;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--c-text);
  background: #faf8f4;
  display: flex;
  align-items: center;
}

.overview-row dd {
  flex: 1;
  padding: 26px 24px;
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.9;
  color: var(--c-text);
  background: #fff;
}

.overview-row dd a {
  color: #b8922a;
  text-decoration: none;
  transition: opacity 0.2s;
}

.overview-row dd a:hover {
  opacity: 0.7;
}

.overview-row dd a .fa-arrow-up-right-from-square {
  font-size: 11px;
  margin-left: 5px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.overview-en {
  display: inline-block;
  margin-top: 4px;
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #999;
}

.company-history { background: #faf8f4; }

.history-list {
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  position: relative;
}

.history-list::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 177px;
  width: 1px;
  background: #c8b890;
}

.history-item {
  display: flex;
  align-items: flex-start;
  padding: 36px 0;
  position: relative;
  border-bottom: 1px solid #e5ddd0;
}

.history-item:last-child {
  border-bottom: none;
}

.history-year-col {
  width: 170px;
  flex-shrink: 0;
  text-align: right;
  padding-right: 24px;
}

.history-era {
  display: block;
  font-family: var(--font-serif);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #999;
  margin-bottom: 6px;
}

.history-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 100;
  letter-spacing: 0.03em;
  color: #8b6916;
  line-height: 1.1;
}

.history-year-unit {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  color: #8b6916;
  margin-left: 2px;
  vertical-align: middle;
}

.history-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #8b6916;
  flex-shrink: 0;
  margin-top: 3px;
  position: relative;
  z-index: 1;
}

.history-content {
  flex: 1;
  padding-left: 28px;
}

.history-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: 10px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.history-desc {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.9;
  color: #42210b;
  letter-spacing: 0.04em;
}

/* ========== Back to Top Button ========== */
.back-to-top-wrap {
  background: #faf8f4;
  padding: 60px 24px 80px;
  text-align: center;
}

.back-to-top-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 320px;
  padding: 18px 56px;
  background: var(--c-dark);
  color: #fff;
  border: 1px solid var(--c-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.back-to-top-btn i {
  position: absolute;
  left: 24px;
  font-size: 14px;
}

.back-to-top-btn:hover {
  background: #fff;
  color: var(--c-dark);
}

/* ========== Footer ========== */
.site-footer {
  background: #111;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 40px;
}

.footer-main {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  padding: 48px 0 40px;
}

.footer-info {
  flex-shrink: 0;
}

.footer-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.footer-logo {
  display: block;
  margin-bottom: 18px;
}

.footer-logo img {
  display: block;
  height: 44px;
  width: auto;
}

.footer-info address {
  font-style: normal;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0 24px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.footer-nav a:hover {
  opacity: 0.55;
}

.footer-sns {
  align-self: flex-end;
}

.footer-sns a {
  display: block;
  color: #fff;
  font-size: 28px;
  transition: opacity 0.2s;
}

.footer-sns a:hover {
  opacity: 0.55;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 36px;
}

.footer-policy {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer-policy a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.footer-policy a:hover {
  opacity: 0.6;
}

.footer-policy span {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

.footer-copyright {
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.35);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .site-header {
    padding-left: 24px;
  }
  .site-nav {
    padding: 0 8px;
  }
  .site-nav li {
    width: auto;
    padding: 26px 12px;
  }
  .footer-nav ul {
    gap: 0 16px;
  }
  .footer-nav a {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  /* Header */
  .site-header {
    height: 60px;
    padding-left: 16px;
  }
  .site-header .logo img {
    height: 36px;
  }
  .site-nav-wrap nav,
  .site-nav {
    height: auto;
  }
  .site-nav {
    display: none;
  }
  .contact-btn {
    width: 64px;
    height: 100%;
    align-self: center;
    gap: 2px;
  }
  .contact-btn i {
    font-size: 16px;
  }
  .contact-btn span {
    font-size: 9px;
  }

  /* Hero (top page) */
  .hero {
    margin-top: -1px;
  }

  .hero-slide {
    height: calc(100dvh - 60px);
    min-height: unset;
  }

  .hero-slide__copy {
    top: 20%;
    left: 4%;
    right: 4%;
  }
  .hero-slide__copy--bands {
    gap: 12px;
  }
  .hero-slide__copy--bands span {
    font-size: clamp(28px, 7vw, 38px);
    box-shadow: 5px 5px 0 #111;
    padding: 3px 10px;
  }
  .hero-slide__copy--bands ruby {
    line-height: 1;
  }
  .hero-slide__copy rt {
    font-size: 0.3em;
    margin-bottom: -6px;
  }

  /* Sub MV */
  .sub-mv {
    height: 180px;
  }
  .sub-mv__title p, .sub-mv__title h1 {
    font-size: 28px;
    letter-spacing: 0.12em;
  }

  /* Breadcrumb */
  .breadcrumb {
    padding: 10px 0;
  }
  .breadcrumb-inner {
    padding: 0 16px;
    font-size: 11px;
    gap: 6px;
    flex-wrap: wrap;
  }

  /* Section common */
  .section-inner {
    padding: 0 16px;
  }
  .section-heading {
    margin-bottom: 36px;
  }
  .section-heading__en {
    font-size: 26px;
  }
  .section-heading__ja {
    font-size: 12px;
  }

  /* Vision (top page) */
  .vision-section .section-inner {
    padding: 0 16px;
  }
  .vision-label {
    font-size: 12px;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
  }
  .vision-heading {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 32px;
    letter-spacing: 0.04em;
  }
  .vision-body {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.02em;
  }
  .vision-divider {
    margin-top: 36px;
    width: 40px;
  }

  /* Company page */
  .message-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .message-title {
    font-size: 26px;
    margin-bottom: 24px;
  }
  .message-text {
    font-size: 15px;
    line-height: 2.1;
    margin-bottom: 20px;
  }
  .message-signature {
    font-size: 14px;
  }

  .company-overview .section-heading__ja,
  .company-history .section-heading__ja {
    font-size: 24px;
  }

  .overview-row {
    flex-direction: column;
  }
  .overview-row dt {
    width: 100%;
    padding: 10px 14px;
    font-size: 13px;
    border-right: none;
    border-bottom: 1px solid #ddd;
    background: #f9f9f9;
  }
  .overview-row dd {
    padding: 14px 14px 18px;
    font-size: 15px;
    line-height: 2;
  }
  .overview-en {
    font-size: 12px;
  }

  .history-list::before {
    display: none;
  }
  .history-item {
    flex-direction: column;
    padding: 20px 0;
    border-bottom: 1px solid #e5ddd0;
    gap: 6px;
  }
  .history-year-col {
    width: auto;
    text-align: left;
    padding-right: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }
  .history-era {
    font-size: 13px;
    margin-bottom: 0;
  }
  .history-year {
    font-size: 30px;
  }
  .history-year-unit {
    font-size: 15px;
  }
  .history-dot {
    display: none;
  }
  .history-content {
    padding-left: 0;
  }
  .history-title {
    font-size: 17px;
    margin-bottom: 20px;
  }
  .history-desc {
    font-size: 15px;
  }

  /* Contact form */
  .contact-form {
    padding: 36px 20px 32px;
  }
  .contact-form .section-heading {
    margin-bottom: 16px;
  }
  .contact-form .contact-lead {
    margin-bottom: 28px;
    font-size: 13px;
  }
  .form-row {
    margin-bottom: 18px;
  }
  .form-row input,
  .form-row textarea {
    font-size: 16px;
    padding: 12px 14px;
  }
  .form-row textarea {
    min-height: 140px;
  }
  .form-actions {
    margin-top: 36px;
  }
  .submit-btn {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    font-size: 13px;
  }
  .submit-btn i {
    right: 18px;
  }

  /* Thanks */
  .thanks-text {
    font-size: 13px;
    margin-bottom: 36px;
  }

  /* Confirm (mail.php) */
  .confirm-section {
    padding: 50px 0 70px !important;
  }
  .confirm-table {
    margin-bottom: 32px;
  }
  .confirm-table th,
  .confirm-table td {
    display: block;
    width: 100%;
    padding: 10px 8px;
    border-bottom: none;
  }
  .confirm-table th {
    padding-top: 16px;
    border-top: 1px solid #ddd;
    font-size: 12px;
  }
  .confirm-table td {
    padding-bottom: 16px;
    font-size: 14px;
  }
  .confirm-actions {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .confirm-back,
  .confirm-submit {
    width: 100%;
    padding: 16px 24px;
  }

  /* Footer */
  .footer-inner {
    padding: 0 20px;
  }
  .footer-main {
    flex-direction: column;
    gap: 28px;
    padding: 36px 0 28px;
  }
  .footer-content {
    width: 100%;
    gap: 20px;
  }
  .footer-logo img {
    height: 36px;
  }
  .footer-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
  }
  .footer-nav a {
    font-size: 12px;
  }
  .footer-sns {
    align-self: flex-start;
  }
  .footer-sns a {
    font-size: 24px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 0;
  }
  .footer-policy {
    gap: 10px;
  }
  .footer-policy a,
  .footer-policy span {
    font-size: 11px;
  }
  .footer-copyright {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .sub-mv {
    height: 150px;
  }
  .sub-mv__title p, .sub-mv__title h1 {
    font-size: 22px;
  }
  .section-heading__en {
    font-size: 22px;
  }
  .contact-form {
    padding: 28px 16px 24px;
  }
}

/* ========== Saiori Page ========== */

/* Sub MV tall override */
.sub-mv--lg {
  height: 520px;
}

/* Message / intro */
.saiori-message {
  background: #fff;
}

.saiori-message .section-inner {
  max-width: 720px;
}

.saiori-msg-photo {
  max-width: 850px;
  margin: 0 auto 64px;
  padding: 0 40px;
}

.saiori-msg-photo img {
  width: 100%;
  display: block;
}

.saiori-msg-text {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 2;
  text-align: center;
  letter-spacing: 0.06em;
  color: #333;
  margin-bottom: 56px;
}

.saiori-msg-text p {
  margin-bottom: 12px;
}

.saiori-msg-text p:last-child {
  margin-bottom: 0;
}

.saiori-msg-wish {
  margin-top: 12px;
}

.saiori-msg-credit {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.2em;
  color: #333;
  margin-top: 40px;
  margin-bottom: 88px;
}

.saiori-msg-divider {
  display: block;
  width: 60px;
  height: 2px;
  background: #333;
  margin: 0 auto;
}

/* Article sections */
.saiori-article {
  background: #fff;
}

.saiori-article .section-inner {
  max-width: 1200px;
}

.saiori-article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.saiori-article-grid--reverse .saiori-article-img {
  order: 2;
}

.saiori-article-grid--reverse .saiori-article-body {
  order: 1;
}

.saiori-article-img img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.saiori-article-body {
  padding: 0;
}

.saiori-article-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--c-dark);
  margin: 0 0 16px;
  line-height: 1.5;
  border-left: 5px solid var(--c-dark);
  padding-left: 14px;
}

.saiori-article-title rt {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
}

.saiori-article-text {
  font-family: var(--font-serif);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  color: #333;
}

.saiori-article-text p + p {
  margin-top: 18px;
}

/* ========== Scroll Fade-up ========== */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up[data-delay="1"] { transition-delay: 0.15s; }
.fade-up[data-delay="2"] { transition-delay: 0.30s; }
.fade-up[data-delay="3"] { transition-delay: 0.45s; }

.fade-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-left[data-delay="1"],
.fade-right[data-delay="1"] { transition-delay: 0.15s; }
.fade-left[data-delay="2"],
.fade-right[data-delay="2"] { transition-delay: 0.30s; }

/* ========== SP Drawer ========== */
/* nav-drawer-head: PC では非表示 */
.nav-drawer-head {
  display: none;
}

/* nav-icon: PC では非表示 */
.site-nav .nav-icon {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 52px;
  height: 52px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-shrink: 0;
  border-radius: 8px;
  transition: background 0.2s;
}

.nav-toggle:hover {
  background: #f0ebe4;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.is-nav-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    margin-left: 16px;
  }

  .nav-overlay {
    display: block;
  }

  /* ===== SP 全画面ドロワー ===== */
  .site-nav-wrap {
    position: fixed;
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100dvh;
    background: #fff;
    z-index: 200;
    overflow-y: auto;
    padding: 0;
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }

  .site-nav-wrap.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  /* ドロワーヘッド */
  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    padding: 0 8px 0 16px;
    border-bottom: 1px solid #f0ebe4;
  }

  .nav-drawer-logo {
    display: flex;
    align-items: center;
  }

  .nav-drawer-logo img {
    display: block;
    height: 36px;
    width: auto;
  }

  .nav-drawer-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #faf8f4;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--c-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }

  .nav-drawer-close:hover {
    background: #e8ddd0;
  }

  /* ナビ項目 */
  .site-nav {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .site-nav li {
    display: block;
    padding: 0;
    width: auto;
    border-bottom: 1px solid #f0ebe4;
  }

  .site-nav li.is-active::after {
    display: none;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    font-size: 18px;
    letter-spacing: 0.05em;
    border-bottom: none;
  }

  .site-nav a::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 12px;
    color: #bbb;
    flex-shrink: 0;
    margin-left: auto;
  }

  .site-nav .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    font-size: 16px;
    flex-shrink: 0;
    color: var(--c-dark);
  }

  /* Saiori page responsive */
  .sub-mv--lg {
    height: 260px;
  }

  .saiori-article-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .saiori-article-grid--reverse .saiori-article-img,
  .saiori-article-grid--reverse .saiori-article-body {
    order: unset;
  }

  .saiori-article-img {
    order: -1;
  }

  .saiori-article-title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

/* ============================================================
   TOP背景ラッパー（Introduction〜Saiori baby gift）
   ============================================================ */

.top-bg-wrap {
  position: relative;
}

.top-bg-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/top_01_bg.webp') repeat-y center top / 100% auto;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.top-bg-wrap > * {
  position: relative;
  z-index: 1;
}

.top-bg-wave {
  position: relative;
  height: 80px;
  z-index: 1;
}

.top-bg-wave svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ============================================================
   HOME PAGE — 共通パーツ
   ============================================================ */

/* 「詳しくはこちら」「一覧で見る」ボタン */
.more-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  min-width: 320px;
  padding: 18px 56px;
  background: var(--c-dark);
  color: #fff;
  border: 1px solid var(--c-dark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.more-link:hover {
  background: #fff;
  color: var(--c-dark);
}

.more-link i {
  position: absolute;
  right: 24px;
  font-size: 14px;
}

/* 横並び 2カラムカード（Section 3 / Company / Service 等で共用） */
.home-card {
  display: grid;
  grid-template-columns: 1fr 850px;
  align-items: start;
  max-width: var(--inner-width);
  margin: 0 auto;
}

.home-card--reverse {
  grid-template-columns: 850px 1fr;
}

.home-card__media {
  overflow: hidden;
  height: 420px;
  margin-top: 80px;
}

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

.home-card__body {
  padding: 40px 80px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.16);
  position: relative;
  z-index: 1;
  margin-right: -250px;
}

.home-card--reverse .home-card__body {
  margin-right: 0;
  margin-left: -250px;
  margin-top: 80px;
}

.home-card--reverse .home-card__media {
  margin-top: 0;
}

/* ============================================================
   Section 2: Introduction
   ============================================================ */

.intro-section {
  background: transparent;
  padding: 100px 24px;
  text-align: center;
}

.intro-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
}

.intro-section .section-heading {
  margin-bottom: 40px;
}

.intro-section .section-heading__en {
  font-size: 40px;
  letter-spacing: 0.1em;
}

.section-heading__ja-sub {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.2em;
  color: #aaa;
  margin-top: 10px;
  text-align: center;
}

.intro-heading {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  margin-bottom: 48px;
}

.intro-heading em {
  font-style: normal;
}

.intro-body {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 3.0;
  letter-spacing: 0.04em;
  color: #555;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 768px) {
  .intro-section {
    padding: 52px 20px;
  }

  .intro-section .section-heading {
    margin-bottom: 24px;
  }

  .intro-section .section-heading__en {
    font-size: 26px;
    letter-spacing: 0.1em;
  }

  .section-heading__ja-sub {
    font-size: 12px;
    margin-top: 6px;
  }

  .intro-heading {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 28px;
  }

  .intro-body {
    font-size: 15px;
    font-weight: 500;
    line-height: 2.8;
    text-align: left;
    gap: 24px;
  }
}

/* ============================================================
   Section 3: 2カード
   ============================================================ */
.home-2cards__grid{
  max-width: var(--inner-width);
  margin: 0 auto;
}
.home-2cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  justify-content: center;
}

.home-2cards__item {
  overflow: hidden;
  height: 343px;
}

.home-2cards__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.home-2cards__item:hover img {
  transform: scale(1.04);
}

.home-2cards__item--overlay {
  display: block;
  text-decoration: none;
  position: relative;
}

.home-2cards__item--overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.4s ease;
}

.home-2cards__item--overlay:hover::after {
  background: rgba(0, 0, 0, 0.28);
}

.home-2cards__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.home-2cards__ja {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.18em;
}

.home-2cards__en {
  font-family: 'Zen Old Mincho', serif;
  font-size: clamp(10px, 0.9vw, 13px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.3em;
}

/* ============================================================
   Section 4: ピンクCTA
   ============================================================ */

.cta-bnr-section {
  padding: 80px 0;
}

.cta-bnr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  min-height: 280px;
  max-width: var(--inner-width);
}

.cta-bnr__left {
  background: linear-gradient(to right, #fd7f92, #fcacb1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 56px 64px;
}

.cta-bnr__title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 500;
  color: #fff;
  line-height: 1.5;
  letter-spacing: 0.04em;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  padding-bottom: 20px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.cta-bnr__text {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 2.2;
  margin-bottom: 36px;
  width: 100%;
  text-align: center;
  font-feature-settings: "palt" 1, "liga" 0;
}

.cta-bnr__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.1em;
  padding: 14px 36px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  align-self: center;
  transition: background 0.2s, color 0.2s;
}

.cta-bnr__btn i {
  font-size: 11px;
}

.cta-bnr__btn:hover {
  background: #fff;
  color: #fd7f92;
}

.cta-bnr__right {
  overflow: hidden;
}

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

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

  .cta-bnr {
    grid-template-columns: 1fr;
  }

  .cta-bnr__right {
    order: -1;
    height: 240px;
  }

  .cta-bnr__left {
    padding: 40px 24px;
    align-items: flex-start;
  }

  .cta-bnr__title {
    font-size: clamp(15px, 4.2vw, 20px);
    white-space: normal;
    text-align: center;
  }
}


/* ============================================================
   Section 5 / 6: Company・Service カード
   ============================================================ */

.home-card-section {
  background: transparent;
  margin-bottom: 80px;
}

.home-card__en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  margin-bottom: 10px;
  line-height: 1;
}

.home-card__sub {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #999;
  margin-bottom: 20px;
}

.home-card__sub::after {
  content: "";
  flex: 1;
  border-top: 1px dashed #bbb;
}

.home-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.home-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 28px;
}

/* ============================================================
   Section 7 / 8: Fabrico・Baby gift バナー
   ============================================================ */

.product-banner {
  overflow: hidden;
  max-width: var(--inner-width);
  margin: 0 auto 80px;
}

.product-banner__link {
  display: block;
  transition: opacity 0.2s;
}

.product-banner__link:hover {
  opacity: 0.88;
}

.product-banner img {
  display: block;
  width: 100%;
  height: auto;
}

/* br.sp: SP のみ改行 / br.pc: PC のみ改行 */
br.sp { display: none; }
br.pc { display: inline; }

/* ============================================================
   Section 3〜8 SP対応
   ============================================================ */

@media (max-width: 768px) {
  .product-banner {
    width: 90%;
  }

  .home-2cards__grid {
    grid-template-columns: 1fr;
    width: 90%;
    margin: 0 auto;
  }

  .home-2cards__item {
    height: 240px;
  }

  .home-2cards {
    padding: 40px 0;
  }

  .home-card {
    grid-template-columns: 1fr;
  }

  .home-card__body {
    margin-right: 0;
    margin-left: 0;
    width: auto;
    padding: 40px 24px;
  }

  .home-card--reverse .home-card__body {
    margin-left: 0;
    margin-top: 0;
  }

  .home-card__media {
    width: 100%;
    height: 260px;
    order: -1;
  }

  .home-card__en {
    font-size: 30px;
  }

  .home-card__title {
    font-size: 20px;
  }

  .home-card__text {
    font-size: 14px;
  }

  .home-card-section {
    width: 90%;
    margin: 0 auto 60px;
  }

  .more-link {
    display: flex;
    width: 100%;
    min-width: unset;
    justify-content: center;
  }

  br.pc {
    display: none;
  }

  br.sp {
    display: inline;
  }

  .saiori-msg-photo {
    max-width: 95%;
    padding: 0;
  }

  .saiori-msg-text p {
    margin-bottom: 24px;
  }
}

@media (max-width: 480px) {
  .saiori-msg-body {
    font-size: 15px;
    line-height: 2.2;
  }

  .saiori-msg-text {
    font-size: 15px;
    line-height: 2;
  }

  .saiori-article-text {
    font-size: 15px;
  }
}

/* ============================================================
   Section 9: Event
   ============================================================ */
.event-section {
  padding: var(--section-py) 0 100px;
  background: #fff;
}

.event-section .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.event-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.event-card {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.event-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event-card__link:hover .event-card__img img {
  transform: scale(1.03);
}

.event-card__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.event-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card__date-bar {
  background: #c8a44e;
  padding: 10px 16px;
}

.event-card__date-bar time {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

.event-card__body {
  padding: 16px 16px 20px;
  background: #fff;
}

.event-card__title {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--c-dark);
}

.event-section__btn {
  text-align: center;
  margin-top: 60px;
}


@media (max-width: 768px) {
  .event-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
    gap: 16px;
  }

  .event-card__img {
    aspect-ratio: 3 / 4;
  }

  .event-card__title br {
    display: none;
  }

  .event-section__btn .more-link {
    max-width: 80%;
    width: 80%;
    min-width: unset;
    padding: 18px 24px;
    margin: 0 auto;
  }
}

/* ============================================================
   Section 10: Saiori (Home)
   ============================================================ */
.saiori-home-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  position: relative;
  background: url('../img/saiori-top-bg.webp') center top / cover no-repeat;
}


.saiori-home-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.60);
  pointer-events: none;
  z-index: 0;
}

.saiori-home-section > * {
  position: relative;
  z-index: 1;
}

.saiori-home-section .section-inner {
  max-width: var(--inner-width);
  margin: 0 auto;
}


.saiori-home-section .section-inner .section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.saiori-home-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
}

.saiori-feature {
  position: relative;
  max-width: var(--inner-width);
  margin: 0 auto;
  padding: 0 0 120px;
}

.saiori-feature__media {
  width: 720px;
  height: 480px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

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

.saiori-feature__body {
  position: relative;
  width: 660px;
  margin-left: auto;
  margin-top: -340px;
  padding: 36px 56px;
  background: #fff;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  z-index: 2;
}

.saiori-feature__title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--c-dark);
  margin-bottom: 16px;
}

.saiori-feature__text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.saiori-class-banner {
  max-width: var(--inner-width);
  margin: 0 auto;
}

.saiori-class-banner img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .saiori-class-banner {
    width: 90%;
  }
}

@media (max-width: 1024px) {
  .saiori-feature__media {
    width: 62%;
  }

  .saiori-feature__body {
    width: 68%;
    margin-top: -160px;
  }
}

@media (max-width: 768px) {
  .saiori-feature {
    padding: 0;
  }

  .saiori-feature__media {
    width: 100%;
    height: 260px;
  }

  .saiori-feature__body {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 32px 24px;
    box-shadow: none;
    border-top: 3px solid var(--c-dark);
  }

  .saiori-feature__title {
    font-size: 20px;
  }

  .saiori-feature__body .more-link {
    width: 80%;
    max-width: 80%;
    min-width: unset;
    margin: 0 auto;
    display: flex;
  }

}

/* ============================================================
   Section 11: News
   ============================================================ */
.news-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.news-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.news-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
}

.news-list {
  list-style: none;
  max-width: 860px;
  margin: 0 auto;
  border-top: 1px solid #e0d8d0;
}

.news-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid #e0d8d0;
}

.news-meta {
  display: contents;
}

.news-date {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--c-dark);
  letter-spacing: 0.05em;
  white-space: nowrap;
  min-width: 80px;
}

.news-badge {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  background: var(--c-dark);
  color: #fff;
  white-space: nowrap;
}

.news-title {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--c-dark);
  text-decoration: underline;
  line-height: 1.6;
  flex: 1;
  transition: color 0.2s;
}

.news-title:hover {
  color: var(--c-accent);
}

.news-section__btn {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 0;
  }

  .news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .news-title {
    width: 100%;
    font-size: 14px;
  }

  .news-section__btn .more-link {
    width: 80%;
    max-width: 80%;
    min-width: unset;
    padding: 18px 24px;
    margin: 0 auto;
    display: flex;
  }
}

/* ============================================================
   Section 12: Media
   ============================================================ */
.media-section {
  padding: var(--section-py) 0;
  background: url('../img/media-bg.jpg') center / cover no-repeat;
  position: relative;
  overflow: hidden;
}

.media-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.55);
  pointer-events: none;
  z-index: 0;
}

.media-section::after {
  display: none;
}

.media-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.media-section .section-heading__en {
  font-size: 48px;
  letter-spacing: 0.1em;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--inner-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: stretch;
}

.media-award {
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.media-award__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f9f7f4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.media-award__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.media-award:hover .media-award__img {
  transform: scale(1.04);
}

.media-award__date-bar {
  background: #c8a44e;
  padding: 10px 16px;
}

.media-award__date-bar time {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

.media-award__body {
  padding: 16px;
}

.media-award__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-dark);
}

.media-card {
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.media-card .media-card__img {
  flex-shrink: 0;
}

.media-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.media-card__link:hover {
  opacity: 0.85;
}

.media-card__img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-card__date-bar {
  background: #c8a44e;
  padding: 10px 16px;
}

.media-card__date-bar time {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.06em;
}

.media-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.media-card__link:hover .media-card__img img {
  transform: scale(1.04);
}

.media-card__body {
  padding: 16px;
}

.media-card__source {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--c-accent);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.media-card__text {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-dark);
}

.media-section__btn {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .media-grid {
    grid-template-columns: 1fr;
  }

  .media-award {
    padding: 32px 24px;
  }

  .media-section__btn .more-link {
    width: 80%;
    max-width: 80%;
    min-width: unset;
    padding: 18px 24px;
    margin: 0 auto;
    display: flex;
  }
}

/* ============================================================
   Section 13: Instagram
   ============================================================ */
.instagram-section {
  padding: var(--section-py) 0;
  background: #fff;
}

.instagram-section .section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.instagram-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
}

.ig-profile {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  max-width: 860px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.ig-profile__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ig-profile__avatar-ring {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  padding: 3px;
  background: conic-gradient(from 180deg, #f9ce34, #ee2a7b, #6228d7, #f9ce34);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ig-profile__avatar-ring img {
  display: block;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--c-bg-light);
  padding: 10px;
  box-sizing: border-box;
}

.ig-profile__follow-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 32px;
  background: #3897f0;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.ig-profile__follow-btn:hover {
  background: #2980d9;
}

.ig-profile__info {
  flex: 1;
  padding-top: 8px;
}

.ig-profile__head {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 10px;
}

.ig-profile__name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-dark);
  letter-spacing: 0.04em;
}

.ig-profile__stats {
  display: flex;
  gap: 28px;
}

.ig-profile__stats span {
  font-family: var(--font-sans);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ig-profile__stats strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1;
}

.ig-profile__stats em {
  font-style: normal;
  font-size: 12px;
  color: #888;
}

.ig-profile__handle {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #3897f0;
  margin-bottom: 14px;
}

.ig-profile__bio {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #555;
  line-height: 1.9;
}

.ig-photo {
  max-width: var(--inner-width);
  margin: 0 auto 40px;
}

.ig-photo__link {
  display: block;
  overflow: hidden;
}

.ig-photo__link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s;
}

.ig-photo__link:hover img {
  transform: scale(1.03);
}

.ig-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.ig-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.06em;
  padding: 10px 28px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.ig-btn--follow {
  background: #3897f0;
  color: #fff;
  border: 1px solid #3897f0;
}

.ig-btn--follow:hover {
  background: #2980d9;
  border-color: #2980d9;
}

.ig-btn--more {
  background: #fff;
  color: var(--c-dark);
  border: 1px solid var(--c-dark);
}

.ig-btn--more:hover {
  background: var(--c-dark);
  color: #fff;
}

@media (max-width: 768px) {
  .ig-profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .ig-profile__head {
    flex-direction: column;
    align-items: center;
  }

  .ig-profile__stats {
    justify-content: center;
  }

  .ig-btns {
    flex-direction: column;
    align-items: center;
  }

  .ig-btn {
    width: 260px;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
  }
}

/* ============================================================
   Section 14: Access
   ============================================================ */
.access-section {
  position: relative;
  padding: var(--section-py) 0;
  background: var(--c-dark);
  color: #fff;
  overflow: hidden;
}

.access-section__bg {
  position: absolute;
  inset: -20px;
  background: url('../img/access-bg.webp') center / cover no-repeat;
  opacity: 0.62;
  z-index: 0;
  filter: blur(6px);
}

.access-section__inner {
  position: relative;
  z-index: 1;
}

.access-section .section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.access-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
  color: #fff;
}

.access-section .section-heading__ja-sub {
  color: #fff;
}

.access-section__lead {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  margin-bottom: 40px;
}

.access-map-card {
  max-width: 860px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.access-map-card iframe {
  display: block;
  width: 100%;
}

.access-section__btn {
  text-align: center;
  margin-top: 40px;
}

.access-section .more-link {
  background: transparent;
  border-color: #fff;
  color: #fff;
}

.access-section .more-link:hover {
  background: #fff;
  color: var(--c-dark);
}

@media (max-width: 768px) {
  .access-section__lead {
    font-size: 14px;
  }

  .access-map-card iframe {
    height: 280px;
  }
}

/* ============================================================
   Section 15: Contact (Home)
   ============================================================ */
.contact-home-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
  background: #fff;
}

.contact-home-section__bg {
  position: absolute;
  inset: -20px;
  background: url('../img/contact-bg.webp') center / cover no-repeat;
  opacity: 0.28;
  z-index: 0;
}

.contact-home-section .section-inner {
  position: relative;
  z-index: 1;
}

.contact-home-section .section-heading {
  text-align: center;
  margin-bottom: 24px;
}

.contact-home-section .section-heading__en {
  font-size: 46px;
  letter-spacing: 0.1em;
}

.contact-home-section .section-heading__ja-sub {
  color: var(--c-dark);
}

.contact-home__lead {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.9;
}

.contact-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 860px;
  margin: 0 auto;
  background: #d8cfc5;
}

.contact-home-tel,
.contact-home-web {
  background: #fff;
  padding: 52px 40px;
  text-align: center;
}

.contact-home-tel__label,
.contact-home-web__label {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--c-dark);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}

.contact-home-tel__num {
  display: block;
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 44px;
  letter-spacing: 0.04em;
  color: var(--c-dark);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.contact-home-tel__num:hover {
  color: var(--c-accent);
}

.contact-home-tel__hours {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--c-dark);
  line-height: 1.8;
}

.contact-home-web {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media (max-width: 768px) {
  .contact-home-grid {
    grid-template-columns: 1fr;
  }

  .contact-home-tel__num {
    font-size: 36px;
  }

  .contact-home-tel,
  .contact-home-web {
    padding: 40px 24px;
  }
}

/* ========== Contact Form: Select & Privacy Check ========== */
.form-row select.form-select {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 40px 14px 16px;
  border: 1px solid #e5e5e3;
  background-color: #fff;
  color: var(--c-text);
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
  width: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23333' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.form-row select.form-select:focus {
  border-color: #8b6916;
}

.zip-hint {
  font-size: 11px;
  color: #aaa;
  letter-spacing: 0.04em;
  font-weight: 400;
}

.form-privacy-note {
  margin-bottom: 24px;
}

.form-privacy-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 720px;
  margin: 0 auto 32px;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.8;
}

.form-privacy-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--c-dark);
  cursor: pointer;
}

.form-privacy-check label {
  cursor: pointer;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.form-privacy-check label a {
  color: var(--c-dark);
  text-decoration: underline;
}

.form-privacy-check .required {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.1em;
  background: #d23a3a;
  color: #fff;
  padding: 2px 8px;
}
