@charset "utf-8";

.header {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 10;
  background: #fff;
}
/* .header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
} */
/* header.header__fixed {
  position: fixed;
  width: 100%;
  left: 0;
  z-index: 10;
} */

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

.header__wrapper {
  width: calc(100% - 40px);
  max-width: 1373px;
  height: 100%;
  position: absolute;
  top: 31px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.header__left {
  max-width: 417px;
  position: relative;
  z-index: 1;
}
.header__logoLink {
  display: block;
}

.header__right {
  width: calc(100% - 322px);
  max-width: 493px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.header__rightContents {
  width: 251px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 2px;
}
.header__rightIcon {
  width: 42px;
}
.header__rightNum {
}
.header__rightText {
  color: #0f66a3;
  font-size: 11px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.2;
}
.header__rightTel {
  color: #0f66a3;
  font-size: 27px;
  font-family: "Posterama2001-Black";
  line-height: 1;
  letter-spacing: 0.06em;
}
.header__rightBtn {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  width: 226px;
  padding: 17px 20px;
  display: block;
  line-height: 1;
  background-color: #da3146;
  border-radius: 24px;
}

/* .ham {
  width: 32px;
  height: 21px;
  cursor: pointer;
  z-index: 9999;
  display: none;
}

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

.ham__lineWrapper span {
  display: block;
  width: 32px;
  height: 3px;
  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%;
}

.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%;
} */

@media screen and (max-width: 1360px) {
  /* .ham {
    transform: unset;
  } */
}

@media screen and (max-width: 1100px) {
  /* .ham {
    display: block;
  } */
}

@media screen and (max-width: 980px) {
  .header__inner {
    align-items: flex-start;
  }
  .header__left {
    max-width: 347px;
  }
  .header__right {
    width: fit-content;
    max-width: 100%;
    display: block;
  }
  .header__rightContents {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 750px) {
  .header__wrapper {
    width: calc(100% - 30px);
    top: 15px;
  }
  .header__left {
    max-width: 287px;
  }
  .header__rightIcon {
    width: 37px;
  }
  .header__rightContents {
    width: 223px;
  }
  .header__rightText {
    font-size: 10px;
  }
  .header__rightTel {
    font-size: 24px;
  }
  .header__rightBtn {
    font-size: 14px;
    width: 185px;
    padding: 13px 20px;
  }
}

@media screen and (max-width: 600px) {
  .header__rightContents {
    width: 163px;
    margin-bottom: 5px;
  }
  .header__rightIcon {
    width: 30px;
  }
  .header__rightText {
    font-size: 8px;
  }
  .header__rightTel {
    font-size: 17px;
  }
  .header__rightBtn {
    font-size: 13px;
    width: 140px;
    padding: 10px 20px 11px;
  }
}

@media screen and (max-width: 500px) {
  .header__wrapper {
    top: 30px;
  }
  .header__left {
    margin: 0 auto;
  }
  .header__right {
    display: none;
  }
}
