@charset "UTF-8";

header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  color: #222222;
  z-index: 1000;
  box-shadow: #dddddd 0 3px 10px;
}

@media (max-width: 834px) {
  header {
    height: 70px;
  }
}

header .logo img {
  display: block;
  margin-left: 20px;
  width: 60px;
  height: 60px;
}

@media (max-width: 834px) {
  header .logo img {
    width: 40px;
    height: 40px;
    margin-left: 15px;
  }
}

header .logo a {
  line-height: 0;
}

header .nav .nav-links {
  display: flex;
  list-style: none;
}

/* @media (max-width: 1024px) {
  header .nav .nav-links {
    display: none;
  }
} */
/* 30日追加 */
@media (max-width: 1120px) {
  header .nav .nav-links {
    display: none;
  }
}

@media (max-width: 1024px) {
  header .nav .nav-links {
    justify-content: space-between;
    width: 46vw;
  }
}

header .nav .nav-links li {
  /* margin-right: .5rem; */
  /* margin-right: .7rem; */ /* 31日追加 */
  margin-right: 55px; /* 1日追加 */
}

/* 1日追加 */
@media (max-width: 1399px) {
  header .nav .nav-links li {
    margin-right: 1.7rem;
  }
}
/* 1日追加 */
@media (max-width: 1210px) {
  header .nav .nav-links li {
    margin-right: 0.7rem;
  }
}
@media (max-width: 1024px) {
  header .nav .nav-links li {
    margin: 0 0.2rem;
  }
}

header .nav .nav-links li a {
  text-decoration: none;
  color: #222222;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 1024px) {
  header .nav .nav-links li a {
    font-size: 0.7rem;
  }
}

/* 29日追加 */
header .nav .reserve-btn-box-sp {
  display: none;
}

header .nav.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  /* top: 54px; */
  top: 80px; /* 1日変更 */
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fafafa;
  z-index: 1000;
}
@media (max-width: 834px) {
  header .nav.active {
    top: 70px;
  }
}

header .nav.active .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  width: 100%;
  height: auto;
  background-color: #fafafa;
  z-index: 1000;
}

header .nav.active .nav-links li {
  margin: 0.5rem 0;
  /*1rem 0から変更*/
  width: 81vw;
}

header .nav.active .nav-links li .list-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 7.5px;
  padding-right: 10px;
  padding-bottom: 11px;
  border-bottom: #aaaaaa 1px solid;
}

header .nav.active .nav-links li .list-items a {
  font-size: 1rem;
  font-weight: bold;
}

/* 29日追加 */
header .nav.active .reserve-btn-box-sp {
  background-color: #db0000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 258px;
  height: 60px;
  margin-top: 30px;
}

header .nav.active .reserve-btn-box-sp span {
  font-size: 1rem;
  font-weight: bold;
  color: #ffffff;
}

header .nav.active .reserve-btn-box-sp i {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translateX(350%) rotate(-45deg);
}

/* 27日追加 */
header .nav .nav-links li .list-items a:hover {
  color: #db0000;
}

