:root {
  --color-bg-base: #EFEBE5;
  --color-bg-white: #FFFFFF;
  --color-text-main: #3A302B;
  --color-text-sub: #A68571;
  --color-brand-red: #783626;
  --color-brand-line: #06C755;
  --color-news-red: #D48981;
  --color-date-grey: #A3A09F;
  --color-accent-sage: #A4AF94;
  --color-accent-pale: #EFEBE2;
  --color-accent-taupe: #E4DCD3;

  --font-mincho: 'Shippori Mincho', 'Noto Serif JP', serif;
  --font-gothic: 'Noto Sans JP', sans-serif;
  --font-serif-en: 'Cormorant Garamond', 'Times New Roman', serif;
  
  --container-width: 1280px;
}

html, body {
  margin: 0;
  padding: 0;
  color: var(--color-text-main);
  background-color: var(--color-bg-white);
  line-height: 1.6;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-gothic);
  color: var(--color-text-main);
  background-color: var(--color-bg-base);
  letter-spacing: 0.05em;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 80px; /* offset for fixed header */
}
body.no-scroll {
  overflow: hidden;
}

/* tel: リンクのスタイル保護 */
a[href^="tel:"] {
  color: inherit !important;
  text-decoration: none !important;
  -webkit-text-decoration: none !important;
}

/* Utilities */
.section {
  padding: 120px 0;
  position: relative;
}
.inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-bg-base);
  padding: 12px 0 15px;
  z-index: 1000;
  /* box-shadow will be added on scroll */
}
.hamburger {
  display: none;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.header__logo {
  line-height: 1;
  margin-top: -5px;
  margin-left: -10px;
}
.header__logo .logo-text {
  font-family: var(--font-mincho);
  font-size: 32px;
  font-weight: 600;
  color: var(--color-brand-red);
}
.header__nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.btn-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-brand-line);
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-line:hover {
  opacity: 0.8;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-brand-red);
}
.tel-link {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
}
.tel-number {
  margin-left: 0;
}
.business-hours {
  font-size: 11px;
  color: #777;
  margin-top: -4px; /* Reduced gap */
}
.gnav__list {
  display: flex;
  gap: 25px;
}
.gnav__item {
  font-size: 15px;
  font-weight: 500;
}
.gnav__item a {
  color: var(--color-text-main);
  text-decoration: none;
  transition: opacity 0.3s;
}
.gnav__item a:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0 0 100px;
  min-height: 850px;
}
.hero__bg-plate {
  position: absolute;
  top: 150px;
  left: 0;
  width: 68%;
  height: 320px;
  background-color: var(--color-accent-pale);
  background-image: url('../images/mv_line_bg.jpg');
  background-size: cover;
  background-position: center;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 850px;
}
.hero__text-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}
.hero__title {
  font-family: 'Yuji Syuku', serif;
  font-size: 60px;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.hero__subtitle {
  font-family: 'Yuji Syuku', serif;
  font-size: 14px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}
.hero__main-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  max-width: 600px;
  z-index: 2;
}
.hero__main-image-bg {
  position: absolute;
  top: 40px;
  left: -40px;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-sage);
  z-index: -1;
}
.aspect-card {
  width: 100%;
  position: relative;
  overflow: hidden;
}
/* Main image aspect vertical */
.hero__main-image-wrapper .aspect-card {
  padding-top: 125%; 
}
.aspect-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__logo-mark {
  position: absolute;
  bottom: -140px;
  right: -120px;
  width: 500px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}
.hero__sub-image-wrapper {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 450px;
  z-index: 10;
}
.hero__sub-image-bg {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--color-accent-taupe);
  z-index: -1;
}

.hero__bottom-illustration {
  position: absolute;
  bottom: -140px;
  right: -60px;
  width: 170px;
  height: auto;
  z-index: 10;
  pointer-events: none;
}

