@charset "UTF-8";
@import url(default.css);
@import url(component.css);

/*---------------------------------------------------------
全ページ共通スタイル

メモ

・フォントサイズ
pc -> sp
110 -> 
86 -> 
84 -> 
60 -> 40

55 -> 32 
      54 -> 20
52 -> 30
48 -> 25

38 -> 24

32 -> 20
30 -> 20
28 -> 
24 -> 18
22 -> 17
20 -> 16
18 -> 16
16 -> 14
14 -> 12

・マージン


ヘッダー
z-index: 100;

        padding-top: 7rem;
        padding-bottom: 7rem;



---------------------------------------------------------*/

:root {
  /* カラー */
  --color-black: #00264B;
  --color-gray: #f6f8fa;
  --color-gray2: #E5E9ED;
  --color-blue: #F6F8FA;
  --color-blue2: #036EB8;
  --color-blue3: #073664;
  --color-blue4: #EAF3FA;
  

/* -------  */
  --color-brown: #C67317;
  --color-khaki: #B4945C;
  --color-green: #83B058;
  --color-black2: #0C2A57;
  --color-red: #EE6552;
  --color-purple: #5931C2;
  --color-beige: #f2f1ed;
  --color-beige2: #E9E8E3;
  --color-border: #DCDBDA;
  --gradation-blue: linear-gradient(180deg, rgba(12, 42, 87, 0.1) 40%, rgba(12, 42, 87, 0) 100%);




  /* 角丸 */
  --radius-s: 3px;
  --radius-m: 10px;
  --radius-l: 40px;

  /* フォントウェイト */
  --font-normal: 300;
  --font-bold: 400;

  /* 再生時間 */
  --duration-main: 0.4s;

  /* 行間 */
  --line-height-min: 1.2;
  --line-height-sub: 1.7;
  --line-height-main: 2;


  /* 文字間 */
  --letter-spacing-main: 0.02em;
  --letter-spacing-sub: 0em;


  /* イージング */
  --easing-opacity: cubic-bezier(0.26, 0.06, 0, 1);
  --easing-color: cubic-bezier(0.18, 0.06, 0.23, 1);
  --easing-transform: cubic-bezier(0.43, 0.05, 0.17, 1);

  /* フォント */
  --font-family-main: "Noto Sans JP", sans-serif;
  --font-family-en: "Be Vietnam Pro", sans-serif;

  /* opacity */
  --opacity-font: 0.6;
}

/* sp */
@media only screen and (max-width: 767px) {

  :root{
    --radius-s: .2rem;
    --radius-m: .5rem;
    --radius-l: 2rem;  
  }

}

/*　フォントサイズ
---------------------------------------------------------*/


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

  html{
    font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
    text-size-adjust: 100%;
    
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
  }
  html{
    font-size: 2.6666666667vw; /* = (10 / 375) * 100) SPデザインが375の場合 */
  }

}


/* 要素設定 */
body {
  font-family: var(--font-family-main);
  font-weight: var(--font-normal);
  color: var(--color-black);
  line-height: var(--line-height-main);
  font-size: 16px;
  letter-spacing: var(--letter-spacing-main);
  background: #fff;
  background-color: var(--color-gray);
}



button,
select,
textarea,
input{
  font-family: var(--font-family-main);
  font-weight: var(--font-normal);
  color: var(--color-black);
  font-size: var(--f16);
}

a{
  color: var(--color-black);
}

.c-ttl,
h1,h2,h3,h4,h5,h6{
  font-weight: var(--font-bold);
  line-height: var(--line-height-min);
  letter-spacing: var(--letter-spacing-main);
}

.c-font-en{
  font-family: var(--font-family-en);
  letter-spacing: 0;
}

button,
a {
  text-decoration:none;
  transition: opacity var(--duration-main) var(--easing-opacity), 
              color var(--duration-main) var(--easing-color),
              background-color var(--duration-main) var(--easing-color),
              border-color var(--duration-main) var(--easing-color),
              box-shadow var(--duration-main) var(--easing-opacity);
}