header .nav.active .nav-links li .list-items i {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid #db0000;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

header .contact-block-pc {
  display: flex;
  align-items: end;
  justify-content: center;
  height: 80px;
}

/* @media (max-width: 1024px) {
  header .contact-block-pc {
    display: none;
  }
} */
/* 30日追加 */
@media (max-width: 1120px) {
  header .contact-block-pc {
    display: none;
  }
}

header .contact-block-pc .reserve-btn-box button {
  width: auto;
  max-width: 200px;
  height: 80px;
  background-color: #db0000;
  box-sizing: border-box;
  /* 余白を含めたサイズ計算を行う */
  padding: 0 20px 0 35px;
  /* ボタンの左右に余白を確保 */
  cursor: pointer;
  transition: all 0.3s ease;
}

header .contact-block-pc .reserve-btn-box button:hover {
  background-color: #ea0404;
  color: #ffffff;
}

header .contact-block-pc .reserve-btn-box button:hover span.gt {
  border-color: #ffffff;
  transform: translateX(5px) rotate(-45deg);
}

header .contact-block-pc .reserve-btn-box button span {
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

header .contact-block-pc .reserve-btn-box span.gt {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 18px;
  font-weight: 700;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translateY(0%) rotate(-45deg);
  transition: all 0.3s ease;
}

header .contact-block-pc .phone-block {
  width: 255px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto 17px;
}

@media (max-width: 1024px) {
  header .contact-block-pc .phone-block {
    width: 26vw;
    margin: auto 0;
  }
}

header .contact-block-pc .phone-block img {
  width: 31px;
  height: 41px;
  margin-right: 5px;
}

header .contact-block-pc .phone-block .phone-block-item {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

header .contact-block-pc .phone-block .phone-number {
  line-height: 0.8;
  margin-bottom: 0;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: 0.03em;
  display: inline-block;
  vertical-align: top;
}

@media (max-width: 1024px) {
  header .contact-block-pc .phone-block .phone-number {
    font-size: 2.5vw;
  }
}

header .contact-block-pc .phone-block .phone-number .business-hours {
  font-size: 14px;
  margin-top: 0;
}

header .contact-block-pc .phone-block .phone-number .business-hours span {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 360px) {
  header .contact-block-pc .phone-block .phone-number .business-hours span {
    font-size: 14px;
  }
}

@media (max-width: 834px) {
  header .contact-block-pc .phone-block {
    display: none;
  }
}

header .contact-block-pc .phone-block .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

header .contact-block-pc .phone-block .contact a {
  text-decoration: none;
  color: #db0000;
  font-size: 1.2rem;
}

header .contact-block-sp {
  display: none;
}

/* 30日変更 */
/* @media (max-width: 1024px)  */
@media (max-width: 1120px) {
  header .contact-block-sp {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: inherit;
    height: 70px;
  }

  header .contact-block-sp .phone-block {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
  }

  header .contact-block-sp .phone-block img {
    width: 31px;
    height: 41px;
    margin-right: 5px;
  }
}

@media (max-width: 834px) and (max-width: 599px) {
  header .contact-block-sp .phone-block img {
    width: 32px;
    height: 43px;
  }
}

@media (max-width: 834px) and (max-width: 360px) {
  header .contact-block-sp .phone-block img {
    width: 19.72px;
    height: 26.08px;
  }
}

@media (max-width: 834px) {
  header .contact-block-sp .phone-block .phone-block-item {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  header .contact-block-sp .phone-block .phone-number {
    margin-bottom: 0;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 4px;
    display: inline-block;
    vertical-align: top;
  }
}

@media (max-width: 834px) and (max-width: 599px) {
  header .contact-block-sp .phone-block .phone-number {
    font-size: 24px;
    letter-spacing: 1.6px;
    line-height: 22px;
  }
}

@media (max-width: 834px) {
  header .contact-block-sp .phone-block .phone-number .business-hours {
    font-size: 10px;
    margin-top: 0;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours span {
    font-size: 11px;
    font-weight: bold;
  }
}

@media (max-width: 834px) and (max-width: 599px) {
  header .contact-block-sp .phone-block .phone-block-item .phone-number .business-hours {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: inherit;
  }

  header .contact-block-sp .phone-block .phone-block-item .phone-number .business-hours .phone-block {
    margin: auto 17px;
  }

  header .contact-block-sp .phone-block img {
    width: 23px;
    height: 33px;
    margin-right: 5px;
  }

  header .contact-block-sp .phone-block .phone-block-item {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .phone-number {
    margin-bottom: 0;
    font-size: 22px;
    vertical-align: top;
  }
}

@media (max-width: 834px) and (max-width: 599px) and (max-width: 599px) {
  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .phone-number {
    font-size: 22px;
  }
}

@media (max-width: 834px) and (max-width: 599px) {
  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .business-hours {
    font-size: 14px;
    margin-top: 0;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .business-hours span {
    font-size: 16px;
    font-weight: bold;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .phone-block .contact a {
    text-decoration: none;
    color: #db0000;
    font-size: 1.2rem;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger {
    display: none;
  }
}

@media (max-width: 834px) and (max-width: 599px) and (max-width: 834px) {
  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    flex-direction: column;
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 834px) and (max-width: 599px) {
  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger span {
    width: 24px;
    height: 2px;
    background-color: #db0000;
    margin: 3px;
    transition: all 0.3s ease;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .nav-links {
    display: none;
  }
}

@media (max-width: 834px) and (max-width: 599px) and (max-width: 834px) {
  header .contact-block-sp .phone-block .phone-number .business-hours .nav-links .nav-links {
    display: none;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .nav-links .nav-links.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    background-color: #fafafa;
  }

  header .contact-block-sp .phone-block .phone-number .business-hours .nav-links .nav-links.active .nav {
    position: absolute;
    top: 54px;
    right: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
}

header .hamburger {
  display: none;
}

/* 30日変更 */
/* @media (max-width: 1024px) */
@media (max-width: 1120px) {
  header .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-right: 15px;
  }

  header .hamburger span {
    width: 24px;
    height: 2px;
    background-color: #db0000;
    margin: 3px;
    transition: all 0.3s ease;
  }

  /* ハンバーガーメニュー展開時のバツ印 */
  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(45deg);
  }
}

header .hamburger .nav {
  position: absolute;
  top: 54px;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

header .hamburger .nav.active {
  transform: translateX(0);
  background-color: #fafafa;
  display: flex;
  align-items: flex-start;
}

header .hamburger .nav.active .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  width: 100%;
  height: auto;
  background-color: #fafafa;
  z-index: 1000;
}

header .hamburger .nav.active .nav-links li {
  margin: 1rem 0;
  width: 81vw;
}

header .hamburger .nav.active .nav-links li .list-items {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 7.5px;
  padding-right: 10px;
  padding-bottom: 11px;
  border-bottom: #aaaaaa 1px solid;
}

header .hamburger .nav.active .nav-links li .list-items a {
  font-size: 1rem;
  font-weight: bold;
}

header .hamburger .nav.active .nav-links li .list-items i {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: solid #db0000;
  border-width: 0 2px 2px 0;
  transform: rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.nav.active {
  transform: translateX(0);
  background-color: #fafafa;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  width: 100%;
  height: auto;
  background-color: #fafafa;
  z-index: 1000;
}

/*# sourceMappingURL=header.css.map */