/* =========================================================
   common.css — ヘッダー / グローバルナビ / 追従ボタン / CTAバー / フッター
   （全ページ共通パーツ）
   ========================================================= */
a:hover,a:hover img{
opacity:0.6;
}
.sp{
display:none;
}
.pc{
display:block;
}
/* ---------- ヘッダー ---------- */
.header{
  position:sticky;
  top:0;
  z-index:100;
  max-width:1130px;
margin:0 auto;
  width:100%;
  background:rgba(255,255,255,0.9);
  height:84px;
  border-bottom-left-radius:26px;
  border-bottom-right-radius:26px;
  box-shadow:0 3px 12px rgba(0,0,0,.06);
}
.header__inner{
  /*width:1130px;*/
  margin:0 auto;
  display:flex;
  align-items:center;
  height:100%;
padding:25px 40px 25px 40px ;
}
.header__logo{
flex:none;
width:33%;
}
.header__logo img{
}

.gnav{
max-width:62%;
margin-left:auto;
}
.gnav ul{
display:flex;
align-items:center;
gap:30px;

}
.gnav a{
  display:block;
  opacity:.85;
  transition:opacity .2s;
}

.gnav a.is-active{
opacity:1;
}
.gnav a:hover{
opacity:0.6;
}
.gnav img{
/*height:15px;*/
width:auto;
}