/* About Section */
.about {
  padding-top: 50px;
}
.about .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about__text-area {
  width: 45%;
  position: relative;
  z-index: 2;
}
.about__title {
  font-family: 'Yuji Syuku', serif;
  font-size: 38px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 50px;
  letter-spacing: 0.1em;
}
.about__desc {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 40px;
}
.about__info-box {
  background-color: rgba(255, 255, 255, 0.6);
  padding: 20px 30px;
  display: inline-block;
}
.about__info-box dl {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 14px;
}
.label-brown {
  background-color: var(--color-brand-red);
  color: white;
  padding: 4px 16px;
  border-radius: 2px;
  font-size: 13px;
  white-space: nowrap;
}
.about__info-box dd {
  font-family: var(--font-gothic);
  font-weight: 500;
  margin-right: 20px;
  white-space: nowrap;
}
.about__image-wrapper {
  position: relative;
  width: 45%;
  z-index: 2;
}
.about__image-wrapper .aspect-card {
  padding-top: 130%;
}
.about__image-bg {
  position: absolute;
  top: 30px;
  left: -30px;
  width: calc(100% + 60px);
  height: calc(100% - 60px);
  background-color: var(--color-accent-taupe);
  z-index: -1;
}
.about__watermark {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 532px;
  max-width: none;
  z-index: 0;
  pointer-events: none;
}
.about__watermark img {
  width: 100%;
  height: auto;
  display: block;
}
.about__logo-mark {
  position: absolute;
  top: -60px;
  left: -20px;
  width: 150px;
  opacity: 0.8;
  z-index: 3;
}

/* News Section */
.news {
  background-color: var(--color-bg-white);
  padding: 80px 0;
}
.news .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.news__header {
  width: 25%;
  padding-top: 10px;
}
.news__en {
  display: block;
  font-family: 'Yuji Syuku', serif;
  color: var(--color-news-red);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.news__ja {
  font-family: 'Yuji Syuku', serif;
  font-size: 40px;
  font-weight: 400;
}
.news__content {
  width: 70%;
}
.news__item {
  border-top: 1px solid #DDDDDD;
}
.news__item:last-child {
  border-bottom: 1px solid #DDDDDD;
}
.news__item-content {
  display: flex;
  gap: 40px;
  padding: 30px 0;
}
.news__date {
  font-family: 'Noto Serif JP', serif;
  color: var(--color-date-grey);
  font-size: 14px;
  width: 100px;
  flex-shrink: 0;
  letter-spacing: 0.1em;
}
.news__text {
  flex-grow: 1;
}
.news__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.news__excerpt {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
}
.news__loading,
.news__empty {
  padding: 40px 0;
  text-align: center;
  font-size: 14px;
  color: #999;
  list-style: none;
}

/* New Shared Components (Wireframe layout + Design tone) */
.two-col-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.two-col-layout.row-reverse {
  flex-direction: row-reverse;
}
.two-col-layout.align-top {
  align-items: flex-start;
}
.two-col-layout .text-area {
  width: 45%;
}
.two-col-layout .image-wrapper {
  width: 50%;
  position: relative;
}

/* Cafe Section Specific Adjustments */
.cafe .two-col-layout .text-area {
  width: 60%;
}
.cafe .two-col-layout .image-wrapper {
  width: 35%;
}
.section-title {
  font-family: 'Yuji Syuku', serif;
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
  scroll-margin-top: 140px;
}
.section {
  scroll-margin-top: 140px;
}

@media (max-width: 768px) {
  .section-title,
  .section {
    scroll-margin-top: 80px;
  }
}


.text-center {
  text-align: center;
}
.section-subtitle {
  font-family: var(--font-gothic);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: var(--color-brand-red);
}
.section-desc {
  font-size: 15px;
  margin-bottom: 40px;
}
.desc p {
  font-size: 15px;
  line-height: 2.2;
  margin-bottom: 20px;
}
.desc p:last-child {
  margin-bottom: 0;
}

/* Specific New Sections */
.history { padding-top: 120px; padding-bottom: 80px; }
.owner, .features, .main-products, .recommended, .cafe, .access {
  padding: 80px 0;
}

.history__layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.history__text-area {
  width: 45%;
  position: relative;
  z-index: 2;
}
.history__image-area {
  width: 50%;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.history__bg-img {
  position: absolute;
  top: -40px;
  left: -120px;
  width: 400px;
  max-width: 80%;
  height: auto;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.owner, .cafe {
  background-color: var(--color-bg-white);
}
.owner__magazine-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.owner__vert-title {
  writing-mode: vertical-rl;
  font-family: 'Yuji Syuku', serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.3em;
  color: var(--color-text-main);
}
.owner__visual {
  width: 25%;
}
.owner__content {
  width: 45%;
}
.owner__subtitle {
  line-height: 1.6;
  font-size: 24px;
}
.font-mincho {
  font-family: 'Noto Serif JP', serif;
}
.feature-item {
  margin-top: 60px;
}
.feature-item .aspect-card {
  padding-top: 66%;
}

.main-products__list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 60px;
}
.main-product__item {
  display: flex;
  align-items: center;
  position: relative;
}
.main-product__item--reverse {
  flex-direction: row-reverse;
}
.main-product__visual {
  width: 65%;
  position: relative;
  z-index: 1;
}
.main-product__content {
  width: 45%;
  background-color: var(--color-bg-white);
  padding: 50px 40px;
  position: relative;
  z-index: 2;
  margin-left: -10%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.main-product__item--reverse .main-product__content {
  margin-left: 0;
  margin-right: -10%;
}
.main-product__title {
  font-family: 'Yuji Syuku', serif;
  font-size: 32px;
  margin-bottom: 20px;
}
.main-product__desc {
  font-size: 15px;
  line-height: 2;
  color: #444;
}

.products-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}
.products-grid.two-cols .product-card {
  width: calc(50% - 15px);
}
.products-grid.three-cols .product-card {
  width: calc(33.3333% - 20px);
  margin-bottom: 30px;
}
.product-card .aspect-card {
  margin-bottom: 15px;
}
.product-card .aspect-card.square {
  padding-top: 100%;
}
.product-title {
  font-family: var(--font-gothic);
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}
.product-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
}

/* CTA & Info Tables */
.cta-area {
  text-align: center;
  margin-top: 20px;
  padding: 40px;
  background-color: var(--color-bg-white);
}
.cta-text {
  font-size: 15px;
  margin-bottom: 20px;
}
.btn-line-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--color-brand-line);
  color: white;
  padding: 15px 40px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: bold;
  transition: opacity 0.3s;
}
.btn-line-large:hover {
  opacity: 0.8;
}
.btn-line-large img {
  width: 30px;
  height: auto;
}

