@charset "utf-8";
/*===================
header01
===================*/
.header01 {
  width: fit-content;

  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 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 38px;
}
.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: #1a567b;
  border: 1px solid #1a567b;
  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%;
  /* max-width: 370px; */
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #1a567b;
  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%;
  max-width: 311px;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 50px;
}
.header01__nav-logo {
  width: 86px;
  margin: 0 auto;
}
.header01__nav {
  padding-top: 50px;
  margin-bottom: 28px;
}
.header01__nav-list {
  display: grid;
  grid-template-columns: 87px 87px 87px;
  grid-auto-rows: auto;
  column-gap: 10px;
  row-gap: 10px;
  justify-content: center;
  align-items: flex-start;
}
.header01__nav-listItem.left {
  grid-column: 1;
}

.header01__nav-listItem.center {
  grid-column: 2;
}

.header01__nav-listItem.right {
  grid-column: 3;
}
.header01__nav-listItem.right:nth-of-type(8) {
  grid-column: 3;
  grid-row: 1;
} /* day */
.header01__nav-listItem.right:nth-of-type(9) {
  grid-column: 3;
  grid-row: 2;
} /* ownership */
.header01__nav-listItem.right:nth-of-type(10) {
  grid-column: 3;
  grid-row: 3;
} /* inquiry */
.header01__nav-listItem.right:nth-of-type(11) {
  grid-column: 3;
  grid-row: 4;
} /* access */
.header01__nav-listItem.right:nth-of-type(12) {
  grid-column: 3;
  grid-row: 5;
} /* news */

.header01__nav-listItem:not(:last-child) {
  margin-bottom: 14px;
}

.header01__nav-listItem a {
  display: block;
  font-size: 12px;
  color: #fff;
}
.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: 4px 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: 1px;
  background-color: #4a4a4a;
  /* position: absolute;
  left: 0; */
  transition: 0.3s;
}

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

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

.ham.open {
}

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

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

@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 0 0 53px;
}
.header02__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.header02__left {
  padding-top: 19px;
  padding-left: 8px;
}
.header02__logoLink {
  width: 72px;
}
.header02__nav-list {
  display: grid;
}
.header02__nav-list {
  display: grid;
  grid-template-columns: repeat(4, 97px);
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
  gap: 2px 10px;
  justify-content: center;
}
.header02__nav-listItem a {
  display: block;
}
@media screen and (max-width: 1400px) {
  .header02 {
    width: 72%;
  }
}
@media screen and (max-width: 900px) {
  .header02__wrapper {
    padding: 27px 0 0 16px;
  }
}
@media screen and (max-width: 830px) {
  .header02__right {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .header02__wrapper {
    padding: 18px 0 0 16px;
  }
  .header02__left {
    padding: 0;
  }
  .header02__logoLink {
    width: 49px;
  }
}

/* ↓ ローデイング後アニメーション ↓ */
/* TOPにだけ付けてるクラス */
.header-top {
  opacity: 0;
  /* transform: translateY(-15px); */
  transition: opacity 1s ease, transform 1s ease;
}
.header-top.active {
  opacity: 1;
  /* transform: translateY(0); */
  transition-delay: 1.5s;
}
/* ↑ ローデイング後アニメーション ↑  */
