@charset "UTF-8";

/* Typography / layout tokens (kirinyahonmachi.com) */
@import url("https://fonts.googleapis.com/css2?family=Judson:wght@400;700&display=swap");

:root {
  --is-black: #111;
  --is-body: #444;
  --is-muted: #666;
  --is-rule: #ccc;
  --is-orange: #ff8a2c;
  --is-panel: #282828;
  --is-news-h: 70px;
  --is-bar-w: 140px;
  --font-sans: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  --font-serif: "游明朝", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "MS P明朝", serif;
  --ease-nav: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-reveal: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-reveal: 0.92s;
  --container-max: min(1180px, calc(100% - 32px));
  --mv-gutter-news: clamp(980px, 72vw, 980px);
  --lower-h: 400px;
  --header-h: 72px;
}

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

html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font: 13px/1.846 var(--font-sans);
  color: var(--is-body);
  background: #fff;
  word-break: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-underline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--is-orange);
  outline-offset: 3px;
}

#page {
  position: relative;
  min-height: 100vh;
}

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

/* -------- Utilities (bp 767 like reference theme) ---------- */
.visible-xs {
  display: none !important;
}

.hidden-xs {
  display: block !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs {
    display: block !important;
  }
}

/* -------- Home MV wrapper (100vh stack) ----------- */
.home .main_visual_wrapper {
  position: relative;
  height: 100vh;
  min-height: 100dvh;
}

.home .main_visual,
.home .main_visual .slider {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100vh;
  min-height: 100dvh;
  overflow: hidden;
}

.home .slide {
  z-index: 1;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: 50%;
  opacity: 0;
  transition: opacity 1s ease;
}

.home .slide.is-act {
  opacity: 1;
}

.home .slide.img01 {
  background-image: url("../img/hero-home.jpg");
}

.home .slide.img02 {
  background-image: url("../img/section-home.jpg");
}

.home .main_txt {
  position: absolute;
  top: 50%;
  left: clamp(200px, 22vw, 310px);
  transform: translateY(-50%);
  z-index: 8;
  max-width: 420px;
  margin-top: -40px;
  opacity: 0;
  animation: sloganIn 1.2s var(--ease-reveal) 0.65s forwards;
}

@keyframes sloganIn {
  to {
    opacity: 1;
  }
}

.home .main_txt-inner {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.9vw, 34px);
  line-height: 1.85;
  color: #fff;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 1px 3px rgba(0, 0, 0, 0.85),
    0 4px 18px rgba(0, 0, 0, 0.55),
    0 10px 36px rgba(0, 0, 0, 0.35);
}

/* Optional tel CTA on HOME MV */
.home .mv_cta_thumb {
  position: absolute;
  bottom: clamp(92px, 14vh, 140px);
  right: clamp(12px, 4vw, 48px);
  z-index: 9;
  max-width: min(320px, 42vw);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 17, 17, 0.12);
}

.home .mv_cta_thumb a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.65;
}

.home .mv_cta_thumb strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--is-black);
}

.home .mv_cta_thumb span {
  color: var(--is-muted);
}

.home .mv_cta_thumb:hover {
  opacity: 0.94;
}

/* Scroll cue */
.home .main_visual_wrapper > .scroll {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  font-family: "Judson", serif;
  color: #fff;
  position: absolute;
  bottom: clamp(74px, 12vh, 120px);
  right: clamp(14px, 3vw, 30px);
  z-index: 10;
  font-size: 13px;
  letter-spacing: 0.06em;
  border-left: 1px solid #fff;
  padding: 10px 0 28px 9px;
  text-orientation: mixed;
}

/* News strip */
.main_news_slider {
  position: absolute;
  left: var(--is-bar-w);
  bottom: 0;
  z-index: 10;
  height: var(--is-news-h);
  width: min(980px, calc(100% - var(--is-bar-w)));
  background: #fff;
  padding: 6px 0 6px 16px;
  display: flex;
  align-items: stretch;
}

