@charset "UTF-8";
/* Scss Document */
/*=============================================================
 レイアウト設定
=============================================================*/
.flexBox {
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-start;
  flex-flow: row wrap;
}

.jc-space-between {
  justify-content: space-between;
}

.jc-center {
  justify-content: center;
}

.jc-flex-end {
  justify-content: flex-end;
}

.al-center {
  align-items: center;
}

.al-stretch {
  align-items: stretch;
}

.al-flex-end {
  align-items: flex-end;
}

.al-flex-start {
  align-items: flex-start;
}

@media print, screen and (min-width: 767.9px) {
  .order1 {
    order: 1;
  }

  .order2 {
    order: 2;
  }
}
/*=============================================================
 common
=============================================================*/
html {
  scroll-behavior: smooth;
}

body {
  font-size: 14px;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.48;
  font-optical-sizing: auto;
  /*letter-spacing: 0.1em;*/
  color: #000;
  background-color: #FFF;
  margin: 0;
  padding: 0;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  /*font-feature-settings: "palt" 1;*/
}
@media print, screen and (min-width: 767.9px) {
  body {
    font-size: 16px;
    /*min-width: $breakpoint-container;*/
  }
}
body b {
  font-weight: 700;
  font-style: normal;
}
body .en {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
body .mincho {
  font-family: "Times New Roman", Times, "Noto Serif JP", serif;
}
body mark {
  background: linear-gradient(transparent 60%, #ff6 60%);
}
body a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
body a:hover {
  opacity: 0.7;
  -webkit-transition: all .3s;
  transition: all .3s;
}
body img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body .object-fit {
  object-fit: contain;
  font-family: "object-fit: contain;";
}
body .view-sp {
  display: block;
}
@media print, screen and (min-width: 767.9px) {
  body .view-sp {
    display: none;
  }
}
body .view-tab {
  display: block;
}
@media print, screen and (min-width: 1024.9px) {
  body .view-tab {
    display: none;
  }
}
body .view-pc {
  display: none;
}
@media print, screen and (min-width: 767.9px) {
  body .view-pc {
    display: block;
  }
}
body #wrap,
body #contents {
  overflow: hidden;
}
body #contents {
  position: relative;
  background-color: #fff;
}
body.home #contents {
  z-index: 5;
}
body .container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 767.9px) and (max-width: 1499.9px) {
  body .container {
    padding: 0 30px;
  }
}
@media print, screen and (min-width: 1499.9px) {
  body .container {
    padding: 0;
  }
}

.ggmap {
  line-height: 1;
}

@media print, screen and (min-width: 767.9px) {
  .ggmap iframe, .ggmap object, .ggmap embed {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  .ggmap {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }
  .ggmap iframe, .ggmap object, .ggmap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.googlemap-bw iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

/*=============================================================
 ローディング
=============================================================*/
.remove-scrolling {
  overflow: hidden;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: #FFF;
  /*animation: fadeOut 2s 3s forwards;*/
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading p img {
  width: 50%;
  height: auto;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes logo_fade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
  }
}
/*=============================================================
 ナビゲーションの動き
=============================================================*/
#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}

/*　上に上がる動き　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.drawer-open #header {
  height: 100vh;
}

/*=============================================================
 #gheader
=============================================================*/
.home #gheader {
  z-index: 6;
}

.fixed #gheader {
  position: fixed;
  top: 0;
  left: 0;
  background-color: white;
  transition: .5s;
}

