@charset "UTF-8";
/* 基本設定 */
/* 電話リンクPC無効 */
@media (min-width: 800px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
:root {
  --main-blue: #0078c5;
  --sub-blue: #D9EBF7;
  --sub-blue-40: rgba(217, 235, 247, 0.4); 
  --mk-blue: #123556;
  --text-color: #333333;
  --white: #ffffff;
  --base-color: #FAFAFA;
  --step-color01: #83CCFE;
  --step-color02: #65BBF6;
  --step-color03: #49ACEF;
  --step-color04: #2D9CE7;
  --step-color05: #178CD7;
  --step-color06: #0E83CE;
  --step-color07: #0078c5;

  font-size: clamp(12px, 4vw, 16px);
}

html {
  font-size: 18px;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.04em;
  scroll-behavior: smooth;
}

body{
  background-color: var(--base-color)!important;
  padding: 0!important;
  margin: 0!important;
  overflow: hidden!important;
}



h2,h3{
  border-top: none!important;
  border-bottom: none!important;
}
h3::after{
  display: none!important;
}
h4{
  background-color: transparent!important;
  padding: 0!important;
  border-radius: 0!important;
}
h5{
  border-bottom: none!important;
}
h2.has-background,
h3.has-background,
h4.has-background,
h5.has-background {
    padding: 0.7rem 2rem;
    margin: 1.5em 0 0.5em 0;
}

img {
  width: 100%;
}

.sp {
  display: none;
}

.heading01-br {
  display: none;
}

a {
  color: var(--main-blue);
}

.mt50{
  margin-top: clamp(20px,4vw,50px);
}



.f12 {font-size: clamp(11px, 4vw, 12px);}
.f14 {font-size: clamp(10px, 4vw, 14px);}
.f16 {font-size: clamp(12px, 4vw, 16px);}
.f17 {font-size: clamp(12px, 4vw, 17px);}
.f18 {font-size: clamp(14px, 2vw, 18px);}
.f20 {font-size: clamp(15px, 4vw, 20px);}
.f24 {font-size: clamp(20px, 4vw, 24px);}
.f25 {font-size: clamp(20px, 4vw, 25px);}
.f28 {font-size: clamp(22px, 4vw, 28px);}
.f30 {font-size: clamp(23px, 4vw, 30px);}
.f32 {font-size: clamp(23px, 4vw, 32px);}
.f36 {font-size: clamp(23px, 4vw, 36px);}
.f40 {font-size: clamp(26px, 4vw, 40px);}
.f44 {font-size: clamp(28px, 4vw, 44px);}

.fw-b{
  font-weight: bold;
}


/* レスポンシブサイズ */
@media (max-width: 781px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  html {
    font-size: clamp(14px, 4vw, 16px);
    -webkit-overflow-scrolling: touch;
  }
}

.site-content{
  margin-top: 100px;
}
@media (max-width: 781px){
  .site-content{
  margin-top: 50px;
}
}

/* ヘッダー 全域*/
header {
  width: 100%;
  background-color: var(--base-color);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /* margin-top: 50px!important; */
}

header .header-top {
  width: 100%;
  margin-inline: auto;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1%;
  /* margin-top: 50px!important; */
}
@media screen and (max-width: 781px) {
  header {
    height: 50px;
  }
  header .header-top {
    position: fixed;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
    padding-inline: 5%;
  }
}

/*ヘッダーロゴパーツ*/
header .header-top .logo {
  width: clamp(80px,8vw,120px);
  margin: 0 auto ;
  padding-bottom: 10px;
}
header .header-top .logo-wrap{
  flex-shrink: 0;
  max-height: 100px;
}
header .header-top .logo-wrap img {
  max-height: 80px;
  height: auto;
  width: auto;
}

header .header-top .logo-wrap p {
  font-size: clamp(11px, 4vw, 14px);
  margin-bottom: 0;
}
@media screen and (max-width: 1230px){
  header .header-top .logo-wrap .pc{
    display: none;
  }
}
@media screen and (max-width: 781px) {

  header .header-top .logo a {
    width: 100%;
    background-size: contain;
  }
  header .header-top .logo {
    padding-bottom: 0;
    width: 90px;
  }
}

/*ヘッダーセンター部分*/
header .header-center {
  flex-grow: 1;
  flex-shrink: 1;
  min-width: 0;
  padding-right: 1rem;
}
header .header-center > div{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  gap: 20px;
  height: 60px;
}


header .header-center p {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  text-align: right;
  margin: 0;
}
header .header-center .nav-insta {
  display: block;
  width: 40px;
}
header .header-center .nav-tel {
  font-size: clamp(28px, 8vw, 42px);
  margin: 0;
}
header .header-center .nav-tel a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding-left: 50px; 
  position: relative;
  font-family: "Oswald", "Noto Sans JP", sans-serif;
  font-weight: bold;
}
header .header-center p.nav-tel::before {
  position: absolute;
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(../images/base-img/phone.svg) no-repeat center center/contain;
  top: 50%;
  left: 0; 
  transform: translateY(-50%);
}
header .header-center .nav-tel a{
  color: var(--main-blue);
  font-weight: bold;
  text-decoration: none;
}

