    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue:     #4d85cb;
      --bluegray: #222934;
      --beige:    #cebfa6;
      --beige-lt: #f9f7f4;
      --gray3:    #999;
      --gray4:    #5f5f5f;
      --gray5:    #484848;
      --white:    #fff;
      --black:    #000;
      --bg:       #fbfbff;
      --shadow:   0 0 20px rgba(77,133,203,.15);
      --header-h: 92px;
    }
    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--bluegray);
      font-family: 'Noto Sans JP', sans-serif;
      font-weight: 300;
      overflow-x: hidden;
      line-height: 1;
    }
    a { text-decoration: none; color: inherit; }
    img { display: block; max-width: 100%; }

    /* ===== HEADER ===== */
    #header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: var(--header-h);
      backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px;
      transition: transform .45s cubic-bezier(.4,0,.2,1), opacity .45s;
    }
    #header.header-hidden {
      transform: translateY(-100%);
      opacity: 0;
      pointer-events: none;
    }
    .logo {
      display: flex; align-items: center; gap: 4px;
    }
    .logo-icon {
      width: 62px; height: 62px;
      flex-shrink: 0;
    }
    .logo-text { display: flex; align-items: baseline; gap: 4px; }
    .logo-en {
      font-family: 'Gowun Dodum', sans-serif;
      font-size: 32px; color: var(--bluegray); white-space: nowrap;
    }
    .logo-ja {
      font-family: 'Noto Serif JP', sans-serif;
      font-weight: 600; font-size: 18px;
      letter-spacing: .12em; color: var(--bluegray); white-space: nowrap;
    }

    /* PC NAV */
    #nav-pc {
      display: flex; align-items: center; gap: 0;
    }
    .nav-sep { width: 1px; height: 55px; background: #ddd; margin: 0 4px; }
    .nav-item {
      display: flex; flex-direction: column; align-items: center;
      padding: 0 18px; gap: 6px; cursor: pointer;
    }
    .nav-en {
      font-size: 16px; letter-spacing: .05em; color: var(--bluegray);
      transition: color .2s;
    }
    .nav-ja {
      font-weight: 700; font-size: 12px;
      letter-spacing: .05em; color: var(--blue);
    }
    .nav-item:hover .nav-en { color: var(--blue); }

    /* Hamburger */
    #nav-sp { display: none; }
    .hamburger {
      width: 24px; height: auto; cursor: pointer;
      display: flex; flex-direction: column;
      background: none; border: none; padding: 0;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block; width: 100%; height: 2px;
      background: var(--gray3);
      margin-bottom: 6px;
      transition: transform .3s ease, opacity .3s ease;
    }
    .hamburger span:last-child { margin-bottom: 0; }
    /* 3本線の間隔=(18-6)/2=6px → 上バー中心1px、中バー中心9px、下バー中心17px */
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* SP menu drawer */
    #sp-menu {
      display: none;
      position: fixed; top: var(--header-h); left: 0; right: 0;
      background: rgba(255,255,255,.98);
      backdrop-filter: blur(12px);
      z-index: 190;
      flex-direction: column;
      box-shadow: 0 4px 12px rgba(0,0,0,.1);
    }
    #sp-menu.open { display: flex; }
    .sp-menu-item {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 24px;
      border-bottom: 1px solid #eee;
      font-size: 16px; color: var(--bluegray);
    }
    .sp-menu-item-sub {
      font-size: 12px; color: var(--blue); font-weight: 700;
    }

    /* ===== SECTION COMMON ===== */
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-en {
      display: block; font-weight: 500; font-size: 24px;
      letter-spacing: .2em; color: var(--bluegray);
    }
    .section-sep {
      display: block; width: 80px; height: 1px;
      background: var(--blue); margin: 14px auto;
    }
    .section-ja { font-size: 18px; color: var(--gray4); }

    /* ===== HERO ===== */
    #hero {
      position: relative;
      min-height: 960px;
      padding-top: var(--header-h);
      overflow: hidden;
      background: var(--bg);
    }
    #fv-canvas {
      position: absolute; top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: 0; pointer-events: none; display: block;
    }
    .hero-wave, .hero-ellipse1 { display: none; }
    .hero-content {
      position: relative; z-index: 1;
      padding: 110px 0 80px 116px;
    }
    .hero-tagline {
      font-weight: 700; font-size: 16px;
      letter-spacing: .3em; color: var(--blue);
      margin-bottom: 24px;
    }
    .hero-heading {
      font-family: 'Noto Serif JP', sans-serif;
      font-weight: 500; font-size: 72px;
      line-height: 1.43; letter-spacing: .2em;
      color: var(--bluegray); margin-bottom: 48px;
    }
    .hero-body {
      font-size: 18px; line-height: 2.22;
      letter-spacing: .1em; color: var(--bluegray);
      margin-bottom: 48px;
    }
    .hero-link {
      display: inline-flex; align-items: center; gap: 12px;
      font-size: 18px; color: var(--bluegray);
      border-bottom: 1px solid var(--bluegray); padding-bottom: 4px;
    }
    .hero-link:hover { color: var(--blue); border-color: var(--blue); }
    .scroll-indicator {
      position: absolute; right: 40px; bottom: 100px;
      display: flex; flex-direction: column; align-items: center; gap: 8px;
    }
    .scroll-indicator span {
      font-size: 10px; font-weight: 700; letter-spacing: .2em;
      color: var(--blue); writing-mode: vertical-rl;
    }
    .scroll-line {
      width: 1px; height: 66px;
      background: linear-gradient(to bottom, var(--blue), transparent);
    }
    .hero-strip {
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 273px; overflow: hidden;
    }
    .hero-strip img {
      width: 100%; height: 100%; object-fit: cover; filter: blur(2px);
    }

    /* ===== BUSINESS OVERVIEW ===== */
    #business {
      padding: 120px 0;
    }
    .business-wrap {
      max-width: 1500px;
      margin: 0 auto;
      padding: 80px 120px;
      background: var(--white);
      border-radius: 12px;
      box-shadow: var(--shadow);
    }
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }
    .card {
      border: 1px solid var(--gray3);
      border-radius: 12px;
      overflow: hidden;
      display: flex; flex-direction: column;
    }
    .card-badge-row {
      display: flex; justify-content: center;
    }
    .badge {
      display: inline-block;
      padding: 8px 20px;
      font-weight: 700; font-size: 15px;
      color: var(--white);
    }
    .badge-blue  { background: var(--blue); }
    .badge-beige { background: var(--beige); }
    .card-icon-row { display: flex; justify-content: center; padding: 28px 0 16px; }
    .card-icon { width: 150px; height: 150px; filter: drop-shadow(0 0 12px rgba(77,133,203,.20)); }
    .card-img-wrap {
      width: 100%; height: 241px; overflow: hidden;
      margin-top: 20px;
    }
    .card-img-wrap img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .card-img-placeholder {
      width: 100%; height: 241px;
      background: linear-gradient(135deg, #e8f0fb 0%, #c8d8f0 100%);
    }
    .card-body {
      padding: 28px 28px 32px;
      flex: 1; display: flex; flex-direction: column;
      text-align: center;
    }
    .card-sub { font-size: 15px; font-weight: 500; letter-spacing: .2em; color: var(--blue); margin-bottom: 6px; }
    .card-sub-beige { color: var(--beige); }
    .card-title { font-weight: 500; font-size: 30px; letter-spacing: .05em; margin-bottom: 16px; }
    .card-desc { font-size: 18px; line-height: 2.2; letter-spacing: .1em; }
    .card-features { text-align: left; }
    .card-features {
      display: block; margin-top: 20px; list-style: none;
    }
    .card-features li {
      display: flex; align-items: flex-start; gap: 10px;
      font-size: 16px; line-height: 1.8; letter-spacing: .1em;
      color: var(--bluegray); padding: 4px 0;
    }
    .card-features li img { width: 21px; height: 21px; flex-shrink: 0; margin-top: 3px; }

    .card-btn-wrap { margin-top: auto; padding-top: 28px; }
    .card-btn {
      display: flex; align-items: center; justify-content: center;
      width: 100%; height: 65px; border-radius: 9px;
      border: 1px solid var(--blue);
      background: linear-gradient(81deg, #e9f0f8 0%, #fff 100%);
      font-size: 16px; font-weight: 500;
      letter-spacing: .05em; color: var(--blue);
      cursor: pointer; transition: opacity .2s;
    }
    .card-btn-beige {
      border-color: var(--beige); color: var(--beige);
      background: var(--beige-lt);
    }
    .card-btn:hover { opacity: .7; }

    /* SP card button */
    .card-btn-sp { display: none; }

    /* ===== CONNECTION ===== */
    #connection {
      padding: 120px 0;
      background: var(--bg);
      position: relative; overflow: hidden;
    }
    .connection-wrap {
      max-width: 1400px; margin: 0 auto; padding: 0 80px;
    }
    .connection-heading {
      font-family: 'Noto Serif JP', sans-serif;
      font-weight: 500; font-size: 42px;
      line-height: 1.67; letter-spacing: .2em;
      text-align: center; margin-bottom: 40px;
    }
    .connection-desc {
      font-size: 18px; line-height: 2.2;
      letter-spacing: .1em; text-align: center;
      margin-bottom: 80px;
    }
    /* PC: horizontal diagram */
    .diagram-pc {
      display: flex; align-items: flex-start;
      justify-content: center; gap: 0;
      padding: 20px 0;
    }
    .diagram-sp { display: none; }
    .d-node {
      display: flex; flex-direction: column;
      align-items: center; gap: 16px;
      width: 200px; flex-shrink: 0;
    }
    .d-icon { width: 150px; height: 150px; display: block; }
    .d-label { font-size: 16px; letter-spacing: .05em; text-align: center; line-height: 1.6; }
    .d-connector {
      padding-top: 74px;
      flex-shrink: 0; width: 50px;
      display: flex; justify-content: center;
    }
    .d-arrow-line {
      display: block; width: 50px; height: 2px;
      background: linear-gradient(to right, var(--bluegray), var(--blue));
      position: relative;
    }
    .d-arrow-line::after {
      content: '';
      position: absolute; right: -1px; top: -4px;
      border-left: 8px solid var(--blue);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent;
    }

    /* ===== NEWS ===== */
    #news {
      padding: 120px 0;
      background: var(--white);
      box-shadow: var(--shadow);
    }
    .news-wrap { max-width: 1400px; margin: 0 auto; padding: 0 120px; }

    /* PC news list */
    .news-list-pc { list-style: none; }
    .news-list-pc li { border-bottom: 1px solid #e0e0e0; }
    .news-list-pc li:first-child { border-top: 1px solid #e0e0e0; }
    .news-row-pc {
      display: flex; align-items: center; gap: 24px;
      padding: 22px 0; color: var(--bluegray);
      transition: opacity .2s;
    }
    .news-row-pc:hover { opacity: .7; }
    .news-date { font-size: 14px; color: var(--gray4); white-space: nowrap; min-width: 100px; }
    .news-tag {
      display: inline-block; padding: 3px 10px;
      font-size: 12px; font-weight: 700; color: var(--white);
      background: var(--blue); white-space: nowrap; border-radius: 2px;
    }
    .news-tag-beige { background: var(--beige); }
    .news-title { font-size: 16px; line-height: 1.6; }

    /* SP news cards */
    .news-list-sp { display: none; list-style: none; flex-direction: column; gap: 12px; }
    .news-card-sp {
      display: flex; align-items: center; gap: 0;
      border: 1px solid var(--blue); border-radius: 9px;
      box-shadow: 0 0 6px rgba(77,133,203,.2);
      padding: 14px 16px; color: var(--bluegray);
      transition: opacity .2s; background: var(--white);
    }
    .news-card-sp:hover { opacity: .7; }
    .news-card-left { flex: 1; }
    .news-card-date { font-size: 12px; font-weight: 700; color: var(--gray4); margin-bottom: 8px; }
    .news-card-badge-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
    .news-tag-sm {
      display: inline-block; padding: 2px 8px;
      font-size: 10px; font-weight: 700;
      color: var(--white); background: var(--blue); border-radius: 2px;
    }
    .news-tag-sm-beige { background: var(--beige); }
    .news-card-title-sp { font-size: 15px; line-height: 1.6; }
    .news-card-arrow { flex-shrink: 0; margin-left: 8px; color: var(--blue); font-size: 18px; }

    .news-more-btn {
      display: block; margin: 48px auto 0;
      padding: 14px 60px;
      background: var(--blue); color: var(--white);
      font-size: 16px; letter-spacing: .1em;
      border: none; cursor: pointer;
    }
    .news-more-btn-sp {
      display: none;
      width: 275px; height: 46px; border-radius: 9px;
      margin: 32px auto 0;
      border: 1px solid var(--white);
      background: var(--blue); color: var(--white);
      font-size: 15px; letter-spacing: .05em; font-weight: 500;
      cursor: pointer; align-items: center; justify-content: center; gap: 8px;
    }

    /* ===== COMPANY PROFILE ===== */
    #company {
      padding: 120px 0;
      background: var(--bg);
    }
    .company-wrap { max-width: 1400px; margin: 0 auto; padding: 0 120px; }
    .company-photo {
      width: 100%; max-height: 600px; object-fit: cover;
      margin-bottom: 64px; border-radius: 4px;
    }
    .company-photo-ph {
      width: 100%; height: 600px; border-radius: 4px;
      background: linear-gradient(135deg, #c8d8f0 0%, #e8f0fb 50%, #d0d8e8 100%);
      margin-bottom: 64px;
    }
    .profile-table {
      width: 100%; max-width: 900px; margin: 0 auto;
      border-collapse: collapse;
    }
    .profile-table tr { border-bottom: 1px solid #e0e0e0; }
    .profile-table tr:first-child { border-top: 1px solid #e0e0e0; }
    .profile-table th {
      width: 140px; padding: 20px 16px;
      font-size: 15px; font-weight: 400;
      color: var(--blue); text-align: left;
      white-space: nowrap; vertical-align: top;
    }
    .profile-table td {
      padding: 20px 16px; font-size: 15px;
      font-weight: 300; color: var(--black); line-height: 1.8;
    }

    /* SP profile table */
    .profile-table-sp { display: none; }
    .profile-row-sp {
      padding: 12px 0; border-bottom: 1px solid #e0e0e0;
    }
    .profile-row-sp:first-child { border-top: 1px solid #e0e0e0; }
    .profile-key {
      font-size: 12px; font-weight: 400; color: var(--blue);
      margin-bottom: 4px; line-height: 1.75;
    }
    .profile-val {
      font-size: 12px; font-weight: 300; color: var(--black);
      line-height: 1.75;
    }

    /* ===== CONTACT ===== */
    #contact {
      padding: 120px 0;
      background: var(--blue); color: var(--white);
    }
    #contact .section-en { color: var(--white); }
    #contact .section-sep { background: rgba(255,255,255,.4); }
    #contact .section-ja { color: rgba(255,255,255,.8); }
    .contact-wrap { max-width: 900px; margin: 0 auto; padding: 0 40px; }
    .form-field { margin-bottom: 28px; }
    .form-label {
      display: flex; align-items: center; gap: 6px;
      font-weight: 700; font-size: 16px; color: var(--white);
      margin-bottom: 10px;
    }
    .req { color: #d92e0b; }
    /* PC: underline inputs */
    .input-line {
      width: 100%; background: transparent;
      border: none; border-bottom: 1px solid rgba(255,255,255,.5);
      padding: 8px 0; font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px; color: var(--white); outline: none;
    }
    .input-line::placeholder { color: rgba(255,255,255,.4); }
    .input-line:focus { border-color: var(--white); }
    /* SP: box inputs */
    .input-box {
      display: none;
      width: 100%; padding: 10px 12px;
      background: var(--white); border: 1px solid #888;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px; color: var(--bluegray); outline: none;
    }
    .input-box::placeholder { color: #bbb; }
    .textarea-box {
      display: none;
      width: 100%; padding: 10px 12px; min-height: 261px;
      background: var(--white); border: 1px solid #888;
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px; color: var(--bluegray); outline: none; resize: vertical;
    }
    .radio-group { display: flex; gap: 32px; flex-wrap: wrap; }
    .radio-label {
      display: flex; align-items: center; gap: 8px;
      color: var(--white); cursor: pointer; font-size: 16px;
    }
    .radio-label input { accent-color: var(--white); }
    /* PC: underline textarea */
    .textarea-line {
      width: 100%; min-height: 140px;
      background: transparent;
      border: 1px solid rgba(255,255,255,.5);
      padding: 10px; font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px; color: var(--white); outline: none; resize: vertical;
    }
    .textarea-line::placeholder { color: rgba(255,255,255,.4); }
    .submit-pc {
      display: flex; align-items: center; justify-content: center;
      margin: 48px auto 0; padding: 16px 80px;
      background: transparent; border: 1px solid var(--white);
      color: var(--white); font-family: 'Noto Sans JP', sans-serif;
      font-size: 16px; letter-spacing: .15em; cursor: pointer;
      transition: background .2s, color .2s;
    }
    .submit-pc:hover { background: var(--white); color: var(--blue); }
    .submit-sp {
      display: none;
      width: 275px; height: 46px; border-radius: 9px;
      border: 1px solid var(--white);
      box-shadow: 0 0 9px rgba(255,255,255,.25);
      background: var(--blue); color: var(--white);
      font-family: 'Noto Sans JP', sans-serif;
      font-size: 15px; font-weight: 500; letter-spacing: .05em;
      cursor: pointer; margin: 48px auto 0;
      align-items: center; justify-content: center; gap: 8px;
    }

    /* ===== FOOTER ===== */
    footer {
      background: var(--bg);
      padding: 20px 50px;
      display: flex; align-items: center;
      justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-logo { display: flex; align-items: baseline; gap: 4px; }
    .footer-en { font-family: 'Gowun Dodum', sans-serif; font-size: 32px; color: var(--black); }
    .footer-ja { font-family: 'Noto Serif JP', sans-serif; font-weight: 600; font-size: 18px; letter-spacing: .12em; color: var(--black); }
    .footer-links { display: flex; gap: 4px; font-size: 13px; color: var(--black); }
    .footer-links a { color: var(--black); }
    .footer-links a:hover { text-decoration: underline; }
    .footer-copy { font-size: 12px; font-weight: 500; color: var(--black); }

    /* SP footer */
    footer.footer-sp-layout { display: none; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      :root { --header-h: 52px; }

      /* Header */
      #header { padding: 0 16px; height: var(--header-h); background: #fff; }
      #header.header-hidden { transform: none; opacity: 1; pointer-events: auto; }
      .logo-icon { width: 22px; height: 22px; }
      .logo-en { font-size: 22px; }
      .logo-ja { font-size: 10px; }
      #nav-pc { display: none; }
      #nav-sp { display: block; }

      /* Hero */
      #hero { min-height: 640px; }
      .hero-ellipse1 { display: none; }
      .hero-wave { height: 400px; }
      .hero-content { padding: 80px 0 80px 30px; }
      .hero-tagline { font-size: 13px; letter-spacing: .2em; }
      .hero-heading { font-size: 42px; letter-spacing: .12em; line-height: 1.52; }
      .hero-body { font-size: 15px; line-height: 2.0; letter-spacing: .1em; }
      .hero-link { font-size: 15px; }
      .scroll-indicator { display: none; }
      .hero-strip { height: 157px; }

      /* Business */
      #business { padding: 60px 0; }
      .business-wrap {
        margin: 0 14px; padding: 40px 14px;
        border-radius: 12px;
      }
      .section-header { margin-bottom: 40px; }
      .section-en { font-size: 18px; letter-spacing: .15em; }
      .section-sep { width: 50px; }
      .section-ja { font-size: 15px; }
      .cards-grid { grid-template-columns: 1fr; gap: 20px; }
      .card { width: 315px; max-width: 100%; margin: 0 auto; }
      .badge { font-size: 12px; padding: 6px 16px; }
      .card-icon { width: 80px; height: 80px; }
      .card-icon-row { padding: 20px 0 8px; }
      .card-img-wrap { display: none; }
      .card-body { padding: 20px 20px 24px; }
      .card-sub { font-size: 13px; letter-spacing: .2em; }
      .card-title { font-size: 20px; letter-spacing: .05em; }
      .card-desc { font-size: 15px; line-height: 2.0; letter-spacing: .1em; }
      .card-features { margin-top: 16px; }
      .card-features li { font-size: 13px; gap: 8px; }
      .card-features li img { width: 15px; height: 15px; margin-top: 2px; }
      .card-btn { display: none; }
      .card-btn-sp {
        display: flex; width: 275px; max-width: 100%; height: 46px;
        border: 1px solid var(--blue); border-radius: 9px;
        background: linear-gradient(81deg, #e9f0f8 0%, #fff 100%);
        align-items: center; justify-content: center;
        font-size: 15px; font-weight: 500;
        letter-spacing: .05em; color: var(--blue);
        margin: 20px auto 0; cursor: pointer;
      }
      .card-btn-sp-beige { border-color: var(--beige); color: var(--beige); background: var(--beige-lt); }

      /* Connection */
      #connection { padding: 60px 0; }
      .connection-wrap { padding: 0 20px; }
      .connection-heading {
        font-size: 24px; letter-spacing: .12em; line-height: 1.67;
        margin-bottom: 28px;
      }
      .connection-desc { font-size: 15px; margin-bottom: 48px; }
      .diagram-pc { display: none; }
      .diagram-sp {
        display: flex; flex-direction: column;
        align-items: center; gap: 0;
      }
      .diagram-sp .d-node { width: auto; padding: 16px 0; gap: 8px; }
      .diagram-sp .d-icon { width: 100px; height: 100px; }
      .diagram-sp .d-label { font-size: 15px; }

      /* News */
      #news { padding: 60px 0; }
      .news-wrap { padding: 0 20px; }
      .news-list-pc { display: none; }
      .news-list-sp { display: flex; }
      .news-more-btn { display: none; }
      .news-more-btn-sp { display: flex; }

      /* Company */
      #company { padding: 60px 0; }
      .company-wrap { padding: 0 14px; }
      .company-photo { margin-bottom: 32px; max-height: 300px; }
      .company-photo-ph { height: 200px; margin-bottom: 32px; }
      .profile-table { display: none; }
      .profile-table-sp { display: block; padding: 0 6px; }

      /* Contact */
      #contact { padding: 60px 0; }
      .contact-wrap { padding: 0 24px; }
      .form-label { font-size: 12px; margin-bottom: 8px; }
      .input-line { display: none; }
      .input-box { display: block; }
      .textarea-line { display: none; }
      .textarea-box { display: block; }
      .radio-label { font-size: 14px; }
      .submit-pc { display: none; }
      .submit-sp { display: flex; }

      /* Footer */
      footer {
        flex-direction: column; align-items: center;
        padding: 32px 16px; gap: 20px; text-align: center;
      }
      .footer-en { font-size: 22px; }
      .footer-ja { font-size: 10px; }
      .footer-links { flex-direction: column; align-items: center; gap: 8px; }
      .footer-copy { font-size: 12px; }
    }

/* ===== LEGAL PAGES ===== */
.legal-page-hero {
  padding: calc(var(--header-h) + 80px) 0 60px;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid #eee;
}
.legal-page-en {
  display: block; font-size: 13px; font-weight: 700;
  letter-spacing: .3em; color: var(--blue); margin-bottom: 12px;
}
.legal-page-title {
  font-family: 'Noto Serif JP', sans-serif;
  font-size: 36px; font-weight: 500;
  letter-spacing: .12em; color: var(--bluegray);
}
.legal-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 80px 40px 120px;
}
.legal-meta {
  font-size: 14px; color: var(--gray4);
  line-height: 2.2; margin-bottom: 60px;
  padding-bottom: 40px; border-bottom: 2px solid var(--blue);
}
.legal-section {
  margin-bottom: 48px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.legal-section:first-of-type { border-top: none; }
.legal-section h2 {
  font-size: 17px; font-weight: 700;
  color: var(--bluegray); margin-bottom: 16px;
  letter-spacing: .05em;
}
.legal-section p {
  font-size: 15px; line-height: 2.4;
  color: var(--gray5); margin-bottom: 12px;
}
.legal-section ol {
  padding-left: 1.8em;
  font-size: 15px; line-height: 2.4;
  color: var(--gray5);
}
.legal-section ol li { margin-bottom: 4px; }
.legal-table {
  width: 100%; border-collapse: collapse; margin-top: 8px;
}
.legal-table tr { border-bottom: 1px solid #eee; }
.legal-table th {
  width: 200px; padding: 18px 16px;
  font-size: 14px; font-weight: 500;
  color: var(--gray4); text-align: left;
  vertical-align: top; white-space: nowrap;
}
.legal-table td {
  padding: 18px 16px;
  font-size: 15px; line-height: 2.0;
  color: var(--gray5); vertical-align: top;
}
.legal-table--full th { width: 180px; background: #f7f8fa; }
@media (max-width: 768px) {
  .legal-page-title { font-size: 24px; }
  .legal-wrap { padding: 48px 20px 80px; }
  .legal-table th { width: 120px; font-size: 13px; white-space: normal; }
  .legal-table td { font-size: 14px; }
  .legal-table--full th { width: 120px; }
}