.info-table {
  margin-top: 30px;
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: 100px 1fr;
}
.info-table dt, .info-table dd {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
.info-table dt {
  font-weight: bold;
  color: var(--color-brand-red);
}
.info-table dd {
  margin-left: 0;
}

/* Access Map & Gallery */
.access__layout {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 40px;
}
.access__left {
  width: 45%;
  position: relative;
  z-index: 1;
}
.access__right {
  width: 50%;
  position: relative;
  z-index: 2;
  margin-left: -30px;
}
.access__left .map-wrapper {
  height: 100%;
  min-height: 480px;
  margin-bottom: 0;
}
.access__info-box {
  margin-bottom: 30px;
  padding-left: 30px;
}
.access__parking-card {
  background-color: var(--color-bg-white);
  padding: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}
.access__parking-title {
  font-family: 'Yuji Syuku', serif;
  font-size: 24px;
  margin-bottom: 10px;
}
.access__parking-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.gallery-grid {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.gallery-item {
  width: calc(33.333% - 13.333px);
}
.gallery-item .aspect-card {
  padding-top: 75%;
}
.gallery-caption {
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  margin-top: 15px;
}

.contact-banner {
  margin-top: 60px;
  text-align: center;
  background-color: white;
  padding: 40px;
}
.contact-text {
  font-size: 15px;
  margin-bottom: 10px;
}
.tel-link-large {
  display: inline-flex;
  align-items: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: bold;
  color: var(--color-brand-red);
  margin-bottom: 10px;
}
.tel-link-large img {
  height: 30px;
  margin-right: 15px;
}
.business-hours-text {
  font-size: 13px;
  color: #666;
}

/* Footer Section */
.footer {
  background-color: var(--color-text-main); /* Dark background */
  color: white;
  padding: 80px 0 30px;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__left {
  width: 40%;
}
.footer__logo-area {
  margin-bottom: 30px;
}
.footer__info p {
  font-size: 14px;
  line-height: 2;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
}
.footer__tel {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px !important;
  margin-top: 20px;
}
.footer__right {
  width: 50%;
  text-align: right; /* align right */
}
.footer__nav {
  display: flex;
  justify-content: flex-end;
  gap: 80px;
}
.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end; /* align list items to the right */
}
.footer__nav li {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.footer__nav li a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__nav li a:hover {
  opacity: 0.7;
}
.footer__bottom {
  text-align: center;
  font-family: var(--font-serif-en);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.05em;
}

.sp-only { display: none; }

/* SP非表示用ユーティリティ */
@media (max-width: 768px) {
  .u-hidden-sp { display: none !important; }
}

/* Mobile Menu (max 1030px) */
@media screen and (max-width: 1030px) {
  .sp-only { display: block; }
  .header__logo { position: relative; z-index: 101; }
  .header__inner { position: relative; }
  .header__nav-area { position: static; }
  .header__actions-wrapper { display: flex; align-items: center; gap: 20px; }
  .header__actions { display: flex; align-items: center; gap: 15px; flex-direction: row-reverse; margin: 0; }
  .header__actions .btn-line .btn-line-text { display: none; }
  .header__actions .btn-line { padding: 8px; }
  .header__actions .business-hours { display: none; }
  .header__actions .tel-number { font-size: 20px; }
  
  /* Hamburger Button */
  .hamburger {
    display: block;
    width: 40px;
    height: 40px;
    background: var(--color-brand-red);
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 101;
    border-radius: 4px;
  }
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    position: absolute;
    left: 8px;
    transition: all 0.3s;
  }
  .hamburger span:nth-child(1) { top: 12px; }
  .hamburger span:nth-child(2) { top: 19px; }
  .hamburger span:nth-child(3) { top: 26px; }
  
  .header.is-open .hamburger span:nth-child(1) { top: 19px; transform: rotate(45deg); }
  .header.is-open .hamburger span:nth-child(2) { opacity: 0; }
  .header.is-open .hamburger span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

  /* Hidden Gnav (Full Screen Overlay) */
  .gnav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    padding: 120px 8% 60px;
    box-sizing: border-box;
    z-index: 100;
    overflow-y: auto;
  }
  .header.is-open .gnav { display: block; }
  .gnav__list { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gnav__item { font-size: 18px; font-weight: bold; width: 100%; }
  .gnav__item a { display: block; width: 100%; border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }
  
  /* SP Menu Contact Info */
  .gnav__sp-contact { margin-top: 40px; }
  .gnav__sp-label { font-size: 14px; font-weight: bold; margin-bottom: 5px; }
  .gnav__sp-tel { font-family: 'Noto Serif JP', serif; font-size: 38px; font-weight: bold; color: var(--color-text-main); display: block; line-height: 1.2; margin-bottom: 5px; text-decoration: none;}
  .gnav__sp-time { font-size: 13px; color: #666; margin-bottom: 25px; }
  .gnav__sp-time .time-bold { font-weight: bold; font-size: 16px; color: var(--color-text-main); }
  .gnav__sp-btn { width: 100%; text-align: center; justify-content: center; padding: 15px; font-size: 16px;}
  .logo-text img { height: 60px; width: auto; }
}

@media screen and (max-width: 750px) {
  .header__actions { display: none; }
  .logo-text img { height: 50px; width: auto; }
}

/* Mobile Responsive (Smartphones) */
@media screen and (max-width: 768px) {
  body { padding-top: 0; } /* Remove offset for sticky header */
  .inner { width: 88%; max-width: 100%; padding: 0; margin: 0 auto; }
  .section { padding: 60px 0; }
  
  /* Header */
  .header { position: sticky; top: 0; z-index: 900; box-shadow: 0 4px 10px rgba(0,0,0,0.03); }
  .header__inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 0; }
  .header__actions-wrapper { width: auto; justify-content: flex-end; }
  
  /* Shared Titles */
  .section-title { font-size: 26px; margin-bottom: 25px; }

  /* Hero */
  .hero { min-height: auto; padding-bottom: 50px; }
  .hero .inner { flex-direction: column; min-height: auto; align-items: center; }
  .hero__bg-plate { width: 100vw; height: auto; top: 0; left: 0; transform: none; position: relative; padding: calc(87.5vw + 40px) 24px 40px; box-sizing: border-box; align-items: flex-start; text-align: left; margin-left: 0; }
  .hero__text-area { padding-top: 0; align-items: flex-start; text-align: left; max-width: 100%; position: relative; z-index: 10; margin-left: 0; }
  .hero__title { font-size: 32px; margin-bottom: 5px; br { display: block; } }
  .hero__subtitle { line-height: 1.4; margin-top: 5px; }
  .hero__main-image-wrapper { position: absolute; width: 70vw; max-width: 100%; top: 20px; right: 0; margin-top: 0; align-self: flex-end; z-index: 5; }
  .hero__main-image-bg { top: 10px; left: -10px; width: 100%; height: 100%; }
  .hero__logo-mark { display: none; }
  .hero__sub-image-wrapper { position: relative; width: 35vw; margin-top: -20px; left: auto; bottom: auto; align-self: flex-start; z-index: 10; }

  /* About */
  .about { padding-bottom: 0; }
  .about .inner { flex-direction: column; }
  .about__title { font-size: 26px; }
  .about__text-area { width: 100%; padding-left: 0; margin-bottom: 40px; }
  .about__info-box { display: block; width: 100%; text-align: left; box-sizing: border-box; padding: 20px; }
  .about__info-box dl { display: grid; grid-template-columns: auto auto; justify-content: start; text-align: left; gap: 15px 20px; }
  .about__info-box dd { margin-right: 0; }
  .about__image-wrapper { width: 70%; margin: 0 auto; margin-bottom: 60px; }
  .about__image-bg { top: 15px; left: -15px; width: 100%; height: 100%; }
  .about__watermark { position: relative; width: 60vw; margin: 0 auto; left: 0; bottom: auto; display: block; }
  
  /* Layouts Generic */
  .two-col-layout { flex-direction: column; gap: 40px; }
  .two-col-layout .text-area { width: 100%; }
  .two-col-layout .image-wrapper { width: 100%; }
  .two-col-layout.row-reverse { flex-direction: column; }
  
  .cafe .two-col-layout .text-area,
  .cafe .two-col-layout .image-wrapper { width: 100%; }

  /* History */
  .history__layout { flex-direction: column; gap: 40px; }
  .history__text-area { width: 100%; }
  .history__image-area { width: 100%; }
  .history__bg-img { display: block; top: -30px; right: -20px; left: auto; width: 60vw; max-width: none; opacity: 0.3; }

  /* Owner */
  .owner__magazine-layout { flex-direction: column; gap: 30px; align-items: flex-start; }
  .owner__vert-title { writing-mode: horizontal-tb; font-size: 26px; letter-spacing: 0.1em; margin-bottom: 10px; }
  .owner__visual { width: 100%; max-width: 200px; margin: 0 auto; }
  .owner__content { width: 100%; }

  /* Products */
  .main-products__list { gap: 40px; margin-top: 40px; }
  .main-product__item, .main-product__item--reverse { flex-direction: column; text-align: left; }
  .main-product__visual { width: 100%; margin-bottom: -30px; }
  .main-product__content, .main-product__item--reverse .main-product__content { width: 90%; margin: 0 auto; padding: 30px 20px; text-align: center; }
  .main-product__title { font-size: 24px; text-align: center; }
  .main-product__desc { text-align: left; margin-top: 15px; }
  .products-grid.three-cols .product-card, .products-grid.two-cols .product-card { width: 100%; }
  
  /* News / Info / Access / Footer */
  .news .inner { flex-direction: column; }
  .news__header, .news__content { width: 100%; }
  .news__ja { margin-top: 0; font-size: 26px; }
  .news__item-content { flex-direction: column; gap: 5px; }
  .news__date { width: auto; font-size: 13px; }
  
  .access__layout { flex-direction: column; gap: 30px; }
  .access__left, .access__right { width: 100%; margin-left: 0; }
  .access__left .map-wrapper { min-height: 300px; }
  .gallery-grid { gap: 10px; flex-wrap: wrap; }
  .gallery-item { width: calc(50% - 5px); }
  .contact-banner { padding: 30px 20px; }
  .tel-link-large { font-size: 28px; }
  
  .info-table { grid-template-columns: 80px 1fr; }
  .footer__inner { flex-direction: column; gap: 40px; align-items: center; }
  .footer__left, .footer__right { width: 100%; text-align: center; }
  .footer__nav ul { align-items: center; }
  .footer__nav { justify-content: center; gap: 30px; flex-direction: column; align-items: center; }
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
