/* sitemap(1).css */


:root{
  --bg:#faf8f4;
  --bg-soft:#f3eee7;
  --bg-soft-2:#ece5dc;
  --text:#24292d;
  --muted:#697177;
  --line:#ddd3c7;
  --orange:#e56a17;
  --orange-deep:#cb5d12;
  --white:#ffffff;
  --dark:#1d2326;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Hiragino Sans","Yu Gothic","Meiryo",sans-serif;
  background:#ffffff;
  color:var(--text);
  line-height:1.9;
  letter-spacing:.02em;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{
  width:min(1240px, calc(100% - 56px));
  margin:0 auto;
}

/* header */
    header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:100;
      background:#ffffff;
      border-bottom:1px solid #ececec;
      backdrop-filter:none;
      transition:background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
    }
    header.scrolled{
      background:#ffffff;
      border-bottom:1px solid #ececec;
      backdrop-filter:none;
    }
    .header-inner{
      min-height:52px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#111111;
      white-space:nowrap;
      text-shadow:none;
    }
    .brand-logo{
      display:flex;
      align-items:center;
    }
    .brand-logo img{
      height:48px;
      width:auto;
      filter:drop-shadow(0 1px 2px rgba(0,0,0,.14)) contrast(1.06);
    }
    .brand-copy{
      display:flex;
      flex-direction:column;
      gap:2px;
      line-height:1.2;
    }
    .brand-copy strong{
      font-size:16px;
      font-weight:800;
      letter-spacing:.10em;
    }
    .brand-copy span{
      font-size:9px;
      opacity:.72;
      letter-spacing:.08em;
    }
    nav{
      display:flex;
      align-items:center;
      gap:24px;
      color:#111111;
      font-size:12px;
      font-weight:700;
      text-shadow:none;
      white-space:nowrap;
      height:48px;
      line-height:48px;
    }
    nav a{
      position:relative;
      display:flex;
      align-items:center;
      height:48px;
      padding-bottom:0;
      opacity:.95;
    }
    nav a:not(.nav-cta)::after{
      content:"";
      position:absolute;
      left:0;
      bottom:8px;
      width:0;
      height:2px;
      background:var(--orange);
      transition:width .25s ease;
    }
    nav a:not(.nav-cta):hover::after{
      width:100%;
    }
    .nav-cta{
      padding:7px 12px;
      background:linear-gradient(180deg, var(--orange), var(--orange-deep));
      color:#fff;
      border:1px solid rgba(255,255,255,.18);
      box-shadow:0 8px 20px rgba(203,93,18,.20);
    }

    header.scrolled .brand{
      color:var(--dark);
    }
    header.scrolled nav{
      color:var(--dark);
    }
    header.scrolled .brand-copy span{
      opacity:.70;
    }
    header.scrolled nav a:not(.nav-cta):hover{
      color:var(--dark);
    }

    

main{padding-top:48px}

.page-title{
  padding:96px 0 72px;
  background:#ffffff;
  border-bottom:none;
}
.page-kicker{
  display:inline-flex;
  align-items:center;
  gap:12px;
  color:var(--orange-deep);
  font-size:13px;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:18px;
}
.page-kicker::before{
  content:"";
  width:38px;
  height:2px;
  background:var(--orange);
}
h1{
  margin:0;
  font-size:clamp(42px,6vw,76px);
  line-height:1.2;
  font-weight:500;
  letter-spacing:.06em;
  color:var(--dark);
}
.page-lead{
  margin:28px 0 0;
  max-width:760px;
  color:var(--muted);
  font-size:16px;
}
.sitemap-section{
  background:#fff;
  padding:76px 0 90px;
}
.sitemap-line{
  border-top:1px solid var(--line);
  margin-bottom:56px;
}
.sitemap-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
}
.sitemap-card{
  border:1px solid var(--line);
  background:#fff;
  padding:30px;
}
.sitemap-card h2{
  margin:0 0 18px;
  font-size:24px;
  font-weight:600;
  color:var(--dark);
}
.sitemap-list{
  display:grid;
  gap:10px;
}
.sitemap-list > a{
  display:block;
  padding:10px 0;
  border-bottom:1px solid rgba(221,211,199,.65);
  font-weight:800;
  color:var(--dark);
}
.sitemap-list > a:hover{
  color:var(--orange-deep);
}
.sitemap-sub{
  padding-left:18px;
  display:grid;
  gap:4px;
  margin:0 0 8px;
}
.sitemap-sub a{
  display:block;
  padding:5px 0;
  color:var(--muted);
  font-size:13px;
}
.sitemap-sub a:hover{
  color:var(--orange-deep);
}

    

