    :root {
      --bg: #f7f5ef;
      --paper: #f8f4ea;
      --paper-2: #f1eee8;
      --navy: #0f2b63;
      --navy-2: #102454;
      --text: #343434;
      --muted: #7f7f7f;
      --line: rgba(15, 43, 99, 0.12);
      --white: #fff;
      --shadow: 0 18px 48px rgba(15, 24, 46, 0.12);
      --shadow-soft: 0 10px 30px rgba(15, 24, 46, 0.08);
      --container: 1120px;
      --ease: cubic-bezier(.22,1,.36,1);
      --header-h: 74px;
    }

    * { box-sizing: border-box; }
/* html { scroll-behavior: smooth; } ← コメントアウト */

    body {
      margin: 0;
      font-family: "Open Sans", sans-serif;
      color: var(--text);
      background: var(--paper-2);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; height: auto; }
    a { color: inherit; text-decoration: none; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .grain::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: .08;
      background-image:
        radial-gradient(circle at 20% 20%, rgba(0,0,0,.12) 0 1px, transparent 1px),
        radial-gradient(circle at 80% 10%, rgba(0,0,0,.08) 0 1px, transparent 1px),
        radial-gradient(circle at 30% 80%, rgba(0,0,0,.08) 0 1px, transparent 1px);
      background-size: 12px 12px, 18px 18px, 14px 14px;
      mix-blend-mode: multiply;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248, 244, 234, 0.82);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(15, 43, 99, 0.05);
    }
    .site-header__inner {
      height: var(--header-h);
      display: grid;
      grid-template-columns: 160px 1fr 180px;
      gap: 20px;
      align-items: center;
    }
    .brand {
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      letter-spacing: .16em;
      font-size: 14px;
      text-align: left;
    }
    .brand small {
      display: block;
      font-size: 8px;
      letter-spacing: .32em;
      margin-top: 2px;
      opacity: .75;
    }
    .nav {
      justify-self: center;
    }
    .nav__list {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 11px;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--navy);
    }
    .nav__list a {
      position: relative;
      display: inline-block;
      padding: 6px 0;
    }
    .nav__list a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform .35s var(--ease);
    }
    .nav__list a:hover::after { transform: scaleX(1); }

    .header-cta {
      justify-self: end;
      display: flex;
      align-items: center;
      gap: 14px;
      color: var(--navy);
    }
    .header-cta__search {
      width: 34px;
      height: 34px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: transparent;
    }
    .header-cta__call {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
      font-size: 11px;
      letter-spacing: .08em;
      box-shadow: var(--shadow-soft);
    }
    .header-cta__call span {
      display: block;
      line-height: 1.2;
    }
    .menu-toggle {
      display: none;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      background: transparent;
      border-radius: 8px;
      color: var(--navy);
    }

    .hero {
      position: relative;
      background: linear-gradient(180deg, #f8f3e8 0%, #f8f5ef 100%);
      min-height: min(100vh, 880px);
      display: flex;
      align-items: center;
      isolation: isolate;
      overflow: clip;
    }
    .hero__inner {
      position: relative;
      padding: 82px 0 86px;
      text-align: center;
    }
    .hero__title {
      position: absolute;
      inset: 18% 0 auto 0;
      pointer-events: none;
      z-index: 1;
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      line-height: .88;
      font-weight: 500;
      letter-spacing: -.03em;
    }
    .hero__title-left {
      position: absolute;
      left: 15%;
      top: 12%;
      font-size: clamp(58px, 8vw, 82px);
    }
    .hero__title-right {
      position: absolute;
      right: 17%;
      top: 32%;
      font-size: clamp(56px, 7.6vw, 78px);
    }
    .hero__bread-wrap {
      position: relative;
      width: min(54vw, 540px);
      margin: 34px auto 0;
      z-index: 3;
      filter: drop-shadow(0 18px 30px rgba(53, 31, 7, 0.15));
    }
    .hero__bread-main {
      width: 58%;
      margin: 0 auto;
      transform-origin: center center;
    }
    .hero__bread-small,
    .hero__bread-small-2 {
      position: absolute;
      width: 26%;
      top: 16%;
    }
    .hero__bread-small { left: 13%; transform: rotate(-12deg); }
    .hero__bread-small-2 { right: 12%; top: 5%; transform: rotate(14deg); }
    .hero__crumbs {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }
    .hero__crumbs span {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e2a14b;
      opacity: .75;
      animation: crumbFloat 3.2s ease-in-out infinite;
    }
    .hero__crumbs span:nth-child(1){ left: 37%; top: 30%; animation-delay: .1s; }
    .hero__crumbs span:nth-child(2){ left: 39%; top: 44%; width: 5px; height: 5px; animation-delay: .5s; }
    .hero__crumbs span:nth-child(3){ right: 38%; top: 26%; width: 6px; height: 6px; animation-delay: .8s; }
    .hero__crumbs span:nth-child(4){ right: 42%; top: 48%; width: 4px; height: 4px; animation-delay: 1.1s; }
    .hero__crumbs span:nth-child(5){ left: 48%; top: 55%; width: 3px; height: 3px; animation-delay: 1.4s; }

    .hero__stamp {
      position: absolute;
      right: 28%;
      top: 17%;
      width: 120px;
      opacity: .18;
      transform: rotate(-12deg) scale(.92);
      z-index: 2;
      animation: stampIn 1.4s var(--ease) .7s both;
      mix-blend-mode: multiply;
    }

    .hero-card {
      position: relative;
      z-index: 5;
      display: grid;
      grid-template-columns: 164px 1fr;
      align-items: stretch;
      width: min(100%, 420px);
      margin: 18px auto 0 18%;
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .hero-card__thumb {
      min-height: 108px;
      background: #272727 center/cover no-repeat;
    }
    .hero-card__body {
      background: var(--navy);
      color: #fff;
      padding: 15px 16px 14px;
      text-align: left;
    }
    .hero-card__eyebrow {
      font-family: "Bodoni Moda", serif;
      font-size: 17px;
      line-height: 1.1;
      margin: 0 0 8px;
    }
    .hero-card__text {
      font-size: 10px;
      line-height: 1.6;
      opacity: .9;
      margin: 0 0 10px;
    }
    .hero-card__action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .12em;
      border-bottom: 1px solid rgba(255,255,255,.4);
      padding-bottom: 4px;
    }

    .scroll-next {
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: #fff;
      font-size: 14px;
      z-index: 10;
      box-shadow: var(--shadow-soft);
    }

    .section {
      position: relative;
      padding: 82px 0;
    }
    .section--tight { padding: 62px 0; }
    .section__title {
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.08;
      margin: 0 0 14px;
      letter-spacing: -.03em;
    }
    .section__lead {
      color: var(--muted);
      font-size: 13px;
      max-width: 640px;
      margin: 0 auto;
    }
    .section__center {
      text-align: center;
      margin-bottom: 36px;
    }

    .about {
      background: #efefef;
    }
    .about__top {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      align-items: start;
      margin-bottom: 34px;
    }
    .about__title { max-width: 330px; justify-self: center; text-align: center; }
    .about__copy {
      max-width: 500px;
      font-size: 12px;
      color: var(--muted);
      justify-self: start;
    }
    .about__sign {
      margin-top: 16px;
      width: 110px;
      opacity: .9;
      filter: saturate(.7);
    }
    .about__grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 26px;
      align-items: start;
    }
    .about__stack {
      display: grid;
      grid-template-columns: 150px 1fr;
      gap: 0;
      align-items: start;
    }
    .about__stack-small {
      width: 150px;
      margin-top: 0;
      box-shadow: var(--shadow-soft);
    }
    .about__stack-large {
      margin-left: 26px;
      margin-top: 36px;
      width: min(100%, 360px);
      box-shadow: var(--shadow);
    }
    .about__book img {
      width: 100%;
      box-shadow: var(--shadow);
      margin-bottom: 12px;
    }
    .about__book h3 {
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      margin: 0 0 6px;
      font-size: 30px;
      font-weight: 500;
      line-height: 1.1;
    }
    .about__book p {
      margin: 0 0 14px;
      color: var(--muted);
      font-size: 11px;
      max-width: 270px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      padding: 0 16px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .14em;
      background: var(--navy);
      color: #fff;
      border: 0;
      transition: transform .35s var(--ease), background .35s var(--ease);
    }
    .btn:hover { transform: translateY(-1px); background: #173776; }
    .btn--ghost {
      background: transparent;
      color: var(--navy);
      border: 1px solid var(--line);
    }

    .features {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      margin-top: 30px;
    }
    .feature {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 10px;
      color: var(--muted);
    }
    .feature__icon {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--navy);
      color: #fff;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      font-size: 11px;
    }
    .feature strong {
      display: block;
      color: var(--navy);
      font-size: 11px;
      margin-bottom: 2px;
    }

    .video-banner {
      position: relative;
      min-height: 310px;
      display: grid;
      place-items: center;
      color: #fff;
      background: #1d1d1d center/cover no-repeat;
      overflow: hidden;
    }
    .video-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,10,19,.3), rgba(7,10,19,.56));
    }
    .video-banner__button {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: #fff;
      background: transparent;
      border: none;
      font-family: "Bodoni Moda", serif;
      font-size: 34px;
    }
    .video-banner__button::before {
      content: "▶";
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.6);
      border-radius: 50%;
      font-size: 18px;
      padding-left: 3px;
      animation: pulse 2.4s ease-in-out infinite;
    }

    .quote-block {
      width: min(100%, 350px);
      background: var(--navy);
      color: #fff;
      padding: 24px 26px;
      margin-top: -20px;
      box-shadow: var(--shadow);
    }
    .quote-block__mark {
      opacity: .42;
      font-size: 36px;
      line-height: 1;
      margin-bottom: 10px;
      font-family: "Bodoni Moda", serif;
    }
    .quote-block p {
      margin: 0;
      font-family: "Bodoni Moda", serif;
      line-height: 1.45;
      font-size: 19px;
    }
    .quote-block small {
      display: inline-block;
      margin-top: 14px;
      font-size: 10px;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .9;
    }

    .menu-showcase {
      background: #efefef;
    }
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px 22px;
      max-width: 820px;
      margin: 0 auto 32px;
    }
    .menu-item {
      text-align: center;
    }
    .menu-item__thumb {
      width: 108px;
      aspect-ratio: 1;
      border-radius: 50%;
      overflow: hidden;
      margin: 0 auto 12px;
      box-shadow: var(--shadow-soft);
      transform: translateZ(0);
      transition: transform .45s var(--ease);
    }
    .menu-item:hover .menu-item__thumb { transform: translateY(-6px) scale(1.04); }
    .menu-item__price {
      font-size: 11px;
      color: var(--navy);
      margin-bottom: 3px;
    }
    .menu-item h3 {
      margin: 0 0 5px;
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      font-size: 18px;
      line-height: 1.05;
      font-weight: 500;
    }
    .menu-item p {
      margin: 0;
      font-size: 10px;
      color: var(--muted);
      max-width: 140px;
      margin-inline: auto;
    }

    .price-panels {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
      max-width: 640px;
      margin: 0 auto;
    }
    .price-panel {
      padding: 20px 24px;
      background: #fff;
      box-shadow: var(--shadow-soft);
    }
    .price-panel--dark {
      background: var(--navy);
      color: #fff;
    }
    .price-panel h3 {
      margin: 0 0 16px;
      font-family: "Bodoni Moda", serif;
      font-size: 22px;
      font-weight: 500;
    }
    .price-list {
      display: grid;
      gap: 14px;
    }
    .price-list__row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: end;
      font-size: 12px;
    }
    .price-list__row small {
      display: block;
      font-size: 10px;
      opacity: .75;
      margin-top: 2px;
    }

    .gallery {
      padding: 0;
      background: #efefef;
    }
    .gallery-mosaic {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 4px;
    }
    .gallery-card {
      position: relative;
      overflow: hidden;
      min-height: 220px;
      cursor: pointer;
      background: #ddd center/cover no-repeat;
    }
    .gallery-card--tall { grid-row: span 2; min-height: 444px; }
    .gallery-card--wide { grid-column: span 2; }
    .gallery-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.18));
      opacity: 0;
      transition: opacity .35s var(--ease), transform .45s var(--ease);
    }
    .gallery-card:hover::after { opacity: 1; }
    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .7s var(--ease);
    }
    .gallery-card:hover img { transform: scale(1.06); }

    .clients {
      background: #efefef;
    }
    .clients__grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 36px;
      align-items: center;
    }
    .testimonial-panel {
      background: #fff;
      box-shadow: var(--shadow-soft);
      padding: 24px 26px;
      min-height: 160px;
      position: relative;
      overflow: hidden;
    }
    .testimonial-slide {
      display: none;
      animation: fadeSlide .7s var(--ease);
    }
    .testimonial-slide.is-active { display: block; }
    .testimonial-slide p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 12px;
    }
    .testimonial-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .testimonial-person {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .testimonial-person img {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      object-fit: cover;
    }
    .testimonial-quote {
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      font-size: 36px;
      line-height: 1;
    }

    .reservation {
      position: relative;
      background: #222 center/cover no-repeat;
      min-height: 420px;
      display: grid;
      align-items: center;
    }
    .reservation::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(15,20,30,.12), rgba(15,20,30,.3), rgba(15,20,30,.12));
    }
    .reservation__card {
      position: relative;
      z-index: 1;
      width: min(100%, 480px);
      margin: 0 auto;
      background: rgba(255,255,255,.95);
      padding: 34px 42px 30px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(4px);
    }
    .reservation__card .section__title { text-align: center; font-size: 38px; }
    .reservation__card .section__lead { text-align: center; margin-bottom: 22px; font-size: 11px; }
    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px 16px;
    }
    .field {
      display: grid;
      gap: 4px;
    }
    .field--full { grid-column: 1 / -1; }
    .field label {
      font-size: 10px;
      letter-spacing: .06em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .field input,
    .field select,
    .field textarea {
      border: 0;
      border-bottom: 1px solid rgba(15,43,99,.18);
      background: transparent;
      padding: 10px 0;
      color: var(--navy);
      outline: none;
    }
    .field textarea {
      min-height: 76px;
      resize: vertical;
    }
    .reservation__submit {
      width: 100%;
      margin-top: 16px;
      min-height: 38px;
    }

    .news {
      background: #efefef;
    }
    .news__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 22px;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .news-card {
      background: transparent;
    }
    .news-card__thumb {
      position: relative;
      overflow: hidden;
      margin-bottom: 10px;
      box-shadow: var(--shadow-soft);
    }
    .news-card__thumb img {
      width: 100%;
      aspect-ratio: 1.28;
      object-fit: cover;
      transition: transform .7s var(--ease);
    }
    .news-card:hover .news-card__thumb img { transform: scale(1.05); }
    .news-card__cat {
      position: absolute;
      right: 10px;
      bottom: 10px;
      background: rgba(255,255,255,.95);
      color: var(--navy);
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: .14em;
      padding: 4px 6px;
    }
    .news-card h3 {
      font-family: "Bodoni Moda", serif;
      color: var(--navy);
      font-size: 20px;
      line-height: 1.15;
      font-weight: 500;
      margin: 0 0 8px;
    }
    .news-card p {
      margin: 0 0 10px;
      font-size: 11px;
      color: var(--muted);
    }
    .news-card a {
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .14em;
      color: var(--navy);
      border-bottom: 1px solid rgba(15,43,99,.3);
      padding-bottom: 4px;
    }

    .site-footer {
      position: relative;
      background: linear-gradient(180deg, #f8f3e8, #f7f1e4);
      padding: 56px 0 24px;
      color: var(--navy);
      overflow: hidden;
    }
    .site-footer__top {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 28px;
      align-items: start;
      text-align: center;
      margin-bottom: 22px;
    }
    .site-footer h3 {
      font-family: "Bodoni Moda", serif;
      font-size: 18px;
      margin: 0 0 12px;
      font-weight: 500;
    }
    .footer-list {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 11px;
      color: var(--muted);
      line-height: 2;
    }
    .footer-brand .brand { text-align: center; }
    .socials {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
    }
    .socials a {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--white);
      box-shadow: var(--shadow-soft);
      font-size: 12px;
    }
    .footer-ig {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
    }
    .footer-ig img {
      aspect-ratio: 1;
      object-fit: cover;
      box-shadow: var(--shadow-soft);
    }
    .site-footer__bottom {
      text-align: center;
      font-size: 10px;
      color: var(--muted);
      border-top: 1px solid rgba(15,43,99,.08);
      padding-top: 16px;
    }

    .modal[hidden] { display: none; }
    .modal {
      position: fixed;
      inset: 0;
      z-index: 300;
    }
    .modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(9,15,30,.62);
      backdrop-filter: blur(3px);
    }
    .modal__dialog {
      position: relative;
      z-index: 1;
      width: min(calc(100% - 30px), 980px);
      margin: 6vh auto;
      background: #fff;
      box-shadow: 0 28px 70px rgba(0,0,0,.25);
      animation: modalIn .5s var(--ease);
    }
    .modal__close {
      position: absolute;
      top: 10px;
      right: 10px;
      width: 40px;
      height: 40px;
      border: 0;
      background: rgba(0,0,0,.05);
      z-index: 2;
    }
    .modal__video {
      width: 100%;
      aspect-ratio: 16 / 9;
      border: 0;
      display: block;
    }
    .search-box {
      padding: 40px;
      display: flex;
      gap: 10px;
    }
    .search-box input {
      flex: 1;
      min-height: 50px;
      border: 1px solid var(--line);
      padding: 0 16px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(36px);
      transition: opacity .9s var(--ease), transform .9s var(--ease);
    }
    .reveal--left { transform: translateX(-46px); }
    .reveal--right { transform: translateX(46px); }
    .reveal--scale { transform: scale(.94); }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    .mobile-nav {
      display: none;
    }

    @keyframes heroWordLeft {
      from { opacity: 0; transform: translateX(-44px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes heroWordRight {
      from { opacity: 0; transform: translateX(44px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes heroBread {
      0% { opacity: 0; transform: translateY(30px) scale(.9) rotate(-3deg); }
      100% { opacity: 1; transform: translateY(0) scale(1) rotate(0); }
    }
    @keyframes crumbFloat {
      0%,100% { transform: translateY(0) scale(1); opacity: .2; }
      50% { transform: translateY(-10px) scale(1.18); opacity: .85; }
    }
    @keyframes stampIn {
      0% { opacity: 0; transform: rotate(-18deg) scale(.75) translateY(-12px); }
      100% { opacity: .18; transform: rotate(-12deg) scale(.92) translateY(0); }
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(255,255,255,.22); }
      50% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
    }
    @keyframes fadeSlide {
      from { opacity: 0; transform: translateY(18px); }
      to { opacity: 1; transform: none; }
    }
    @keyframes modalIn {
      from { opacity: 0; transform: translateY(18px) scale(.98); }
      to { opacity: 1; transform: none; }
    }

    .hero.is-ready .hero__title-left { animation: heroWordLeft 1s var(--ease) .08s both; }
    .hero.is-ready .hero__title-right { animation: heroWordRight 1s var(--ease) .26s both; }
    .hero.is-ready .hero__bread-wrap { animation: heroBread 1.15s var(--ease) .14s both; }
    .hero.is-ready .hero-card { animation: heroBread 1s var(--ease) .52s both; }

    @media (max-width: 1024px) {
      :root { --header-h: 66px; }
      .site-header__inner {
        grid-template-columns: 1fr auto auto;
      }
      .nav,
      .header-cta__call { display: none; }
      .menu-toggle { display: inline-grid; place-items: center; }
      .mobile-nav {
        position: fixed;
        inset: var(--header-h) 0 auto 0;
        z-index: 90;
        background: rgba(248,244,234,.98);
        border-bottom: 1px solid rgba(15,43,99,.08);
        box-shadow: var(--shadow-soft);
        display: none;
      }
      .mobile-nav.is-open { display: block; }
      .mobile-nav ul {
        list-style: none;
        margin: 0;
        padding: 18px 20px 24px;
        display: grid;
        gap: 12px;
      }
      .mobile-nav a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(15,43,99,.08);
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: 11px;
      }

      .hero__title-left { left: 10%; top: 10%; }
      .hero__title-right { right: 10%; top: 36%; }
      .hero__bread-wrap { width: min(68vw, 500px); }
      .hero-card { margin-left: 10%; }
      .about__top,
      .about__grid,
      .clients__grid,
      .site-footer__top { grid-template-columns: 1fr; }
      .features,
      .news-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
      .gallery-card--wide { grid-column: span 1; }
      .gallery-card--tall { grid-row: span 1; min-height: 320px; }
    }

    @media (max-width: 767px) {
      .container { width: min(calc(100% - 24px), var(--container)); }
      .hero {
        min-height: auto;
        padding-top: 0;
      }
      .hero__inner {
        padding: 34px 0 56px;
      }
      .hero__title-left,
      .hero__title-right {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        display: block;
        font-size: 48px;
      }
      .hero__title-right { margin-top: 6px; }
      .hero__bread-wrap {
        width: 82%;
        margin-top: 8px;
      }
      .hero__stamp {
        right: 8%;
        top: 10%;
        width: 82px;
      }
      .hero-card {
        grid-template-columns: 1fr 1.35fr;
        width: 100%;
        margin: 18px 0 0;
      }
      .scroll-next { bottom: 10px; }

      .section { padding: 52px 0 0; }
      .section__title { font-size: 32px; }
      .about__title { max-width: none; }
      .about__stack {
        grid-template-columns: 96px 1fr;
      }
      .about__stack-small { width: 96px; }
      .about__stack-large {
        margin-left: 12px;
        margin-top: 28px;
        width: calc(100% - 12px);
      }
      .about__book h3 { font-size: 22px; }
      .features,
      .menu-grid,
      .price-panels,
      .news-grid,
      .form-grid,
      .site-footer__top {
        grid-template-columns: 1fr;
      }
      .gallery-mosaic {
        grid-template-columns: 1fr;
      }
      .gallery-card,
      .gallery-card--tall { min-height: 200px; }
      .quote-block {
        width: 100%;
        margin-top: -8px;
      }
      .video-banner { min-height: 220px; }
      .video-banner__button { font-size: 26px; }
      .video-banner__button::before {
        width: 48px;
        height: 48px;
      }
      .news__head {
        flex-direction: column;
        align-items: flex-start;
      }
      .site-footer { padding-top: 42px; }
      .footer-ig { grid-template-columns: repeat(3, 1fr); }
      .search-box {
        flex-direction: column;
        padding: 26px;
      }
    }


/* =========================================
   Hero - Roll Cake Time
========================================= */
.hero-rollcake {
  position: relative;
  min-height: min(100vh, 980px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #eadb8f 0%, #e7d27a 100%);
}

.hero-rollcake__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.22), transparent 38%),
    linear-gradient(180deg, #eadb8f 0%, #e5cf73 100%);
  z-index: 0;
}

.hero-rollcake__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: min(100vh, 980px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 70px;
}

.hero-rollcake__logo-wrap {
  width: min(92vw, 980px);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 4;
  will-change: transform, opacity;
}



.hero-rollcake__visual {
  position: relative;
  margin-top: -10px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  z-index: 3;
  will-change: transform, opacity;
}

.hero-rollcake__logo {
  width: min(100%, 900px);
  height: auto;
  display: block;
}

.hero-rollcake__person {
  width: min(42vw, 520px);
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}


.hero-rollcake__logo,
.hero-rollcake__person {
  opacity: 0;
  will-change: transform, opacity;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transform-origin: center center;
}

/* アニメーション開始後 */
.hero-rollcake.is-ready .hero-rollcake__logo {
  animation: logoArcInSmooth 1.5s cubic-bezier(.22,1,.36,1) .08s both;
}

.hero-rollcake.is-ready .hero-rollcake__person {
  animation: personArcInSmooth 1.65s cubic-bezier(.22,1,.36,1) .28s both;
}


@keyframes logoArcInSmooth {
  0% {
    opacity: 0;
    transform: translate3d(-160px, 70px, 0) rotate(-7deg) scale(.92);
  }
  50% {
    opacity: 1;
    transform: translate3d(-80px, -36px, 0) rotate(-3deg) scale(.96);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

@keyframes personArcInSmooth {
  0% {
    opacity: 0;
    transform: translate3d(140px, -80px, 0) rotate(5deg) scale(.93);
  }
  50% {
    opacity: 1;
    transform: translate3d(62px, 42px, 0) rotate(2deg) scale(.97);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotate(0) scale(1);
  }
}

/* scroll */
.hero-rollcake .scroll-next {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: rgba(58, 35, 28, .9);
  color: #fff;
  font-size: 14px;
  z-index: 5;
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
  border-radius: 2px;
}

/* PC */
@media (min-width: 1025px) {
  .hero-rollcake__inner {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero-rollcake__logo {
    width: min(92vw, 600px);
  }

  .hero-rollcake__visual {
    margin-top: -30px;
  }

  .hero-rollcake__person {
    width: min(34vw, 470px);
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-rollcake {
    min-height: auto;
  }

  .hero-rollcake__inner {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .hero-rollcake__logo {
    width: min(92vw, 760px);
  }

  .hero-rollcake__person {
    width: min(58vw, 430px);
  }

  @keyframes logoArcIn {
    0% {
      opacity: 0;
      transform: translate(-140px, 90px) rotate(-8deg) scale(.86);
    }
    45% {
      opacity: 1;
      transform: translate(-55px, -40px) rotate(-3deg) scale(.95);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) rotate(0) scale(1);
    }
  }

  @keyframes personArcIn {
    0% {
      opacity: 0;
      transform: translate(130px, -90px) rotate(6deg) scale(.88);
    }
    45% {
      opacity: 1;
      transform: translate(55px, 45px) rotate(2deg) scale(.95);
    }
    100% {
      opacity: 1;
      transform: translate(0, 0) rotate(0) scale(1);
    }
  }
}

/* SP */
@media (max-width: 767px) {
  .hero-rollcake__inner {
    padding-top: 86px;
    padding-bottom: 48px;
  }

  .hero-rollcake__logo-wrap {
    width: min(92vw, 540px);
  }

  .hero-rollcake__logo {
    width: 100%;
  }

  .hero-rollcake__visual {
    margin-top: 6px;
  }

  .hero-rollcake__person {
    width: min(76vw, 360px);
  }

  .hero-rollcake .scroll-next {
    bottom: 14px;
  }
}

/* 動きを減らす設定 */
@media (prefers-reduced-motion: reduce) {
  .hero-rollcake__logo-wrap,
  .hero-rollcake__visual {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
}

.hero-rollcake {
  contain: layout paint;
}

.hero-rollcake {
  contain: layout paint;
}


.hero-rollcake__bg {
  transform: translateZ(0);
}


/* =========================================
   Hero ratio lock
   ロゴを上に、人物を大きく、間隔も調整
========================================= */

.hero-rollcake{
  --hero-logo-w: clamp(320px, 34vw, 600px);
  --hero-person-ratio: 0.90; /* 人物を大きく */
  --hero-gap: clamp(18px, 2.2vw, 34px); /* ロゴと画像の間隔 */
  --hero-top-pad: clamp(28px, 3.2vh, 56px); /* ロゴをもっと上へ */
  --hero-bottom-pad: clamp(36px, 5vh, 72px);
}

.hero-rollcake__inner{
  min-height: 100svh;
  padding-top: var(--hero-top-pad);
  padding-bottom: var(--hero-bottom-pad);
  justify-content: flex-start; /* 上寄せ */
  align-items: center;
}

.hero-rollcake__logo-wrap{
  width: auto;
  max-width: none;
  margin: 0 auto;
}

.hero-rollcake__logo{
  width: var(--hero-logo-w);
  max-width: 92vw;
  height: auto;
}

.hero-rollcake__visual{
  width: auto;
  margin-top: var(--hero-gap); /* マイナス→プラスに変更 */
}

.hero-rollcake__person{
  width: calc(var(--hero-logo-w) * var(--hero-person-ratio));
  max-width: 82vw;
  height: auto;
}

/* 横長モニタ */
@media (min-width: 1280px){
  .hero-rollcake{
    --hero-logo-w: clamp(420px, 32vw, 620px);
    --hero-person-ratio: 0.92;
    --hero-gap: clamp(20px, 2vw, 36px);
    --hero-top-pad: clamp(24px, 2.8vh, 94px);
  }
}

/* ノートPC〜タブレット */
@media (max-width: 1024px){
  .hero-rollcake{
    --hero-logo-w: clamp(320px, 52vw, 540px);
    --hero-person-ratio: 0.92;
    --hero-gap: clamp(16px, 2vw, 28px);
    --hero-top-pad: clamp(26px, 4vh, 52px);
  }

  .hero-rollcake__inner{
    min-height: auto;
  }
}

/* スマホ */
@media (max-width: 767px){
  .hero-rollcake{
    --hero-logo-w: clamp(240px, 74vw, 400px);
    --hero-person-ratio: 0.88;
    --hero-gap: 14px;
    --hero-top-pad: 48px;
    --hero-bottom-pad: 44px;
  }

  .hero-rollcake__logo{
    max-width: 88vw;
  }

  .hero-rollcake__person{
    max-width: 80vw;
  }
}



/* =========================================
   Hero safe fit override
   縦が小さい画面でもロゴと人物を必ず収める
========================================= */

.hero-rollcake{
  --hero-safe-top: clamp(20px, 2.2vh, 36px);
  --hero-safe-bottom: clamp(20px, 2.8vh, 40px);
  --hero-gap: clamp(10px, 1.6vh, 22px);
}

.hero-rollcake__inner{
  min-height: 100svh;
  min-height: 100dvh;
  padding-top: var(--hero-safe-top);
  padding-bottom: var(--hero-safe-bottom);
  justify-content: center;
  gap: var(--hero-gap);
}

.hero-rollcake__logo-wrap,
.hero-rollcake__visual{
  flex: 0 1 auto;
}

.hero-rollcake__logo{
  width: min(92vw, 600px);
  max-width: min(92vw, 600px);
  max-height: 24svh;
  max-height: 24dvh;
  object-fit: contain;
}

.hero-rollcake__person{
  width: auto;
  max-width: min(78vw, 460px);
  max-height: calc(100svh - 24svh - var(--hero-safe-top) - var(--hero-safe-bottom) - var(--hero-gap) - 12px);
  max-height: calc(100dvh - 24dvh - var(--hero-safe-top) - var(--hero-safe-bottom) - var(--hero-gap) - 12px);
  object-fit: contain;
}

/* 縦がかなり小さいノートPCなど */
@media (max-height: 820px){
  .hero-rollcake__logo{
    max-height: 20svh;
    max-height: 20dvh;
    width: min(82vw, 520px);
  }

  .hero-rollcake__person{
    max-width: min(68vw, 380px);
    max-height: calc(100svh - 20svh - var(--hero-safe-top) - var(--hero-safe-bottom) - var(--hero-gap) - 10px);
    max-height: calc(100dvh - 20dvh - var(--hero-safe-top) - var(--hero-safe-bottom) - var(--hero-gap) - 10px);
  }
}

@media (max-height: 700px){
  .hero-rollcake__inner{
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 8px;
  }

  .hero-rollcake__logo{
    width: min(72vw, 440px);
    max-height: 18svh;
    max-height: 18dvh;
  }

  .hero-rollcake__person{
    max-width: min(58vw, 300px);
    max-height: calc(100svh - 18svh - 36px);
    max-height: calc(100dvh - 18dvh - 36px);
  }
}

/* SP */
@media (max-width: 767px){
  .hero-rollcake__inner{
    padding-top: 18px;
    padding-bottom: 20px;
    gap: 10px;
  }

  .hero-rollcake__logo{
    width: min(88vw, 360px);
    max-height: 20svh;
    max-height: 20dvh;
  }

  .hero-rollcake__person{
    max-width: min(72vw, 320px);
    max-height: calc(100svh - 20svh - 40px);
    max-height: calc(100dvh - 20dvh - 40px);
  }
}


/* =========================================
   Section frame design
   添付デザインのように各コンテンツを囲う
========================================= */

:root{
  --frame-bg: #fff;
  --frame-line: #6f8f92;
  --frame-line-soft: rgba(111, 143, 146, .45);
  --frame-shadow: 0 0 0 1px rgba(255,255,255,.55) inset;
  --frame-max: 1200px;
  --frame-gap: 14px;
}

/* 全体の背景トーンを添付寄りに */
.section.note{
  background: #dfd081;
  padding-top: 26px;
  padding-bottom: 0;
}

/* 各ブロック間の余白整理 */
#news,
#intro,
#story,
#comments,
#scheduleSection{
  margin: 0;
}

/* 既存の inner 幅を、囲みデザインに合わせて少し細めに */
.section.note .inner{
  width: min(var(--frame-max), calc(100% - 32px));
  margin: 0 auto;
}

/* 実際の囲み面 */
#news .story__content,
#intro .story__content,
#story .story__content,
#comments .story__content,
#scheduleSection .story__content{
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: var(--frame-bg);
  border: 1px solid var(--frame-line);
  box-shadow:
    var(--frame-shadow),
    0 0 0 4px rgba(255,255,255,.32) inset;
  padding: 34px 26px 42px;
}

/* Staff は story__content の内側に staff があるので少し整理 */
.story3 .story__content{
  position: relative;
  width: 100%;
  margin: 0 auto;
  background: var(--frame-bg);
  border: 1px solid var(--frame-line);
  box-shadow:
    var(--frame-shadow),
    0 0 0 4px rgba(255,255,255,.32) inset;
  padding: 34px 26px 42px;
}

/* 余計な背景/角丸感を消してフラットに */
.story .story__content,
.story2 .story__content,
.story3 .story__content{
  border-radius: 0 !important;
}

/* 見出し位置 */
.story__heading{
  margin: 0 0 18px !important;
  text-align: center;
}

/* タイトルサイズを添付見本寄りに少し抑える */
.story_tit.c-heading__letter{
  margin-bottom: 0 !important;
  color: #2f6668 !important;
}


/* News */
.news-list{
  width: 100%;
  margin: 0 auto;
}

.news-list a{
  justify-content: center;
  gap: 12px;
  padding: 6px 0 0;
}



.story__text p{
  margin: 0;
}

/* line-reveal の下線を囲みデザインでは消す */
.lineTarget .line-reveal .line::after{
  content: none !important;
}

/* Cast / Staff の囲み内余白 */
#comments .comments__wrapper,
.story3 .comments__wrapper{
  margin-top: 22px;
}

/* Schedule */
#scheduleSection .story__subHeading{
  margin-top: 18px;
}

.ttlFrame{
  width: 220px !important;
  padding: 10px 22px !important;
  margin: 0 auto 10px !important;
  background: linear-gradient(180deg, #f8f5ef, #ece4d7) !important;
  border-radius: 999px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,.05) !important;
}

.ttlFrame__txt{
  font-size: 25px !important;
  color: #4f4a44 !important;
}

.fs90,
.fs100,
.fs110,
.fs59,
.fs60{
  color: #111 !important;
}

.ticket_info{
  padding: 0 !important;
}

.ticketinfo{
  line-height: 1.7;
}

/* =========================
   SP
========================= */
@media (max-width: 767px){
  :root{
    --frame-max: 100%;
    --frame-gap: 10px;
  }

  .section.note{
    padding-top: 16px;
    padding-bottom: 24px;
  }

  .section.note .inner{
    width: calc(100% - 20px);
  }

  #news .story__content,
  #intro .story__content,
  #story .story__content,
  #comments .story__content,
  #scheduleSection .story__content,
  .story3 .story__content{
    padding: 22px 5px 28px;
    box-shadow:
      0 0 0 1px rgba(255,255,255,.55) inset,
      0 0 0 3px rgba(255,255,255,.28) inset;
  }


  .story_tit::before,
  .story_tit::after{
    width: 60px;
    height: 20px;
  }

  .story_tit::before{
    margin-right: 6px;
  }

  .story_tit::after{
    margin-left: 6px;
  }


  #comments .comments__wrapper ul.gridlistcast{
    width: min(72%, 250px) !important;
    gap: 38px !important;
  }

  a.buttonneon.profilebtn,
  a.buttonneon.profilebtn2{
    width: 100% !important;
    min-width: 0 !important;
    height: 28px !important;
  }

}


/* =========================================
   Background gradient for content area
   TOPと同系の黄色グラデーション + ゆるやかアニメーション
========================================= */

/* TOPと同じ空気感の黄色グラデ */
.section.note{
  position: relative;
  overflow: unset;
  background: #fffccf;
}

/* 背景の動き用オーバーレイ */
.section.note::before{
  content: "";
  position: absolute;
  inset: -8%;
  pointer-events: none;
  opacity: .55;
  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,.16) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 72% 18%, rgba(255,244,180,.18) 0%, rgba(255,244,180,0) 24%),
    radial-gradient(circle at 60% 72%, rgba(255,235,150,.12) 0%, rgba(255,235,150,0) 28%);
  background-size: 120% 120%;
  animation: rollcakeBgDrift 24s ease-in-out infinite alternate;
}

/* 中身を前面に */
.section.note > *{
  position: relative;
  z-index: 1;
}

@keyframes rollcakeBgFloat{
  0%{
    background-position:
      0% 0%,
      100% 0%,
      50% 100%,
      0% 0%;
  }
  50%{
    background-position:
      4% 3%,
      96% 6%,
      54% 96%,
      0% 0%;
  }
  100%{
    background-position:
      8% 6%,
      92% 10%,
      58% 92%,
      0% 0%;
  }
}

@keyframes rollcakeBgDrift{
  0%{
    transform: translate3d(0, 0, 0) scale(1);
  }
  50%{
    transform: translate3d(-1.2%, 0.8%, 0) scale(1.03);
  }
  100%{
    transform: translate3d(1%, -0.8%, 0) scale(1.05);
  }
}

/* 動きが苦手な人向け */
@media (prefers-reduced-motion: reduce){
  .section.note,
  .section.note::before{
    animation: none !important;
  }
}

/* SPでは少し控えめに */
@media (max-width: 767px){
  .section.note{
    animation-duration: 24s;
  }

  .section.note::before{
    opacity: .42;
    animation-duration: 30s;
  }
}



/* =========================================
   Hero背景を削除（透明化）
========================================= */

.hero-rollcake__bg{
  display: none !important;
}

/* 万が一 background が指定されている場合も殺す */
.hero-rollcake{
  background: transparent !important;
}


/* =========================================
   全体背景に昇格
========================================= */

body{
  position: relative;
  min-height: 100vh;

  background:
    radial-gradient(circle at 18% 14%, rgba(255, 246, 186, 0.72) 0%, transparent 32%),
    radial-gradient(circle at 82% 22%, rgba(245, 232, 140, 0.38) 0%, transparent 30%),
    radial-gradient(circle at 50% 78%, rgba(233, 214, 106, 0.22) 0%, transparent 36%),
    linear-gradient(180deg, #e8da8f 0%, #dfcf79 42%, #d8c568 100%);

  background-size: 140% 140%, 130% 130%, 150% 150%, 100% 100%;
  animation: rollcakeBgFloat 18s ease-in-out infinite alternate;
}

/* 動く光レイヤー */
body::before{
  content: "";
  position: fixed;
  inset: -10%;
  pointer-events: none;
  z-index: 0;

  background:
    radial-gradient(circle at 22% 30%, rgba(255,255,255,.16) 0%, transparent 28%),
    radial-gradient(circle at 72% 18%, rgba(255,244,180,.18) 0%, transparent 24%),
    radial-gradient(circle at 60% 72%, rgba(255,235,150,.12) 0%, transparent 28%);

  animation: rollcakeBgDrift 24s ease-in-out infinite alternate;
}

/* コンテンツは前面に */
main,
.section.note,
.hero{
  position: relative;
  z-index: 1;
}


.hero-rollcake__inner{
  backdrop-filter: blur(2px);
}


/* =========================================
   HERO FINAL OVERRIDE
   redbookjp.com っぽい静かなKVに寄せる
========================================= */

/* 全体 */
.hero-rollcake{
  position: relative;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;

  /* 全体背景は消して、ヒーロー単体で完結 */
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.42) 0%, rgba(255,255,255,0) 28%),
    linear-gradient(180deg, #f4e29d 0%, #e7d27a 46%, #ddc567 100%) !important;
}

/* body に入れていた全体背景演出を実質見えなくする */
body{
  background: #e7d27a !important;
  animation: none !important;
}

body::before{
  content: none !important;
}

/* hero専用背景は使わない */
.hero-rollcake__bg{
  display: none !important;
}

/* 中身レイアウト */
.hero-rollcake__inner{
  position: relative;
  z-index: 2;
  width: min(100%, 1200px);
  min-height: 100svh;
  min-height: 100dvh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: clamp(8px, 1.4vw, 18px);
  padding:
    clamp(36px, 6vh, 72px)
    20px
    clamp(28px, 5vh, 56px);

  backdrop-filter: none !important;
}

/* ロゴ */
.hero-rollcake__logo-wrap{
  width: auto;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 3;
}

.hero-rollcake__logo{
  width: clamp(280px, 42vw, 720px);
  max-width: 90vw;
  height: auto;
  display: block;

  opacity: 0;
  transform: translateY(18px);
  animation: heroSimpleFade 1.05s ease .08s forwards !important;
}

/* 人物 */
.hero-rollcake__visual{
  width: auto;
  margin-top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-rollcake__person{
  width: clamp(250px, 30vw, 500px);
  max-width: 78vw;
  height: auto;
  display: block;
  object-fit: contain;

  opacity: 0;
  transform: translateY(20px);
  animation: heroSimpleFade 1.1s ease .24s forwards !important;
}

/* 既存の複雑な ready アニメを無効化 */
.hero-rollcake.is-ready .hero-rollcake__logo,
.hero-rollcake.is-ready .hero-rollcake__person{
  animation: heroSimpleFade 1.05s ease forwards !important;
}

.hero-rollcake.is-ready .hero-rollcake__logo{
  animation-delay: .08s !important;
}

.hero-rollcake.is-ready .hero-rollcake__person{
  animation-delay: .24s !important;
}

/* 旧キーフレーム系を見た目上止める */
.hero-rollcake__logo,
.hero-rollcake__person,
.hero-rollcake__logo-wrap,
.hero-rollcake__visual{
  will-change: auto !important;
  backface-visibility: visible !important;
}

/* スクロールボタンも静かな見た目に */
.hero-rollcake .scroll-next{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #6b5733;
  box-shadow: 0 8px 20px rgba(0,0,0,.10);
  border: 1px solid rgba(107,87,51,.18);
}

/* フェードだけ */
@keyframes heroSimpleFade{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* PCで少しゆったり */
@media (min-width: 1025px){
  .hero-rollcake__inner{
    gap: 12px;
    padding-top: clamp(38px, 5vh, 64px);
    padding-bottom: clamp(34px, 4.5vh, 54px);
  }

  .hero-rollcake__logo{
    width: clamp(360px, 40vw, 700px);
  }

  .hero-rollcake__person{
    width: clamp(300px, 29vw, 470px);
  }
}

/* SP */
@media (max-width: 767px){
  .hero-rollcake{
    min-height: 100svh;
    min-height: 100dvh;
  }

  .hero-rollcake__inner{
    gap: 10px;
    padding-top: 32px;
    padding-bottom: 24px;
  }

  .hero-rollcake__logo{
    width: min(82vw, 420px);
    max-width: 82vw;
  }

  .hero-rollcake__person{
    width: min(62vw, 300px);
    max-width: 62vw;
  }
}

/* モーション軽減 */
@media (prefers-reduced-motion: reduce){
  .hero-rollcake__logo,
  .hero-rollcake__person{
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}





/* =========================================
   HERO SPLIT FIX
   左寄せ / 右寄せ / sticky nav fix
========================================= */

:root{
  --hero-nav-h: 56px;
  --hero-left-w: 34.5%;
  --hero-right-w: calc(100% - var(--hero-left-w));
  --hero-right-bg: #dcc8cf;
  --hero-nav-bg: #003f37;
  --hero-text: #6d4d4d;
}

/* bodyの中央寄せ感を消す */
html, body{
  margin: 0;
  padding: 0;
}


/* 中央寄せを完全に解除 */
.hero-split__inner{
  width: 100% !important;
  max-width: none !important;
  min-height: 100svh;
  min-height: 100dvh;
  margin: 0 !important;

  display: grid;
  grid-template-columns: var(--hero-left-w) var(--hero-right-w);
  align-items: stretch;
}

/* 左カラム：完全に左に固定 */
.hero-split__media{
  position: relative;
  width: 100%;
  min-height: 100%;
  background: #ddd27d;
  overflow: hidden;
}

.hero-split__poster{
  width: 100%;
  height: 100%;
}

.hero-split__poster-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: left center; /* ここ重要 */
}

/* 右カラム */
.hero-split__content{
  position: relative;
  width: 100%;
  min-height: 100%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,.22), transparent 38%),
    linear-gradient(180deg, #eadb8f 0%, #e5cf73 100%);
}

.hero-split__content-inner{
  width: 100%;
  min-height: 100%;
  height: 100%;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding:
    calc(var(--hero-nav-h) + 16px)
    clamp(24px, 4vw, 56px)
    16px;

  box-sizing: border-box;
  text-align: center;
}
/* 右上ナビ */
.hero-topnav{
  position: absolute;
  top: 0;
  left: var(--hero-left-w); /* 左画像の横から始める */
  width: var(--hero-right-w);
  height: var(--hero-nav-h);
  z-index: 30;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--hero-nav-bg);
}

.hero-topnav__nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-topnav__nav a{
  color: #fff;
  text-decoration: none;
  font-size: 38px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
  font-family: "bodega-serif", serif;
}

/* sticky nav */
.sticky-global-nav{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--hero-nav-h);
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--hero-nav-bg);
  box-shadow: 0 6px 20px rgba(0,0,0,.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;

  transition:
    opacity .28s ease,
    transform .28s ease,
    visibility .28s ease;
}

.sticky-global-nav.is-show{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-global-nav__inner{
  width: min(1200px, calc(100% - 40px));
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sticky-global-nav__inner a{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1;
  white-space: nowrap;
}



.hero-split__logo{
  width: 100%;
  height: auto;
  display: block;
}

/* 情報ブロック */
.hero-split__info{
  max-width: 760px;
  width: 100%;
  color: var(--hero-text);
}

.hero-split__lead{
  margin: 0 0 18px;
  font-size: 14px;
  letter-spacing: .12em;
}

.hero-split__meta{
  margin-bottom: 28px;
}

.hero-split__meta p{
  margin: 0 0 8px;
  font-size: clamp(16px, 1.4vw, 28px);
  line-height: 1.7;
}

.hero-split__schedule p{
  margin: 0 0 12px;
  font-size: clamp(20px, 1.8vw, 38px);
  line-height: 1.5;
  letter-spacing: .02em;
}

/* 既存containerの影響を切る */
.hero .container,
.hero-rollcake .container{
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* SP */
@media (max-width: 767px){
  :root{
    --hero-nav-h: 52px;
    --hero-left-w: 100%;
    --hero-right-w: 100%;
  }

  .hero-split__inner{
    grid-template-columns: 1fr;
    min-height: auto;
  }

.hero-topnav {
    left: 0;
    width: 100%;
    background: unset !important;
}

  .hero-topnav__nav{
    gap: 12px;
    padding: 0 10px;
  }

  .hero-topnav__nav a,
  .sticky-global-nav__inner a{
    font-size: 12px;
  }

  .hero-split__media{
    height: 52vh;
    min-height: 360px;
  }

  .hero-split__poster-img{
    object-position: center top;
  }

  .hero-split__content-inner{
    min-height: auto;
    padding:
      34px
      18px
      36px;
  }

  .hero-split__logo-wrap{
    width: min(86vw, 360px);
    margin-bottom: 22px;
  }

  .hero-split__meta p{
    font-size: 15px;
  }

  .hero-split__schedule p{
    font-size: 18px;
  }

  .sticky-global-nav__inner{
    width: calc(100% - 20px);
    gap: 10px 14px;
  }
}


/* =========================================
   Sticky nav with logo
========================================= */

.sticky-global-nav__inner{
  width: 95%;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ←ここが重要 */
  gap: 20px;
}

/* ロゴ */
.sticky-global-nav__logo{
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sticky-global-nav__logo img{
  height: 55px; /* ←サイズ調整ここ */
  width: auto;
  display: block;
}

/* ナビ側 */
.sticky-global-nav__nav{
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.sticky-global-nav__nav a{
  color: #fff;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: .08em;
  white-space: nowrap;
  font-family: "bodega-serif", serif;
}

/* hover */
.sticky-global-nav__nav a:hover{
  opacity: .7;
}

/* SP */
@media (max-width: 767px){

  .sticky-global-nav__inner{
    width: calc(100% - 20px);
    gap: 10px;
  }

  .sticky-global-nav__logo img{
    height: 22px;
  }

  .sticky-global-nav__nav{
    gap: 12px;
  }

  .sticky-global-nav__nav a{
    font-size: 12px;
  }
}



#news {
  position: relative;
  z-index: 5;
}


/* =========================================
   SP overflow real final fix
========================================= */
@media (max-width: 767px){

  html{
    overflow-x: clip;
  }

  body{
    width: 100%;
    max-width: 100%;
  }

  /* 100%系を完全にやめる */
  .hero-split,
  .hero-split__inner,
  .hero-topnav,
  .sticky-global-nav,
  #spMenu.sp-nav,
  .sp-nav__panel,
  .modal-wrapper,
  .modal-overlay{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
  }

  .sticky-global-nav__inner,
  .section.note .inner{
    width: calc(100% - 30px) !important;
    max-width: calc(100% - 30px) !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* ハンバーガーボタンのはみ出し止め */
  .hero-topnav__toggle{
    width: 34px !important;
    height: 34px !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
    flex: 0 0 34px !important;
  }

  .hero-topnav__toggle span{
    display: block !important;
    width: 22px !important;
    max-width: 22px !important;
    height: 3px !important;
    margin: 0 auto !important;
    transform-origin: center center !important;
    box-sizing: border-box !important;
  }

  /* 閉じるボタンも右にはみ出させない */
  .sp-nav__close,
  .modal-close{
    box-sizing: border-box !important;
    right: 12px !important;
  }

  /* モーダル本体 */
  .modal-window{
    width: calc(100% - 24px) !important;
    max-width: calc(100% - 24px) !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .modal-content{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
  }


.box30 {
    width: 95% !important;
    max-width: 95% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    box-sizing: border-box !important;
}
}



body{
  width: 100%;
  max-width: 100%;
}

main.main{
  width: 100%;
  max-width: 100%;
}

.section.note .inner{
  width: min(var(--frame-max), calc(100% - 32px));
  max-width: min(var(--frame-max), calc(100% - 32px));
}

.hero-split{
  width: 100%;
  max-width: 100%;
}

.hero-split__inner{
  width: 100% !important;
  max-width: 100% !important;
}

.sticky-global-nav{
  width: 100%;
  max-width: 100%;
}

.sticky-global-nav__inner{
  width: min(1200px, calc(100% - 40px));
  max-width: min(1200px, calc(100% - 40px));
}

#scheduleSection .story__subHeading {
  height: auto !important;
  min-height: auto !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  transform: none !important;
}

.fadeup {
  transform: translateY(0) !important;
}

#scheduleSection .story__subHeading.fadeup {
  all: unset;
  display: block;
}

.fadeup {
  transform: none !important;
}

.section.note::before{
  content: "";
  position: absolute;
  inset: 0; /* ←これだけでOK */
  pointer-events: none;
  opacity: .55;
}


/* =========================================
   HERO LOGO REAL FINAL OVERRIDE
   必ず main.css の一番最後
========================================= */

.hero.hero-rollcake.hero-split .hero-split__logo-wrap,
.hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
  width: min(92%, 760px) !important;
  max-width: 760px !important;
  margin: 0 auto !important;
  flex: 0 0 auto !important;
}

.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  display: block !important;
}


.hero.hero-rollcake.hero-split .hero-split__logo-wrap,
.hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
  width: min(92%, 760px) !important;
  max-width: 760px !important;
  height: 520px !important;
  overflow: hidden !important;
  position: relative !important;
}

.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  position: absolute !important;
  top: -12% !important;
  left: 50% !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  transform: translateX(-50%) scale(1.55) !important;
  transform-origin: center top !important;
}


/* =========================================
   HERO LOGO BIG VISUAL FINAL
========================================= */

/* 右カラムの中でロゴを大きく使う */
.hero.hero-rollcake.hero-split .hero-split__content-inner{
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
}

/* ラッパーの上限を外す */
.hero.hero-rollcake.hero-split .hero-split__logo-wrap,
.hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
  width: 100% !important;
  max-width: none !important;
  margin: 0 auto 20px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  overflow: visible !important;
}

