
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,
strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,
figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{
	margin:0;
    padding:0;
    border:0;
    outline:0;
    vertical-align:baseline;
    font-weight:normal;
}
ul
{
	list-style:none;
}
a
{
    text-decoration: none;
    pointer-events: all;
}
body,input,select
{
    font-family: "Zen Kaku Gothic New","Roboto", sans-serif; ;
    font-weight: 500;
    font-style: normal;
    line-height:normal;
}
body
{
  line-break: strict;
}
html
{
    box-sizing: border-box;
}  

  p
{
  font-weight: 500;
  line-height: 30px;
}

h1,h2,h3,h4,h5,h6,p
{
  font-feature-settings: "palt";
}
    

:root
{
    --black:#000;
    --white:#fff;
    --main-color:#0044A2;
    --sub-color-green:#1EBDCD;
    --sub-color-lb:#40B1E8;
    --accent-color:#FF7F00;
    --bg-color:#F2F7FA;
    --light-gray:#DADFE3;
}

.sp-only
{
  display: none;
}
.pc-only
{
  display: block;
}
/* a.disabled
{
  pointer-events: none;
} */



.scrollbar::-webkit-scrollbar {
  width: 10px;
  height: 8px;
}
.scrollbar::-webkit-scrollbar-track {
  background: #eee;
}
.scrollbar::-webkit-scrollbar-thumb {
  background: #788495;
  border-radius: 50px;
}

/* .budoux p
{
   text-align: justify;
  text-justify: inter-ideograph;
} */

.pc-justify
{
  text-align-last: justify;
    display: inline-block;
    width: 100%;
    position: relative;
    font-weight: 500;
}


/* header -------------------------------------------*/ 


.header
{
    background: var(--white);
    position: fixed;
    top: 0px;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.header__inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}
.header__logo
{
    margin-left: 25px;
}
.header__logo img
{
    height: 50px;
}

.header__nav
{
    display: flex;
    align-items: center;
    height: 100%;
    gap: 25px;
}

.header__menu
{
    display: flex;
    align-items: center;
    gap: 25px;
}
.header__menu li
{
  position: relative;
}
.header__menu li a
{
    color: #000;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.header__menu-form
{
    display: flex;
    height: 100%;
}
.header__menu-form li a
{
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 25px;
    box-sizing: border-box;
    color: var(--bg-color);
    font-weight: bold;
    transition: 0.2s;
}
.header__menu-form li a:hover
{
    opacity: 0.8;;
}
.header__menu-form li a.recruit
{
    background: var(--accent-color);   
}
.header__menu-form li a.contact
{
    background: var(--main-color);   
}
.header__menu-form li a img
{
    height: 30px;
    padding-right: 5px;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 10px;
  padding-left: 15px;
  transition: 0.2s;
}
.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 2px;
  height: 8px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 50% calc(100% - 0.5px);
}
.arrow::before {
  transform: rotate(45deg);
}
.arrow::after {
  transform: rotate(-45deg);
}
.sub-menu {
  position: absolute;
  top: 100%;
  /* left: 0%; */
  left: 50%;              /* ← 親の中央へ */
  transform: translateX(-50%) translateY(8px); /* 中央補正 + アニメ用 */
  min-width: 250px;
  background: #fff;
  list-style: none;
  padding: 20px 20px 15px 20px;
  margin: 0;
  border-radius: 15px;
  box-shadow: 0 0px 5px rgba(0,0,0,0.25);
  box-sizing: border-box;

  /* 初期状態（非表示） */
  opacity: 0;
  visibility: hidden;
  /* transform: translateY(10px); */
  transition: all .25s ease;
  
}
/* .sub-menu li {
  padding: 8px 20px;
} */
.sub-menu a {
  display: block;
  color: #333;
   border-bottom: 1px solid var(--light-gray);
   padding: 15px 0;
}
.sub-menu a::before
{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50px;
    background: var(--main-color);
    margin-right: 12px;
}
.sub-menu li:first-child a
{
    padding-top: 0;
}
.sub-menu li:last-child a
{
    border-bottom: none;
}

/* ===== hoverで表示 ===== */
.has-child
{
  position: relative;
  padding: 10px 0;
}
.has-child > a.disabled {
  cursor: default;
}
.has-child:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  /* transform: translateY(0); */
  transform: translateX(-50%) translateY(0);
}
.has-child:hover .arrow 
{
    transform: rotate(180deg) translateY(-2px);
}