/*
アイコンリスト
https://fonts.google.com/icons
*/

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* sp */
@media only screen and (max-width: 767px) {
  body {
      font-size: 1.6rem;
  }
}



/*　ヘッダー
---------------------------------------------------------*/

.l-head{
  --head-h: 90px;
  height: var(--head-h);
}
.l-head_main_inner{
  height: var(--head-h);
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items:center;
  justify-content:space-between;
  background: #fff;
}
.l-head_logo{
    margin-left: 32px;
}
.l-head_logo a{
  display: block;
}
.l-head_side{
    margin-right: 43px;
}
.l-head_navi1{
  display: flex;
  align-items:center;
  justify-content:flex-end;
}
.l-head_navi1_box{
  display: flex;
  align-items:center;
  line-height: 1;
  margin-right: 14px;
  padding-right: 14px;
  gap: 0 26px;
  border-right: 1px solid var(--color-gray2);
  font-weight: var(--font-bold);
  position: relative;
  z-index: 1;
}
.l-head_navi1_box a{
  display: flex;
  align-items:center;
  font-size: 13px;
  gap: 0 9px;
}
.l-head_navi1_box a:before{
  content: "";
  z-index: 1;
  position: relative;
  
  background: 50% 50% no-repeat;
  background-size: contain;
}
.l-head_navi1_box .l-head_navi1_1:before{
  background-image: url(../img/common/icon1.svg);
  width: 12px;
  height: 16px;
}
.l-head_navi1_box .l-head_navi1_2:before{
  background-image: url(../img/common/icon2.svg);
  width: 13px;
  height: 17px;
}
.l-head_navi1_box .l-head_navi1_3:before{
  background-image: url(../img/common/icon3.svg);
  width: 17px;
  height: 16px;
}


.l-head_navi1_insta{
    line-height: 0;
}
.l-head_navi1_btn{
  font-size: 12px;
  padding: 1px 12px;
  border: 1px solid var(--color-gray2);
  border-radius: 100px;
  margin-left: 16px;
  font-weight: var(--font-bold);
}

.l-head_navi1_search{
    position: absolute;
    z-index: 5;
    top: -6px;
    right: 15px;
    left: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-gray2);
    
    visibility: hidden;
    transition: transform .2s, opacity .2s, visibility 0s .2s;
    opacity: 0;
}
.l-head_navi1_search.on{
    visibility: visible;
    transition: transform .4s, opacity .4s;
    opacity: 1;

}
.l-head_navi1_input{
    border: none;
    width: 100%;
    padding-left: 30px;
    height: 30px;
}
.l-head_navi1_ken{
    position: absolute;
    z-index: 5;
    top: 1px;
    /* bottom: 0; */
    left: 0;
    margin: auto;
    /* height: 27px; */
    line-height: 0;
    font-size: 0;
    padding: 7px 6px;
}
.l-head_navi1_close{
    position: absolute;
    z-index: 1;
    right: -5px;
    top: 0px;
    line-height: 0;
    padding: 11px 11px;
}


.l-head_navi2{
  display: flex;
  align-items:center;
  justify-content:flex-end;
  padding-right: 10px;
  gap: 0 29px;
  margin-top: 2px;
}
.l-head_navi2_box{}
.l-head_navi2_box.-hover{
  position: relative;
  z-index: 1;
}
.l-head_navi2_box.-hover:before{
  content: "";
  z-index: 1;
  position: absolute;
  top:0;
  bottom: -15px;
  right:0;
  left: 0;
}

.l-head_navi2_link1{
  font-size: 16px;
  font-weight: var(--font-bold);
}
.l-head_navi2_box.-hover .l-head_navi2_link1{
    padding-right: 23px;
    position: relative;
    z-index: 5;
}
.l-head_navi2_box.-hover .l-head_navi2_link1:before{
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 4px;
  width: 7px;
  height: 7px;
  margin: auto;
  border-top: 1.5px solid #4AB6FF;
  border-right: 1.5px solid #4AB6FF;
  transform: rotate(135deg);
}

.l-head_main{
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  pointer-events: none;
}