header .header-center .nav-shop a {
    text-decoration: none;
    font-weight: bold;
    white-space: nowrap;
    color: var(--main-blue);
    background-color: #fff;
    border: 2px solid var(--main-blue);
    padding: 8px 15px 8px 38px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

header .header-center .nav-shop a::before {
    content: "";
    display: block;
    background: url(../images/base-img/shop_b.svg) no-repeat center center/contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    transition: background-image 0.3s ease;
}

header .header-center .nav-shop a:hover {
    background-color: var(--main-blue);
    color: #fff;
    cursor: pointer;
}
header .header-center .nav-shop a:hover::before {
    background-image: url(../images/base-img/shop.svg);
}

header nav{
  width: 100%;
  padding-right: 0;
}

header nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
}

header nav > ul > li {
  position: relative;
  flex-grow: 0;
  flex-shrink: 0;
  width: auto;
  text-align: center;
  margin: 0;
  /* padding-left: 1.5rem; */
  margin: 0;
}


header .header-top .sp-only-maku-btn{
  display: none;
}

header nav ul li.nav-li-sns:last-child {
  flex-grow: 0;
  flex-shrink: 0;
  width: auto;
  margin-left: 20px;
}

header nav ul li:last-child::after {
  left: inherit;
  right: 0;
}

header nav ul li a {
  display: inline-block;
  font-size: clamp(14px, 1.52vw, 16px);
  padding-block: 7px;
  position: relative;
  letter-spacing: 0.02em;
  padding-top: 0;
  padding-bottom: 0.5rem;
}

header nav ul li a::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--main-blue);
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
}

header nav > ul > li > a:hover:before {
  width: calc(100% - 20px);
}
header .site-header-nav ul{
  margin-bottom: 0;
}

header .site-header-nav ul li .nav-shop {
  font-size: 10px;
}
header .site-header-nav ul li .nav-shop img {
  width: 25px;
}

.nav-insta {
  width: 38px;
}
@media screen and (min-width: 1231px){
  .header-center .nav-shop{
    display: none;
  }
}
@media screen and (max-width: 1230px){
  .header-contact-wrap .header-maku-btn{
    display: none;
  }
}
@media screen and (min-width: 782px) and (max-width: 900px){
  .header-top .header-center .nav-shop{
    display: block;
  }
  header .header-center > div{
    height: auto;
  }
}
@media screen and (max-width: 900px){
  header .header-center div{
    margin-top: 0;
    margin-bottom: 10px;
  }
}

/* ========================================
   モバイルメニュー内のCTAボタン
======================================== */