.header__toggle
{
  display: none;
}



/* ハンバーガーメニュー */
.hamburger-menu{
    position: relative;
    z-index: 1000;
    width: 60px;
    height: 100%;
    /* height: 60px; */
    border: none;
    background: var(--main-color);
    cursor: pointer;
    display: none;
    padding: 0;
}

/* 3本線を中央にまとめる箱 */
.hamburger-menu::before{
    content: "";
    position: absolute;
    inset: 0;
}

/* ライン共通 */
.hamburger-overlay__line{
    position: absolute;
    left: 50%;
    width: 28px;
    height: 2px;
    background-color: var(--white);
    transform: translateX(-50%);
    transition: transform .3s, opacity .3s;
}

/* 真ん中基準で上下に配置 */
.hamburger-overlay__line:nth-of-type(1){
    top: calc(50% - 10px);
}

.hamburger-overlay__line:nth-of-type(2){
    top: 50%;
    transform: translate(-50%, -50%);
}

.hamburger-overlay__line:nth-of-type(3){
    top: calc(50% + 9px);
}

/* active時 */
.hamburger-menu.active .hamburger-overlay__line:nth-of-type(1){
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger-menu.active .hamburger-overlay__line:nth-of-type(2){
    opacity: 0;
}

.hamburger-menu.active .hamburger-overlay__line:nth-of-type(3){
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
/* footer -------------------------------------------*/ 

footer 
{
  color: var(--main-color);
  line-height: 1.6;
  margin-top: 100px;
}

/* =================================
   CONTACT
================================= */
.footer-contact {
  background:
    linear-gradient(90deg, rgba(8, 71, 176, 0.95) 0%, rgba(18, 126, 219, 0.88) 100%),
    url("../image/footer/footer_bg.jpg") no-repeat center center / cover;
  color: #fff;
}

.footer-contact__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-contact__lead {
  display: flex;
  align-items: center;
  gap: 50px;
}

.footer-contact__title {
  margin: 0;
  font-size: 50px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: "Roboto", sans-serif;
}

.footer-contact__sub {
  margin: 8px 0 0;
  font-size: 1rem;
  font-weight: 700;
}

.footer-contact__text {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  line-height: 30px;
}

.footer-contact__tel {
  /* min-width: 416px; */
  background: #fff;
  color: #0b4aa6;
  border-radius: 14px;
  padding: 22px 40px 18px;
  box-sizing: border-box;
}

.footer-contact__tel-link {
  color: #0b4aa6;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
}


.footer-contact__tel-link {
  display: inline-block;
  font-size: 1rem;
}

.footer-contact__tel-label {
  font-size: 30px;
  margin-right: 4px;
  font-weight: bold;
}

.footer-contact__tel-link {
  font-size: 0;
}


.footer-contact__tel-link::after {
  content: "088-884-5171";
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

.footer-contact__hours {
  margin: 5px 0 0;
  font-size: 16px;
  font-weight: 500;
}

/* =================================
   MAIN
================================= */
.footer-main {
  background: #edf2f7;
}

.footer-main__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 20px 52px;
  display: grid;
  grid-template-columns: repeat(2,auto);
  gap: 42px;
  align-items: start;
}

/* 会社情報 */
.footer-company__logo {
  width: 70px;
  margin-bottom: 10px;
}

.footer-company__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-company__name {
  margin: 0 0 20px;
  color: #0b4aa6;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.footer-company__address {
  font-style: normal;
  color: #0b4aa6;
  font-size: 1rem;
  font-weight: 600;
  line-height: 24px;
}

/* ナビ */
.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, auto);
}

.footer-nav__col {
  padding: 0 28px;
  border-left: 1px solid #b7c1cf;
}

.footer-nav__col:last-child {
  border-right: 1px solid #b7c1cf;
}

.footer-nav__heading {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: #7f8b9b;
}

.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li + li {
  margin-top: 14px;
}

.footer-nav a {
  color: var(--black);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.8;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.footer-nav__col ul li a::before {
  content: "－";
  margin-right: 0.25em;
}

.footer-nav__col:first-child ul li a::before {
  content: none;
  margin-right: 0;
}

/* 右リンク */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-left: 1px solid #b7c1cf;
  padding: 0;
  padding-left: 28px;
}