.l-head_mega{
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: var(--head-h);
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
  pointer-events: none;
}
.l-head_navi2_box.-hover:hover .l-head_mega{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;
}

.l-head_mega_box{
  background: #fff;
  padding: 0 3.3%;
  border-radius: 0 0 30px 30px;
  pointer-events: auto;
}
.l-head_mega_inner{
  display: flex;
  align-items:flex-start;
  max-width: 1345px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}
.l-head_mega_head{width: 36%;padding-top: 44px;}
.l-head_mega_ttl{
  font-size: 42px;
  line-height: 1;
  margin-bottom: 25px;
}
.l-head_mega_btn{}
.l-head_mega_list{
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding-top: 50px;
  gap: 0 4%;
}
.l-head_mega_list a{
    font-size: 14px;
    line-height: 1.4;
    display: flex;
    align-items:center;
    border-bottom: 1px solid var(--color-gray2);
    position: relative;
    z-index: 1;
    padding: 7px 0;
    min-height: 68px;
    font-weight: var(--font-bold);
}

.l-head_mega_list a:nth-child(1),
.l-head_mega_list a:nth-child(2),
.l-head_mega_list a:nth-child(3){
    border-top: 1px solid var(--color-gray2);
}

.l-head_mega_list .c-arrow{
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}


  .l-head_menu{
    display: none;
    position: absolute;
    z-index: 5;
    top: 0;
    bottom: 0;
    right: 25px;
    margin: auto;
    width: 50px;
    height: 50px;
    /* background: #6d6d6d; */
    overflow: hidden;
    text-indent: -999px;
    transition: opacity var(--duration-main) var(--easing-opacity);
  }

.l-head_menu:after,
.l-head_menu:before,
.l-head_menu span:before {
    content: "";
    z-index: 2;
    position: absolute;
    background: var(--color-blue2);
    width: 35px;
    height: 2px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    /* display: block; */
    /* border-radius: 10px; */
    margin: auto;
    transition: background  var(--duration-main) var(--easing-color), top  var(--duration-main) var(--easing-transform), bottom  var(--duration-main) var(--easing-transform), transform  var(--duration-main) var(--easing-transform);
    transition-delay:  0s,  var(--duration-main),  var(--duration-main), 0s;
    overflow: hidden;
    text-decoration: -999px;
}

.l-head_menu:before {
    bottom: 10px;
}
.l-head_menu:after {
    top: 10px;
    width: 20px;
    right: 15px;
}

.l-head_menu span:before {
    transition: opacity 1ms ease;
    transition-delay: var(--duration-main);
    opacity: 1;
    z-index: 1;
}



.l-head_menu.on:after, .l-head_menu.on:before {
    transition: right var(--duration-main) var(--easing-transform), width var(--duration-main) var(--easing-transform), background var(--duration-main) var(--easing-color), top var(--duration-main) var(--easing-transform), bottom var(--duration-main) var(--easing-transform), transform var(--duration-main) var(--easing-transform);
    transition-delay: 0s, 0s, 0s, 0s, 0s, var(--duration-main);
}
.l-head_menu.on:before {
    bottom: 0px;
    transform: rotate(-45deg);
    /* background: var(--color-blue); */
}
.l-head_menu.on:after {
    top: 0px;
    transform: rotate(45deg);
    /* background: var(--color-blue); */
    width: 35px;
    right: 0;
}
.l-head_menu.on span:before {
  opacity: 0;
}






.l-popup{
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  top: var(--head-h);
  bottom: 0;
  background: #fff;
  visibility: hidden;
  transition: transform .2s, opacity .2s, visibility 0s .2s;
  opacity: 0;
  padding: 20px 5%;
  overflow-y: auto;
}
.l-popup.on{
  visibility: visible;
  transition: transform .4s, opacity .4s;
  opacity: 1;
}

.l-popup_search{
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}
.l-popup_input{
  border: var(--color-gray2) solid 1px;
  line-height: 50px;
  height: 50px;
  border-radius: 200px;
  width: 100%;
  padding: 0 30px 0 50px;
}
.l-popup_ken{
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 22px;
    padding: 0;
    width: 20px;
}