#gheader {
  background-color: white;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  transition: .5s;
}
#gheader .container {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
}
#gheader .col2 {
  line-height: 1;
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 {
    line-height: 1;
    transition: .5s;
    position: relative;
  }
}
#gheader .col2 .logo {
  text-align: left;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  #gheader .col2 .logo {
    height: 62px;
    background-color: #fff;
    position: relative;
    z-index: 4;
    padding:0 50px;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .logo {
    height: 105px;
    padding: 0 2vw;
    box-sizing: border-box;
  }
}
#gheader .col2 .logo a {
  display: block;
  position: relative;
  z-index: 3;
  font-weight: bold;
  font-size: 5vw;
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .logo a {
    font-size: 25px;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1259.9px) {
  #gheader .col2 .logo a {
    zoom: 0.85;
  }
}
@media screen and (max-width: 767.9px) {
  #gheader .col2 .logo a img {
    width: auto;
    height: 50px;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .logo a img {
    width: 267px;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 105px;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi .inner {
    width: 100%;
    min-height: 105px;
    display: grid;
    align-items: center;
  }
}
#gheader .col2 .gheader_contact #gnavi nav {
  margin: 0;
  padding: 0;
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav {
    width: 100%;
    /*max-width: $breakpoint-container-max;*/
    margin: 0 auto;
    box-sizing: border-box;
  }
}
@media print, screen and (min-width: 767.9px) and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav {
    padding: 0 0.5vw 0 0;
  }
}

@media screen and (min-width: 767.9px) and (max-width: 1259.9px) {
  #gheader .col2 .gheader_contact #gnavi nav {
    zoom: 0.85;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav .navi {
    justify-content: flex-end;
    align-items: center;
    flex-flow: row wrap;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1059.9px) {
  #gheader .col2 .gheader_contact #gnavi nav .navi {
    padding-left: 30%;
  }
}
@media screen and (max-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav .navi a {
    text-decoration: none;
  }
}
#gheader .col2 .gheader_contact #gnavi nav .navi li {
  width: 100%;
  line-height: 1;
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav .navi li {
    width: auto;
    margin-top: 1em;
    margin-left: 30px;
  }
}
#gheader .col2 .gheader_contact #gnavi nav .navi li:first-child {
  margin-left: 0;
}
#gheader .col2 .gheader_contact #gnavi nav .navi li a:hover {
  opacity: 1;
}
@media print, screen and (min-width: 767.9px) {
  #gheader .col2 .gheader_contact #gnavi nav .navi li:last-child a {
    display: block;
    background-color: #002C47;
    color: #fff;
    padding: 0.5em 1em;
  }
}

@media screen and (max-width: 767.9px) {
  .drawer-hamburger {
    position: absolute;
    right: 0px !important;
    z-index: 10;
    background: #002C47 !important;
    width: 64px !important;
    height: 64px !important;
    box-sizing: border-box !important;
  }

  .drawer-open .drawer-hamburger {
    right: 0 !important;
  }
  .drawer-open .lp-topbar {
    display: none;
  }
  .drawer-hamburger-icon {
    background-color: #fff;
    transform: scale(0.8);
  }

  .drawer-open .drawer-hamburger-icon {
    background-color: transparent !important;
  }

  .drawer-hamburger-icon:before,
  .drawer-hamburger-icon:after {
    background-color: #fff;
  }

  .drawer-open .drawer-hamburger-icon:before,
  .drawer-open .drawer-hamburger-icon:after {
    background-color: #fff;
  }

  .drawer-overlay {
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 5;
  }
}
/*=============================================================
 drawer-nav
=============================================================*/
@media screen and (max-width: 767.9px) {
  .drawer-open .drawer-nav .inner {
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 80px 20px 40px 20px;
  }

  .drawer-nav {
    background-color: #002C47;
    padding: 0 !important;
    box-sizing: border-box;
    height: 100vh;
  }
  .drawer-nav .drawer-menu-item {
    color: #fff !important;
    border: 1px solid white;
    position: relative;
    font-size: 4vw;
    margin-top: 10px;
  }
  .drawer-nav .drawer-menu-item:after {
    line-height: 1;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url("../image/common/ico_arrow_w.png") no-repeat center center;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -0.5em;
  }
  .drawer-nav .drawer-dropdown .drawer-menu-item:after {
    transform: rotate(90deg);
  }
  .drawer-nav .drawer-dropdown.on .drawer-menu-item:after {
    transform: rotate(-90deg);
  }

  .drawer--top.drawer-open .drawer-nav {
    top: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--left.drawer-open .drawer-nav,
  .drawer--left .drawer-hamburger,
  .drawer--left.drawer-open .drawer-navbar .drawer-hamburger {
    left: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .drawer--right.drawer-open .drawer-nav,
  .drawer--right .drawer-hamburger,
  .drawer--right.drawer-open .drawer-navbar .drawer-hamburger {
    right: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media print, screen and (min-width: 767.9px) {
  .drawer-nav {
    position: relative;
    z-index: 2;
    transition: .5s;
  }
}
/*=============================================================
 #pankz
=============================================================*/
#pankz {
  text-align: left;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  z-index: 3;
  color: #fff;
}
#pankz li a {
  position: relative;
  color: #fff;
}
#pankz li a:after {
  content: ">";
  display: inline-block;
  margin: 0 1em;
}

/*=============================================================
 #gFooter
=============================================================*/
.home #gFooter {
  position: relative;
  z-index: 2;
}