.main_news_slider .post_list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  overflow: hidden;
}

.main_news_slider .post_list li a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  text-decoration: none;
  color: var(--is-black);
  padding-right: 72px;
  font-size: 13px;
}

.main_news_slider .post_list time.date {
  font-family: Georgia, serif;
  font-size: 12px;
  color: var(--is-muted);
  letter-spacing: 0.04em;
}

.main_news_slider .post_list strong.ttl {
  font-family: var(--font-sans);
  font-weight: 600;
}

.main_news_slider .post_list li a:hover .ttl {
  text-decoration: underline;
}

.main_news_slider .list_btn a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  line-height: var(--is-news-h);
  background: var(--is-black);
  color: #fff;
  text-align: center;
  transition: background 0.3s ease;
  font-size: 18px;
}

.main_news_slider .list_btn a:hover {
  background: #444;
}

@media (max-width: 767px) {
  .main_news_slider {
    left: 0;
    width: 100%;
    opacity: 0.96;
    height: auto;
    min-height: 64px;
    padding: 8px 10px;
    flex-wrap: wrap;
  }

  .main_news_slider .post_list li a {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .main_news_slider .list_btn {
    display: none;
  }

  .home .main_visual_wrapper > .scroll {
    bottom: 120px;
    right: 10px;
    font-size: 10px;
    padding: 5px 0 16px 5px;
  }

  .home .main_txt {
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    max-width: none;
    margin-top: -32px;
  }

  .home .mv_cta_thumb {
    display: none;
  }

  body.home #page {
    margin-top: 0;
  }

  body.home #page:first-child {
    margin-top: 0;
  }

  .home .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 52px 0 0;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home .h_logo_wrapper {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .home .h_logo_wrapper .txt_top {
    display: none;
  }

  .home .h_logo a {
    background: transparent;
    color: #fff;
    padding: 12px 16px;
    line-height: 1;
  }

  .home .sidebar-lang {
    margin-top: 0;
    margin-left: auto;
    padding: 8px 10px 0 12px;
    font-size: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  .home .sidebar-lang a {
    color: rgba(255, 255, 255, 0.82);
  }

  .home .sidebar-lang a:hover,
  .home .sidebar-lang a[aria-current="true"] {
    color: #fff;
  }

  body.home #page .overlay {
    top: 0;
    inset: 0;
  }

  .home .menu_btn.visible-xs {
    position: absolute;
    top: 15px;
    right: 10px;
    z-index: 8600;
  }
}

/* --------- Home sidebar header ---------- */
.home .l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: var(--is-bar-w);
  height: 100%;
  padding: 40px 10px 20px;
  text-align: center;
  background: rgba(17, 17, 17, 0.9);
  display: flex;
  flex-direction: column;
}

.home .h_logo_wrapper .txt_top {
  margin-bottom: 28px;
  font-family: var(--font-serif);
  font-size: 11px;
  line-height: 1.85;
  color: #fff;
  letter-spacing: 0.06em;
}

.home .h_logo {
  margin: 0;
  font-size: clamp(13px, 1.55vw, 16px);
  font-weight: 500;
  font-family: var(--font-serif);
}

.home .h_logo a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  line-height: 1.65;
}

.home .sidebar-lang {
  margin-top: auto;
  padding-top: 28px;
  font-size: 11px;
  line-height: 1.85;
}

.home .sidebar-lang a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  letter-spacing: 0.06em;
}

.home .sidebar-lang a[aria-current="true"],
.home .sidebar-lang a:hover {
  color: #fff;
}

/* Home gnavi top-right overlay */
.home .gnavi.overlay-top {
  position: absolute;
  top: 40px;
  right: clamp(16px, 4vw, 50px);
  z-index: 20;
}

.gnavi ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}

.gnavi ul li {
  margin: 0 10px;
}

@media (max-width: 992px) {
  .home .gnavi.overlay-top ul li {
    margin: 0 5px;
  }
}