.l-popup_ken img{
  width: 100%;
}

.l-popup_btn{
    margin-top: 45px;
}
.l-popup_btn a{
    padding: 1px 12px;
    border: 1px solid var(--color-gray2);
    border-radius: 100px;
    padding: 13px 34px;
    display: inline-block;
}
.l-popup_link{
    display: flex;
    gap: 0 20px;
    margin-top: 35px;
    font-size: 14px;
}
.l-popup_sns{
    margin-top: 27px;
}
.l-popup_copy{
    font-size: 11px;
    text-align: center;
    border-top: var(--color-gray2) solid 1px;
    margin-top: 30px;
    padding: 20px 0;
}

.l-sideNavi{
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 114px;
  background: var(--color-black);
  overflow: hidden;
  border-radius: 15px 0 0 15px;
}
.l-sideNavi a{
  color: #fff;
  padding: 18px 15px;
  display: block;
  position: relative;
  z-index: 1;
}
.l-sideNavi a:first-child:before{
  content: "";
  z-index: 1;
  position: absolute;
  
  background: rgba(255, 255, 255, 0.3);
  width: 20px;
  height: 1px;

  bottom: 0;
  right:0;
  left: 0;
  margin: auto;

}

.l-sideNavi span{
   display: block;
   font-weight: 500;
   font-size: 14px;
   line-height: 1.1;
}




/* sp */
@media only screen and (max-width: 1180px) {
  .l-head_logo{
      width: 240px;
  }

}

/* sp */
@media only screen and (max-width: 1080px) {
  .l-head_side{
    display: none;
  }
  .l-head_menu{
    display: block;
  }
  .l-popup{
    display: block;
  }

}


/* hover  */
@media (hover: hover) and (pointer: fine) {  
}



@media only screen and (min-width: 768px) {
  .l-sideNavi span{
     writing-mode: vertical-rl;
  }
}


/* sp */
@media only screen and (max-width: 767px) {
  .l-head{
    --head-h: 6rem;

  }

  .l-head_logo{
    width: 24.3rem;
    margin-left: 2rem;
  }
  .l-head_menu{
    width: 4rem;
    height: 4rem;
    right: 1rem;
}
  .l-head_menu:after,
  .l-head_menu:before,
  .l-head_menu span:before {
    width: 2.5rem;
}
  .l-head_menu:before {
    bottom: .9rem;
}
  .l-head_menu:after {
    right: 1rem;
    width: 1.5rem;
    top: .9rem;
}
  .l-head_menu span:before {}
  .l-head_menu.on:after, .l-head_menu.on:before {}
  .l-head_menu.on:before {}
  .l-head_menu.on:after {
    width: 2.5rem;
}
  .l-head_menu.on span:before {}
  .l-popup{
    padding: 2rem 5%;
}
  .l-popup.on{}
  .l-popup_search{
    margin-bottom: 2rem;
}
  .l-popup_input{
    line-height: 4rem;
    height: 4rem;
    padding: 0 2rem 0 4.8rem;
}
  .l-popup_ken{
    top: 1rem;
    left: 2rem;
    width: 2rem;
}
  .l-popup_ken img{}


  .l-popup_btn{
    margin-top: 3.3rem;
}
  .l-popup_btn a{
    font-size: 1.2rem;
    padding: 1.2rem 0;
    display: block;
    text-align: center;
}
  .l-popup_link{
    font-size: 1.4rem;
    display: grid;
    gap: 0 2rem;
    margin-top: 3rem;
}
  .l-popup_sns{
    margin: 1rem -1rem 0;
}
  .l-popup_copy{
    margin-top: 2rem;
    padding: 1.3rem 0;
    text-align: left;
    line-height: 1.4;
    font-size: 1.1rem;
}

  .l-sideNavi{
      background: #FFFFFF;
      box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.07);
      border-radius: 60px;
      left: 11%;
      right: 11%;
      bottom: 5%;
      display: flex;
  }
  .l-sideNavi a{
      color: var(--color-black);
      flex: 1;
      text-align: center;
      font-size: 1.4rem;
      padding: 1.6rem 15px;
  }
  .l-sideNavi a:first-child:before{
    width: 1px;
    height: auto;
    right: 0;
    left: auto;
    top: 0;
    border: 0;
    background: var(--color-gray2);
    height: 3rem;
}
  .l-sideNavi span{
    font-size: 1.4rem;
}



}