#gFooter {
  background-color: #F5F5F5;
}
@media screen and (min-width: 767.9px) and (max-width: 1024.9px) {
  #gFooter {
    zoom: 0.8;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gFooter {
    text-align: left;
  }
}
@media screen and (max-width: 767.9px) {
  #gFooter .container {
    max-width: 99%;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .container {
    max-width: 90%;
  }
}
#gFooter .footerBox01 {
  background-color: #002C47;
  color: #fff;
  text-align: left;
  padding: 20px 0;
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox01 {
    padding: 40px 0;
  }
}
#gFooter .footerBox01 .lead {
  font-size: 4vw;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox01 .lead {
    font-size: 24px;
  }
}
#gFooter .footerBox01 .btn_contact {
  margin-top: 0;
  display: block;
}
#gFooter .footerBox01 .btn_contact a {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 1em;
  color: #002C47;
  line-height: 1;
  width:288px;
  font-weight: 700;
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox01 .btn_contact a {
    font-size: 24px;
  }
}
#gFooter .footerBox01 .btn_contact a i {
  margin-right: 20px;
}
#gFooter .footerBox01 .btn_contact a:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 9px solid #002C47;
  border-right: 0;
  margin-left: 20px;
}
#gFooter .footerBox01 ul {
  display: flex;
  justify-content: flex-start;
  gap: 50px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#gFooter .footerBox02 {
  text-align: left;
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox02 {
    display: none;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1024.9px) {
  #gFooter .footerBox02 {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 1024.9px) {
  #gFooter .footerBox02 {
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr auto;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox02 ul {
    width: 48%;
  }
}
#gFooter .footerBox02 ul li:first-child {
  border-bottom: 2px solid #002C47;
}
#gFooter .footerBox02 ul li a {
  display: block;
  padding: 0.5em 0;
}
@media screen and (min-width: 767.9px) and (max-width: 1024.9px) {
  #gFooter .footerBox02 ul:last-child {
    width: 100%;
  }
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox02 ul:last-child {
    justify-content: space-between;
    padding: 10px 0;
  }
}
@media screen and (max-width: 1024.9px) {
  #gFooter .footerBox02 ul:last-child {
    width: 100%;
    display: flex;
  }
  #gFooter,
  #gFooter .footerBox01,
  #gFooter .footerNav,
  #gFooter .footerBottom {
    border-bottom:none!important;
  }
}
@media screen and (min-width: 767.9px) and (max-width: 1024.9px) {
  #gFooter .footerBox02 ul:last-child li {
    margin-right: 20px;
  }
}
#gFooter .footerBox02 ul:last-child li:first-child {
  border: none;
}
#gFooter .footerBox03 {
  padding-top: 30px;
  margin-bottom: 30px;
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox03 {
    display: flex;
    justify-content: space-between;
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
    border-top: 2px solid #002C47;
  }