header .header-center .site-header-nav .sp-nav-cta.sp-only .sp-nav-shop-btn{
  width: 100%;
  text-align: left;
  padding-bottom: 60px;
}

.sp-nav-shop-btn a {
    display: block;
    margin-top: 0.3rem;
    margin-left: 1rem;
    padding: 8px 10px;
    background-color: #0078c5;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    font-size: 1rem;
    width: 90%;
    box-sizing: border-box;
}

/* 子メニューのスタイリング */
.site-header-nav ul li .sub-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 20px;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 100;
    min-width: 180px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* 子メニュー内のアイテムのスタイリング */
.site-header-nav ul li .sub-menu li {
    position: static; 
    white-space: nowrap;
    border-bottom: 1px solid #eee;
    padding-left: 0;
    text-align: left;
}
.site-header-nav ul li .sub-menu li::after{
  display: none;
}

.site-header-nav ul li .sub-menu li:last-child {
    border-bottom: none;
}

.site-header-nav > ul > li > .sub-menu > li > a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    width: 100%;
}

/* 子メニューのホバー効果 */
.site-header-nav ul li .sub-menu li a:hover {
    background: var(--sub-blue); 
    color: var(--main-blue);
}
/* ホバーで子メニューを表示する設定 */
.site-header-nav ul li:hover > .sub-menu {
    display: block;
}

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

  header nav ul li .sp{
    display: none;
  }
}
@media screen and (min-width: 901px) and (max-width: 1230px){
  .header-contact-wrap .header-contact-btn{
    height: 100%;
    align-items: center;
  }
}
@media screen and (min-width: 782px) and (max-width: 1230px){
    header .header-top nav{
    width: 90%;
    margin: 0 0 0 auto;
  }
  header nav ul li:not(:last-of-type){
    position: relative;
  }
  header nav ul li:not(:last-of-type)::after{
    content: "";
    position: absolute;
    display: inline-block;
    width: 1px;
    height: 25px;
    top: 50%;
    margin-left: 0.8rem;
    transform: translateY(-50%);
    background-color: var(--main-blue);
  }
  header .header-top .header-center nav ul{
    font-size: 12px;
  }
  header nav ul li .sp{
    display: block;
  }
}
@media screen and (max-width: 781px) {
    .site-header-nav .menu-item-has-children > .sub-menu { 
        display: flex;
        flex-wrap: wrap;
        position: static; 
        width: 100%;
        box-shadow: none;
        border: none;
        column-count: 2;
        padding-left: 1.8rem;
        /* background-color: var(--sub-blue-40); */
    }
    #menu-item-1709 > a{
      padding-bottom: 0;
      margin-bottom: 0;
    }
    .site-header-nav .menu-item-has-children > .sub-menu > li {
        position: relative !important; 
        white-space: normal !important;
        text-align: left !important;
        list-style-type: none;
        width: 100%;
        flex-shrink: 0;
        white-space: normal;
        padding: 4px 0 4px;
        border: none;
        text-align: left;
        column-count: 1;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    .site-header-nav .menu-item-has-children > .sub-menu > li::before{
      content: "";
      background-image: url(../images/images/arrow-b.png);
      width: 10px;
      height: 10px;
      display: inline-block;
      background-size: contain;
      background-repeat: no-repeat;
    }
    .site-header-nav .menu-item-has-children > .sub-menu > li > a {
        display: block;
        padding: 0;
        font-size: 0.98rem;
        text-align: left; 
        background: none;
        color: #333;
    }
    .sub-menu {
        column-count: unset !important;
        display: block !important;
        gap: 0 !important;
    }
    
    .sub-menu > li {
        width: 100% !important;
        flex-basis: auto !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }
    .sub-menu > li > a {
        width: 100% !important;
    }
}

/*ヘッダー　CTAセクション*/
header .header-contact-wrap{
  display: flex;
  height: 100%;
}

header .header-contact-btn,
header .header-maku-btn{
  margin-bottom: 0;
}

