.header {
  width: 100%;
  height: 78px;
  background-color: #ffffff;
  position: relative;
}

@media screen and (max-width: 999px) {
  .header {
    height: 48px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  width: 100%;
}

.header__logo {
  transform: translateY(-3px);
  width: 144px;
  margin-left: 15px;
  z-index: 10001;
}

@media (min-width: 1320px) and (max-width: 1400px) {
  .header__logo {
    width: 100px;
  }
}

@media screen and (max-width: 1399px) {
  .header__logo {
    width: 102px;
    margin-left: 15px;
    transform: translateY(0.5px);
  }
}

.header__logo a {
  display: flex;
  align-items: center;
  gap: 19.2px;
}

@media screen and (max-width: 1399px) {
  .header__logo a {
    gap: 10px;
  }
}

.header__logo h1 {
	display:inline;
  white-space: nowrap;
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 12px;
  text-align: left;
  bottom: 47px;
  z-index: 2;
  color: #898989;
  position: relative;
  top: 2px;
}

@media screen and (max-width: 1399px) {
  .header__logo h1 {
    font-family: "Noto Sans JP";
    font-weight: normal;
    font-size: 8px;
    line-height: 10px;
    top: 0px;
    text-align: left;
    color: #000;
  }
}

.header__nav {
  height: 100%;
  display: flex;
  align-items: center;
}

@media (max-width: 1319px) {
  .header__nav {
    display: none;
  }
}
.header__navList {
  display: flex;
  margin-right: 49px;
  margin-top: -1px;
  gap: 29px;
}

.header__navListRow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.header__navListItem {
  list-style: none;
}

.header__navListItem:last-child {
  margin-top: -3px;
}

.header__navListItem a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #121212;
  transition: all 0.3s;
}

.header__navListItem a:hover {
  transition: all 0.3s;
  color: #D7000F;
}

.header__navTel {
  height: 100%;
  margin-right: 30px;
  margin-top: -2px;
}
.header__navTel a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s;
  color:#60C634;
}

.header__navTel a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.header__navTel--num {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.04em;
  text-align: left;
  color: #D7000F;
}

.header__navTel--time {
  transform: translate(-1px, -1px);
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #D7000F;
}

.header__navContact {
  width: 152px;
  height: 100%;
}

.header__navContact a {
  height: 100%;
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #0048A3;

  gap: 3px;
  padding-left: 5px;
  transition: all 0.3s;
}

.header__navContact a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}

.header__navContact a img {
  width: 14.65px;
}

.header__navContact a span {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #fff;
}

.header__navInsta {
  width: 42px;
  margin-right: 23px;
}

.header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 78px;
  height: 78px;
  background-color: #0048A3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-direction: column;
  z-index: 10001;
}

@media (min-width: 1320px) {
  .header__hamburger {
    display: none;
  }
}


@media screen and (max-width: 999px) {
  .header__hamburger {
    width: 48px;
    height: 48px;
    gap: 5.5px;
  }
}

.header__line {
  background-color: #fff;
  height: 1px;
  transition: all 0.1s ease-in-out;
}

.header__line--1 {
  width: 20px;
}
.header__line--2 {
  width: 20px;
}
.header__line--3 {
  width: 20px;
}

.header__hamburger--active .header__line {
  transition: all 0.1s ease-in-out;
}
.header__hamburger--active .header__line--1 {
  transform: rotate(-45deg) translate(-5.5px, 4.5px);
}
.header__hamburger--active .header__line--2 {
  transform: translateX(9px);
  opacity: 0;
}
.header__hamburger--active .header__line--3 {
  transform: rotate(45deg) translate(-4.5px, -4px);
  width: 20px;
}

@media screen and (max-width: 1319px) {
  .header__hamburger--active .header__line--1 {
    transform: rotate(-45deg) translate(-5.5px, 6.5px);
  }
  .header__hamburger--active .header__line--2 {
    transform: translateX(9px);
    opacity: 0;
  }
  .header__hamburger--active .header__line--3 {
    transform: rotate(45deg) translate(-4.5px, -5px);
    width: 20px;
  }
}

.hamburger__nav {
  position: fixed;
  background: #fff;
  width: 100vw;
  height: calc(100vh);
  display: none;
  top: 0;
  left: 0;
  z-index: 10000;
}

.hamburger__nav::before {
  position: absolute;
  display: block;
  content: "";
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 12px;
  background-color: #0048A3;
  z-index: 2;
}

.hamburger__navList {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 29px;
  margin-top: 24px;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

@media screen and (max-width: 1399px) {
  .hamburger__navList {
    overflow-y: scroll;
    gap: 18px;
    height: 100%;
  }
}

.hamburger__navListItem {
  list-style: none;
  padding-left: 4px;
  padding-right: 6px;
}

.hamburger__navListItem:first-child a {
}
.hamburger__navListItem a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 15px;
  text-align: left;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  width: 100%;
  display: inline-block;
}

@media screen and (max-width: 1399px) {
  .hamburger__navListItem a {
    padding-bottom: 0px;
  }
}

.hamburger__navListItem a::before {
  position: absolute;
  display: block;
  content: "";
}

.hamburger__buttons {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 38px;
  align-items: center;
  justify-content: center;
}