#gFooter,
#gFooter .footerBox01,
#gFooter .footerNav,
#gFooter .footerBottom {
  border-bottom:none!important;
}
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox03 .logo {
    width: 60%;
    margin: 0 auto 20px auto;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox03 .logo {
    width: 326px;
  }
}
#gFooter .footerBox03 ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 1024.9px) {
  #gFooter .footerBox03 ul {
    justify-content: flex-end;
  }
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox03 ul li {
    font-size: 3vw;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .footerBox03 ul li {
    margin-left: 50px;
  }
}
@media screen and (max-width: 1024.9px) {
  #gFooter .footerBox03 ul li {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767.9px) {
  #gFooter .footerBox03 ul li:nth-child(2) {
    margin: 0 1em;
  }
}
@media screen and (max-width: 1024.9px) {
  #gFooter .footerBox03 ul li:first-child {
    margin: 0;
  }
}
@media print, screen and (min-width: 1024.9px) {
  #gFooter .footerBox03 ul {
    margin-right: 11em;
  }
}
#gFooter .copy {
  background-color: #002C47;
  color: #fff;
  font-weight: 400;
  padding: 0.5em 0;
}
@media screen and (max-width: 767.9px) {
  #gFooter .copy {
    zoom: 80%;
  }
}
@media print, screen and (min-width: 767.9px) {
  #gFooter .copy {
    font-size: 20px;
    text-align: center;
  }
}

.pageTop {
  display: none;
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .pageTop {
    display: none !important;
  }
}

/*=============================================================
 SP用フッターボタン
=============================================================*/
.bottom-btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 5;
  text-align: center;
  border-top: 1px #FFF solid;
}
.bottom-btn ul li {
  width: 50%;
  box-sizing: border-box;
  background-size: cover;
  background-color: black;
  border-left: 1px solid #fff;
}
.bottom-btn ul li a {
  display: block;
  color: #fff;
  position: relative;
  line-height: 3em;
}
.bottom-btn ul li a i {
  margin-right: 1em;
}
.bottom-btn ul li:first-child {
  border: none;
}
/* =========================
   Footer CTA（文章＋白ボタン2つ）
   ========================= */

/* コンテンツの横幅を統一して中央に揃える */
#gFooter .footerBox01 .container {          
  margin-inline: auto;        
  padding-inline: 24px;        
}
/* リード文は左寄せのまま、幅はコンテナ内で整える */
#gFooter .footerBox01 .lead {
  text-align: left!important;            
  margin: 0 auto 28px!important;         
  max-width: 750px!important;            
}

/* ボタン行：横並び＆中央寄せ＆ボタン間のスペース */
#gFooter .footerBox01 ul {
  display: flex;               
  justify-content: center;     
  align-items: center;        
  gap: 56px;                   
  padding: 0;
  margin: 0;
  list-style: none;
}


#gFooter .footerBox01 .btn_contact {
  margin: 0;
  padding: 0; 
  display: block;
}

/* ボタン本体 */
#gFooter .footerBox01 .btn_contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;                  
  background: #fff;
  color: #002C47;              
  font-weight: 700;
  line-height: 1.2;
  padding: 20px 28px;
  width: 360px;                
  height: 72px;                
  box-sizing: border-box;
  text-align: center;
  white-space: nowrap;         
  border-radius: 4px;
}

/* アイコン画像がある場合のサイズ調整（任意） */
#gFooter .footerBox01 .btn_contact a i img {
  width: 18px;                 
  height: auto;
}

/* 画面が狭い時（スマホ）は縦並びに。幅はコンテナ幅に合わせて100% */
@media (max-width: 767px) {
  #gFooter .footerBox01 .lead {
    max-width: 100%;           
    margin-bottom: 16px;       
    font-size: clamp(14px, 4vw, 18px);
  }
  #gFooter .footerBox01 ul {
    flex-direction: column;    
    gap: 16px;                 
    align-items: stretch;      
  }
  #gFooter .footerBox01 .btn_contact a {
    width: 100%;              
    height: auto;              
    padding: 16px 20px;
    white-space: normal;       
    font-size: clamp(15px, 4.2vw, 17px);
  }
}
/* ===========================
   Header - mobile layout
   =========================== */
   @media (max-width: 768px) {

    /* お知らせバーの赤ボタンはスマホでは非表示 */
    .lp-topbar__cta {
      display: none !important;
    }

  /* ヘッダーの1行レイアウト（ロゴ左／ハンバーガー右） */
  #gheader .col2 {
    background: #fff;
    min-height: 62px;
    padding-right:64px;
    position:relative;
  }

    /* ロゴまわりの余白をリセットして高さ詰め */
    #gheader h1.logo {
      margin: 0;
      line-height: 1;
    }

    /* PC用の水平ナビはスマホでは隠す（メニューはドロワーで開く想定） */
    .lp-topbar__cta {
      display: none;
    }
  }
  /* ===== Footer（CTA + すべて青背景） ===== */