.gnavi ul li a {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--is-black);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.gnavi ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  border-bottom: 1px solid #444;
  transition: width 0.3s ease;
}

.gnavi ul li a:hover::after,
.gnavi ul li a.is-active::after {
  width: 100%;
}

/* -------- Inner layout header --------- */
body:not(.home) .l-header {
  width: 100%;
}

body:not(.home) .l-header .container-fluid {
  padding: 0 clamp(14px, 3vw, 22px);
  display: flex;
  align-items: center;
  max-width: 2500px;
  border-bottom: 1px solid #eee;
}

.h_logo_low {
  display: flex;
  align-items: center;
  gap: 0;
}

.h_logo_low .logo_low {
  width: clamp(260px, 30vw, 340px);
  text-align: center;
}

.h_logo_low .logo_low a {
  background: var(--is-panel);
  display: block;
  padding: 18px 12px;
  text-decoration: none;
}

.h_logo_low .logo_low span.brand-short {
  color: #fff;
  font-family: var(--font-serif);
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.06em;
}

.h_logo_low .txt_low {
  padding-left: clamp(14px, 2vw, 28px);
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--is-black);
}

body:not(.home) .l-header .gnavi:not(.overlay-top) {
  margin-left: auto;
}

/* -------- Lower title band (inner pages hero) --------- */
.lower_ttl {
  height: var(--lower-h);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.lower_ttl .page-ttl-graphic {
  position: absolute;
  top: clamp(52px, 9vh, 70px);
  right: clamp(16px, 8vw, 120px);
  margin: 0;
  padding: clamp(20px, 3.6vh, 36px) clamp(14px, 2.4vw, 22px);
  transform: translateX(10%);
  z-index: 2;
  max-width: min(88vw, 420px);
  background: rgba(17, 17, 17, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 2px;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.page-ttl-graphic span.ttl-lines {
  display: inline-block;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.52;
  color: #fff;
  letter-spacing: 0.14em;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.9),
    0 2px 8px rgba(0, 0, 0, 0.55),
    0 8px 28px rgba(0, 0, 0, 0.35);
}

.lower_ttl.page-commitment {
  background-image: url("../img/hero-commitment.jpg");
}

.lower_ttl.page-menu {
  background-image: url("../img/hero-menu.jpg");
}

.lower_ttl.page-guide {
  background-image: url("../img/hero-guide.jpg");
}

.lower_ttl.page-about {
  background-image: url("../img/hero-about.jpg");
}

.lower_ttl.page-contact {
  background-image: url("../img/hero-contact.jpg");
}

.lower_ttl.page-faq {
  background-image: url("../img/hero-faq.jpg");
}

.lower_ttl.page-privacy {
  background-image: url("../img/hero-privacy.jpg");
}

.lower_ttl.page-index {
  background-image: url("../img/hero-home.jpg");
}

/* -------- Overlay mobile menu ---------- */
.overlay {
  position: fixed;
  top: 50px;
  inset: 50px 0 0;
  overflow-y: auto;
  padding: 0;
  z-index: -1;
  opacity: 0;
  background: transparent;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.overlay-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(17, 17, 17, 0.5);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.overlay > nav {
  position: relative;
  z-index: 2;
  background: var(--is-panel);
  padding: 16px 16px 40px;
}

.overlay.is-act {
  z-index: 9000;
  opacity: 1;
  pointer-events: auto;
}

.overlay .overlay-nav-ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.overlay .overlay-nav-ul li + li {
  border-top: 1px solid #444;
}

.overlay .overlay-nav-ul a {
  display: block;
  padding: 16px 4px;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 14px;
  text-decoration: none;
}

.overlay .overlay-lang {
  padding: 22px 0 8px;
  font-size: 12px;
  color: #aaa;
}

.overlay .overlay-lang a {
  color: #fff;
  text-decoration: none;
  margin-right: 14px;
}

.menu_btn {
  height: 20px;
  width: 35px;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  align-self: center;
  flex-shrink: 0;
}

.menu_btn::before,
.menu_btn::after {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: var(--is-black);
  position: absolute;
  left: 0;
  transition: transform 0.3s ease;
}

.menu_btn span {
  position: absolute;
  left: 0;
  top: 9px;
  width: 100%;
  height: 2px;
  background: var(--is-black);
  text-indent: -9999px;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.menu_btn::before {
  top: 0;
}

.menu_btn::after {
  bottom: 0;
}

.menu_btn.is-act span {
  opacity: 0;
}

.menu_btn.is-act::before {
  transform: rotate(135deg);
  top: 9px;
}

.menu_btn.is-act::after {
  transform: rotate(-135deg);
  top: 9px;
}

@media (max-width: 767px) {
  body:not(.home) .l-header {
    position: fixed;
    height: 50px;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8000;
    background: #fff;
  }

  body:not(.home) .menu_btn {
    margin-left: auto;
  }

  body:not(.home) .lower_ttl {
    margin-top: 50px;
  }

  body:not(.home) #page > .breadcrumb-wrap:first-of-type,
  body:not(.home) .breadcrumb-wrap:first-of-type {
    margin-top: 0;
  }

  body:not(.home) {
    padding-top: 0;
  }
}

/* --------- Legacy class aliases (本文マークアップ互換) ---------- */
.section--soft {
  background-color: #f7f6f4;
}

.section--muted .mini-notice,
.section--soft .mini-notice {
  border-top-color: rgba(17, 17, 17, 0.14);
}

.wrap {
  box-sizing: border-box;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  padding-left: clamp(14px, 3vw, 22px);
  padding-right: clamp(14px, 3vw, 22px);
}

.index_concept > .wrap > .container {
  max-width: none;
}

.breadcrumb-wrap {
  padding-right: clamp(14px, 3vw, 22px);
  padding-left: clamp(14px, 3vw, 22px);
}

.section-headline {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 34px);
  color: var(--is-black);
  margin: 0 0 20px;
  line-height: 1.35;
}

.lede {
  font-size: 14px;
  line-height: 1.92;
  margin: 0 0 22px;
  max-width: 54em;
}

.lede-strong {
  font-weight: 600;
  color: var(--is-black);
}

.accent-line {
  border-bottom: 2px solid var(--is-orange);
  padding-bottom: 1px;
}

a.btn.btn--solid,
button.btn.btn--solid {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  background: var(--is-black);
  padding: 12px 32px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

a.btn.btn--solid:hover,
button.btn.btn--solid:hover {
  background: var(--is-orange);
}

a.btn:not(.btn--solid):not(.menu_btn),
button.btn:not(.btn--solid):not(.menu_btn) {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--is-black);
  color: var(--is-black);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

a.btn:not(.btn--solid):not(.menu_btn):hover {
  border-color: var(--is-orange);
  color: var(--is-orange);
}

@media (min-width: 900px) {
  .split.split--60-40 {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.92fr);
    align-items: start;
  }
}

.product-grid {
  display: grid;
  gap: 22px;
  margin-top: 8px;
}

@media (min-width: 760px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-item h4 {
  font-family: var(--font-serif);
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--is-black);
}

.product-item p {
  margin: 0;
}

.main_news_slider .news-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.main_news_slider .news-meta {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--is-muted);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* --------- Content areas ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.l-contents {
  word-break: normal;
  overflow-x: clip;
}

.l-main {
  line-height: 1.8;
}

.section {
  padding: clamp(72px, 12vw, 118px) 0;
}

.section--muted {
  background: #faf8f7 url("../img/bg-paper-soft.png"); /* fallback if missing uses color only */
}

.section--muted {
  background-color: #f7f6f4;
}

.index_concept {
  padding: 80px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.index_concept .container {
  display: grid;
  grid-template-columns: minmax(0, 148px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.index_concept .side-kicker {
  font-family: var(--font-serif);
  font-size: 15px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--is-black);
  border-left: 2px solid var(--is-orange);
  padding-left: 18px;
  min-height: 160px;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .index_concept .container {
    grid-template-columns: minmax(0, 1fr);
  }

  .index_concept .side-kicker {
    writing-mode: horizontal-tb;
    border-left: 0;
    border-top: 2px solid var(--is-orange);
    padding-left: 0;
    padding-top: 12px;
    min-height: 0;
  }
}

.two-col-points {
  display: grid;
  gap: 28px;
}

@media (min-width: 800px) {
  .two-col-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.point h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
}

.point p {
  margin: 0;
}

.common_ttl01 {
  text-align: center;
  color: var(--is-black);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 35px;
  margin-bottom: 50px;
  line-height: 1.3;
}

.common_ttl01::before {
  content: "";
  display: block;
  height: 3px;
  border-top: 2px solid var(--is-orange);
  border-bottom: 2px solid var(--is-black);
  width: 100px;
  margin: 0 auto 40px;
}

.common_ttl02 {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--is-black);
  padding-bottom: 18px;
  border-bottom: 2px solid var(--is-black);
  margin-bottom: 28px;
}

.common_link a,
.btn-solid {
  text-align: center;
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-serif);
  font-size: 16px;
  color: #fff;
  background: var(--is-black);
  padding: 12px 32px;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.common_link a:hover,
.btn-solid:hover {
  background: var(--is-orange);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn-line {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--is-black);
  color: var(--is-black);
  text-decoration: none;
  font-size: 14px;
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.btn-line:hover {
  border-color: var(--is-orange);
  color: var(--is-orange);
}

.lineup-list {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--is-rule);
}

.lineup-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--is-rule);
}

.lineup-tags {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--is-muted);
}

.lineup-title {
  font-family: var(--font-serif);
  font-size: 17px;
  margin: 4px 0 0;
  color: var(--is-black);
}

.media-reveal {
  overflow: hidden;
}

.media-reveal img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: translate3d(0, 14px, 0) scale(1.02);
  opacity: 0;
  transition:
    opacity var(--dur-reveal) var(--ease-reveal),
    transform calc(var(--dur-reveal) + 0.12s) var(--ease-reveal);
  will-change: opacity, transform;
}

