@charset "UTF-8";

    :root{
      --bg:#ffffff;
      --text:#111111;
      --muted:#666666;
      --line:#e8e8e8;
      --dark:#111111;
      --light:#f7f7f7;
      --accent:#1f1f1f;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li a{display:block;
    height: 100%;
    width: 100%}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}
    body{
      margin:0;
  font-family:'Montserrat', 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.8;
      letter-spacing:.02em;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    .container{
      width:min(1120px, calc(100vw - 40px));
      margin:0 auto;
    }
    
    
.site-footer {
  padding: 0 0 20px;
}
.site-footer__copyright {
  margin: 0 auto;
  font-size: 14px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .site-footer__copyright {
    width: 980px;
  }
  .site-nav-overlay {
  display: none;
}
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 105px;
}
.site-header__logo {
  margin-left: 65px;
  width: 150px;
}
.site-header__logo img {
  display: block;
  width: 100%;
}
.site-header__nav {
  margin-right: 65px;
  width: auto;
}
.site-header__link {
  display: block;
}
.site-header__link:hover {
  opacity: 0.6;
}
/* バーガーメニューアイコンの基本スタイル */
.hamburger-menu {
  display: none;
  cursor: pointer;
}
.hamburger-menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px;
  background-color: #111;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .site-header {
    justify-content: flex-start;
    height: 80px;
  }
  .site-header__logo {
  margin-left: 30px;
    width: 120px;
  }
  /* バーガーメニューアイコンを表示 */
  .hamburger-menu {
    display: block;
    position: fixed; /* fixed に変更 */
    top: 25px;        /* 上からの位置は必要に応じて調整 */
    right: 30px;      /* 画面右から30px */
        z-index: 1100;   /* 他の要素より前面に出す */
    cursor: pointer;
  }
  /* 通常のナビゲーションを非表示にする */
  .site-header__nav {
    display: none;
    position: absolute;
    top: 80px;  /* ヘッダーの高さに合わせて調整 */
    right: 0;
    width: 100%;
    background: #fff;
  }
  /* 表示させるときのクラス */
  .site-header__nav.active {
    display: block;
  }
  /* オーバーレイナビゲーション内の閉じるボタン */
.close-btn {
  position: absolute;
  top: 25px;      /* ハンバーガーメニューと同じ位置に合わせる */
  right: 30px;    /* 画面右から30px */
  background: none;
  border: none;
  font-size: 30px;
  color: #111;
  cursor: pointer;
}
  /* オーバーレイナビゲーションの基本スタイル */
.site-nav-overlay {
  display: none;  /* 初期状態は非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* 半透明の黒 */
  color: white;
  z-index: 1000;
  align-items: center;
  justify-content: center;å
  flex-direction: column;
}

/* オーバーレイを表示するためのactiveクラス */
.site-nav-overlay.active {
  display: flex;
}

/* オーバーレイ内のリストスタイル */
.site-nav-overlay__list {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.site-nav-overlay__item {
  font-size: 24px;
  padding: 20px 0;
}
}

.site-main {
  *zoom: 1;
  min-height: 100%;
}
.site-main:after {
  content: "";
  display: table;
  clear: both;
}