/* フッター全域を青に統一 */
#gFooter,
#gFooter .footerBox01,
#gFooter .footerNav,
#gFooter .footerBottom {
  background: #002C47 !important; /* デザインのネイビーに合わせる */
  border-bottom:1px solid #fff;
}

/* セクション間に残っている白/灰の帯を無効化 */
#gFooter .footerNav, 
#gFooter .footerBottom {
  border-top: none !important;
  box-shadow: none !important;
}

/* キャッチコピー（最上段のテキスト） */
#gFooter .footerBox01 .lead {
  color: #fff;
  text-align: center;      /* デザイン案は中央寄せ */
  max-width: 1100px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* CTAボタンの並び（PC/SP 共通で横並び） */
#gFooter .footerBox01 ul {
  display: flex !important;
  justify-content: center;
  align-items: stretch;
  gap: 24px;               /* ボタン間のスペース */
  padding: 0;
  list-style: none;
}

/* 各ボタンのベース */
#gFooter .footerBox01 ul li {
  width: auto;             /* 既存の幅指定を解除 */
}
#gFooter .footerBox01 ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;        /* 両ボタンの横幅を揃える（必要に応じて調整） */
  padding: 14px 24px;
  background: #fff;
  color: #002C47;
  border-radius: 4px;
  font-weight: 700;
  text-decoration: none;
}

/* ＞マークなどアイコンの余白調整（入っている場合） */
#gFooter .footerBox01 ul li a i,
#gFooter .footerBox01 ul li a .ico {
  margin-left: 8px;
}

/* —— SP 個別調整（ボタンは横並びのまま、最小余白のみ） —— */
@media (max-width: 767.98px) {
  #gFooter .footerBox01 .lead {
    text-align: left;      /* 必要なら left に変更。中央のままで良ければ削除 */
    padding: 0 16px;
    margin-bottom: 16px;
  }
  #gFooter .footerBox01 ul {
    gap: 16px;             /* SPは少し狭める */
    padding: 0 16px;
    flex-wrap: nowrap;     /* 横並びを強制 */
  }
  #gFooter .footerBox01 ul li a {
    min-width: 44vw;       /* 小さい画面でも2つ並ぶように可変幅に */
    padding: 12px 16px;
  }
}

/* 下段のリンク群・社名なども青背景上で見えるように */
#gFooter,
#gFooter a,
#gFooter .footerNav a,
#gFooter .footerBottom a {
  color: #fff;
}
#gFooter .footerNav a:hover,
#gFooter .footerBottom a:hover {
  opacity: .85;
}

/* 区切り線*/
#gFooter .footerNav .container::before {
  content: "";
  display: block;
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 16px 0 24px;
}
@media (max-width: 767.98px) {
/* ハンバーガーメニュー展開中も白背景を維持 */
.drawer-open #gheader .col2 {
  background-color: #fff!important;
}
}

/*******************************************************
 * LP ヘッダー上部トップバー（青帯） / フッター
 * Scope: ページクラス .shortterm-car-lease 配下のみ
 *******************************************************/