.footer-links__btn {
  position: relative;
  display: flex;
  align-items: center;
  /* min-height: 58px; */
  padding: 10px 46px 10px 20px;
  border-radius: 10px;
  color: #fff!important;
  text-decoration: none;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.4;
  box-sizing: border-box;
}
.footer-links a
{
  font-size: 14px;
}

.footer-links__btn::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

.footer-links__btn--orange {
  background: var(--accent-color);
}

.footer-links__btn--blue {
  background: linear-gradient(90deg, #003F9E 0%, #0073CD 100%);;
}

.footer-links__doc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  /* min-height: 86px; */
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  box-sizing: border-box;
}
.footer-links__doc img
{
  width: 24px;
  max-width: 100%;
}

.footer-links__doc-text {
  font-size: 14px;
  line-height: 22px;
}

.footer-links__pdf {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 38px;
  border: 2px solid #0b4aa6;
  border-radius: 4px;
  color: #0b4aa6;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  box-sizing: border-box;
}

/* =================================
   BOTTOM
================================= */
.footer-bottom {
  background: #0b4aa6;
}

.footer-bottom__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-bottom__links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.footer-bottom__links a + a {
  position: relative;
  padding-left: 20px;
}

.footer-bottom__links a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 15px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%);
}

.footer-bottom__copy {
  margin: 0;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}


.page-top
{
  position: fixed;
  bottom: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
}


/* page-top -------------------------------------------*/ 

.page-top img
{
  width: 80px;
}



/* 下層ページcommon -------------------------------------------*/ 



    .container{
      width:min(1100px, calc(100% - 30px));
      margin:0 auto;
    }


    /* hero */
    .hero{
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  height: 350px;
  margin-bottom: 75px;
  background: var(--bg-color);
}

.hero__content{
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-color);
  /* padding-left: 40px; */
   padding-left: max(20px, calc((100vw - 1100px) / 2));
  padding-right: 40px;
  min-width: 0;
}

/* 左側の中身だけ1100px基準に揃える */
/* .hero__content-inner{
  width: 100%;
  max-width: 510px;
  margin-left: auto;
} */

/* タイトル */
.hero__title{
  display: block;
  margin: 0 0 10px;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: .04em;
  color: #000;
}

.hero__subtitle{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
  color: var(--main-color);
  letter-spacing: .08em;
}

/* パンくずをhero下から10pxくらいに */
.hero__breadcrumb{
  position: absolute;
  left: 0px;
  bottom: 10px;
  /* max-width: 510px; */
  padding-left: max(20px, calc((100vw - 1100px) / 2));
  margin-left: auto;
  font-size: 12px;
  line-height: 1.6;
  color: #a0a8b0;
}

.hero__breadcrumb a{
  color: var(--main-color);
  text-decoration: none;
}

.hero__breadcrumb span{
  margin: 0 4px;
}