.media-reveal.is-visible img {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.split {
  display: grid;
  gap: clamp(28px, 4vw, 48px);
}

@media (min-width: 900px) {
  .split.split-60 {
    grid-template-columns: minmax(0, 1.14fr) minmax(0, 0.92fr);
    align-items: start;
  }

  .split.split-products {
    grid-template-columns: minmax(0, 1.12fr) minmax(260px, 0.92fr);
    align-items: end;
    gap: 0;
  }
}

.index_products {
  padding: 96px 0 120px;
  background: linear-gradient(#f3f3f3, #eaeaea);
  border-top: 1px solid #e2e2e2;
}

.index_products_overlap {
  position: relative;
  margin-top: 12px;
}

.index_products_overlap .media-reveal {
  margin-right: clamp(0px, 4vw, 60px);
}

.product_float_card {
  background: #fff;
  padding: 32px 32px 48px;
  max-width: 380px;
  margin-top: -90px;
  margin-left: auto;
  margin-right: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .product_float_card {
    margin-top: -40px;
    max-width: none;
    margin-inline: clamp(14px, 4vw, 24px);
  }

  .index_products_overlap .media-reveal {
    margin-right: 0;
  }
}

.mini-notice-grid {
  display: grid;
  gap: 18px;
}

@media (min-width: 900px) {
  .mini-notice-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mini-notice {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 12px;
}

.mini-notice time {
  font-size: 11px;
  opacity: 0.85;
  letter-spacing: 0.04em;
}

.mini-notice a {
  text-decoration: none;
}

.mini-notice p {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.7;
}

.anchor-offset {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

.breadcrumb-wrap {
  max-width: var(--container-max);
  margin: 22px auto 0;
}

.breadcrumb-wrap ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--is-muted);
}

.breadcrumb-wrap a {
  color: inherit;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
}

.info-table th,
.info-table td {
  padding: 14px 0;
  vertical-align: top;
  border-bottom: 1px solid var(--is-rule);
  text-align: left;
  font-size: 14px;
}

.info-table th {
  width: 28%;
  color: var(--is-muted);
  font-weight: 500;
}

.form-grid {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.form-grid label {
  font-size: 13px;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  margin-top: 6px;
  padding: 11px 12px;
  border: 1px solid #ddd;
  font: inherit;
  border-radius: 0;
}

.form-grid textarea {
  min-height: 140px;
  resize: vertical;
}

.note-block {
  font-size: 13px;
  color: var(--is-muted);
  margin-bottom: 22px;
  max-width: 52em;
}

.faq-list details {
  border-bottom: 1px solid var(--is-rule);
  padding: 16px 0;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--is-black);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-body {
  padding-top: 10px;
  font-size: 14px;
  color: var(--is-body);
}

.map-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

#contact-status:not(.sr-only) {
  clip: auto;
  clip-path: none;
  height: auto;
  margin: -4px 0 12px;
  overflow: visible;
  padding: 0;
  position: static;
  width: auto;
  white-space: normal;
  font-size: 13px;
  color: var(--is-muted);
}

/* Footer like reference textured dark band — CSS approximation */
.l-footer {
  width: 100%;
  margin-top: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(40, 40, 42, 0.65), transparent),
    #2f2f2f url("../img/footer-texture-placeholder.png"); /* harmless if absent */
}

.l-footer {
  background: linear-gradient(#303030 0%, #252525 100%);
}

.l-footer .in {
  padding: clamp(36px, 6vw, 46px) 0 40px;
  color: #fff;
  font-size: 13px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
    align-items: start;
    justify-items: stretch;
    gap: clamp(36px, 6vw, 48px);
  }
}

.footer-corp-name {
  display: block;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 12px;
  color: #fff;
}

.footer-line {
  line-height: 1.82;
}

.f_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}