/*　ファーストビュー
---------------------------------------------------------*/



/* sp */
@media only screen and (max-width: 767px){
}

/*　パンくず
---------------------------------------------------------*/

.l-breadcrumb{
    display: flex;
    /* justify-content:flex-end; */
    margin-top: 14px;
    margin-bottom: 29px;
    margin-left: 2.5%;
    margin-right: 2.5%;
    flex-wrap: wrap;
    position: relative;
    z-index: 5;
}
.l-breadcrumb li{
    font-size: 11px;
    position: relative;
    z-index: 1;
    /* white-space: nowrap; */
    line-height: 1.5;
}

.l-breadcrumb li:before {
  content: "";
  z-index: 1;
  position: absolute;
  width: 7px;
  height: 1px;
  top: 9px;
  left: -15px;
  background: #003F6C;
  opacity: 0.5;
}
.l-breadcrumb li:first-child:before{
  display: none;
}


.l-breadcrumb li + li {
    margin: 0 0 0 23px;
}
.l-breadcrumb a{
font-weight: 400;
}
.l-breadcrumb span{
  color: #003F6C;
  opacity: 0.5;
  font-weight: 400;  
}


/* hover */

@media (hover: hover) and (pointer: fine) {

}

/* sp */
@media only screen and (max-width: 767px) {
  .l-breadcrumb{
    font-size: 1.1rem;
    margin-left: 5%;
    margin-right: 5%;
}
  .l-breadcrumb li{}
  .l-breadcrumb li:before {}
  .l-breadcrumb li:first-child:before{}
  .l-breadcrumb li + li {}
  .l-breadcrumb a{}
  .l-breadcrumb span{}


}



/*　コンテンツ幅
---------------------------------------------------------*/

.l-width{
  padding: 0 5%;
}
.l-width2{
    max-width: 1440px;
    margin: 0 auto;
}
.l-inner1{
    max-width: 1180px;
    margin: 0 auto;
}
.l-inner2{
    max-width: 121.5rem;
    margin: 0 auto;
}
.l-inner3{
    max-width: 100rem;
    margin: 0 auto;
}

/* sp */
@media only screen and (max-width: 767px) {
}


/*　コンテンツ
---------------------------------------------------------*/

.l-content{}
.l-content_inner{
    padding-bottom: 1.2rem;
    padding-top: 1.23rem;
}


/* sp */
@media only screen and (max-width: 767px) {

}

/*　コンテンツ
---------------------------------------------------------*/

.l-editor{}
.l-editor_inner{
    padding-top: 100px;
    padding-bottom: 100px;
}


/* sp */
@media only screen and (max-width: 767px) {
  .l-editor{}
  .l-editor_inner{
      padding-top: 7rem;
      padding-bottom: 7rem;
  }
}



/*　下層メインビジュアル
---------------------------------------------------------*/



.l-mainv_type1{
  background: url(../img/common/mainv_type1.png) 0 0 no-repeat;
  background-size: 100% auto;
}

.l-mainv{
}

.l-mainv_head{
    position: relative;
    z-index: 1;
}
.l-mainv_head_inner{
    padding-top: 175px;
    padding-bottom: 82px;
    position: relative;
    z-index: 5;
}
.l-mainv_ttl{
    line-height: 1;
    display: grid;
    gap: 23px 0;
    position: relative;
    z-index: 1;
}
.l-mainv_ttl:before {
    content: "";
    z-index: 1;
    position: absolute;
    background: url(../img/common/icon_ttl1.svg) 0 0 no-repeat;
    background-size: contain;
    width: 37px;
    height: 20px;
    top: -23px;
    left: -29px;
}
.l-mainv_ttl_name{
  font-size: 60px;
}
.l-mainv_ttl_en{
  font-size: 14px;
    text-transform: uppercase;  
}
.l-mainv_mes{
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.05em;
  margin-top: 35px;
  }