/* 画像側 */
.hero__image{
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.hero__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}





    /* quick nav */
    .quick-links{
      display:grid;
      grid-template-columns: repeat(4, 1fr);
      gap:12px;
      padding:10px 0 50px;
    }

    .quick-links a{
      display:flex;
      align-items:center;
      gap:8px;
      min-height:44px;
      /* border:1px solid var(--border); */
      font-size:16px;
      font-weight:700;
      color: var(--black);
    }

    .quick-links__icon{
      width:20px;
      height:20px;
      border-radius:50%;
      background:var(--blue);
      color:#fff;
      font-size:11px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .toggle-icon{
  width: 20px;
  height: 20px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 4px;
  position: relative;
  display: inline-block;
  transition: 0.2s;
}


.toggle-icon span{
  position: absolute;
  top: 46%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
  box-sizing: border-box;
}

     .quick-links a:hover .toggle-icon
    {
      background: var(--white);
    }
     .quick-links a:hover .toggle-icon span
    {
        border-right: 2px solid var(--main-color);
        border-bottom: 2px solid var(--main-color);
    }



    /* sections */
    .section{
      margin:0 0 80px;
    }


    /* 見出し */

    .section__head{
      display:flex;
      align-items:center;
      padding:10px 16px 10px 40px;
      margin-bottom:35px;
      background:var(--bg-color);
      font-size:24px;
      font-weight:700;
      color:var(--black);
      border-radius: 8px;
      position: relative;
    }
    .section__head::before
    {
        content: "";
        width: 5px;
        height: 24px;
        background: var(--sub-color-lb);
        position: absolute;
        top: 50%;
        left: 18px;
        transform: translateY(-50%);
    }

    .section__lead{
      margin:0 0 30px;
      font-size:16px;
      color:var(--black);
    }



    .plain-text p{
      margin:0 0 10px;
      font-size: 16px;
      line-height: 30px;
      font-weight: 500;
    }

    .plain-text ul{
      margin:8px 0 0 1.2em;
      padding:0;
    }



    /* merit cards */
    .subhead{
      display:flex;
      align-items:center;
      gap:8px;
      margin:0 0 18px;
      font-size:20px;
      font-weight:700;
      color:var(--black);
      position: relative;
      padding-left: 30px;
    }

    .subhead::before{
      content:"";
      background: url("../image/finance-lease/customer-merit_icon.png")no-repeat;
      width: 22px;
      height: 25px;
      background-size: contain;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }

    .subhead--company::before{
      content:"";
      background: url("../image/finance-lease/company-merit_icon.png")no-repeat;
      width: 20px;
      height: 25px;
      background-size: contain;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }


    .card-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:20px 25px ;
    }

    .info-card{
      background:#fff;
      border:1px solid var(--main-color);
      border-radius:8px;
      padding:20px;
      /* min-height:152px; */
    }

    .info-card--cyan{
      border-color:var(--sub-color-green);
    }

    .info-card__title{
      display:flex;
      align-items:flex-start;
      gap:8px;
      margin:0 0 10px;
      font-size:20px;
      line-height:1.5;
      font-weight:700;
      color:var(--main-color);
    }

    .subhead--company
    {
      margin-top: 40px;
    }

    .card-grid--company .info-card__title
    {
      color: var(--sub-color-green);
    }

    .info-card__num{
      width:30px;
      height:30px;
      border-radius:50%;
      background:var(--main-color);
      color:#fff;
      font-size:20px;
      line-height:1;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex-shrink:0;
    }

    .info-card--cyan .info-card__num{
      background:var(--sub-color-green);
    }

    .info-card p{
      margin:0;
      font-size:16px;
      line-height:30px;
      color:var(--black);
    }


    /* テーブル画像 */
    .table-img--wrap img
    {
      width: 100%;
    }
    .table-img--margin
    {
      margin-top: 30px;
    }




    /* button banner */
    .bottom-banner{
    display: flex;
    justify-content: center;
    margin-top: 90px;
  }

  .bottom-banner__link{
    position: relative;
    display: block;
    width: min(100%, 500px);
    height: 230px;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
  }

.bottom-banner__link img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 全体にうっすら暗幕 */
.bottom-banner__overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

/* 中央テキスト */
.bottom-banner__content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  text-align: center;
  z-index: 2;
}

.bottom-banner__icon img
{
  width: 50px;
  max-width: 100%;
  margin-bottom: 20px;
}

.bottom-banner__title{
  display: block;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
}

.bottom-banner__sub{
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: rgba(255,255,255,.95);
}

/* 右下の青ボタン */
.bottom-banner__arrow{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35px;
  height: 35px;
  background: var(--main-color);
  z-index: 2;
  border-radius: 8px 0 8px 0;
}

.bottom-banner__arrow::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* hover */
.bottom-banner__link img.bottom-banner_bg{
  transition: transform .4s ease;
}

.bottom-banner__link:hover img.bottom-banner_bg{
  transform: scale(1.04);
}

.bottom-banner__arrow{
  transition: background-color .3s ease;
}

.bottom-banner__link:hover .bottom-banner__arrow{
  background: #00449a;
}