/* 画像自体を大きく見せる本体 */
.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  width: clamp(700px, 78vw, 1400px) !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
}


.hero.hero-rollcake.hero-split .hero-split__content-inner{
  align-items: flex-end !important;
  text-align: right !important;
  padding-right: clamp(24px, 4vw, 64px) !important;
}

.hero.hero-rollcake.hero-split .hero-split__logo-wrap,
.hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
  justify-content: flex-end !important;
}


/* =========================================
   HERO LOGO UNLOCK FINAL
   右ロゴの制限を全部解除
========================================= */

/* 右カラム自体 */
.hero.hero-rollcake.hero-split .hero-split__content{
  overflow: visible !important;
}

/* 中身ラッパー */
.hero.hero-rollcake.hero-split .hero-split__content-inner{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  overflow: visible !important;

  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;

  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ロゴラッパー */
.hero.hero-rollcake.hero-split .hero-split__logo-wrap,
.hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  overflow: visible !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;

  margin: 0 auto 12px !important;
  padding: 0 !important;
}

/* ロゴ本体 */
.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 81% !important;
  flex: none !important;
}

/* 念のため、過去のhero-rollcake側制限も殺す */
.hero-rollcake__logo{
  width: min(1100px, 95vw) !important;
  max-width: none !important;
  max-height: none !important;
}