.f_menu ul li {
  padding: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.42);
  line-height: 1.2;
}

.f_menu ul li:last-child {
  border-right: 0;
}

.f_menu a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
}

.f_menu a:hover {
  text-decoration: underline;
}

.f_copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #555;
  color: #bbb;
  font-size: 12px;
  line-height: 1.7;
}

#pagetop {
  position: fixed;
  bottom: clamp(24px, 5vh, 40px);
  right: clamp(16px, 3vw, 28px);
  z-index: 9999;
}

#pagetop a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: rgba(17, 17, 17, 0.75);
  color: #fff;
  border-radius: 0;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  transition: opacity 0.25s ease;
}

#pagetop a:hover {
  opacity: 0.92;
}

/* EN / ZH body balance */
.lang-en body,
.lang-zh-cn body {
  line-height: 1.76;
}

/* Remove fake bg noise file req */
.section--muted {
  background-image: none !important;
}

.l-footer {
  background-image: none !important;
}

/* --------- Final layout lock: reference-site reproduction ---------- */
body.home {
  overflow-x: hidden;
}

body.home #page {
  min-height: 100vh;
}

body.home .main_visual_wrapper {
  position: relative;
  isolation: isolate;
  height: 100vh;
  min-height: 720px;
  background: #e7e1d9;
}