.l-mainv_type3 .l-mainv_head_inner,
.l-mainv_type2 .l-mainv_head_inner{
    padding-top: 83px;
    padding-bottom: 78px;
}
.l-mainv_type3 .l-mainv_ttl_name,
.l-mainv_type2 .l-mainv_ttl_name{
  font-size: 55px;  
}
.l-mainv_type2 .l-mainv_head:before{
  content: "";
  z-index: 1;
  position: absolute;
  top: -167px;
  bottom: 0;
  right:0;
  left: 0;
  border-radius: 0 0 70px 70px;
  background: url(../img/common/mainv_slide_bg.png) 50% 50% no-repeat;
  background-size: cover;
}


.l-mainv_img{}
.l-mainv_img_main{
    aspect-ratio: 1000 / 444;
    margin-right: 6%;
    border-radius: 0 70px 70px 0;
    overflow: hidden;
}

.l-mainv_slide{
  background: url(../img/common/mainv_slide_bg.png) 50% 50% no-repeat;
  background-size: cover;
  overflow: hidden;
}
.l-mainv_slide_inner{
  position: relative;
  z-index: 1;
  max-width: 51.32%;
  margin: 0 auto;
  padding-top: 7.5vw;
  padding-bottom: 7.5vw;
}
.l-mainv_slide_btn{
}
.l-mainv_slide-prev{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: -6.2vw;
    transform: translate(0px, -50%) scale(-1.3, 1.3);
    cursor: pointer;
}
.l-mainv_slide-next{
    position: absolute;
    z-index: 10;
    top: 50%;
    right: -6.2vw;
    transform: translate(0px, -50%) scale(1.3);
    cursor: pointer;
}
.l-mainv_slide_main{}
.l-mainv_slide_list{}
.l-mainv_slide_list li{}
.l-mainv_slide_list a{
    aspect-ratio: 540 / 339;
    display: block;
    width: 81.2%;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    transition: transform var(--duration-main) var(--easing-transform);
}
.l-mainv_slide_list .swiper-slide-active a{
    transform: scale(1.26);
}