@media (max-width: 767px){


.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  position: absolute !important;
  top: 28% !important;
  left: 50% !important;
  width: 100% !important;
  max-width: none !important;
  height: auto !important;
  transform: translateX(-50%) scale(1.55) !important;
  transform-origin: center top !important;
}

/* ロゴ本体 */
.hero.hero-rollcake.hero-split .hero-split__logo,
.hero.hero-rollcake.hero-split .hero-rollcake__logo{
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  height: 34% !important;
  flex: none !important;
}


}




/* =========================================
   HERO SP REAL DEVICE FIX
   実機でロゴが切れる問題を解消
========================================= */
@media (max-width: 767px){

  /* ヒーロー全体を固定高から解除 */
  #hero,
  .hero.hero-rollcake.hero-split{
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__inner{
    height: auto !important;
    min-height: auto !important;
    grid-template-columns: 1fr !important;
  }

  /* 上のメイン画像 */
  .hero.hero-rollcake.hero-split .hero-split__media{
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 390 / 520; /* 見え方を安定 */
    overflow: hidden !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__poster,
  .hero.hero-rollcake.hero-split .hero-split__poster-img{
    width: 100% !important;
    height: 100% !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__poster-img{
    object-fit: cover !important;
    object-position: center top !important;
  }

  /* 下のロゴエリア */
  .hero.hero-rollcake.hero-split .hero-split__content{
    min-height: 0 !important;
    overflow: visible !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__content-inner{
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 24px 18px 28px !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__logo-wrap,
  .hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
    width: min(72vw, 360px) !important;
    max-width: 360px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__logo,
  .hero.hero-rollcake.hero-split .hero-rollcake__logo{
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    position: static !important;
    transform: none !important;
  }
}


/* =========================================
   HERO SP HARD RESET
   実機でメイン画像が消える問題を完全リセット
========================================= */
@media (max-width: 767px){

  /* ヒーロー全体の固定高を解除 */
  #hero,
  .hero,
  .hero.hero-rollcake.hero-split{
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    display: block !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__inner{
    display: grid !important;
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0 !important;
  }

  /* メイン画像エリアを普通に表示 */
  .hero.hero-rollcake.hero-split .hero-split__media{
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 65vh !important;
    min-height: 320px !important;
    overflow: hidden !important;
    background: #ddd27d !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__poster{
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__poster-img{
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center top !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* ロゴエリア */
  .hero.hero-rollcake.hero-split .hero-split__content{
    min-height: 0 !important;
    overflow: visible !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__content-inner{
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 24px 18px 28px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__logo-wrap,
  .hero.hero-rollcake.hero-split .hero-rollcake__logo-wrap{
    width: min(72vw, 360px) !important;
    max-width: 360px !important;
    height: auto !important;
    margin: 0 auto !important;
    overflow: visible !important;
    position: static !important;
  }

  .hero.hero-rollcake.hero-split .hero-split__logo,
  .hero.hero-rollcake.hero-split .hero-rollcake__logo{
    position: static !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* 上の固定バーぶんだけ画像が隠れないように */
  .hero.hero-rollcake.hero-split .hero-split__media{
    margin-top: 0 !important;
  }

  .hero-topnav{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 52px !important;
    z-index: 10000 !important;
    background: unset !important;
  }
}