@charset "UTF-8";
/* CSS Document */
/**************************************************
* ヘッダー ※変更不可
***************************************************/ 
:root {
  --content-padding-top:50px;
  --header-height: 50px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height, 50px) + 30px);
}
@media screen and (min-width: 600px) {
  :root {
    --content-padding-top:70px;
    --header-height: 70px;
    scroll-padding-top: calc(var(--header-height, 70px) + 35px);
  }
}
@media screen and (min-width: 1024px) {
  :root {
    --content-padding-top:60px;
    --header-height: 60px;
    scroll-padding-top: calc(var(--header-height, 60px) + 30px);
  }
} /*=== PCここまで ====*/


/*------------------------------
ヘッダー、Gナビ共通 ※変更不可
------------------------------*/
.l-header {
  width: 100%;
  height: var(--header-height);
  background-color: var(--color--transparent-wh9);
  position: fixed;
  display: flex;
  align-items: center;
  z-index: 10000;
}
.l-header-inner {
  display: block;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.l-header-left{
  display: flex;
  justify-content: space-between;
}

.l-header-logo {
  width: 100%;
  max-width: 130px;
  margin-left: 10px;
  display: flex;
}
.l-header-contents-box {
  display: flex;
  align-items: center;
}



/* fade-styles.css */
.l-hamburger-fade {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 14px;
  z-index: 1000;
  width: 40px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.l-hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 0 auto;
}

/* 三本線 */
.l-hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color--key);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-hamburger-fade__line:nth-child(1) { top: 0; }
.l-hamburger-fade__line:nth-child(2) { top: 9px; }
.l-hamburger-fade__line:nth-child(3) { top: 18px; }

.l-hamburger-fade.active .l-hamburger-fade__line {
  background-color: var(--color--wh);
}

.l-hamburger-fade.active .l-hamburger-fade__line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.l-hamburger-fade.active .l-hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.l-hamburger-fade.active .l-hamburger-fade__line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}







.l-nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.l-nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color--key);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-nav-fade.active {
  visibility: visible;
}

.l-nav-fade.active .l-nav-fade__bg {
  opacity: 1;
}

.l-nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 5vh 10vw;
}

.l-nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-nav-fade__item {
  position: relative;
  margin-bottom: 4vh;
  padding-bottom: 2.4vh;
  border-bottom: 1px solid var(--color--light-green01);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.l-nav-fade.active .l-nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.l-nav-fade.active .l-nav-fade__item:nth-child(1) { transition-delay: 0.2s; }
.l-nav-fade.active .l-nav-fade__item:nth-child(2) { transition-delay: 0.3s; }
.l-nav-fade.active .l-nav-fade__item:nth-child(3) { transition-delay: 0.4s; }
.l-nav-fade.active .l-nav-fade__item:nth-child(4) { transition-delay: 0.5s; }
.l-nav-fade.active .l-nav-fade__item:nth-child(5) { transition-delay: 0.6s; }
.l-nav-fade.active .l-nav-fade__item:nth-child(6) { transition-delay: 0.7s; }

.l-nav-fade__number {
  position: absolute;
  top:-9px;
  left: 0;
  color: var(--color--light-green01);
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
}

.l-nav-fade__link {
  display: inline-block;
  color: var(--color--wh);
  font-size: 24px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.l-nav-fade__link:link,.l-nav-fade__link:visited,
.l-nav-fade__link:hover,.l-nav-fade__link:active {
color: var(--color--wh);
}



@media screen and (min-width: 600px) {

  .l-header-inner {
    margin: 0 2%;
  }


}


/*=================== 共通 /ヘッダー/フッター 320用 ==================*/
@media screen and (max-width: 320px) {
  .l-header-logo .img-box {
    max-width: 95px;
  }
} /*=================== 共通 /ヘッダー/フッター 320用 閉じ ==================*/
/* グローバルメニュー */

/* ロゴ */
.l-header-nav-logo {
  width: 100%;
  max-width: 140px;
  margin-bottom: 40px;
} 
.l-header-nav-list__item {
  position: relative;
  color: var(--color--bk);
  display: block;
  padding: 0.6em 0.4em;
  text-decoration: none;
  padding: 10px 0;
  margin: 10px 0 30px;
}
/* SP時 お問い合わせ */
.l-header-sp-nav-contact{
  width: 28.6px;
  height: 28px;
  position: absolute;
    right: 69px;
    top: 50%;
    transform: translateY(-50%);

}


/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1024px) {


  
/* PCのハンバーガー */
    .l-hamburger-fade {
        display: none;
    }

  /*========= スクロール途中でヘッダーが表示＆非表示するためのCSS ===============*/
  /*スマホハンバーガー非表示*/
  .fd-tb {
    display: none;
  }
  /*　上に上がる動き　*/
  #header.UpMove {
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-100px);
    }
  }


  /*------------------------------
  PCヘッダー、Gナビ共通 ※変更不可
  ------------------------------*/
  .l-header {
    /*fixedで上部固定*/
    position: fixed;
    height: var(--header-height);
    z-index: 999; /*最前面へ*/
    backdrop-filter: none;
    transition: .5s;
  }
  .l-header-inner {
    display: grid;
        margin: 0 0 0 2%;
        grid-template-columns: 200px 1fr;
        justify-content: space-between;
        gap: 10px;
  }
.l-header-right{
  margin-left: auto;
}

.l-header-logo {
  margin-left: 0px;
}

/* PC Gナビ */
  .l-header-nav-list {
    position: relative;
        z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
/* 
    padding: 0;
    height: auto;
    max-width: 840px;
    justify-content: flex-end;
    margin-right: 24px; */
  }
  .l-header-nav-list__item {
    height: var(--header-height);
    display: flex;
    align-items: center;
    /* border-bottom: none; */
    padding: 0 1.5vw;
    margin: 0;
    /* position: relative; */
    /* mix-blend-mode: difference; */
    /* mix-blend-mode: exclusion; */
    color: var(--color--bk);
    word-break: keep-all;
    transition: .5s;
    /*	 margin-left: 1.3vw;*/
  }

  .l-header-nav-list__item,
  .l-header-nav-list__item a {
    vertical-align: middle;
    vertical-align: 0;
  }
  .l-header-nav-list__item:hover{
    color: var(--color--key);
  }

.l-header-nav-list__item.l-header-nav-list__item--cta{
background: var(--color--key);
color: var(--color--wh);
}
.l-header-nav-list__item.l-header-nav-list__item--cta:hover{
background: var(--color--dark-green02);
color: var(--color--wh);
}



} /*=================== PCここまで ==================*/