/* =========================
   Base (access page)
========================= */
:root{
    --bg:#f1f1f1;
    --paper:#ffffff;
    --ink:#0f0f10;
    --muted: rgba(15,15,16,.62);
    --soft: rgba(15,15,16,.10);
    --shadow: 0 26px 70px rgba(0,0,0,.18);
    --radius: 22px;
    --max: 1120px;
  }
  
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  
  body{
    margin:0;
    background: var(--bg);
    color: var(--ink);
    font-family: ui-serif, "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
    letter-spacing:.02em;
  }
  
  img{ max-width:100%; height:auto; display:block; }
  
  .sr-only{
    position:absolute; width:1px; height:1px; padding:0; margin:-1px;
    overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
  }
  
  .container{
    width:min(var(--max), calc(100% - 48px));
    margin-inline:auto;
  }
  
  .page{ padding-top: 96px; }
  
  /* =========================
     HERO
  ========================= */
  .access-hero{
    display:grid;
    grid-template-columns: 460px 1fr;
    gap: 60px;
    padding: 140px 90px;
    align-items:center;
  }
  
  .access-hero__paper{
    background: var(--paper);
    box-shadow: var(--shadow);
    padding: 48px 52px;
    border-radius: var(--radius);
  }
  
  .access-hero__eyebrow{
    margin:0 0 12px;
    font-size:12px;
    letter-spacing:.22em;
    color: rgba(15,15,16,.55);
  }
  
  .access-hero__title{
    margin: 10px 0 18px;
    display:grid;
    row-gap: 8px;
  }
  
  .access-hero__ruby{
    font-size:11px;
    letter-spacing:.28em;
    color: rgba(15,15,16,.55);
  }
  
  .access-hero__main{
    font-size:34px;
    letter-spacing:.14em;
    line-height: 1.15;
  }
  
  .access-hero__rule{
    display:block;
    width:42px;
    height:1px;
    background: rgba(15,15,16,.25);
    margin: 0 0 18px;
  }
  
  .access-hero__lead{
    margin:0;
    font-size:14px;
    line-height: 2.05;
    color: rgba(15,15,16,.72);
  }
  
  .access-kv{
    margin-top: 22px;
    border-top: 1px solid rgba(15,15,16,.12);
  }
  
  .access-kv__row{
    display:flex;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(15,15,16,.12);
  }
  
  .access-kv__key{
    font-size: 12px;
    letter-spacing: .18em;
    color: rgba(15,15,16,.62);
    white-space: nowrap;
  }
  
  .access-kv__val{
    font-size: 12px;
    letter-spacing: .10em;
    color: rgba(15,15,16,.78);
    text-align: right;
  }
  
  .access-hero__actions{
    margin-top: 22px;
    display:flex;
    justify-content:flex-start;
  }
  
  .btn-quiet{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    padding: 12px 18px;
    border-radius: 999px;
  
    text-decoration: none;
    font-size: 12px;
    letter-spacing: .14em;
    line-height: 1;
  
    color: rgba(20,20,20,.72);
    border: 1px solid rgba(20,20,20,.18);
    background: rgba(255,255,255,.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  
    transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
  }
  
  .btn-quiet:hover{
    transform: translateY(-1px);
    border-color: rgba(20,20,20,.28);
    background: rgba(255,255,255,.62);
    color: rgba(20,20,20,.82);
  }
  
  .access-hero__visual{
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 18px 46px rgba(0,0,0,.14);
    background: var(--paper);
  }
  
  .access-hero__caption{
    padding: 12px 14px;
    font-size: 12px;
    letter-spacing: .18em;
    color: rgba(15,15,16,.55);
  }
  
  /* =========================
     BODY
  ========================= */
  .access{
    padding: 0 90px 140px;
  }
  
  .access__paper{
    width: min(var(--max), 100%);
    margin: 0 auto;
    background: var(--paper);
    box-shadow: 0 18px 46px rgba(0,0,0,.14);
    border-radius: var(--radius);
    padding: 64px 72px;
  }
  
  .access-block{
    margin: 0 0 64px;
  }
  
  .access-block__eyebrow{
    margin: 0 0 10px;
    font-size: 12px;
    letter-spacing: .22em;
    color: rgba(15,15,16,.55);
  }
  
  .access-block__title{
    margin: 0 0 14px;
    font-size: 20px;
    letter-spacing: .08em;
    line-height: 1.5;
  }
  
  .access-block__body{
    margin: 0;
    line-height: 2.15;
    letter-spacing: .04em;
    color: rgba(15,15,16,.72);
  }
  
  .access-list{
    margin: 0;
    padding-left: 1.2em;
    line-height: 2.1;
    letter-spacing: .04em;
    color: rgba(15,15,16,.72);
  }
  
  /* LINE CTA */
  .access-line{
    margin-top: 72px;
    padding-top: 42px;
    border-top: 1px solid rgba(15,15,16,.12);
    text-align:center;
  }
  
  .access-line__lead{
    margin: 0;
    line-height: 2.05;
    letter-spacing: .04em;
    color: rgba(15,15,16,.78);
  }
  
  .access-line__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  
    margin: 26px 0 18px;
    padding: 14px 26px;
  
    border-radius: 999px;
    border: 1px solid rgba(15,15,16,.22);
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  
    font-size: 12px;
    letter-spacing: .16em;
    color: rgba(15,15,16,.76);
    text-decoration:none;
  
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  }
  
  .access-line__btn:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.72);
    border-color: rgba(15,15,16,.30);
    color: rgba(15,15,16,.86);
  }
  
  .access-line__note{
    margin: 0;
    font-size: 12px;
    line-height: 1.95;
    letter-spacing: .04em;
    color: rgba(15,15,16,.58);
  }
  
  /* back link */
  .access-back{
    margin-top: 46px;
    text-align:center;
  }
  
  .access-back__link{
    display:inline-block;
    font-size: 12px;
    letter-spacing: .16em;
    color: rgba(15,15,16,.62);
    border-bottom: 1px solid rgba(15,15,16,.20);
    padding-bottom: 6px;
  }
  
  /* footer sns (official icons) */
  .footer__sns{
    display:flex;
    align-items:center;
    gap: 14px;
  }
  
  .sns-icon{
    width: 34px;
    height: 34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius: 999px;
    border: 1px solid rgba(15,15,16,.18);
    background: rgba(255,255,255,.35);
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  
  .sns-icon img{
    width: 18px;
    height: 18px;
    display:block;
  }
  
  .sns-icon:hover{
    transform: translateY(-1px);
    background: rgba(255,255,255,.55);
    border-color: rgba(15,15,16,.28);
  }
  
  /* =========================
     Responsive
  ========================= */
  @media (max-width: 1100px){
    .access-hero{
      padding: 120px 48px;
      grid-template-columns: 420px 1fr;
      gap: 40px;
    }
    .access{
      padding: 0 48px 120px;
    }
    .access__paper{
      padding: 56px 54px;
    }
  }
  
  @media (max-width: 820px){
    .access-hero{
      grid-template-columns: 1fr;
      padding: 96px 18px 70px;
      gap: 26px;
    }
    .access-hero__paper{
      padding: 34px 26px;
    }
    .access{
      padding: 0 18px 100px;
    }
    .access__paper{
      padding: 40px 22px;
    }
    .access-kv__val{
      text-align: left;
    }
    .access-kv__row{
      flex-direction: column;
      gap: 6px;
    }
  }
  