/* sp */
@media only screen and (max-width: 767px) {

  .l-mainv_type1{
    background-position: 0 0;
}
  .l-mainv{}
  .l-mainv_head{}
  .l-mainv_head_inner{
    padding-top: 8rem;
    padding-bottom: 7rem;
}
  .l-mainv_ttl{
    gap: 1.4rem 0;
}
  .l-mainv_ttl:before {
    width: 3.5rem;
    height: 1.6rem;
    top: -3.3rem;
    left: 0rem;
}
  .l-mainv_ttl_name{
    font-size: 4rem;
}
  .l-mainv_ttl_en{
    font-size: 1.2rem;
}
  .l-mainv_mes{
    font-size: 1.6rem;
    margin-top: 2rem;
}
  .l-mainv_type3 .l-mainv_head_inner,
  .l-mainv_type2 .l-mainv_head_inner{
    padding-top: 6rem;
    padding-bottom: 6rem;
}
  .l-mainv_type3 .l-mainv_ttl_name,
  .l-mainv_type2 .l-mainv_ttl_name{
    font-size: 3.2rem;
}
  .l-mainv_type2 .l-mainv_head:before{
    border-radius: 0 0 4rem 4rem;
}
  .l-mainv_img{}
  .l-mainv_img_main{
    margin-right: 0;
    border-radius: 0;
    aspect-ratio: 100 / 64;
}
  .l-mainv_slide{}
  .l-mainv_slide_inner{
    max-width: 90.32%;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
  .l-mainv_slide_btn{}
  .l-mainv_slide-prev{
    transform: translate(0px, -50%) scale(-1, 1);
}
  .l-mainv_slide-next{
    transform: translate(0px, -50%) scale(1);
}
  .l-mainv_slide_main{}
  .l-mainv_slide_list{}
  .l-mainv_slide_list li{}
  .l-mainv_slide_list a{}
  .l-mainv_slide_list .swiper-slide-active a{}
  
}


/*　フッターMV
---------------------------------------------------------*/

.l-foot_mv{}
.l-foot_mv_img{}

/* sp */
@media only screen and (max-width: 767px) {

  .l-foot_mv{
    overflow: hidden;
}
  .l-foot_mv_img{
    margin: 0 -4rem;
}
}




/*　サイドナビ
---------------------------------------------------------*/

/* sp */
@media only screen and (max-width: 767px) {
}


/*　フッター
---------------------------------------------------------*/

.l-foot{}
.l-foot1{
  background: var(--color-blue);
} 
.l-foot1_inner{
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 81px;
  padding-bottom: 75px;
  display: flex;
  gap: 0 30px;
}

.l-foot1_head{
    width: 25%;
}
.l-foot1_ttl{
  font-size: 24px;
  color: var(--color-blue2);
  margin-bottom: -2px;
  margin-bottom: 14px;
  font-weight: var(--font-normal);
}
.l-foot1_mes{
    font-size: 14px;
}
.l-foot1_main{
  flex: 1;
}
.l-foot1_links{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px 5%;
}
.l-foot1_link{}

.-hoverーーー{}
.l-foot1_link_ttl{
    padding: 8px 0;
  position: relative;
  z-index: 1;
}
.l-foot1_link_ttl a{
  display: block;
  position: relative;
  z-index: 1;
}
.l-foot1_link_ttl:before{
  content: "";
  z-index: 1;
  position: absolute;

  opacity: 0.1;
  background: var(--color-black);
  height: 1px;

  bottom: 0;
  right:0;
  left: 0;
}
.l-foot1_link_ttl .c-arrow{
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.l-foot1_link_ttl .c-plus{
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  right: -9px;
  margin: auto;
}


.l-foot1_link_list{
  display: none;
  padding: 14px 0 0;
}
.l-foot1_link_list li{
    font-size: 14px;
}
.l-foot1_link_list li + li{
  margin-top: 4px;
}
.l-foot1_link_list a{}
.l-foot1_links2{
    font-size: 14px;
    margin-top: 34px;
    display: flex;
    gap: 0 47px;
}

.l-foot2{
  background: var(--color-black);
  color: #fff;
  padding-top: 60px;
  padding-bottom: 50px;
}

.l-foot2 a{
  color: #fff;
}
.l-foot2_inner{
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.l-foot2_logo{
    margin-bottom: 33px;
}
.l-foot2_logo a{
  display: block;
}
.l-foot2_addr{
  font-size: 14px;
  line-height: 1.6;
}
.l-foot2_addr_zip{}
.l-foot2_addr_no{
    display: flex;
    gap: 0 8px;
}
.l-foot2_addr_email{}
.l-foot2_links{
  font-size: 14px;
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 34px;
  padding-right: 180px;
}
.l-foot2_links a{
    padding-right: 45px;
    position: relative;
    z-index: 1;
}
.l-foot2_links a:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: url(../img/common/foot_blank.svg) 50% 50% no-repeat;
  width: 28px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 100px;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
}


.l-foot2_side{}
.l-foot2_pagetop{
  font-size: 14px;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 17px;
  padding-right: 63px;
}

.l-foot2_pagetop:before{
  content: "";
  z-index: 1;
  position: absolute;
  background: var(--color-blue3) url(../img/common/pagetop.svg) 50% 50% no-repeat;
  width: 38px;
  height: 58px;
  border-radius: 100px;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;

}

.l-foot2_sns{
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0 14px;
}
.l-foot2_sns a{
  width: 45px;
}
.l-foot2_sns a img{
  width: 100%;
}
.l-foot_copy{
    background: var(--color-black);
    color: #fff;
    text-align: center;
    font-size: 11px;
    border-top: 1px solid rgba(255,255,255, 0.3);
    padding: 28px 0;
}

@media only screen and (max-width: 950px) {
    .l-foot1_inner{
        display: grid;
    }
    .l-foot1_head{
    width: auto;
    margin-bottom: 20px;
}
    .gaido_btn {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
}


/* hover  */
@media (hover: hover) and (pointer: fine) {
}

/* sp */
@media only screen and (max-width: 767px) {
  .l-foot{}
  .l-foot1{} 
  .l-foot1_inner{
    padding-top: 6rem;
    padding-bottom: 7.4rem;
}
  .l-foot1_head{
    margin-bottom: 0.6rem;
}
  .l-foot1_ttl{
    font-size: 2rem;
    margin-bottom: .5rem;
}
  .l-foot1_mes{
    font-size: 1.4rem;
}
  .l-foot1_main{}
  .l-foot1_links{
    grid-template-columns: 1fr;
    gap: 0;
}
  .l-foot1_link{}
  .-hoverーーー{}
  .l-foot1_link_ttl{
    font-size: 1.6rem;
    padding: 1.5rem 0;
}
  .l-foot1_link_ttl a{}
  .l-foot1_link_ttl:before{}
  .l-foot1_link_ttl .c-arrow{}
  .l-foot1_link_ttl .c-plus{
    right: -1rem;
}
  .l-foot1_link_list{
    padding: 1.6rem 0 0.6rem;
}
  .l-foot1_link_list li{
    font-size: 1.4rem;
}
  .l-foot1_link_list li + li{
    margin-top: 0.9rem;
}
  .l-foot1_link_list a{}
  .l-foot1_links2{
    font-size: 1.4rem;
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
}
  .l-foot2{
    padding-top: 4.4rem;
    padding-bottom: 3rem;
}
  .l-foot2 a{}
  .l-foot2_inner{
}
  .l-foot2_logo{
    width: 92%;
    margin-bottom: 3.2rem;
}
  .l-foot2_logo a{}
  .l-foot2_addr{
    font-size: 1.4rem;
    line-height: 1.9;
}
  .l-foot2_addr_zip{}
  .l-foot2_addr_no{
    display: grid;
}
  .l-foot2_addr_email{}
  .l-foot2_links{
    font-size: 1.4rem;
    margin-top: 4.2rem;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem 0;
}
  .l-foot2_links a{
    padding-right: 4.5rem;
}
  .l-foot2_links a:before{
    width: 2.8rem;
    height: 1.6rem;
    background-size: .7rem .7rem;
}
  .l-foot2_side{
    display: flex;
    align-items:center;
    justify-content:space-between;
    margin-top: 5rem;
  }
  .l-foot2_pagetop{
    position: relative;
    top: 0;
    font-size: 1.4rem;
    padding-right: 6rem;
}
  .l-foot2_pagetop:before{
    width: 3.8rem;
    height: 5.8rem;
    border-radius: 10rem;
    right: 0;
    background-size: 1.2rem 1.3rem;
}
  .l-foot2_sns{
    position: static;
    gap: 0 1.4rem;
}
  .l-foot2_sns a{
    width: 4.5rem;
}
  .l-foot_copy{
    padding: 2.4rem 5% 12rem;
    line-height: 1.4;
    font-size: 1.1rem;
    text-align: left;
}
}


/*---------------------------------------------------------
  表示非表示
---------------------------------------------------------*/

html body .sp-block,html body .sp-inline,html body .sp-inlineB,html body .sp-flex{
  display: none;
}

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

  html body .sp-none{
    display: none;
  }
  html body .sp-block{
    display: block;
  }  
  html body .sp-flex {
    display: flex;
  }  
  html body .sp-inline {
    display: inline;
  }
  html body .sp-inlineB {
    display: inline-block;
  }  
  html body .sp-brNone br{
    display: none;
  }


}

/*---------------------------------------------------------
  印刷設定
---------------------------------------------------------*/

@media print{

	:root {
		--font-family-main: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
		--font-family-en: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	}
  html{
    font-size: 60%;
  }

	body{
		width:1100px;
    font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	}


}