body.home .main_visual,
body.home .main_visual .slider,
body.home .slide {
  height: 100%;
  min-height: inherit;
}

body.home .slide {
  background-position: center center;
  transform: scale(1.04);
}

body.home .slide.img01 {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.1) 42%, rgba(0, 0, 0, 0.08)),
    url("../img/hero-home.jpg");
}

body.home .slide.img02 {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.08) 42%, rgba(0, 0, 0, 0.1)),
    url("../img/section-home.jpg");
}

body.home .slide.is-act {
  animation: mvZoom 8.4s ease-out both;
}

@keyframes mvZoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

body.home .main_visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 0%, rgba(255, 255, 255, 0.2) 36%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.05));
  pointer-events: none;
}

body.home .l-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  width: var(--is-bar-w);
  height: 100%;
  min-height: 720px;
  padding: 40px 10px 24px;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: rgba(17, 17, 17, 0.92);
  border: 0;
}

body.home .h_logo_wrapper {
  display: block;
}

body.home .h_logo_wrapper .txt_top {
  display: block;
  margin: 0 0 28px;
  font-family: var(--font-serif);
  font-size: 11px;
  line-height: 1.85;
  color: #fff;
  letter-spacing: 0.08em;
}

body.home .h_logo_wrapper .txt_top p {
  margin: 0 0 5px;
}