header .header-contact-btn a img,
header .header-maku-btn a img {
    margin-bottom: 10px; 
    width: 40px; 
    height: auto;
}
header .header-contact-btn a,
header .header-maku-btn a{
  color: #fff;
  text-align: center;
  font-size: clamp(12px,1.6vw,16px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-decoration: none;
  transition: all 0.4s;
  position: relative;
  flex-direction: column;
  line-height: 1.2;
  padding: 5px 0;
}
header .header-contact-btn a {
  width: 130px;
  font-weight: bold;
  background-color: var(--mk-blue);
}
header .header-maku-btn a{
  width: 130px;
  background-color: var(--main-blue);
  font-weight: bold;
  line-height: 1.2rem;
}
header .header-contact-btn a:hover,
header .header-maku-btn a:hover {
  opacity: 1;
}



@media screen and (min-width: 900px) and (max-width: 1230px){
  header .header-contact-wrap{
    flex-direction: column;
    flex-direction: column-reverse;
    height: 100%;
  }
  header .header-contact-btn a{
    padding-inline: 0.5rem;
  }
  header .header-contact-btn{
    height: 70px;
    font-size: clamp(14px, 1vw, 16px);
  }
  header .header-maku-btn{
    height: 50px;
    font-size: clamp(14px, 1vw, 16px);
  }
    header .header-maku-btn br{
    display: none;
  }
}
@media screen and (min-width: 782px) and (max-width: 1230px){
  header .header-contact-wrap{
    width: 130px;
  }
}
@media screen and (min-width: 781px) {
  .sp-nav-cta.sp-only{
    display: none;
  }
}
@media screen and (max-width: 781px) {
  header .header-contact-wrap{
    display: flex;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 901px){
  header .header-top .sp-only{
    display: none;
  }
}
@media screen and (max-width: 900px){
  header .header-top .pc-only{
    display: none;
  }
  .sp-fixed-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        justify-content: space-around;
    }
  .sp-fixed-bar p{
    width: 100%;
    height: 50px;
    margin-bottom: 0;
  }
  .sp-fixed-bar a {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    text-align: center;
    color: #fff;
  }
  header .header-top .sp-fixed-bar .sp-tel-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--step-color03);
    font-size: clamp(14px,8vw,17px);
  }
    header .header-top .sp-fixed-bar .sp-tel-btn::before{
    content: "";
    display: block;
    width: 28px;
    height: 28px;
    background: url(../images/base-img/phone-w.svg) no-repeat center center/contain;
    margin-right: 5px;
  }
  header .header-top .sp-fixed-bar .sp-contact-btn{
    background-color: var(--mk-blue);
        font-size: clamp(14px,8vw,17px);
  }
}
@media screen and (min-width: 782px) {
  .site-header-nav {
      height: auto; 
      overflow-y: visible;
      -webkit-overflow-scrolling: auto;
  }
}