/* ---------- 右端 追従ボタン ---------- */
.floats{
  position:fixed;
  top:46%;
  transform:translateY(-50%);
  z-index:200;
  /*left:calc(50% + 640px - 50px);*/
right:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.floats a{ display:block; filter:drop-shadow(0 2px 6px rgba(0,0,0,.15)); transition:transform .2s; }
.floats a:hover{ transform:translateX(-4px); }
.floats img{ width:50px; }

/* ---------- お問い合わせ CTA バー ---------- */
.cta{
  position:relative;
  width:100%;
  height:188px;
  overflow:hidden;
  /* "bg"画像は背景として配置 / 横幅100% */
  background:url(../img/f_bg.png) no-repeat center;
  background-size:cover;
}
.cta__inner{
  position:relative;
  z-index:1;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:34px;
  padding:0 56px;
}
.cta__tel{ text-align:left; }
.cta__tel-lead{
  color:#fff;
  font-size:13px;
  letter-spacing:.08em;
  margin-bottom:6px;
}
.cta__tel img{ width:280px; }
.cta__btns{ display:flex; gap:16px; }
.cta__btns img{ height:53px; width:auto; }

/* ---------- フッター ---------- */
.footer{
  background:#fff;
  padding:46px 40px 40px;
  text-align:center;
}
.footer__logo{ display:inline-block; }
.footer__logo img{ width:366px; }
.footer__addr{
  font-size:13px;
  color:var(--text-dark);
  margin-top:16px;
  letter-spacing:.04em;
}
.footer__copy{
  font-family:var(--font-en);
  font-size:13px;
  color:var(--text-mid);
  margin-top:22px;
  letter-spacing:.02em;
}

/* ---------- SP ハンバーガー（PCは非表示） ---------- */
.hamburger{ display:none; }

/* ---------- SP ドロワーメニュー（PCは非表示） ---------- */
.drawer{ display:none; }

/* =========================================================
   スマートフォン（〜768px）
   ========================================================= */
@media (max-width:768px){
.sp{
display:block;
}
.pc{
display:none;
}
  /* ---- ヘッダー ---- */
  .header{
    max-width:100%;
    height:64px;
    padding:0;
    border-bottom-left-radius:14px;
    border-bottom-right-radius:14px;
    background:rgba(255,255,255,.92);
  }
  .header__inner{
    height:64px;
    padding:0 0 0 4%;
  }
  .header__logo{
    width:auto;
    max-width:64%;
  }
  .header__logo img{
/*height:34px;*/
width:auto;
}
  .gnav{ display:none; }

  /* ハンバーガー表示 */
  .hamburger{
    display:block;
    flex:none;
    margin-left:auto;
    width:64px;
    height:64px;
    background:var(--navy);
    border:0;
    padding:0;
    cursor:pointer;
    position:relative;
  }
  .hamburger span{
    position:absolute;
    left:18px; right:18px;
    height:3px;
    background:#fff;
    border-radius:2px;
    transition:.3s;
  }
  .hamburger span:nth-child(1){ top:23px; }
  .hamburger span:nth-child(2){ top:31px; }
  .hamburger span:nth-child(3){ top:39px; }

  /* 追従ボタンはSPでは非表示（ドロワー内ボタンで代替） */
  .floats{ display:none; }

  /* ---- ドロワー ---- */
  .drawer{
    display:flex;
    flex-direction:column;
    position:fixed;
    inset:0;
    z-index:300;
    background:#fff;
    transform:translateX(100%);
    transition:transform .35s ease;
    overflow-y:auto;
  }
  .drawer.is-open{ transform:none; }
  body.is-menu-open{ overflow:hidden; }

  .drawer__head{
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:64px;
    flex:none;
    padding-left:4%;
  }
  .drawer__logo{ max-width:62%; }
  .drawer__logo img{
/*height:34px;*/
width:auto;
}
  .drawer__close{
    width:64px; height:64px;
    flex:none;
    background:var(--navy);
    border:0; padding:0; cursor:pointer;
    position:relative;
  }
  .drawer__close span{
    position:absolute;
    top:50%; left:50%;
    width:28px; height:3px;
    background:#fff;
    border-radius:2px;
  }
  .drawer__close span:nth-child(1){ transform:translate(-50%,-50%) rotate(45deg); }
  .drawer__close span:nth-child(2){ transform:translate(-50%,-50%) rotate(-45deg); }

  .drawer__nav{
    flex:1 0 auto;
    padding:8px 6% 24px;
  }
  .drawer__nav li{
    border-bottom:1px dashed #cfcfcf;
    padding:0 2px;
  }
  .drawer__nav li:first-child{ border-top:1px dashed #cfcfcf; }
  .drawer__nav a{ display:block; }
  .drawer__nav img{ width:100%; }

  .drawer__btns{
    display:flex;
    flex:none;
  }
  .drawer__btns a{ flex:1 1 0; }
  .drawer__btns img{ width:100%; display:block; }

  /* ---- CTA バー（縦積み・可変高） ---- */
  .cta{ height:auto; }
  .cta__inner{
    flex-direction:column;
    gap:16px;
    padding:28px 4%;
  }
  .cta__tel{ text-align:center; }
  .cta__tel img{ width:64%; max-width:280px; }
  .cta__btns{
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
  }
  .cta__btns img{ height:46px; }

  /* ---- フッター ---- */
  .footer{ padding:32px 4% 28px; }
  .footer__logo img{ width:80%; max-width:320px; margin:0 auto; }
  .footer__addr{ font-size:12px; }
  .footer__copy{ font-size:11px; margin-top:16px; }
}




/*.gnav li:nth-child(1),*//*top*/
/*.gnav li:nth-child(2),*//*concept*/
/*.gnav li:nth-child(3),*//*access&location*/
/*.gnav li:nth-child(4)plan*/
/*.gnav li:nth-child(5)free plan*/
/*.gnav li:nth-child(6)equipment*/
/*.gnav li:nth-child(7)*//*outline*/
/*{
pointer-events:none;
opacity:0.6;
}*/


/*.drawer__nav li:nth-child(1),*//*top*/
/*.drawer__nav li:nth-child(2),*//*concept*/
/*.drawer__nav li:nth-child(3),*//*access&location*/
/*.drawer__nav li:nth-child(4)plan*/
/*.drawer__nav li:nth-child(5)free plan*/
/*.drawer__nav li:nth-child(6)equipment*/
/*.drawer__nav li:nth-child(7)*//*outline*/
/*{
pointer-events:none;
opacity:0.6;
}*/