@charset "UTF-8";
/* CSS Document */
/**************************************************
* ヘッダー ※変更不可
***************************************************/ :root {
  --header-height: 50px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height, 50px) + 30px);
}
@media screen and (min-width: 1024px) {
  :root {
    --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--white);*/
  background-color: rgba(255, 255, 255, 0.9);
  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-logo {
  width: 100%;
  max-width: 130px;
  margin-left: 10px;
  display: flex;
}
.l-header-contents-box {
  display: flex;
  align-items: center;
}
.l-header-contents-box .img-box {
  margin-left: 14px;
}
.l-header-contents-box .img-box a {
  line-height: 1;
}
/*headerのスクロール時*/
.change-height {
  background-color: rgba(255, 255, 255, 0);
}
.change-height .l-header-global-nav-wrap {
  display: none;
}
.change-height .l-header-logo img {
  filter: contrast(0.5);
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  top: 0;
  right: 5px;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  /*  left: 14px;*/
  left: 3px;
  height: 1px;
  border-radius: 2px;
  background-color: #3B4043;
  /*  width: 45%;*/
  width: 70%;
}
.openbtn span:nth-of-type(1) {
  top: 20px;
}
.openbtn span:nth-of-type(2) {
  top: 30px;
}
.l-header-global-nav-icon.active .openbtn span:nth-of-type(1) {
  top: 21px;
  /*  left: 18px;*/
  left: 3px;
  transform: translateY(6px) rotate(-45deg);
  /*  width: 45%;*/
  width: 70%;
}
.l-header-global-nav-icon.active .openbtn span:nth-of-type(2) {
  top: 33px;
  /*  left: 18px;*/
  left: 3px;
  transform: translateY(-6px) rotate(45deg);
  /*  width: 45%;*/
  width: 70%;
}
.l-header-global-nav-icon.active .openbtn span:nth-of-type(1), .l-header-global-nav-icon.active .openbtn span:nth-of-type(2) {
  background-color: var(--color--key-bk);
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  .l-header-inner {
    /*    margin: 0 30px;*/
    margin: 0 2%;
  }
  .l-header-logo {
    margin: 0;
    max-width: 180px;
  }
} /*===================TB min-width: 700px 閉じ ==================*/
/*=================== 共通 /ヘッダー/フッター 320用 ==================*/
@media screen and (max-width: 320px) {
  .l-header-logo .img-box {
    max-width: 95px;
  }
} /*=================== 共通 /ヘッダー/フッター 320用 閉じ ==================*/
/* グローバルメニュー */
.l-header-global-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--color--white);
  margin: 0;
}
.l-header-global-nav-wrap {
  height: 100%;
  padding: 70px 30px;
  margin: auto;
  overflow: scroll;
}
/* ロゴ */
.l-header-global-nav-logo {
  width: 70%;
  max-width: 100px;
  margin-bottom: 40px;
}
.l-header-global-nav-list__item {
  position: relative;
  font-size: 0.875rem;
  font-weight: bold;
  color: var(--color--key-bk);
  display: block;
  padding: 0.6em 0.4em;
  text-decoration: none;
  padding: 10px 0;
  margin: 10px 0 30px;
}
/* SP時：ハンバーガーメニューボタン */
.l-header-global-nav-header {
  width: 50px;
  margin-left: 10px;
}
.l-header-global-nav-list {
  display: block;
  justify-content: space-between;
  list-style: none;
  margin: 0;
}
.l-header-global-nav-icon {
  cursor: pointer;
  display: inline-block;
  font-size: 28px;
  position: absolute;
  right: 5px;
  top: 15px;
  z-index: 2;
}
.l-header-global-nav-list__item-sub {
  align-items: center;
}
.l-header-contents-mail {
  display: none !important;
}
/* 開閉用アイコン */
.l-header-global-nav-list__item-sub-trigger {
  position: relative;
  width: 20%;
  text-align: right;
  z-index: 2;
}
.l-header-global-nav-list__item-sub-trigger i {
  position: absolute;
  right: -25px;
  padding: 0 20px;
}
.l-header-global-nav-list__item-sub-trigger:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  display: inline-block;
  padding-left: 50px;
  position: absolute;
  top: -27px;
  right: -20px;
  padding: 10px 20px;
}
.l-header-global-nav-list__item-sub-trigger.is-active:after {
  content: "\f106";
}
.l-header-global-nav-megamenu {
  display: none;
}
/*=================== TBここから ==================*/
@media screen and (min-width: 600px) {
  /*------------------------------
SPヘッダー、Gナビ共通 ※変更不可
------------------------------*/
  .l-header-global-nav-header.sp, .l-header-global-nav .l-header-global-nav-list.sp {
    display: block;
  }
  .l-header-global-nav {
    width: 100%;
  }
  .l-header-global-nav .l-header-global-nav-list .sp.l-header-global-nav-list__item {
    display: block;
  }
}
/*=================== TBここまで ==================*/
/*=================== PCここから==================*/
@media screen and (min-width: 1024px) {
  /*ブラウザ1200pxまで*/
  @media (max-width: 1200px) {
    .l-header-left {
      width: 20%;
    }
    .l-header-contents-mail a {
      width: 180px;
      padding: 5px 10px;
      font-size: 0.875rem;
    }
  }
  .l-header-contents-mail {
    display: block !important;
    padding-left: 14px;
  }
  .l-header-contents-mail a {
    width: 200px;
    padding: 5px 20px;
  }
  /*========= スクロール途中でヘッダーが表示＆非表示するための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: flex;
    justify-content: space-between;
    align-items: center;
  }
  .l-header-right {
    width: 90%;
  }
  .l-header-logo {
    margin-left: 0;
  }
  /* グローバルナビ */
  .l-header-global-nav {
    display: block !important;
    /*    background-color: var(--color--white);*/
    background-color: inherit;
    position: relative;
    height: unset;
  }
  .l-header-global-nav-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    overflow: unset;
    padding: 0;
  }
  .l-header-global-nav-list {
    position: relative;
    background: unset;
    display: flex !important;
    align-items: center;
    padding: 0;
    height: auto;
    width: 100%;
    max-width: 840px;
    justify-content: flex-end;
    z-index: 1;
    margin-right: 24px;
  }
  .l-header-global-nav-list__item {
    height: 60px;
    display: flex;
    align-items: center;
    border-bottom: none;
    padding: 0 .8vw;
    margin: 0;
    font-weight: bold;
    position: relative;
    mix-blend-mode: difference;
    mix-blend-mode: exclusion;
    font-size: 0.875rem;
    color: var(--color--key-bk);
    word-break: keep-all;
    transition: .5s;
    /*	 margin-left: 1.3vw;*/
  }
  /*ブラウザ1200pxまで*/
  @media (max-width: 1200px) {
    .l-header-global-nav-list__item, .l-header-global-nav-list__item-sub-text {
      font-size: 0.875rem;
    }
    .l-header-global-nav-list__item .l-header-global-nav-list__item-sub-text, .l-header-global-nav-list__item .l-header-global-nav-list__item-sub-text a {
      line-height: 0;
      font-size: 0.875rem;
    }
  }
  .l-header-global-nav-list__item, .l-header-global-nav-list__item a {
    vertical-align: middle;
    vertical-align: 0;
  }
  .l-header-global-nav-list__item--sp {
    display: none;
  }
  .l-header-global-nav-list__item:hover, .l-header-global-nav-list__item.current {
    color: var(--color--key-blue);
  }
  /*Gメニュhover 下線*/
  /*
.l-header-global-nav-list__item::after {
  content: '';
  display: block;
  height: 2.4px;
  width: 90%;
  background: var(--color--key-blue);
  position: absolute;
  bottom: 15px;
  left: 6%;
  transform: scale(0, 1);
  transition: .3s;
}
*/
  .l-header-global-nav-list__item:hover {
    color: var(--color--key-blue);
  }
  .l-header-global-nav-list__item:hover::after {
    transform: scale(1, 1);
  }
  .l-header-global-nav-sublist, .l-header-global-nav-sublist__item {
    display: none;
  }
  .l-header-global-nav-list__item-sub-text {
    width: 100%;
    /*    font-size: clamp(1rem, 0.458rem + 0.87vw, 1.5rem);*/
  }
  .l-header-global-nav-megamenu {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px;
    background: rgba(109, 183, 160, 0.95) !important;
  }
  .l-header-global-nav-megamenu::after {
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    display: inline-block;
    width: 27px;
    height: 15px;
    background: rgba(109, 183, 160, 0.95) !important;
    clip-path: polygon(0 100%, 50% 0, 100% 100%);
  }
  .l-header-global-nav-list__item--megamenu:hover .l-header-global-nav-megamenu {
    display: block;
    animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .l-header-global-nav-megamenu-top, .l-header-global-nav-megamenu-under {
    padding: 0 10px;
  }
  .l-header-global-nav-megamenu-under {
    border-top: solid 1px var(--color--white);
    padding-top: 30px;
    margin-top: 30px;
  }
  .l-header-global-nav-megamenu-under-group {
    margin-left: 30px;
    margin-top: 10px;
  }
  .l-header-global-nav-megamenu-under-group li {
    margin-bottom: 8px;
  }
  .l-header-global-nav-megamenu-under-group li:last-child {
    margin-bottom: 0;
  }
  /*headerのスクロール時*/
  .change-height {
    height: 50px;
    /*	background-color: rgba(255, 255, 255, 0); */
  }
  /*
  .change-height .l-header-global-nav-wrap {
		display: none;
	}
*/
  .change-height .c-hd-button a {
    width: 150px;
    height: 40px;
    line-height: 40px;
  }
} /*=================== PCここまで ==================*/