@media screen and (max-width: 781px) {
  header .header-center {
    display: flex; 
    margin-left: auto; 
    flex-grow: 0; 
    flex-shrink: 0;
    min-width: unset; 
    padding-right: 0; 
    justify-content: flex-end;
    align-items: center;
      
  }
  header .header-center > div {
    display: flex;
    align-items: center;
    justify-content: flex-end; 
    width: auto;
    gap: 0;
    margin-bottom: 0;
  }

.site-header-nav {
    display: block;
    position: fixed;
    width: max(270px, 80vw);
    max-height: calc(100vh - 50px); 
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    right: -85vw;
    top: 50px;
    background-color: #fff;
    z-index: 20;
    transition: all 0.6s;
    backface-visibility: hidden;
  }
  .site-header-nav ul li a{
    font-size: 1rem;
  }
  .site-header-nav > ul {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    font-size: 14px;
    padding-inline: 1rem;
    margin-bottom: 0;
  }
  .site-header-nav > ul > li {
    width: 100%;
    text-align: left;
    /* padding: 0.5rem; */
    position: relative;
  }
  header .site-header-nav ul li:last-child {
    border-bottom: none;
  }
  header .site-header-nav ul li a::before {
    content: none;
  }
  header .site-header-nav ul li::before, header nav ul li:last-child::after {
    content: none;
  }
  header .site-header-nav ul li a {
    display: inline-block;
    padding: 0.5rem;
    width: 100%;
  }
  header .site-header-nav ul li .blank01:after {
    right: 0px;
  }
  header .site-header-nav .menu-item{
    /* background-color: var(--sub-blue); */
    border-bottom: 1px solid var(--main-blue);
  }
 
  header .spmenu {
    display: block;
    z-index: 999;
    position: relative;
    margin-left: 10px; 
  }

  header .drawerbars{
    width: 32px;
    height: 31px;
  }
  header .spmenu::before {
    position: absolute;
    display: block;
    content: "MENU";
    left: 0;
    bottom: -5px;
    font-size: 11px;
    font-weight: bold;
    color: var(--main-blue);
  }
  header .drawerbars span {
    position: absolute;
    display: block;
    top: 0;
    left: 1px;
    width: 32px;
    height: 3px;
    background-color: var(--main-blue);
    transition: all 0.5s;
    border-radius: 3px;
    
  }
  header .drawerbars span:nth-child(2) {
    top: 8px;
  }
  header .drawerbars span:nth-child(3) {
    top: 16px;
  }
  .open .drawerbars span:nth-child(1) {
    transform: translateY(7px) rotate(-35deg);
  }
  .open .drawerbars span:nth-child(2) {
    opacity: 0;
  }
  .open .drawerbars span:nth-child(3) {
    transform: translateY(-9px) rotate(35deg);
  }
  .mask {
    display: block;
    background-color: var(--main-blue);
    position: fixed;
    top: 50px;
    right: -100vw;
    width: 100vw;
    height: 100vh;
    transition: all 0.6s;
    opacity: 0;
    z-index: 10;
  }
  .open .mask {
    display: block;
    right: 0;
    width: 100vw;
    height: 100vh;
    opacity: 0.8;
    cursor: pointer;
    z-index: 1;
  }
  .open body {
    height: 100%;
    overflow: hidden;
  }
  .open header nav {
    right: 0 !important;
  }
  #sp-nav {
    display: none;
  }
}
.scroll-lock {
    overflow: hidden;
    /* iOSで背景が動くのを防ぐために position: fixed; を適用 */
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
}
@media screen and (max-width: 480px){
  .site-header-nav{
    width: 90vw;
    right: -90vw;
  }
}

body.open {
    overflow: hidden; 
    position: fixed;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 100vh;    
}




/* フッター */
/* 戻るボタン */

.page_top_btn{
  background-image: url(../images/base-img/go-top.png);
  background-size: contain;
  background-color: rgba(0, 0, 0, 0);
  box-shadow: none;
  width: 55px;
  height: 55px;
}

footer {
  width: 100%;
}
/*フッターコンタクト*/

footer .footer-contact {
  margin-top: 100px;
  position: relative;
  width: 100%;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-inline: 5%;
}

footer .footer-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-image: linear-gradient(rgba(0, 120, 197, 0.7), rgba(0, 120, 197, 0.7)), url("../images/base-img/footer-contact-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

footer .footer-contact-inner {
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-block: 30px 40px;
  text-align: center;
  margin: clamp(20px, 4vw, 100px);
}

footer .footer-contact-inner h2 {
  font-size: clamp(18px, 4vw, 24px);
  margin-bottom: 2rem;
}

footer .footer-contact-inner > p {
  font-size: clamp(12px, 4vw, 18px);
  margin-bottom: 1rem;
  line-height: 1.8rem;
}

footer .footer-contact-inner > p:last-of-type {
  font-size: 0.9rem;
}

footer .footer-contact-inner > p span {
  display: inline-block;
  background-color: #fff;
  color: var(--main-blue);
  border-radius: 10px;
  height: 35px;
  line-height: 35px;
  padding: 0 0.8rem;
  margin-left: 1rem;
}

footer .footer-contact-btn-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 2rem;
}