/* ========== ヘッダー上部トップバー（青帯） ========== */
.shortterm-car-lease .lp-topbar{
  position: relative;             /* stickyヘッダーとも干渉しにくい */
  z-index: 50;
  background: #002C47;            /* 濃い青 */
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
.shortterm-car-lease .lp-topbar__inner{
  margin: 0 auto;
  height: 44px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 8px;
}
.shortterm-car-lease .lp-topbar__text{
  margin: 0;
  flex: 1 1 auto;
  font-size: 14px;
  letter-spacing: .02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.shortterm-car-lease .lp-topbar__cta{
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;               /* 画像相当の横長 */
  height: 14px;
  padding: 10px 16px;
  background: #E8382E;            /* 赤ボタン */
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 0 rgba(0,0,0,.18), inset 0 -2px 0 rgba(0,0,0,.15);
  transition: filter .15s ease, transform .03s ease;
}
.shortterm-car-lease .lp-topbar__cta:hover{ filter: brightness(1.05); }
.shortterm-car-lease .lp-topbar__cta:active{ transform: translateY(1px); }

/* Tablet ↓ */
@media (max-width: 1024px){
  .shortterm-car-lease .lp-topbar__inner{ height: 44px; }
  .shortterm-car-lease .lp-topbar__text{ font-size: 12px; }
  .shortterm-car-lease .lp-topbar__cta{
    min-width: 210px;
    padding: 9px 14px;
    font-size: 12px;
    height: 18px;
  }
}

/* SP ↓ */
@media (max-width: 767.9px){
  .shortterm-car-lease .lp-topbar__inner{
    height: auto;
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
    width: 100%;
  }
  .shortterm-car-lease .lp-topbar__text{
    font-size: 10px;
    white-space: normal;
    text-align: center;
    padding: 0 3px !important;
  }
  .shortterm-car-lease .lp-topbar__cta{
    width: 100%;
    min-width: 0;
    height: 40px;
    font-size: 14px;
    border-radius: 6px;
  }
}

/* ========== フッター ========== */
/* グローバルフッターの中のテキスト（例：キャッチコピー行） */
.shortterm-car-lease #gFooter .footerBox01 .lead {
  font-size: 20px !important;
  line-height: 2 !important;
}

/* 第一ナビ（上段の水平リンク群） */
.shortterm-car-lease .footer-nav{
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.shortterm-car-lease .footer-nav li{
  display: inline-block;
  margin: 30px 30px 0 0;
}
.shortterm-car-lease .footer-nav a{
  text-decoration: none;
  color: #000;
  font-size: 18px;
}

/* 2段目のボックス（ロゴ＋右側リンク群） */
.shortterm-car-lease #gFooter .footer-nav2{
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 2px solid #fff;
}
@media print, screen and (min-width: 767.9px){
  .shortterm-car-lease #gFooter .footer-nav2{
    padding-top: 50px;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

/* ロゴサイズ（2段目左側） */
@media print, screen and (min-width: 767.9px){
  .shortterm-car-lease #gFooter .footer-nav2 .logo{ width: 326px; }
}
@media screen and (max-width: 767.9px){
  .shortterm-car-lease #gFooter .footer-nav2 .logo{
    width: 60%;
    margin: 0 auto 20px;
  }
}

/* 2段目右側のリンクUL */
.shortterm-car-lease #gFooter .footer-nav2 ul{
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 1024.9px){
  .shortterm-car-lease #gFooter .footer-nav2 ul{
    justify-content: flex-end;
    margin-right: 0 !important;
  }
}
@media print, screen and (min-width: 767.9px){
  .shortterm-car-lease #gFooter .footer-nav2 ul li{
    margin-left: 30px;
  }
}
@media screen and (max-width: 1024.9px){
  .shortterm-car-lease #gFooter .footer-nav2 ul li{
    margin-left: 12px;
  }
}
@media screen and (max-width: 767.9px){
  .shortterm-car-lease #gFooter .footer-nav2 ul{
    /* ★ SPではロゴの下で横並び＋中央寄せ */
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .shortterm-car-lease #gFooter .footer-nav2 ul li{ font-size: 2.5vw; }
}

/* スマホ最適化：コンテナ横幅＆上段ナビは非表示
   ★ ここで footer-nav2 を縦積み（ロゴ → UL）に */
@media screen and (max-width: 767.9px){
  .shortterm-car-lease #gFooter .container{ max-width: 100% !important; }
  .shortterm-car-lease .footer-nav{ display: none !important; }

  .shortterm-car-lease #gFooter .footer-nav2{
    /* 横並び(space-between)だとロゴの右にULが来るため、SPは縦積みに */
    display: block;            /* ← 追加（縦並び化） */
    text-align: center;        /* ロゴやULの基準を中央に */
  }
  .shortterm-car-lease .footer-nav2.col2{
    border-top: 2px solid #fff;
    padding-top: 30px;
  }
}