.site-nav {
  display: flex;
}
.site-nav__item {
  margin: 0 30px;
}
.site-nav__link {
	font-size: 16px;
	font-weight: bold;
  text-decoration: none;
}
.site-nav__link:hover {
  opacity: 0.6;
}
@media screen and (max-width: 768px) {
  ._pc {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  ._sp {
    display: none !important;
  }
}
.privacy-policy {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.privacy-policy a {
  text-decoration: none;
}
.privacy-policy a:hover {
  text-decoration: underline;
}

    .header-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      min-height:72px;
      gap:20px;
    }

    .hero{
      padding:90px 0 72px;
      border-bottom:1px solid var(--line);
      background:linear-gradient(to bottom, #fff 0%, #fcfcfc 100%);
    }
    .eyebrow{
      font-size:12px;
      letter-spacing:.22em;
      color:var(--muted);
      text-transform:uppercase;
      margin-bottom:18px;
      font-weight:700;
    }
    h1{
      margin:0;
      font-size:clamp(34px, 5vw, 58px);
      line-height:1.22;
      letter-spacing:.03em;
      font-weight:700;
    }
    .lead{
      margin:24px 0 0;
      max-width:820px;
      color:#333;
      font-size:18px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:40px;
      align-items:start;
      margin-top:46px;
    }
    .panel{
      border:1px solid var(--line);
      padding:28px;
      background:#fff;
    }
    .panel h3{
      margin:0 0 14px;
      font-size:18px;
    }
    .panel p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .kpis{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:18px;
    }
    .kpi{
      border:1px solid var(--line);
      padding:18px;
      background:var(--light);
    }
    .kpi .num{
      font-size:28px;
      font-weight:700;
      line-height:1.1;
      margin-bottom:8px;
    }
    .kpi .cap{
      color:var(--muted);
      font-size:13px;
      line-height:1.6;
    }
    .btn-row{
      display:flex;
      gap:14px;
      flex-wrap:wrap;
      margin-top:34px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:50px;
      padding:0 22px;
      border:1px solid var(--dark);
      font-size:14px;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      transition:.2s ease;
    }
    .btn.primary{
      background:var(--dark);
      color:#fff;
    }
    .btn.secondary{
      background:#fff;
      color:var(--dark);
    }
    .btn:hover{opacity:.85}
    section{
      padding:76px 0;
      border-bottom:1px solid var(--line);
    }
    h2{
      margin:0 0 18px;
      font-size:clamp(28px, 3vw, 40px);
      line-height:1.35;
      letter-spacing:.03em;
    }
    .section-lead{
      max-width:780px;
      color:var(--muted);
      font-size:17px;
      margin-bottom:34px;
    }
    .grid-2{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .box{
      border:1px solid var(--line);
      padding:28px;
      background:#fff;
    }
    .box h3{
      margin:0 0 16px;
      font-size:18px;
    }
    .label{
      display:inline-block;
      margin-bottom:16px;
      font-size:11px;
      letter-spacing:.14em;
      color:var(--muted);
      text-transform:uppercase;
      font-weight:700;
    }
    ul.clean{
      margin:0;
      padding-left:18px;
    }
    ul.clean li{
      margin:0 0 10px;
      color:#333;
    }
    .steps{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .step{
      border:1px solid var(--line);
      padding:28px;
      background:#fff;
    }
    .step .num{
      font-size:13px;
      letter-spacing:.18em;
      color:var(--muted);
      font-weight:700;
      margin-bottom:12px;
    }
    .step h3{
      margin:0 0 12px;
      font-size:20px;
    }
    .step p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .cards{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .card{
      border:1px solid var(--line);
      padding:22px;
      background:var(--light);
    }
    .card strong{
      display:block;
      margin-bottom:8px;
      font-size:16px;
    }
    .pricing{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .price{
      border:1px solid var(--line);
      padding:28px;
      background:#fff;
    }
    .price .tag{
      font-size:11px;
      letter-spacing:.14em;
      color:var(--muted);
      text-transform:uppercase;
      font-weight:700;
      margin-bottom:16px;
    }
    .price h3{
      margin:0 0 14px;
      font-size:20px;
    }
    .price .amt{
      font-size:34px;
      line-height:1.2;
      font-weight:700;
      margin-bottom:14px;
    }
    .price p{
      color:var(--muted);
      margin:0;
      font-size:15px;
    }
    .profile{
      display:grid;
      grid-template-columns:220px 1fr;
      gap:28px;
      align-items:start;
      border:1px solid var(--line);
      padding:28px;
      background:#fff;
    }
    .profile-photo{
      aspect-ratio:1/1;
      background:#f0f0f0;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:44px;
      font-weight:700;
      color:#999;
      border:1px solid var(--line);
    }
    .profile-meta{
      font-size:12px;
      color:var(--muted);
      letter-spacing:.14em;
      text-transform:uppercase;
      font-weight:700;
      margin-bottom:10px;
    }
    .profile h3{
      margin:0 0 14px;
      font-size:28px;
    }
    .profile p{
      margin:0 0 12px;
      color:#333;
    }
    .pill-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:16px;
    }
    .pill{
      border:1px solid var(--line);
      padding:8px 12px;
      font-size:13px;
      color:var(--muted);
      background:var(--light);
    }
    .cta-wrap{
      border:1px solid var(--dark);
      padding:34px;
      background:#fff;
    }
    .cta-wrap.dark{
      background:var(--dark);
      color:#fff;
    }
    .cta-wrap.dark p{color:#dedede}
    .cta-wrap p{
      max-width:760px;
      margin:0 0 22px;
      color:var(--muted);
      font-size:17px;
    }
    footer{
      padding:36px 0 52px;
      color:var(--muted);
      font-size:13px;
    }
    @media (max-width: 900px){
      .hero-grid,.grid-2,.steps,.cards,.pricing,.profile{
        grid-template-columns:1fr;
      }
      .kpis{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 640px){
      .container{width:min(1120px, calc(100vw - 28px))}
      .header-inner{min-height:64px}
      nav ul{gap:16px;font-size:12px}
      .hero{padding:62px 0 52px}
      .kpis{grid-template-columns:1fr}
      .btn-row{flex-direction:column}
      .btn{width:100%}
      section{padding:56px 0}
    }
.scroll-table {
  overflow: auto;
  white-space: nowrap;
}


.service-impl__label {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.18em;
  color: #777;
}

.service-impl__title {
  margin: 0;
  font-size:clamp(28px, 3vw, 40px);
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #111;
}

.service-impl__lead {
  max-width: 860px;
  margin-bottom: 56px;
}

.service-impl__lead p {
  margin: 0 0 18px;
  font-size: 17px;
  line-height: 2;
  color: #333;
}

.service-impl__lead strong {
  font-weight: 600;
  color: #111;
}

.service-impl__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid #e5e5e5;
  border-left: 1px solid #e5e5e5;
}

.service-impl__item {
  padding: 28px 28px 30px;
  border-right: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.service-impl__item h3 {
      margin:0 0 12px;
      font-size:20px;
}

.service-impl__item p {
      margin:0;
      color:var(--muted);
      font-size:15px;
}

.service-impl__note {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid #e5e5e5;
}

.service-impl__note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}

.service-impl__note strong {
  color: #111;
  font-weight: 600;
}

@media (max-width: 767px) {
  .service-impl {
    padding: 72px 0;
  }

  .service-impl__inner {
    width: min(1100px, calc(100% - 32px));
  }

  .service-impl__title {
    line-height: 1.5;
  }

  .service-impl__lead p {
    font-size: 15px;
    line-height: 1.9;
  }

  .service-impl__list {
    grid-template-columns: 1fr;
  }

  .service-impl__item {
    padding: 22px 20px 24px;
  }
}