body.home .h_logo {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

body.home .h_logo a {
  display: inline-block;
  padding: 0;
  line-height: 1.65;
  color: #fff;
  background: transparent;
  text-decoration: none;
}

body.home .sidebar-lang {
  margin-top: auto;
  margin-left: 0;
  padding: 28px 0 0;
  display: block;
  font-size: 11px;
  line-height: 1.95;
}

body.home .sidebar-lang a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  letter-spacing: 0.08em;
}

body.home .sidebar-lang a:hover,
body.home .sidebar-lang a[aria-current="true"] {
  color: #fff;
}

body.home .gnavi.overlay-top {
  position: absolute;
  top: 42px;
  right: clamp(20px, 4vw, 54px);
  z-index: 30;
}

body.home .gnavi.overlay-top ul {
  gap: clamp(12px, 1.7vw, 26px);
}

body.home .gnavi.overlay-top li {
  margin: 0;
}

body.home .gnavi.overlay-top a {
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.02em;
}

body.home .gnavi.overlay-top ul li a::after {
  border-bottom-color: rgba(255, 255, 255, 0.42);
}

body.home .main_txt {
  left: clamp(205px, 22vw, 310px);
  z-index: 12;
  margin-top: -30px;
}

body.home .main_txt-inner {
  margin: 0;
  color: #fff;
}

body.home .main_visual_wrapper > .scroll {
  z-index: 14;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(96px, 14vh, 134px);
}

body.home .main_news_slider {
  left: var(--is-bar-w);
  bottom: 0;
  z-index: 20;
  height: var(--is-news-h);
  width: min(980px, calc(100% - var(--is-bar-w)));
}

body.home #overlay {
  top: 0;
  inset: 0;
}

body.home #overlay > nav {
  padding-top: 70px;
}

@media (max-width: 767px) {
  body.home #overlay > nav {
    padding-top: 60px;
  }
}

body:not(.home) .l-header {
  position: relative;
  z-index: 20;
  width: 100%;
  background: #fff;
}

body:not(.home) .l-header .container-fluid {
  min-height: 76px;
}

body:not(.home) .l-header .gnavi:not(.overlay-top) {
  margin-left: auto;
}

body:not(.home) .lower_ttl {
  height: var(--lower-h);
  margin-top: 0;
  background-color: #9b8065;
}

body:not(.home) .breadcrumb-wrap {
  margin-top: 22px;
}

body:not(.home) .l-contents > .section:first-of-type,
body:not(.home) .l-contents > section:not(.lower_ttl):first-of-type {
  padding-top: clamp(72px, 10vw, 108px);
}

.section--soft,
.section--muted {
  background-color: #f7f6f4;
}

.section--muted {
  background-image: none;
}