@media screen and (max-width:1300px){
  .header__menu
  {
    gap: 10px;
  }


.pc-justify 
  {
        display: inline;
        text-align-last: auto;
  }

}
@media screen and (max-width:1200px){


    /* ハンバーガーメニュー */
/*     
    .hamburger-menu
    {
        display: block;
    }
    header nav div.btn-box a.contact
    {
        border: 1px solid var(--white);
    }
    a.nav-privacy
    {
        color: var(--white);
        padding: 30px 0;
        text-align: center;
        font-size: 1em;
        font-weight: 500;
    }


    header nav
    {
        position: fixed;
        top: 0px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: all .3s;
        z-index: 900;
        overflow: scroll;
        padding-bottom: 100px;
    }
    header nav ul
    {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 20px;
        width: 80%;
        margin: 0 auto;
        gap: 0;
    }
    header nav ul li
    {
        padding: 20px 0px;
        width: 100%;
    
        background-image: repeating-linear-gradient(90deg,#000, #000 2px, transparent 2px, transparent 7px);
        background-position: left bottom;;
        background-repeat: repeat-x;
        background-size: 100% 1px;
    
    }
    header nav
    {
      flex-direction: column;
    }
    header nav ul li a
    {
        text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
        font-size: 1em;
        width: 100%;
    }
    header .header__nav.active
    {
       visibility:visible;
        opacity: 1;
    }
    
    .sub-menu
    {
      position: relative;
      top: 0;
      width: 100%;
      padding: 0;
      box-shadow: none;
    }
    .sub-menu a
    {
      border: none;
    }
    .has-child:hover .sub-menu
    {
      opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
    }
 */





  .header {
    backdrop-filter: blur(10px);
  }

  .header__inner {
    height: 72px;
    padding-left: 16px;
  }

  .header__logo {
    margin-left: 0;
  }

  .header__logo img {
    height: 42px;
  }

  /* ハンバーガー */
  .hamburger-menu {
    display: block;
    width: 72px;
    background: var(--main-color);
    border-left: 1px solid rgba(255,255,255,0.12);
  }

  /* ナビ全体を右から出るドロワーに */
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(88%, 380px);
    height: 100vh;
    /* background:
      linear-gradient(180deg, #ffffff 0%, #f8fafc 100%); */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 24px 20px 100px 20px;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 950;

    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s ease;

    box-shadow: -5px 0 5px rgba(0,0,0,0.12);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    background: var(--bg-color);
    

  }

  .header__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  /* 背景オーバーレイ風に見せたい場合 */
  /* .header__nav::before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    opacity: 0;
    visibility: hidden;
    transition: .35s ease;
    z-index: -1;
    pointer-events: none;
  } */

  .header__nav.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* メインメニュー */
  .header__menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    padding: 0;
    margin: 0 0 24px;
  }

  .header__menu li {
    width: 100%;
    list-style: none;
    padding: 0;
    background: none;
  }

  .header__menu > li > a {
    min-height: 58px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    box-sizing: border-box;
    border-radius: 10px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    /* box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06); */
    border: 1px solid rgba(15, 23, 42, 0.06);
    text-shadow: none;
    /* transition: transform .2s ease, box-shadow .2s ease, background .2s ease; */
  }
  .header__menu > li > a.disabled
  {
    border-radius: 10px 10px 0 0;
  }

  .header__menu > li > a:active {
    transform: scale(0.98);
  }

  /* 子メニューあり */
  .has-child {
    pointer-events: auto;
  }

  .has-child > a {
    position: relative;
  }

  .arrow {
    width: 12px;
    height: 12px;
    padding-left: 0;
    flex-shrink: 0;
    margin-left: 12px;
  }

  .arrow::before,
  .arrow::after {
    /* width: 2px;
    height: 8px;
    background-color: #222; */
    display: none;
  }

  /* サブメニュー */
  .sub-menu {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
    /* margin-top: 10px; */
    padding: 10px;
    border-radius: 0 0 10px 10px;
    /* background: rgba(255,255,255,0.72); */
    background: var(--white);
    /* backdrop-filter: blur(10px); */
    /* box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.05); */
    opacity: 1;
    visibility: visible;
    transition: none;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.06);
  }

  .sub-menu li {
    padding: 0;
    background: none;
  }

  .sub-menu a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    color: #334155;
    font-size: 14px;
    font-weight: 500;
  }

  .sub-menu li:last-child a {
    border-bottom: none;
  }

  .sub-menu a::before {
    content: "";
    width: 8px;
    height: 8px;
    margin-right: 12px;
    flex-shrink: 0;
  }

  /* hover前提挙動を無効化 */
  .has-child:hover .sub-menu {
    transform: none;
  }

  .has-child:hover .arrow {
    transform: none;
  }

  /* 下部ボタン */
  .header__menu-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%;
    height: auto;
    /* margin-top: auto; */
    padding-top: 20px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .header__menu-form li {
    list-style: none;
  }

  .header__menu-form li a {
    min-height: 56px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 12px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }

  /* .header__menu-form li a.recruit {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  }

  .header__menu-form li a.contact {
    background: linear-gradient(135deg, var(--main-color), #2563eb);
  } */

  .header__menu-form li a img {
    height: 22px;
    padding-right: 8px;
  }


    .ipad-br
    {
        display: none;
    }


      /* quick nav */
      .quick-links
      {
        grid-template-columns:1fr 1fr;
      }
      .quick-links a
      {
        font-size: 14px;
        align-items: flex-start;
      }
      .toggle-icon
      {
        flex-shrink: 0;
      }


      /* kv */
      .hero
      {
        height: 250px;
      }


      /* footer */

      .footer-nav
      {
          grid-template-columns: repeat(2, auto);
          gap: 15px;
      }
      .footer-contact__lead
      {
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-contact__inner
      {
        justify-content: center;
      }
      .footer-main__inner
      {
        justify-content: center;
      }

      

}