.hamburger__button {
  width: 321.71px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}

.hamburger__button--contact {
  background-color: #2e1500;
  padding-top: 11px;
  padding-left: 7px;
  padding-bottom: 11px;
}

.hamburger__button--contact img {
  width: 12.12px;
}
.hamburger__button--contact span {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #fff;
}

.hamburger__button--tel {
  background-color: #b59c32;
  padding-top: 11px;
  padding-left: 7px;
  padding-bottom: 11px;
}

.hamburger__button--tel img {
}

.hamburger__banner--tel {
  margin-left: auto;
  margin-right: auto;
  width: 330px;
  margin-bottom: 16px;
  margin-top: 44px;
}
@media screen and (max-width: 1399px) {
  .hamburger__banner--tel {
    margin-bottom: 5px;
    margin-top: 14px;
  }
}

.hamburger__banner--tel a {
  transition: all 0.3s;
}
.hamburger__banner--tel a:hover {
  transition: all 0.3s;
  opacity: 0.7;
}

.hamburger__banners {
  display: flex;
  justify-content: center;
  flex-direction:column;
  align-items: center;
}

@media screen and (max-width: 1319px) {
  .hamburger__banners {
    margin-top: 5px;
    justify-content: space-between;
	  max-width:335px;
	      margin-left: auto;
    margin-right: auto;
    gap: 8px;
  }
}

.hamburger__banner {
  width: 80%;
  max-width: 330px;
}

@media screen and (max-width: 1399px) {
  .hamburger__banner {
  }
}

.hamburger__banners--top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  padding-left: 28px;
  padding-right: 27px;
  width: 100%;
  margin-top: 10px;
  row-gap: 12px;
  gap: 12px;
}

.hamburger__banner--top {
  width: 48.125%;
}



.hamburger__banner--top img {
  width: 100%;
}

.header__serviceNavList {
  position: absolute;
  width: 167px;
  top: 64px;
  right: 34%;
  transform: translateX(47.5%);
  background: #0084d0;
  display: none;
  z-index: 9999;
}

.header__serviceNavListItem {
  padding-top: 14.1px;
  padding-left: 11px;
  border-bottom: 1px solid #fff;
  padding-bottom: 12px;
}

.header__serviceNavListItem:nth-child(2) {
  padding-top: 7px;
  padding-bottom: 2px;
}

.header__serviceNavListItem:last-child {
  border: none;
}

.header__serviceNavListItem a {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 10px !important;
  letter-spacing: 0.07em !important;
  text-align: left;
  color: #fff !important;
  display: flex;
  align-items: center;
  gap: 7px;
}

.header__serviceNavListItem a .num {
  font-family: Inter;
  font-weight: normal;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
}

.header__navListItem--service {
  position: relative;
}

.header__navListItem--service--active::before {
}

.header__navListItem--service::before {
  transform: translateY(-50%) rotate(0);
  transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  display: block;
  content: "";
  right: -12px;
  top: 60%;
  background: url(../img/icon-drop.svg) center center / contain no-repeat;
  width: 8.94px;
  height: 10.47px;
  z-index: 0;
}

.header__navListItem--service--normal::before {
  transition: all 0.3s;
  transform: translateY(-50%) rotate(180deg);
  transition: all 0.3s;
}

.hamburger__nav {
  position: fixed;
  top: 48px;
  left: 0;
  height: calc(100vh - 48px);
  width: 100vw;
  z-index: 100000;
  background-color: #ffffff;
  display: none;
}

@media (min-width: 1000px) and (max-width: 1319px) {
  .hamburger__nav {
    top: 78px;
  }
}


.hamburger__navList {
  display: flex;
  flex-direction: column;
  margin-top: 12px;
  gap: 3px;
}

.hamburger__navListItem {
  list-style: none;
  border-bottom: 0.75px solid #454545;
  padding-bottom: 5px;
  padding-top: 5px;
  position: relative;
}

.hamburger__navListItem::before {
  position: absolute;
  display: block;
  content: "";
  width: 6.98px;
  height: 8.96px;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  background: url(../img/icon-arrow.svg) center center / contain no-repeat;
}

.hamburger__navListItem a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: left;
  color: #000;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.hamburger__navListItem--service {
    font-family: Inter;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-align: left;
    color: #000;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.hamburger__navListItem--service::before {
  position: absolute;
  display: block;
  content: "";
  width: 9px;
  height: 1px;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  background-color: #454545;
}

.hamburger__navListItem--service::before {
  position: absolute;
  display: block;
  content: "";
  width: 9px;
  height: 1px;
  top: 50%;
  right: 13px;
  transform: translateY(-50%);
  background-color: #454545;
}

.hamburger__navListItem--service::after {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 9px;
  top: 49%;
  right: 17.5px;
  transform: translateY(-50%);
  background-color: #454545;
  transition: all 0.3s;
}

.hamburger__navListItem--service--active {
}

.hamburger__navListItem--service--active::after {
  transform: translateY(-50%) rotate(90deg);
  opacity: 0;
  transition: all 0.3s;
}


.fix__insta {
  position: fixed;
  top: 55.78%;
  right: 1.4%;
  z-index: 3;
  width: 121px;
}