footer .footer-contact-btn-wrap .footer-contact-btn {
  border-radius: 10px;
  width: 360px;
  height: 100px;
  position: relative;
}

footer .footer-contact-tel {
  color: var(--mk-blue);
  background-color: #fff;
}

footer .footer-contact-mail {
  color: #fff;
  background-color: var(--mk-blue);
}

footer .footer-contact-btn-wrap .contact-btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
footer .footer-contact-btn-wrap .contact-btn-text p{
  margin-bottom: 0;
}

.footer-contact-tel .contact-btn-text p:first-child {
  font-size: 1rem;
}

.footer-contact-tel .contact-btn-text p:nth-child(2) {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    height: 2rem;
    margin: 0 auto;
    font-family: "Oswald", "Noto Sans JP", sans-serif;
    
}

.footer-contact-tel .contact-btn-text p:nth-child(2)::before {
    display: block; 
    content: "";
    width: 26px;
    height: 26px;
    background-image: url(../images/base-img/phone-mk.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 5px;
    margin-right: 5px;
    flex-shrink: 0;
}

.footer-contact-mail .contact-btn-text p:nth-child(1) {
  display: flex;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0.5rem;
}

.footer-contact-mail .contact-btn-text p:nth-child(1)::before {
  display: inline-block;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url(../images/base-img/mail.svg);
  background-size: contain;
  background-repeat: no-repeat;
  align-items: center;
  margin-right: 5px;
}
/*フッターインスタグラム*/
footer .footer-instagram {
  position: relative;
  width: 100%;
  color: var(--main-blue);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding-inline: 5%;
  background-color: var(--base-color);
}

footer .footer-insta-inner {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding-block: 30px 40px;
  text-align: center;
  margin: clamp(20px, 4vw, 100px);
  text-align: center;
}
footer .footer-instagram h2{
  position: relative;
  justify-content: center;
  font-weight: bold;
  align-items: center;
  display: flex;
}
footer .footer-instagram h2:before{
  display: inline-block;
  align-items: center;
  content: "";
  width: 50px;
  height: 50px;
  background-image: url(../images/base-img/insta-icon.svg);
  margin-right: 10px;
}
footer .footer-insta-inner p{
  width: fit-content;
  margin: 0 auto;
}
/*フッターナビゲーション*/

footer .footer-nav{
  background-color: var(--sub-blue);
}

footer .footer-nav a{
  color: var(--main-blue);
  font-weight: bold;
  /* font-size: 1.1rem; */
  text-decoration: none;
}
footer .footer-nav .footer-nav-inner .footer-nav-sec1 > ul,
footer .footer-nav .footer-nav-inner .footer-nav-sec1 > ul > li,
footer .footer-nav .footer-nav-inner .footer-nav-sec2 > ul,
footer .footer-nav .footer-nav-inner .footer-nav-sec2 > ul > li,
footer .footer-nav .footer-nav-inner .footer-nav-sec3 > ul,
footer .footer-nav .footer-nav-inner .footer-nav-sec3 > ul > li{
  padding-inline: 0;
  margin-bottom: 0;
}
footer .footer-nav .footer-nav-inner .footer-nav-sec1 > ul > li > ul,
footer .footer-nav .footer-nav-inner .footer-nav-sec2 > ul > li > ul,
footer .footer-nav .footer-nav-inner .footer-nav-sec3 > ul > li > ul{
  padding-left: 1rem;
  margin-bottom: 0;
}
.footer-nav-inner{
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 1200px){
  .footer-nav-inner{
    padding-inline: 5%;
    padding-block: 1rem;
  }
}
@media (min-width: 992px) {
    .footer-nav-inner {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .footer-nav-sec1 {
        flex: 2;
        max-width: 50%;
        margin-right: 30px;
    }
    .footer-nav-sec2 {
        flex: 1; /* flex-grow: 1 */
        max-width: 25%;
        margin-right: 30px;
    }
    .footer-nav-sec3 {
        flex: 1;
        max-width: 25%;
    }
}

.footer-nav-sec1 .sub-menu {
    column-count: 2; 
    list-style: none;
    /* column-gap: 20px;  */
}
.footer-nav-sec1 .sub-menu li,
.footer-nav-sec2 .sub-menu li,
.footer-nav-sec3 .sub-menu li {
    padding-left: 0;
    margin-left: 0;
    /* font-size: 0.8rem; */
}
.footer-nav-sec1 .sub-menu li a,
.footer-nav-sec2 .sub-menu li a,
.footer-nav-sec3 .sub-menu li a{
  font-weight: normal;
}
@media (max-width: 781px){
  .footer-nav-sec1 > ul > li > a,
  .footer-nav-sec2 > ul > li > a,
  .footer-nav-sec3 > ul > li > a{
    font-size: 1rem;
    display: block;
    width: 100%;
    padding: 0.2rem 0;
  }
  .footer-nav-sec1 .sub-menu li a,
  .footer-nav-sec2 .sub-menu li a,
  .footer-nav-sec3 .sub-menu li a{
    font-size: 0.9rem;
      display: block;
    width: 100%;
    padding: 0.1rem 0;
  }
  footer .footer-nav .footer-nav-inner .footer-nav-sec1 > ul > li > ul,
  footer .footer-nav .footer-nav-inner .footer-nav-sec2 > ul > li > ul,
  footer .footer-nav .footer-nav-inner .footer-nav-sec3 > ul > li > ul{
    padding-left: 0.5rem;
  }
}

/*フッター下部(会社情報)*/

footer .footer-bottom {
  background-color: var(--white);
  color: var(--mk-blue);
  padding-top: 30px;
}
.footer-bottom p{
  margin-bottom: 0;
}
.footer-bottom .footer-logo {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(20px,4vw,32px);
  gap: 10px;
  align-items: center;
}
.footer-bottom .footer-logo img{
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
}
.footer-bottom .footer-logo div{
  width: 80px;
  flex-shrink: 0;
}
.footer-bottom .footer-logo p {
    white-space: nowrap; 
    margin: 0;
}

.footer-bottom .footer-info {
  text-align: center;
}
.footer-bottom .footer-info a{
  color: var(--mk-blue);
}

.footer-bottom .footer-info .contact-info01 {
  display: flex;
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}

.footer-bottom .footer-info .contact-info02 {
  width: 100%;
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.footer-bottom .footer-info .contact-info02 p {
  white-space: nowrap;
}
/*フッター下部（コピーライト）*/
.footer-copyright {
  text-align: center;
  margin-top: 30px;
  background-color: var(--mk-blue);
  padding-block: 0.5rem;
  color: var(--white);
}

@media screen and (max-width: 900px){
    .footer-copyright {
    margin-top: 0;
    margin-bottom: 50px;
    background-color: var(--white);
    color: var(--mk-blue);
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 781px) {
  footer {
    width: 100%;
  }
  footer .footer-contact-btn-wrap {
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  footer .footer-contact-btn-wrap a{
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }
  footer .footer-contact-btn-wrap .footer-contact-btn{
    width: 280px;
  }

  footer .footer-top ul li:not(:first-child) {
    padding-left: 0;
  }
  .footer-bottom .footer-info .contact-info01 {
    flex-direction: column;
  }
  .footer-bottom .footer-logo div{
    width: 50px;
    flex-shrink: 0;
  }
  .page_top_btn{
    bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .footer-bottom .footer-info .contact-info02 {
    flex-direction: column;
    margin-top: 15px;
  }
}
/* 下層ページ共通 */
main {
  margin-top: 80px;
}

.container{
  padding: 0!important;
}
.main-inner {
  width: min(100%, 1200px + 4%);
  margin-inline: auto;
  padding-inline: 5%;
}

@media screen and (max-width: 781px) {
  main {
    margin-top: 60px;
  }
  .main-inner {
    margin-top: 30px;
  }
}


/* 共通見出しパーツ */

.common-heading01 {
  font-size: clamp(21px,4vw,26px);
  position: relative;
  padding: 0 10px 10px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 60px;
  width: -moz-fit-content;
  width: fit-content;
}

.common-heading01:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  bottom: 0;
  left: 0;
  background-color: var(--main-blue);
  border-radius: 3px;
}

.common-heading02 {
  text-align: center;
  margin-bottom: 50px;
  font-size: clamp(20px,4vw,24px);
  font-weight: bold;
  color: var(--mk-blue);
  border-top: none;
  border-bottom: none;
}


.common-heading02 .sub-heading-en {
  display: block;
  font-size: 14px;
  font-weight: normal;
  color: var(--mk-blue);
  padding-top: 10px;
  border-top: 3px solid var(--mk-blue);
  margin-top: 10px;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.product-heading01 {
  font-size: clamp(18px,4vw,24px);
  font-weight: bold;
  background-color: var(--sub-blue);
  border-left: 8px solid var(--mk-blue);
  padding: 0.4rem 0 0.4rem 10px;
  margin-top: clamp(60px,8vw,120px);
  margin-bottom: clamp(15px,8vw,30px);
  border-top: none;
  border-bottom: none;
}

.product-heading02 {
  padding-right: 20px;
  padding-bottom: 2px;
  margin-bottom: 0!important;
  /* margin-bottom: 10px; */
  font-size: clamp(15px, 3vw, 20px);
  font-weight: bold;
  border-bottom: 1.5px solid var(--main-blue)!important;
  background-color: none;
  color: var(--main-blue);
}

.product-heading03 {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  padding-left: 15px;
  margin-bottom: 15px;
}

.product-heading03:after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: var(--main-blue);
  margin-left: 10px;
}

.line-style {
  padding-bottom: 150px;
}

.line-style:after {
  position: relative;
  display: block;
  content: "";
  width: 550px;
  padding-bottom: 150px;
  border-bottom: 1px dashed var(--mk-blue);
  left: 50%;
  transform: translateX(-50%);
}

.common-btn {
  /* display: inline-block; */
  display: block;
  width: 100%;
  border: 2px solid var(--main-blue);
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 5px 4rem;
  border-radius: 10px;
  color: var(--main-blue);
  font-weight: bold;
  transition: all 0.4s;
  background-color: #fff;
  text-decoration: none;
  margin: auto;
}

.common-btn:hover {
  transition: all 0.4s;
  background-color: var(--main-blue);
  color: #fff;
}

.contact-recruit-btn{
  display: inline-block;
  width: fit-content;
  padding: 0 1rem;
  border: 1px solid var(--main-blue);
  text-decoration: none;
  color: var(--main-blue);
  background-color: var(--white);
  border-radius: 5px;
}
@media (max-width: 781px){
  .line-style{
    padding-bottom: 50px;
  }
  .line-style:after{
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 600px) {
  .common-heading01 {
    padding-left: 13px;
    margin-bottom: 35px;
  }
  .common-heading01::before {
    width: 3px;
    height: 22px;
  }
  .line-style:after {
    max-width: 200px;
  }
}



/* 下からフェードインCSS */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}


.mb40{
  margin-bottom: clamp(20px,4vw,40px);
}
.mb80{
  margin-bottom: clamp(20px,4vw,80px);
}

.has-text-align-center {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
body :is(.is-layout-flow, .is-layout-constrained) > :is(h1, h2, h3, h4, h5, h6) {
    margin-block-end: 0 !important; 
}