@media screen and (max-width: 767px) {

  .sp-only
{
  display: block;
}
  .pc-only
{
  display: none;
}



/* header -------------------------------------------*/ 



    .pc-justify 
  {
        display: inline;
        text-align-last: auto;
  }



.header__toggle
{
  display: block;
}
/* .header__logo
{
  margin-left: 10px;
} */
.header__logo img
{
  height: 40px;
}
.header__inner
{
  height: 60px;
}



/* 修正 */

  .header__nav {
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    border-radius: 0;
    /* padding: 88px 20px 24px; */
    

  }

  .header__nav.active {
    padding-bottom: 150px;
  }

  /* 背景もフラットに */
  .header__nav {
    box-shadow: none;
  }

  /* メニュー余白調整 */
  .header__menu {
    gap: 8px;
  }

  .header__menu > li > a {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
  }

  /* サブメニュー */
  .sub-menu {
    background: var(--white);
    /* border-radius: 12px; */
  }

  /* 下部ボタンは縦並び */
  .header__menu-form {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header__menu-form li a {
    width: 100%;
    justify-content: center;
  }

  /* ハンバーガーサイズ微調整 */
  .hamburger-menu {
    width: 64px;
  }

  .hamburger-overlay__line {
    width: 24px;
  }






/* footer -------------------------------------------*/ 

    footer
    {
      margin-top: 60px;
    }

  /* =================================
     CONTACT
  ================================= */
  .footer-contact {
    background:
      linear-gradient(90deg, rgba(8, 71, 176, 0.92) 0%, rgba(18, 126, 219, 0.82) 100%),
      url("../image/footer/footer_bg.jpg") no-repeat center center / cover;
  }

  .footer-contact__inner {
    padding: 42px 16px 40px;
    display: block;
    text-align: center;
  }

  .footer-contact__lead {
    display: block;
  }

  .footer-contact__title-wrap {
    margin-bottom: 26px;
  }

  .footer-contact__title {
    font-size: 40px;
    line-height: 1;
    letter-spacing: 0.02em;
    text-transform: none;
  }

  .footer-contact__sub {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .footer-contact__text {
    font-size: 0.95rem;
    line-height: 2;
  }

  .footer-contact__tel {
    min-width: 0;
    width: 90%;
    margin-top: 28px;
    margin: 28px auto 0 auto;
    padding: 22px 14px 18px;
    border-radius: 12px;
  }

  .footer-contact__tel-link {
    display: block;
    text-align: center;
  }

  .footer-contact__tel-label {
    font-size: 1rem;
  }

  .footer-contact__tel-link::after {
    font-size: 32px;
    line-height: 1.1;
  }

  .footer-contact__hours {
    margin-top: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* =================================
     MAIN
  ================================= */
  .footer-main__inner {
    display: block;
    padding: 34px 16px 36px;
  }

  .footer-company {
    margin-bottom: 30px;
  }

  .footer-company__logo {
    width: 60px;
    margin-bottom: 14px;
  }

  .footer-company__name {
    margin-bottom: 18px;
    font-size: 20px;
    line-height: 1.4;
  }

  .footer-company__address {
    font-size: 1rem;
    line-height: 1.9;
  }

  /* =================================
     NAV
  ================================= */
  .footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 22px;
    margin-bottom: 20px;
  }

  .footer-nav__col {
    padding: 20px 0;
    border: none;
    border-top: 1px solid #aebccc;

  }

  .footer-nav__col:last-child {
    border-right: none;
  }

  .footer-nav__col ul {
    padding-top: 0px;
    /* border-top: 1px solid #aebccc; */
  }

  .footer-nav__heading {
    margin: 0;
    font-size: 14px;
    color: #9aa3af;
    line-height: 1.4;
    padding-bottom: 20px;
  }

  .footer-nav li + li {
    margin-top: 14px;
  }

  .footer-nav a {
    display: flex;
    font-size: 14px;
    line-height: 1.8;
    font-weight: 700;
  }

  /* .footer-nav__col:first-child {
    order: 1;
  }

  .footer-nav__col:nth-child(2) {
    order: 2;
  }

  .footer-nav__col:nth-child(3) {
    order: 3;
  } */

  /* =================================
     右ボタン
  ================================= */
  .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: none;
    border: none;
    padding: 20px 0;
    border-top: 1px solid #aebccc
  }

  .footer-links__btn {
    min-height: 40px;
    padding: 0 46px 0 18px;
    font-size: 1.125rem;
    border-radius: 10px;
  }

  .footer-links__btn::after {
    right: 18px;
    width: 8px;
    height: 8px;
  }

  .footer-links__doc {
    /* min-height: 72px; */
    padding: 10px;
    border-radius: 10px;
  }

  .footer-links__doc-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .footer-links__pdf {
    width: 28px;
    height: 34px;
    font-size: 0.625rem;
  }

  /* =================================
     BOTTOM
  ================================= */
  .footer-bottom__inner {
    padding: 18px 16px 20px;
    display: block;
    text-align: center;
  }

  .footer-bottom__links {
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
  }

  .footer-bottom__links a {
    font-size: 0.9rem;
  }

  .footer-bottom__links a + a {
    padding-left: 18px;
  }

  .footer-bottom__links a + a::before {
    height: 14px;
  }

  .footer-bottom__copy {
    font-size: 0.75rem;
    line-height: 1.6;
    text-align: center;
  }


  

/* 下層ページファーストビュー -------------------------------------------*/ 

      .hero{
        grid-template-columns:1fr;
        margin-bottom: 40px;
        height: auto;
      }
      .hero__breadcrumb
      {
        top: 10px;
        bottom: 0;
        padding-left: 10px;
        padding-right: 10px;
      }

      .hero__image
      {
        height: 200px;
      }
/* 
      .card-grid{
        grid-template-columns:repeat(2, 1fr);
      }

      .object-grid{
        grid-template-columns:repeat(2, 1fr);
      } */
    
       .hero__content{
        padding:80px 15px 50px 15px;
      }
      section.hero_no-image
      {
        min-height: 150px;
      }

      .hero__title{
        font-size:30px;
      }

      .section__head{
        font-size:18px;
      }

      .card-grid{
        grid-template-columns:1fr;
      }

      .object-grid{
        grid-template-columns:1fr 1fr;
      }


      .section__lead
      {
        margin-bottom: 20px;
      }

      p
    {
      line-height: 28px;
    }
    .section
    {
      margin-bottom: 60px;
    }
    .section__head
    {
      font-size: 20px;
      padding-left: 30px;
    }
    .section__head::before
    {
      left: 15px;
    }
    .section__head
    {
      margin-bottom: 20px;
    }


    /* メリット */
    .subhead,
    .info-card__title
    {
      font-size: 18px;
    }
    .info-card__num
    {
      width: 25px;
      height: 25px;
    }
    .info-card__num
    {
      font-size: 18px;
      line-height: 1.3;
    }
    .info-card
    {
      padding: 15px;
    }
    .info-card p
    {
      font-size: 15px;
    }

      /* テーブル画像 */

      .table-img--wrap
    {
      overflow-x: auto;
    }
    .table-img--wrap img
    {
      width: 800px;
    }
}