@media(max-width:1100px){
  nav{display:none}
  .sitemap-grid{
    grid-template-columns:1fr;
  }
}
@media(max-width:760px){
  .container{
    width:min(1240px, calc(100% - 32px));
  }
  .page-title{
    padding:72px 0 52px;
  }
  .sitemap-section{
    padding:58px 0 70px;
  }
  .sitemap-card{
    padding:24px 20px;
  }
}


@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto !important;transition:none !important;animation:none !important;}
}
/* ===== スマホ時フッター調整 ===== */
@media(max-width:760px){

  footer{
    padding-bottom:18px;
  }

  .footer-line{
    margin-bottom:18px;
  }

  .footer-top{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
    text-align:center;
    justify-items:center;
  }

  .footer-logo-wrap{
    margin:18px 0 2px;
    justify-content:center;
  }

  .footer-brand p{
    font-size:12px;
    line-height:1.5;
  }

  .footer-links{
    grid-template-columns:repeat(2, auto);
    gap:8px 22px;
    margin-top:10px;
    padding-top:0;
    justify-content:center;
    font-size:12px;
  }

  .footer-cta{
    justify-self:center;
    margin-top:8px;
    padding:11px 22px;
    font-size:12px;
  }

  .footer-bottom{
    margin-top:18px;
    padding-top:12px;
    font-size:11px;
  }
}


/* ===== スマホメニュー 共通完成版 ===== */
.menu-toggle{
  display:none;
}

.menu-overlay{
  display:none;
}

@media (max-width:780px){

  body.menu-open{
    overflow:hidden;
  }

  header{
    z-index:500 !important;
  }

  .header-inner{
    position:relative;
    align-items:center;
  }

  .menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:44px;
    height:44px;
    margin-left:auto;
    border:none;
    background:transparent;
    cursor:pointer;
    z-index:700 !important;
    padding:0;
  }

  .menu-toggle span{
    display:block;
    width:22px;
    height:2px;
    background:#111;
    transition:.2s ease;
  }

  .menu-toggle.is-open span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.is-open span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

  header nav{
    display:none;
    position:absolute;
    top:52px;
    left:0;
    width:100%;
    height:auto;
    line-height:1.5;
    background:#fff;
    border-top:1px solid #ececec;
    border-bottom:1px solid #ececec;
    padding:16px 18px;
    flex-direction:column;
    gap:12px;
    z-index:600 !important;
    transform:translateY(-10px);
    opacity:0;
    transition:.25s ease;
  }

  header nav.is-open{
    display:flex;
    transform:translateY(0);
    opacity:1;
  }

  header nav a{
    display:block;
    width:100%;
    height:auto;
    line-height:1.5;
    padding:16px 14px;
    font-size:16px;
    font-weight:800;
    text-align:left;
    border:1px solid #ddd;
    background:#fff;
    border-radius:4px;
    transition:.15s ease;
  }

  header nav a::after{
    display:none !important;
  }

  header nav a:hover{
    background:#f7f7f7;
  }

  header nav a:active{
    transform:scale(.98);
    background:#eee;
  }

  header nav a.active{
    background:var(--orange);
    color:#fff;
    border-color:var(--orange);
  }

  .menu-overlay{
    display:none;
    position:fixed;
    inset:52px 0 0 0;
    background:rgba(0,0,0,.35);
    z-index:300 !important;
  }

  .menu-overlay.is-open{
    display:block;
  }
}

