@charset "utf-8";

html {
  overflow-y: scroll;
}
body.nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.header {
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease;
  background: #fff;
  padding: 22px 0 13px 110px;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
header.header__fixed {
  position: fixed;
  /* top: -20px; */
  width: 100%;
  left: 0;
  z-index: 10;
}

body.fixed {
  height: 100%;
  overflow: hidden;
}

.header__wrapper {
  width: 100%;
  /* height: 100%; */
  /* padding: 26px 0 0px 110px; */
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__spWrap {
  width: fit-content;
}
.header__left {
  max-width: 267px;
  position: relative;
  z-index: 4;
}
/* .header__logoLink img {
  width: 100%;
  min-width: 227px;
} */
.header__navWrap {
  width: fit-content;
}
.header__navInner {
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px; */
  padding-right: 370px;
}
.header__navSpMenu {
  display: none;
}
.header__nav {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 33px;
  /* padding: 0px 0px 0px 42px; */
  border-radius: 15px;
  transition: 0.3s;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 41px;
}

.header__nav-list li {
  position: relative;
}

.header__nav-list li:last-child {
  margin-right: 0;
}

.header__nav-listLink {
  display: block;
  width: fit-content;
  padding: 5px 5px 9px 5px;
  font-size: 17px;
  font-weight: 600;
  /* display: flex;
  align-items: center;
  justify-content: center; */
  line-height: 1.75;
  letter-spacing: 0em;
  transition: 0.4s;
  /* border-bottom: 1px solid #003161; */
  position: relative;
}

/* 下線のスタイル */
.header__nav-listLink::after {
  background-color: #003161;
  content: "";
  width: 30px;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: center top;
  transition: transform 0.3s;
}
/* ホバー時 */
.header__nav-listLink:hover::after {
  transform: translateX(-50%) scale(1, 1);
}

.header__tel {
  width: fit-content;
  padding: 23px 41px;
  background: #003161;
  border-radius: 0 0 0 40px;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
.header__telText {
  margin-bottom: 7px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}
.header__telNum {
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}

.header__online,
.header__onlineLink {
  display: none;
}
.ham {
  width: 21px;
  height: 14px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

.ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #372828;
  position: absolute;
  left: 50%;
  transition: 0.3s;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translateX(-50%);
  top: 0px;
}

.ham__lineWrapper span:nth-child(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.ham__lineWrapper span:nth-child(3) {
  transform: translateX(-50%);
  bottom: 0px;
}

.ham.open {
  /* width: 32px;
  height: 21px; */
}

.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(33deg);
  top: 50%;
  background: #fff;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}
.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-33deg);
  top: 50%;
  background: #fff;
}
.header__menuSpLogo {
  display: none;
}
.ham.open .header__menuSpLogo {
  display: block;
  width: 175px;
  position: absolute;
  top: 7px;
  left: 10px;
}

.nav__listWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 30px;
}

.nav__list--heading {
  text-align: center;
}

.nav__listContents {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.nav__listItem {
  text-align: center;
}

.nav__listBtn {
  padding-top: 33px;
}

.nav__listItem.lst {
  margin-bottom: 0;
}
.nav__listItem.mg-btm {
  margin-bottom: 30px;
}

.nav__listLink {
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 5px 0;
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 1360px) {
  .ham {
    transform: unset;
  }
}

@media screen and (max-width: 1370px) {
  .header {
    padding: 20px 0 13px 37px;
  }
  .header__wrapper {
    padding-left: 20px;
  }
  .header__left {
    max-width: 200px;
  }
  /* .header__logoLink img {
    width: 100%;
    min-width: 170px;
  } */
  .header__nav {
    gap: 23px;
  }
  .header__nav-list {
    gap: 9px;
  }
}

/* @media screen and (max-width: 1290px) {
  .header__nav {
    padding: 0px 0px;
  }
} */

@media screen and (max-width: 1100px) {
  .header {
    padding: 7px 11px 23px 11px;
  }
  .header__inner {
    display: block;
  }
  .header__spWrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logoLink {
    width: 100%;
    max-width: 144px;
    margin: 0 auto;
  }

  .header__wrapper {
    padding-left: 0;
  }
  .is-resize .header__navWrap {
    transition: none;
  }
  .header__navWrap {
    width: 100%;
    max-width: 100%;
    height: 100vh;
    /* padding-top: 135px; */
    background-color: #05254c;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -99;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  .header__navWrap.panelactive {
    opacity: 1;
    pointer-events: all;
    z-index: 999;
  }
  /*ナビゲーションの縦スクロール*/

  .header__navWrap.panelactive .header__navScroll {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__navInner {
    flex-direction: column;
    align-items: flex-start;
    max-width: 350px;
    min-height: 950px;
    padding-top: 135px;
    padding-right: 15px;
    padding-left: 15px;
    margin: 0 auto;
  }
  .header__navSpMenu {
    display: block;
    margin-bottom: 19px;
    font-size: 45px;
    letter-spacing: 0.1em;
    color: #fff;
  }
  .header__nav {
    flex-direction: column;
    align-items: flex-start;
    /* max-width: 300px;
    min-height: 550px; */
    padding: 0 15px 0 0;
    /* margin: 0 auto; */
    margin-bottom: 80px;
  }
  .header__nav.open {
    display: block;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
  .header__nav-listLink {
    font-size: 23px;
    font-weight: 700;
    color: #fff;
  }
  .header__tel {
    position: static;
    width: 100%;
    padding: 20px 5px 20px 27px;
    border: 1px solid #fff;
    margin-bottom: 23px;
    background: none;
    border-radius: 0;
  }
  .header__telText {
    font-size: 17px;
  }
  .header__online {
    display: block;
    width: 100%;
  }
  .header__onlineLink {
    display: block;
    width: 100%;
    padding: 20px 5px 18px 18px;
    border: 1px solid #fff;
    font-size: 20px;
    line-height: 1.5;
    color: #fff;
    background: url(../imgs/common/header_deco.png) center center / cover
      no-repeat;
    position: relative;
  }
  .header__onlineLink::before {
    display: block;
    content: "";
    width: 21px;
    height: 7px;
    background: url(../imgs/common/menu_arrow_w.png) center center / cover
      no-repeat;
    position: absolute;
    bottom: 33px;
    left: 85px;
  }

  .ham {
    display: block;
  }

  .inner-nav {
    padding-top: 35px;
    max-width: none;
  }
}

@media screen and (max-width: 750px) {
  .header__left {
    max-width: 172px;
  }
  .nav__listContents {
    max-width: 360px;
  }
  .nav__list--type01 {
    max-width: 150px;
  }
  .nav__list--type02 {
    max-width: 95px;
  }
  .nav__listLink {
    font-size: 20px;
    padding: 0;
  }
  .nav__listItem:not(:last-child) {
    margin-bottom: 7px;
  }
  .nav__listItem--type01 {
    margin-bottom: 14px !important;
  }
  .nav__listItem.lst {
    margin-bottom: 9px;
  }
  .nav__listItem.mg-btm {
    margin-bottom: 25px;
  }

  /* .parent {
    padding-top: 10px;
    padding-left: 11px;
  }
  .parent__item {
    font-size: 13px;
  }
  .lang__list--item .btn::after {
    right: 9px;
  } */
}

/* @media screen and (max-width: 480px) {
  .header__left {
    max-width: 160px;
  }
} */
/* 
@media screen and (max-width: 500px) {
  .nav__listContents {
    max-width: 280px;
  }
} */

/* 
.header_bg {
  background: #323232;
  width: 100%;
  height: 80px;
}
.header_contents {
  width: 100%;
  max-width: 1024px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_contents h1 {
  font-size: 22px;
  margin: 0 0 0 40px;
}
.header_nav_lists {
  display: flex;
}
.header_nav_lists li {
  margin: 0 40px 0 0;
}
.nav_link {
  font-size: 18px;
}
.responsive_btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 40px 0 0;
  cursor: pointer;
  position: relative;
  z-index: 10;
} */
/* .menu_line {
  background: #e61010;
  border-radius: 5px;
  width: 100%;
  height: 5px;
  margin: 4px 0;
} */
/* @media screen and (max-width: 768px) {
  .responsive_btn {
    display: flex;
  }
  .header_bg {
    position: relative;
  }

  .header_nav_lists {
    display: block;
    text-align: center;
  }
  .header_nav_lists li {
    margin: 0 0 40px;
    text-align: center;
  }
  .nav_link {
    font-size: 20px;
  }
} */
