@charset "utf-8";

header{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999
}

/*===================
header01
===================*/
.header01 {
  display: none;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}

.header01__wrapper {
  padding-top: 19px;
}

.header01__inner {
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.header01__right {

}
.header01__logoLink {
  width: 78%;
  max-width: 408px;
}

.header01__logoLink a {
  display: block;
}
.header01__dataBtn {
  width: 130px;
}
.header01__dataBtnLink {
  display: block;
  width: 100%;
  padding: 10px;
  background: #ec6c02;
  border: 1px solid #ec6c02;
  border-radius: 999px;
  font-size: 13px;
  color: #fff;
  text-align: center;
  transition: 0.3s;
}
.header01__dataBtnLink:hover {
  background: #fff;
  color: #1a567b;
}
.header01__navWrap {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ec6c02;
  z-index: 2;
  overflow: scroll;
  /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
  -ms-overflow-style: none;
  /*Firefoxへの対応*/
  scrollbar-width: none;
}
.header01__navWrap::-webkit-scrollbar {
  display: none;
}

.header01__nav-inner {
  width: 100%;
  height: 100vh;
  position: relative;
  /* margin: 0 auto; */
  /* padding-top: 100px;
  padding-bottom: 50px; */
}
.header01__nav{
  max-width: 311px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
/* .header01__nav-logo {
  width: 86px;
  margin: 0 auto;
} */
/* .header01__nav {
  padding-top: 50px;
  margin-bottom: 28px;
} */
.header01__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.header01__nav-listItem{
  width: 100%;
}
.header01__nav-listItem a {
  display: block;
  font-size: 15px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
}
/* .header01__btn + .header01__btn {
  margin-top: 6px;
}
.header01__btn {
  max-width: 260px;
  margin: 0 auto;
}
.header01__btnLink {
  display: block;
  width: 100%;
  padding: 15px 10px;
  background: #fff;
  border: 1px solid #fff;
  text-align: center;
  transition: 0.3s;
}
.header01__btnLink:hover {
  background: #4a4a4a;
  color: #fff;
} */
.ham {
  position: relative;
  margin: 0 24px 0 0;
  width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.ham__lineWrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.ham__lineWrapper span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #4a4a4a;
  /* position: absolute;
  left: 0; */
  transition: 0.3s;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translate(0, -7px);
}

.ham__lineWrapper span:nth-child(2) {
  transform: translate(0, 0px);
}
.ham__lineWrapper span:nth-child(3) {
  transform: translate(0, 7px);
}

/* .ham.open {
} */

.ham.open .ham__lineWrapper span:nth-child(1) {
  background-color: #fff;
}

/* open時 */
.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translateY(4px) rotate(30deg);
  background-color: #fff;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}

.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translateY(0px) rotate(-30deg);
  background-color: #fff;
}

@media screen and (max-width: 830px) {
  .header01 {
    display: block;
}
}
@media screen and (max-width: 750px) {
  .header01__wrapper {
    padding-top: 13px;
  }
  .header01__right {
    gap: 19px;
  }
  .header01__dataBtn {
    width: 94px;
  }
  .header01__dataBtnLink {
    padding: 5px;
  }
}

/*===================
header02
===================*/
.header02 {
  width: 83%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99;
}
.header02__wrapper {
  padding: 27px 24px 0 53px;
}
.header02__inner {
  display: flex;
  align-items: flex-start;
  justify-content: end;
}
/* .header02__left {
  padding-top: 19px;
  padding-left: 8px;
} */
.header02__right{
  max-width: 170px;
}
.header02__right--low{
  max-width: 210px;
}
.header02__logoLink {
  width: 71px;
}
.header02__nav-list {
  display: grid;
}
.header02__nav-list {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
}

.header02__nav-listItem a {
  display: block;
  font-size: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .header02 {
    width: 72%;
  }
}
@media screen and (max-width: 900px) {
  
}
@media screen and (max-width: 830px) {
  .header02__right {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .header02__wrapper {
    padding: 0;
  }
  .header02__left {
    padding: 0;
  }
  .header02__logoLink {
    width: 49px;
  }
}