.l-footer {
  background: linear-gradient(#303030 0%, #252525 100%);
}

.media-reveal {
  position: relative;
  min-height: 260px;
  background:
    radial-gradient(circle at 68% 50%, rgba(255, 255, 255, 0.72) 0 8%, rgba(207, 160, 105, 0.3) 9% 25%, transparent 26%),
    linear-gradient(135deg, #eee5d7 0%, #b59470 56%, #4a3a2c 100%);
}

.media-reveal.is-missing-image {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.media-reveal.is-missing-image::after {
  content: "KIRINYA";
  font-family: "Judson", serif;
  font-size: clamp(18px, 3vw, 42px);
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.72);
  text-shadow: 0 2px 18px rgba(17, 17, 17, 0.2);
}

.media-reveal.is-missing-image img {
  display: none;
}

body:not(.home) .lower_ttl.page-commitment {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-commitment.jpg");
}

body:not(.home) .lower_ttl.page-menu {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-menu.jpg");
}

body:not(.home) .lower_ttl.page-guide {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-guide.jpg");
}

body:not(.home) .lower_ttl.page-about {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-about.jpg");
}

body:not(.home) .lower_ttl.page-contact {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-contact.jpg");
}

body:not(.home) .lower_ttl.page-faq {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-faq.jpg");
}

body:not(.home) .lower_ttl.page-privacy {
  background-image:
    linear-gradient(90deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.02) 48%, rgba(17, 17, 17, 0.24)),
    url("../img/hero-privacy.jpg");
}

@media (max-width: 1100px) {
  body.home .gnavi.overlay-top ul {
    gap: 10px;
  }

  body.home .gnavi.overlay-top a {
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  body.home .main_visual_wrapper {
    height: 100svh;
    min-height: 620px;
    padding-top: 50px;
  }

  body.home .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8500;
    width: 100%;
    height: 50px;
    min-height: 0;
    padding: 0 54px 0 0;
    flex-direction: row;
    align-items: stretch;
    background: rgba(17, 17, 17, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  body.home .h_logo_wrapper {
    display: flex;
    align-items: center;
    height: 100%;
  }

  body.home .h_logo_wrapper .txt_top {
    display: none;
  }

  body.home .h_logo a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 16px;
    color: #fff;
    background: transparent;
    line-height: 1;
  }

  body.home .sidebar-lang {
    margin: 0 0 0 auto;
    padding: 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    line-height: 1;
  }

  body.home .sidebar-lang a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.82);
  }

  body.home .sidebar-lang a:hover,
  body.home .sidebar-lang a[aria-current="true"] {
    color: #fff;
  }

  body.home .menu_btn.visible-xs {
    position: fixed;
    top: 15px;
    right: 10px;
    z-index: 9001;
  }

  body.home .menu_btn::before,
  body.home .menu_btn::after,
  body.home .menu_btn span {
    background: #fff;
  }

  body.home .main_txt {
    top: 46%;
    left: 50%;
    width: auto;
    transform: translate(-50%, -50%);
    margin-top: 0;
  }

  body.home .main_txt-inner {
    font-size: clamp(20px, 7vw, 28px);
    color: #fff;
  }

  body.home .main_visual_wrapper > .scroll {
    right: 10px;
    bottom: 98px;
    color: #fff;
  }

  body.home .main_news_slider {
    left: 0;
    width: 100%;
    height: auto;
    min-height: 72px;
    padding: 8px 12px;
  }

  body:not(.home) .l-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 8500;
    height: 50px;
  }

  body:not(.home) .l-header .container-fluid {
    min-height: 50px;
    height: 50px;
  }

  body:not(.home) .h_logo_low .logo_low {
    width: auto;
  }

  body:not(.home) .h_logo_low .logo_low a {
    height: 50px;
    padding: 0 15px;
    display: flex;
    align-items: center;
  }

  body:not(.home) .h_logo_low .logo_low span.brand-short {
    font-size: 13px;
    line-height: 1.35;
  }

  body:not(.home) .lower_ttl {
    height: 300px;
    margin-top: 50px;
  }

  body:not(.home) .lower_ttl .page-ttl-graphic {
    top: 42px;
    right: 36px;
    transform: none;
  }

  body:not(.home) .breadcrumb-wrap {
    margin-top: 14px;
  }
}
