﻿:root {
      --kitto-coral: #f0908a;
      --kitto-teal: #00b1a0;
      --kitto-ink: #26322f;
      --kitto-deep: #173f42;
      --kitto-muted: #687873;
      --kitto-paper: #fffdf9;
      --kitto-shell: #f7f0e8;
      --kitto-mist: #e8f5f1;
      --kitto-white: #ffffff;
      --kitto-line: rgba(38, 50, 47, .14);
      --kitto-soft-line: rgba(38, 50, 47, .08);
      --kitto-shadow: 0 22px 58px rgba(32, 45, 41, .13);
      --kitto-font-serif: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
      --kitto-font-sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--kitto-ink);
      background: var(--kitto-paper);
      font-family: var(--kitto-font-sans);
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button {
      font: inherit;
    }

    .preview-ribbon {
      display: none;
      position: fixed;
      left: 16px;
      bottom: 16px;
      z-index: 60;
      width: min(360px, calc(100% - 32px));
      padding: 12px 14px;
      border: 1px solid rgba(38, 50, 47, .12);
      border-radius: 6px;
      color: var(--kitto-muted);
      background: rgba(255, 253, 249, .88);
      box-shadow: 0 10px 28px rgba(32, 45, 41, .12);
      font-size: 12px;
      line-height: 1.65;
      backdrop-filter: blur(12px);
    }

    .page {
      min-height: 100vh;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 8%, rgba(240, 144, 138, .12), transparent 28%),
        radial-gradient(circle at 94% 4%, rgba(0, 177, 160, .11), transparent 27%),
        var(--kitto-paper);
    }

    .kitto-header {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 40;
      width: 100%;
      min-height: 78px;
      color: #fffdf9;
      background: linear-gradient(180deg, rgba(38, 50, 47, .28), rgba(38, 50, 47, .02));
      border-bottom: 1px solid rgba(255, 253, 249, .16);
      transition: background .28s ease, color .28s ease, box-shadow .28s ease, border-color .28s ease;
      backdrop-filter: blur(10px);
    }

    .page.is-scrolled .kitto-header {
      color: var(--kitto-ink);
      background: rgba(255, 253, 249, .94);
      border-bottom-color: rgba(38, 50, 47, .1);
      box-shadow: 0 14px 42px rgba(32, 45, 41, .08);
      backdrop-filter: blur(16px);
    }

    .kitto-header__inner {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: clamp(14px, 1.8vw, 26px);
      align-items: center;
      width: min(1180px, calc(100% - 42px));
      min-height: inherit;
      margin: 0 auto;
    }

    .kitto-logo {
      display: inline-flex;
      align-items: center;
      min-width: 136px;
    }

    .kitto-logo img {
      width: 140px;
      height: auto;
      filter: brightness(0) invert(1);
      transition: filter .28s ease;
    }

    .page.is-scrolled .kitto-logo img {
      filter: none;
    }

    .kitto-nav {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: clamp(10px, 1.18vw, 20px);
      min-width: 0;
      white-space: nowrap;
    }

    .kitto-nav a {
      position: relative;
      font-size: clamp(11px, .86vw, 13px);
      line-height: 1;
    }

    .kitto-nav a::after {
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 1px;
      content: "";
      transform: scaleX(0);
      transform-origin: right;
      background: currentColor;
      transition: transform .28s ease;
    }

    .kitto-nav a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .kitto-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      min-width: max-content;
    }

    .kitto-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 16px;
      border: 1px solid rgba(255, 253, 249, .62);
      border-radius: 999px;
      color: inherit;
      background: rgba(255, 253, 249, .14);
      font-size: 13px;
      font-weight: 700;
      transition: background .28s ease, border-color .28s ease;
    }

    .page.is-scrolled .kitto-cta {
      border-color: rgba(0, 177, 160, .48);
      background: rgba(255, 255, 255, .56);
    }

    .w2-utilities {
      display: flex;
      align-items: center;
      gap: 9px;
      color: inherit;
    }

    .w2-utility {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255, 253, 249, .26);
      border-radius: 50%;
      background: rgba(255, 253, 249, .12);
      color: inherit;
      font-size: 0;
      transition: background .28s ease, border-color .28s ease;
    }

    .page.is-scrolled .w2-utility {
      border-color: rgba(38, 50, 47, .14);
      background: rgba(255, 255, 255, .42);
    }

    .w2-utility::before {
      display: block;
      font-size: 15px;
      line-height: 1;
    }

    .w2-utility--search::before {
      content: "⌕";
    }

    .w2-utility--login::before {
      content: "人";
      font-size: 12px;
    }

    .w2-utility--cart::before {
      content: "□";
      font-size: 14px;
    }

    .kitto-menu-button {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 253, 249, .26);
      border-radius: 50%;
      background: rgba(255, 253, 249, .12);
      padding: 0 10px;
      transition: background .28s ease, border-color .28s ease;
    }

    .page.is-scrolled .kitto-menu-button {
      border-color: rgba(38, 50, 47, .14);
      background: rgba(255, 255, 255, .44);
    }

    .kitto-menu-button span {
      display: block;
      height: 1px;
      background: currentColor;
    }

    .kitto-mobile-menu {
      display: none;
    }

    .site-breadcrumb {
      position: absolute;
      left: 50%;
      top: 94px;
      z-index: 6;
      width: min(1180px, calc(100% - 56px));
      transform: translateX(-50%);
      color: rgba(38, 50, 47, .62);
      font-size: 12px;
      line-height: 1.5;
    }

    .site-breadcrumb ol {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      align-items: center;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .site-breadcrumb li {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-width: 0;
    }

    .site-breadcrumb li + li::before {
      content: ">";
      color: rgba(38, 50, 47, .3);
      font-size: 11px;
    }

    .site-breadcrumb a {
      color: inherit;
      text-decoration: none;
    }

    .site-breadcrumb a:hover {
      color: var(--kitto-teal);
    }

    .site-breadcrumb [aria-current="page"] {
      color: var(--kitto-deep);
    }

    .moresara-page,
    .purchase-guide,
    .purchase-detail {
      position: relative;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    .serif {
      font-family: var(--kitto-font-serif);
      font-weight: 500;
      letter-spacing: 0;
    }

    .kicker {
      margin: 0 0 18px;
      color: var(--kitto-teal);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
    }

    .body-copy {
      color: var(--kitto-muted);
      font-size: 15px;
      line-height: 2;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border: 1px solid rgba(38, 50, 47, .18);
      border-radius: 999px;
      color: var(--kitto-ink);
      background: rgba(255, 255, 255, .58);
      font-size: 14px;
      font-weight: 700;
    }

    .button--primary {
      border-color: rgba(0, 177, 160, .5);
      background: rgba(0, 177, 160, .08);
    }

    .copy-line {
      display: block;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: grid;
      align-items: end;
      overflow: hidden;
      color: #fffdf9;
      background:
        linear-gradient(90deg, rgba(25, 43, 39, .58) 0%, rgba(25, 43, 39, .28) 36%, rgba(25, 43, 39, .06) 72%),
        url("../../img/kitto-one/images/hero-pc-firstview-approved-products-v1.png") center bottom / cover no-repeat;
    }

    .hero::before {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 30%, rgba(25, 43, 39, .26));
      opacity: .72;
      pointer-events: none;
    }

    .hero::after {
      display: none;
    }

    .hero__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(280px, .72fr);
      gap: clamp(28px, 6vw, 78px);
      align-items: end;
      width: min(1180px, calc(100% - 42px));
      margin: 0 auto;
      padding: 190px 0 clamp(58px, 8vw, 96px);
    }

    .hero__copy {
      max-width: 620px;
    }

    .hero h1 {
      margin-bottom: 32px;
      font-size: clamp(42px, 5.7vw, 76px);
      line-height: 1.2;
      text-shadow: 0 14px 38px rgba(25, 43, 39, .24);
    }

    .hero h1 .copy-line {
      white-space: nowrap;
    }

    .hero .lead {
      max-width: 680px;
      margin-bottom: 24px;
      font-size: clamp(16px, 1.65vw, 20px);
      line-height: 2;
    }

    .hero .body-copy {
      max-width: 630px;
      color: rgba(255, 253, 249, .82);
    }

    .hero__actions {
      display: none;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 36px;
    }

    .hero .button {
      color: #fffdf9;
      border-color: rgba(255, 253, 249, .42);
      background: rgba(255, 253, 249, .12);
    }

    .hero .button--primary {
      border-color: rgba(255, 253, 249, .62);
      background: rgba(255, 253, 249, .2);
    }

    .image-note {
      position: relative;
      z-index: 2;
      align-self: end;
      padding: 16px 18px;
      border: 1px solid rgba(255, 253, 249, .24);
      border-radius: 6px;
      color: rgba(255, 253, 249, .84);
      background: rgba(25, 43, 39, .22);
      backdrop-filter: blur(14px);
    }

    .image-note--light {
      color: var(--kitto-muted);
      border-color: rgba(38, 50, 47, .12);
      background: rgba(255, 253, 249, .82);
      box-shadow: 0 16px 38px rgba(32, 45, 41, .08);
    }

    .image-note p {
      margin: 0 0 7px;
      font-size: 12px;
      line-height: 1.65;
    }

    .image-note p:last-child {
      margin-bottom: 0;
    }

    .image-note strong {
      color: inherit;
      font-weight: 700;
    }

    .section {
      position: relative;
      padding: clamp(76px, 10vw, 142px) 0;
    }

    .section__inner {
      width: min(1180px, calc(100% - 42px));
      margin: 0 auto;
    }

    .brand-intro {
      min-height: 680px;
      display: grid;
      align-items: center;
      background:
        linear-gradient(180deg, var(--kitto-paper) 0%, #fbf8f0 100%);
    }

    .brand-intro__inner {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(280px, .42fr);
      gap: clamp(42px, 10vw, 136px);
      align-items: center;
    }

    .brand-intro h2 {
      max-width: 880px;
      margin-bottom: 32px;
      color: var(--kitto-deep);
      font-size: clamp(32px, 5vw, 64px);
      line-height: 1.55;
    }

    .brand-intro .body-copy {
      max-width: 620px;
    }

    .life-scenes {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .life-scenes li {
      display: flex;
      align-items: center;
      min-height: 58px;
      padding: 0 22px;
      border-left: 1px solid rgba(0, 177, 160, .42);
      color: var(--kitto-deep);
      background: rgba(255, 255, 255, .46);
      font-family: var(--kitto-font-serif);
      font-size: clamp(17px, 1.8vw, 23px);
      line-height: 1.5;
    }

    .quiet-lines {
      display: grid;
      gap: 28px;
      padding: 12px 0;
    }

    .quiet-lines span {
      display: block;
      width: 100%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(38, 50, 47, .22), transparent);
    }

    .quiet-lines span:nth-child(2) {
      width: 76%;
      margin-left: 14%;
    }

    .quiet-lines span:nth-child(3) {
      width: 52%;
      margin-left: 36%;
    }

    .okinawa {
      min-height: 820px;
      display: grid;
      align-items: center;
      color: #fffdf9;
      background:
        linear-gradient(90deg, rgba(20, 39, 36, .62) 0%, rgba(20, 39, 36, .42) 34%, rgba(20, 39, 36, .12) 68%, rgba(20, 39, 36, .04) 100%),
        linear-gradient(180deg, rgba(20, 39, 36, .08) 0%, rgba(20, 39, 36, .34) 100%),
        url("../../img/kitto-one/images/okinawa-richness-pc-approved-v1.png") center center / cover no-repeat;
      overflow: hidden;
    }

    .okinawa::before {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(180deg, rgba(255, 253, 249, .08), transparent 32%, rgba(25, 43, 39, .2));
      opacity: .72;
    }

    .okinawa__inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(300px, .58fr);
      gap: clamp(44px, 8vw, 112px);
      align-items: center;
      padding-bottom: clamp(10px, 3vw, 32px);
    }

    .okinawa h2 {
      max-width: 760px;
      margin-bottom: clamp(34px, 5vw, 54px);
      font-size: clamp(30px, 4.2vw, 54px);
      line-height: 1.58;
    }

    .okinawa .body-copy {
      max-width: 660px;
      margin-bottom: 0;
      color: rgba(255, 253, 249, .84);
      line-height: 2.15;
    }

    .okinawa-copy {
      display: grid;
      gap: clamp(22px, 3vw, 34px);
      max-width: 690px;
    }

    .okinawa .support-copy {
      padding-top: clamp(22px, 3vw, 32px);
      border-top: 1px solid rgba(255, 253, 249, .24);
      color: rgba(255, 253, 249, .78);
    }

    .okinawa .button {
      margin-top: clamp(36px, 5vw, 54px);
      color: #fffdf9;
      border-color: rgba(255, 253, 249, .42);
      background: rgba(255, 253, 249, .12);
    }

    .moresara {
      background:
        radial-gradient(circle at 18% 18%, rgba(0, 177, 160, .12), transparent 24%),
        radial-gradient(circle at 82% 18%, rgba(240, 144, 138, .14), transparent 24%),
        #fffdf9;
    }

    .moresara__head {
      display: grid;
      grid-template-columns: minmax(0, .72fr) minmax(280px, .42fr);
      gap: clamp(34px, 7vw, 86px);
      align-items: end;
      margin-bottom: clamp(42px, 7vw, 84px);
    }

    .moresara h2 {
      margin-bottom: 20px;
      color: var(--kitto-deep);
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.48;
    }

    .moresara-stage {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      padding: clamp(34px, 5vw, 58px);
      border: 1px solid rgba(38, 50, 47, .11);
      background:
        radial-gradient(circle at 16% 18%, rgba(247, 193, 165, .2), transparent 28%),
        radial-gradient(circle at 26% 72%, rgba(255, 221, 155, .18), transparent 30%),
        radial-gradient(circle at 84% 24%, rgba(38, 112, 122, .17), transparent 32%),
        radial-gradient(circle at 86% 78%, rgba(206, 163, 104, .14), transparent 28%),
        linear-gradient(112deg, rgba(255, 250, 241, .98) 0%, rgba(255, 253, 249, .98) 48%, rgba(235, 247, 244, .92) 100%);
      box-shadow: 0 22px 58px rgba(32, 45, 41, .08);
    }

    .moresara-stage::before {
      position: absolute;
      inset: 10% 8%;
      content: "";
      z-index: 1;
      border: 1px solid rgba(38, 50, 47, .1);
      border-bottom-color: transparent;
      border-radius: 50% 50% 0 0;
      opacity: .7;
      pointer-events: none;
    }

    .time-side {
      position: absolute;
      z-index: 3;
      width: min(25%, 260px);
    }

    .time-side--morning {
      left: clamp(24px, 6vw, 76px);
      top: clamp(38px, 7vw, 82px);
    }

    .time-side--night {
      right: clamp(24px, 6vw, 76px);
      bottom: clamp(46px, 7vw, 86px);
    }

    .unit-center {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 3;
      width: min(40vw, 470px);
      min-width: 300px;
      transform: translate(-50%, -48%);
    }

    .time-mark {
      color: var(--kitto-muted);
    }

    .time-mark--night {
      text-align: right;
    }

    .time-mark h3 {
      margin-bottom: 10px;
      color: var(--kitto-deep);
      font-family: var(--kitto-font-serif);
      font-size: clamp(22px, 2.8vw, 36px);
      font-weight: 500;
      line-height: 1.4;
    }

    .time-mark p {
      margin: 0;
      font-size: 13px;
      line-height: 1.85;
    }

    .unit-product {
      width: min(100%, 440px);
      margin: 0 auto;
      text-align: center;
    }

    .product-pair {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: end;
      margin-bottom: 16px;
    }

    .product-pair img {
      width: 54%;
      filter: drop-shadow(0 22px 32px rgba(32, 45, 41, .16));
    }

    .product-pair img:first-child {
      margin-right: -7%;
      transform: translateY(12px) rotate(-5deg);
    }

    .product-pair img:last-child {
      transform: translateY(-2px) rotate(4deg);
    }

    .unit-product p {
      width: min(360px, 100%);
      margin: 0 auto;
      color: var(--kitto-muted);
      font-size: 12px;
      line-height: 1.75;
    }

    .unit-note {
      width: min(390px, 100%);
      margin: 0 auto clamp(18px, 3vw, 28px);
      text-align: center;
    }

    .unit-note p {
      margin: 0;
      color: var(--kitto-deep);
      font-family: var(--kitto-font-serif);
      font-size: clamp(18px, 2.2vw, 30px);
      line-height: 1.7;
    }

    .unit-note span {
      display: block;
      color: var(--kitto-muted);
      font-family: var(--kitto-font-sans);
      font-size: 12px;
      line-height: 1.8;
      margin-top: 12px;
    }

    @media (max-width: 1120px) and (min-width: 761px) {
      .time-side {
        width: min(24%, 220px);
      }

      .unit-center {
        width: min(38vw, 420px);
      }
    }

    .moresara-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 42px;
    }

    .check-insert {
      padding: clamp(38px, 6vw, 78px) 0 clamp(74px, 8vw, 112px);
      background: #fffdf9;
    }

    .check-insert__inner {
      position: relative;
      width: 100%;
      margin: 0 auto;
      padding: 0;
    }

    .check-insert h2 {
      margin-bottom: 18px;
      color: var(--kitto-deep);
      font-size: clamp(30px, 3.45vw, 48px);
      line-height: 1.42;
    }

    .check-insert p {
      margin-bottom: 0;
    }

    .check-copy {
      position: absolute;
      z-index: 6;
      top: clamp(52px, 7vw, 92px);
      left: max(42px, calc((100vw - 1180px) / 2));
      display: grid;
      justify-items: start;
      width: min(680px, 58vw);
      margin: 0;
      gap: 18px;
      text-align: left;
      text-shadow: 0 1px 14px rgba(255, 253, 249, .38);
    }

    .check-copy .body-copy {
      max-width: 680px;
      margin-bottom: 4px;
      color: rgba(38, 50, 47, .82);
    }

    .check-copy .copy-line,
    .inner-voice .copy-line {
      display: block;
    }

    .check-copy .copy-line--nowrap,
    .inner-voice .copy-line {
      white-space: nowrap;
      word-break: keep-all;
      line-break: strict;
    }

    .inner-voices {
      position: absolute;
      top: clamp(305px, 34vw, 420px);
      left: max(42px, calc((100vw - 1180px) / 2));
      z-index: 5;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(22px, 2.6vw, 34px) clamp(24px, 3vw, 38px);
      width: min(690px, calc(100vw - 460px));
      pointer-events: none;
    }

    .inner-voice {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      min-height: clamp(118px, 10vw, 138px);
      padding: 22px 26px 20px;
      border: 1px solid rgba(38, 50, 47, .11);
      color: rgba(38, 50, 47, .78);
      font-family: var(--kitto-font-serif);
      font-size: clamp(15px, 1.35vw, 19px);
      line-height: 1.75;
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .9), rgba(255, 253, 249, .78)),
        rgba(255, 253, 249, .84);
      box-shadow: 0 14px 30px rgba(32, 45, 41, .045);
      backdrop-filter: blur(4px);
    }

    .inner-voice::after {
      display: block;
      width: 72px;
      height: 3px;
      margin-top: 8px;
      content: "";
      background: linear-gradient(90deg, rgba(240, 144, 138, .26), rgba(0, 177, 160, .18));
    }

    .inner-voice--one {
      border-color: rgba(0, 177, 160, .16);
      border-radius: 8px 24px 22px 8px;
    }

    .inner-voice--two {
      border-color: rgba(240, 144, 138, .16);
      border-radius: 24px 8px 8px 22px;
    }

    .inner-voice--three {
      border-color: rgba(240, 144, 138, .15);
      border-radius: 8px 22px 24px 8px;
    }

    .inner-voice--four {
      border-color: rgba(0, 177, 160, .15);
      border-radius: 22px 8px 8px 24px;
    }

    .check-visual {
      position: relative;
      z-index: 3;
      width: 100vw;
      min-height: clamp(640px, 52vw, 720px);
      margin-top: 0;
      margin-left: calc(50% - 50vw);
      margin-right: calc(50% - 50vw);
      overflow: hidden;
      border: 1px solid rgba(38, 50, 47, .08);
      background: #f3eee6;
      box-shadow: 0 24px 62px rgba(32, 45, 41, .08);
    }

    .check-visual img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: clamp(640px, 52vw, 720px);
      object-fit: cover;
      object-position: 50% 50%;
    }

    .check-visual::after {
      position: absolute;
      inset: 0;
      content: "";
      background:
        linear-gradient(180deg, rgba(255, 253, 249, .2), transparent 20%, transparent 82%, rgba(255, 253, 249, .14)),
        linear-gradient(90deg, rgba(255, 253, 249, .62), rgba(255, 253, 249, .36) 36%, transparent 67%, rgba(255, 253, 249, .12));
      pointer-events: none;
    }

    .check-actions {
      display: flex;
      justify-content: center;
      margin-top: clamp(28px, 4vw, 44px);
    }

    .inner-voices-sp {
      display: none;
    }

    .voice-section {
      position: relative;
      padding: clamp(82px, 10vw, 138px) 0;
      background: #fbf8f0;
    }

    .voice-section__head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(280px, .5fr);
      gap: clamp(32px, 7vw, 88px);
      align-items: end;
      margin-bottom: 40px;
    }

    .voice-section h2 {
      margin-bottom: 18px;
      color: var(--kitto-deep);
      font-size: clamp(30px, 4.4vw, 56px);
      line-height: 1.5;
    }

    .instagram-lane {
      width: 100%;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: thin;
    }

    .instagram-track {
      display: flex;
      width: max-content;
      gap: clamp(16px, 1.8vw, 26px);
      padding: 0 max(24px, calc((100vw - 1180px) / 2)) 12px;
    }

    .instagram-card {
      flex: 0 0 clamp(292px, 23vw, 340px);
      overflow: hidden;
      border: 1px solid rgba(38, 50, 47, .1);
      border-radius: 6px;
      background: rgba(255, 253, 249, .82);
    }

    .instagram-card--lead {
      flex-basis: clamp(330px, 28vw, 400px);
    }

    .instagram-card__media {
      position: relative;
      display: grid;
      place-items: center;
      height: clamp(330px, 29vw, 430px);
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .94), rgba(227, 241, 239, .72)),
        #efe6dc;
    }

    .instagram-card__media img,
    .instagram-card__media video {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .instagram-card__body {
      display: grid;
      min-height: 132px;
      padding: 20px 22px 22px;
      align-content: start;
      gap: 12px;
    }

    .instagram-card__meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      color: var(--kitto-muted);
      font-size: 12px;
      line-height: 1.4;
    }

    .media-kind {
      display: inline-flex;
      width: max-content;
      margin: 0;
      padding: 5px 10px;
      border: 1px solid rgba(38, 50, 47, .12);
      color: rgba(38, 50, 47, .72);
      font-size: 12px;
      letter-spacing: .02em;
      background: rgba(255, 253, 249, .66);
    }

    .instagram-card__date {
      white-space: nowrap;
    }

    .instagram-card h3 {
      margin: 0;
      color: var(--kitto-deep);
      font-family: var(--kitto-font-serif);
      font-size: clamp(19px, 1.8vw, 24px);
      font-weight: 500;
      line-height: 1.55;
    }

    .instagram-section-cta {
      display: flex;
      justify-content: center;
      margin-top: clamp(30px, 4vw, 52px);
    }

    .video-card {
      cursor: pointer;
    }

    .video-card video {
      background: #efe6dc;
    }

    .video-card__play {
      position: absolute;
      right: 16px;
      bottom: 16px;
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 253, 249, .74);
      border-radius: 50%;
      color: #fffdf9;
      background: rgba(0, 112, 106, .58);
      box-shadow: 0 14px 34px rgba(32, 45, 41, .12);
    }

    .video-card__play::before {
      width: 0;
      height: 0;
      margin-left: 3px;
      content: "";
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 12px solid currentColor;
    }

    .lineup {
      padding: clamp(84px, 11vw, 152px) 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(0, 177, 160, .12), transparent 26%),
        #fffdf9;
    }

    .lineup__head {
      max-width: 760px;
      margin-bottom: clamp(34px, 6vw, 64px);
    }

    .lineup h2 {
      margin-bottom: 20px;
      color: var(--kitto-deep);
      font-size: clamp(30px, 4.4vw, 56px);
      line-height: 1.45;
    }

    .lineup-stage {
      position: relative;
      display: grid;
      gap: clamp(18px, 3vw, 28px);
    }

    .lineup-main {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .46fr);
      gap: clamp(18px, 3vw, 30px);
      align-items: stretch;
      padding: clamp(28px, 5vw, 56px);
      border: 1px solid rgba(38, 50, 47, .12);
      border-radius: 8px;
      background:
        radial-gradient(circle at 30% 20%, rgba(240, 144, 138, .15), transparent 26%),
        radial-gradient(circle at 68% 18%, rgba(0, 177, 160, .12), transparent 28%),
        linear-gradient(180deg, rgba(255, 253, 249, .88), rgba(245, 241, 232, .72));
      box-shadow: 0 18px 44px rgba(32, 45, 41, .07);
    }

    .lineup-main__visual {
      display: grid;
      align-content: center;
      gap: 18px;
    }

    .lineup-packshot {
      display: flex;
      align-items: end;
      justify-content: center;
      gap: clamp(8px, 2vw, 18px);
      min-height: 250px;
    }

    .lineup-packshot img {
      width: min(38%, 184px);
      filter: drop-shadow(0 16px 24px rgba(32, 45, 41, .1));
    }

    .lineup-packshot img:first-child {
      transform: translateY(8px) rotate(-3deg);
    }

    .lineup-packshot img:last-child {
      transform: translateY(-2px) rotate(3deg);
    }

    .lineup-product-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      color: var(--kitto-muted);
      font-size: 13px;
      line-height: 1;
    }

    .lineup-product-meta span {
      padding: 9px 12px;
      border: 1px solid rgba(38, 50, 47, .1);
      background: rgba(255, 253, 249, .66);
    }

    .lineup-main__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 22px;
    }

    .lineup-main h3,
    .product-option h3 {
      color: var(--kitto-deep);
      font-family: var(--kitto-font-serif);
      font-weight: 500;
      line-height: 1.45;
    }

    .lineup-main h3 {
      margin-bottom: 12px;
      font-size: clamp(28px, 3.2vw, 40px);
    }

    .lineup-main p,
    .product-option p,
    .lineup-note {
      color: var(--kitto-muted);
      font-size: 13px;
      line-height: 1.85;
    }

    .lineup-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .text-link {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      color: var(--kitto-ink);
      font-size: 14px;
      font-weight: 700;
    }

    .lineup-choice-grid,
    .lineup-single-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .product-option {
      position: relative;
      display: grid;
      grid-template-columns: minmax(112px, .34fr) minmax(0, 1fr);
      gap: clamp(16px, 3vw, 26px);
      align-items: center;
      min-height: 238px;
      padding: clamp(22px, 3.6vw, 34px);
      border: 1px solid rgba(38, 50, 47, .11);
      border-radius: 8px;
      background: rgba(255, 253, 249, .78);
      box-shadow: 0 14px 34px rgba(32, 45, 41, .045);
    }

    .product-option--trial {
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .86), rgba(255, 241, 232, .68));
    }

    .product-option--volume {
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .86), rgba(232, 245, 241, .7));
    }

    .product-option--essence {
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .86), rgba(246, 210, 214, .42));
    }

    .product-option--bloom {
      background:
        linear-gradient(135deg, rgba(255, 253, 249, .86), rgba(188, 229, 235, .42));
    }

    .option-visual {
      display: grid;
      place-items: center;
      min-height: 150px;
    }

    .option-visual img {
      max-width: min(100%, 150px);
      max-height: 174px;
      object-fit: contain;
      filter: drop-shadow(0 12px 18px rgba(32, 45, 41, .09));
    }

    .option-visual--pair {
      display: flex;
      gap: 4px;
      align-items: end;
      justify-content: center;
    }

    .option-visual--pair img {
      width: min(48%, 78px);
    }

    .option-visual--pair img:first-child {
      transform: rotate(-4deg) translateY(5px);
    }

    .option-visual--pair img:last-child {
      transform: rotate(3deg);
    }

    .product-option h3 {
      margin-bottom: 8px;
      font-size: 24px;
    }

    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 14px;
    }

    .product-tags span {
      padding: 6px 9px;
      border: 1px solid rgba(38, 50, 47, .1);
      background: rgba(255, 253, 249, .6);
      color: var(--kitto-muted);
      font-size: 12px;
      line-height: 1;
    }

    .product-option__link {
      display: inline-flex;
      gap: 7px;
      align-items: center;
      margin-top: 16px;
      color: var(--kitto-ink);
      font-size: 13px;
      font-weight: 700;
    }

    .lineup-purchase-note {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: clamp(22px, 3vw, 30px);
      border-top: 1px solid rgba(38, 50, 47, .1);
      border-bottom: 1px solid rgba(38, 50, 47, .1);
    }

    .lineup-purchase-note h3 {
      margin-bottom: 6px;
      color: var(--kitto-deep);
      font-family: var(--kitto-font-serif);
      font-weight: 500;
      font-size: 22px;
    }

    .closing {
      position: relative;
      min-height: 620px;
      display: grid;
      place-items: center;
      text-align: center;
      color: #fffdf9;
      background:
        linear-gradient(180deg, rgba(25, 43, 39, .2), rgba(25, 43, 39, .56)),
        radial-gradient(circle at 52% 28%, rgba(255, 253, 249, .28), transparent 23%),
        linear-gradient(135deg, #d8c8b8 0%, #b7d6ce 100%);
      overflow: hidden;
    }

    .closing::before {
      position: absolute;
      inset: 0;
      content: "";
      background: linear-gradient(90deg, rgba(255, 253, 249, .05) 0 1px, transparent 1px 14%);
      opacity: .72;
    }

    .closing__inner {
      position: relative;
      z-index: 1;
      width: min(820px, calc(100% - 42px));
    }

    .closing h2 {
      margin-bottom: 22px;
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.55;
      text-shadow: 0 14px 38px rgba(25, 43, 39, .18);
    }

    .closing p {
      max-width: 640px;
      margin: 0 auto;
      color: rgba(255, 253, 249, .84);
      font-size: 15px;
      line-height: 2;
    }

    .site-footer {
      padding: 32px 0;
      border-top: 1px solid var(--kitto-soft-line);
      color: var(--kitto-muted);
      background: #fffdf9;
      font-size: 12px;
    }

    .site-footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      width: min(1180px, calc(100% - 42px));
      margin: 0 auto;
    }

    .footer-link-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 18px;
      border: 1px solid rgba(38, 50, 47, .16);
      border-radius: 999px;
      color: var(--kitto-deep);
      background: rgba(255, 255, 255, .72);
      font-size: 12px;
      font-weight: 700;
      white-space: nowrap;
    }

    @media (max-width: 1120px) {
      .kitto-header__inner {
        width: min(1180px, calc(100% - 28px));
        gap: 14px;
      }

      .kitto-nav {
        gap: 10px;
      }

      .kitto-cta {
        min-height: 36px;
        padding: 0 13px;
        font-size: 12px;
      }

      .w2-utility--search,
      .w2-utility--login {
        display: none;
      }
    }

    @media (max-width: 980px) {
      .kitto-header__inner {
        grid-template-columns: auto auto;
      }

      .kitto-nav {
        display: none;
      }

      .kitto-menu-button {
        display: inline-flex;
      }
    }

    @media (max-width: 860px) {
      .preview-ribbon {
        display: none;
      }

      .kitto-header {
        min-height: 66px;
      }

      .kitto-header__inner {
        width: min(100% - 28px, 620px);
        gap: 14px;
      }

      .kitto-logo img {
        width: 126px;
      }

      .kitto-actions {
        gap: 8px;
      }

      .kitto-cta {
        display: none;
      }

      .site-breadcrumb {
        top: 78px;
        width: min(100% - 32px, 620px);
        font-size: 11px;
      }

      .kitto-mobile-menu {
        display: block;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        z-index: 39;
        transform: translateY(-110%);
        opacity: 0;
        pointer-events: none;
        padding: 20px 22px 28px;
        border-bottom: 1px solid rgba(38, 50, 47, .1);
        background: rgba(255, 253, 249, .97);
        box-shadow: 0 18px 38px rgba(32, 45, 41, .12);
        transition: transform .24s ease, opacity .24s ease;
      }

      .page.is-menu-open .kitto-mobile-menu {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }

      .kitto-mobile-menu a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 52px;
        border-bottom: 1px solid rgba(38, 50, 47, .1);
        color: var(--kitto-ink);
        font-size: 15px;
      }

      .kitto-mobile-menu a::after {
        content: "→";
        color: var(--kitto-teal);
        font-size: 14px;
      }

      .kitto-mobile-menu .mobile-cta {
        justify-content: center;
        min-height: 46px;
        margin-top: 18px;
        border: 1px solid rgba(0, 177, 160, .45);
        border-radius: 999px;
        background: rgba(0, 177, 160, .05);
        font-weight: 700;
      }

      .kitto-mobile-menu .mobile-cta::after {
        content: "";
      }

      .hero {
        min-height: 100svh;
      }

      .hero__inner,
      .brand-intro__inner,
      .okinawa__inner,
      .moresara__head,
      .check-insert__inner,
      .voice-section__head,
      .lineup__head,
      .lineup-stage {
        grid-template-columns: 1fr;
      }

      .hero__inner {
        padding-top: 132px;
      }

      .hero::after {
        right: 24px;
        bottom: 24px;
        width: 140px;
        min-width: 140px;
        height: 190px;
        opacity: .82;
      }

      .image-note {
        font-size: 12px;
      }

      .brand-intro {
        min-height: auto;
      }

      .quiet-lines {
        gap: 18px;
      }

      .okinawa {
        min-height: 720px;
      }

      .moresara-stage {
        display: grid;
        grid-template-columns: 1fr;
        gap: 28px;
        min-height: auto;
        padding: 34px 22px 30px;
      }

      .moresara-stage::before {
        inset: 9% 16px;
      }

      .time-mark,
      .unit-note,
      .unit-product,
      .time-side,
      .unit-center {
        position: relative;
        inset: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        min-width: 0;
        transform: none;
        text-align: left;
      }

      .time-mark--night {
        text-align: left;
      }

      .time-side--morning {
        order: 1;
      }

      .unit-center {
        order: 2;
      }

      .unit-note {
        padding: 8px 0;
        text-align: center;
      }

      .unit-product {
        width: min(360px, 100%);
        justify-self: center;
      }

      .time-side--night {
        order: 3;
      }

      .check-insert__inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-bottom: 0;
        text-align: left;
      }

      .check-copy {
        top: 34px;
        left: 21px;
        right: 21px;
        justify-items: start;
        width: min(calc(100% - 42px), 540px);
        text-align: left;
      }

      .check-copy .body-copy {
        max-width: 360px;
      }

      .check-insert h2 {
        font-size: clamp(28px, 8vw, 36px);
      }

      .check-copy .body-copy .copy-line {
        white-space: normal;
      }

      .check-visual .inner-voices {
        display: none;
      }

      .inner-voices-sp {
        display: grid;
        order: 2;
        gap: 12px;
        width: min(100% - 42px, 520px);
        margin: 24px auto 0;
      }

      .inner-voice {
        position: relative;
        inset: auto;
        width: min(100%, 340px);
        padding: 13px 14px;
        transform: none;
        background: rgba(255, 253, 249, .7);
        box-shadow: 0 12px 28px rgba(32, 45, 41, .04);
        font-size: 15px;
      }

      .inner-voice--two {
        margin-left: auto;
      }

      .inner-voice--three {
        left: auto;
        right: auto;
        top: auto;
        width: min(100%, 340px);
        transform: none;
        margin-left: 24px;
      }

      .inner-voice--four {
        left: auto;
        top: auto;
        width: min(100%, 340px);
        margin-left: auto;
      }

      .check-visual {
        position: relative;
        order: 1;
        width: 100vw;
        min-height: clamp(540px, 132vw, 660px);
        margin: 0 auto;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
      }

      .check-visual img {
        min-height: clamp(540px, 132vw, 660px);
        object-position: 43% 50%;
      }

      .check-actions {
        order: 3;
        margin-top: 28px;
      }

      .instagram-track {
        gap: 12px;
        padding-inline: 16px;
      }

      .instagram-card,
      .instagram-card--lead {
        flex-basis: min(78vw, 330px);
      }

      .instagram-card__media {
        height: clamp(330px, 94vw, 430px);
      }

      .instagram-card__body {
        min-height: 122px;
        padding: 18px 18px 20px;
      }

      .lineup-stage {
        gap: 16px;
      }

      .lineup-main,
      .lineup-choice-grid,
      .lineup-single-grid,
      .lineup-purchase-note {
        grid-template-columns: 1fr;
      }

      .lineup-main {
        padding: 30px 22px;
      }

      .lineup-packshot {
        min-height: 210px;
      }

      .lineup-packshot img {
        width: min(40%, 148px);
      }

      .lineup-actions {
        align-items: stretch;
      }

      .lineup-actions .button {
        width: 100%;
      }

      .product-option {
        grid-template-columns: minmax(92px, .28fr) minmax(0, 1fr);
        min-height: auto;
      }

      .option-visual img {
        max-height: 140px;
      }

      .option-visual--pair img {
        width: min(48%, 58px);
      }

      .lineup-purchase-note {
        align-items: start;
      }

      .site-footer__inner {
        display: block;
      }

      .site-footer__inner p {
        margin: 0 0 10px;
      }

      .footer-link-button {
        width: 100%;
      }
    }
