html {
  scrollbar-gutter: stable;
}

body {
  font-weight: 700;
  font-size: 16px;
}
@media screen and (max-width: 1000px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 3.2vw;
  }
}
body .core-site-footer {
  margin-top: 0 !important;
}

.inner1200 {
  max-width: 61.25em;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner1200 {
    width: 85.333%;
  }
}

.inner1400 {
  max-width: 62.5em;
  width: 90%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner1400 {
    width: 90.6666666%;
  }
}

a {
  transition-duration: 0.3s;
}
a:hover {
  opacity: 0.6;
}

.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5em;
  z-index: 99;
  background: linear-gradient(to right, #1f657a 0%, #5993bb 50%, #1f657a 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .header-bg {
    height: 13.333333vw;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 5em;
  z-index: 190;
  backdrop-filter: blur(2px);
}
@media screen and (max-width: 768px) {
  .header {
    height: 13.333333vw;
  }
}
.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-left: 3em;
  padding-right: 2.4em;
}
@media screen and (max-width: 1200px) {
  .header__inner {
    padding-left: 2.5vw;
    padding-right: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 4vw;
    padding-right: 11vw;
  }
}
.header__logo {
  width: 15.625em;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    width: 20.8333333vw;
  }
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 42.66666666vw;
  }
}
.header__logo a {
  display: block;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 1.75em;
}
@media screen and (max-width: 1200px) {
  .header__menu {
    gap: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
@media screen and (max-width: 1200px) {
  .header__nav-list {
    gap: 1.5vw;
  }
}
.header__nav-item a {
  display: block;
  color: #fff;
  font-size: 0.9375em;
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .header__nav-item a {
    font-size: 1.25vw;
  }
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 0.75em;
}
@media screen and (max-width: 1200px) {
  .header__cta {
    gap: 0.6vw;
  }
}
.header__cta-item {
  display: block;
  width: 7.375em;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .header__cta-item {
    width: 8.5775vw;
  }
}
.header__hamburger {
  display: block;
  width: 2.7606em;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
}
@media screen and (max-width: 1200px) {
  .header__hamburger {
    width: 3.6808vw;
  }
}
.header__hamburger-icon {
  width: 100%;
  height: auto;
  display: block;
}
.header__hamburger-icon--close {
  display: none;
}
.header__hamburger.is-open .header__hamburger-icon--open {
  display: none;
}
.header__hamburger.is-open .header__hamburger-icon--close {
  display: block;
}

.header-hamburger {
  display: none;
  position: fixed;
  right: 1em;
  top: 1em;
  width: 4em;
  height: 4em;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 200;
}
@media screen and (max-width: 1200px) {
  .header-hamburger {
    right: 1.5vw;
    top: 1.5vw;
    width: 4.5vw;
    height: 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  .header-hamburger {
    display: block;
    right: 2.133333vw;
    top: 2.133333vw;
    width: 9vw;
    height: 9vw;
  }
}
.header-hamburger__icon {
  width: 100%;
  height: 100%;
  display: block;
}
.header-hamburger__icon--close {
  display: none;
}
.header-hamburger.is-open .header-hamburger__icon--open {
  display: none;
}
.header-hamburger.is-open .header-hamburger__icon--close {
  display: block;
}

.header-drawer {
  display: block;
  position: fixed;
  top: 5em;
  right: 0;
  width: 33%;
  height: calc(100% - 5em);
  height: -moz-fit-content;
  height: fit-content;
  z-index: 150;
  background: rgba(0, 63, 126, 0.8);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .header-drawer {
    display: block;
    top: 0;
    width: 73%;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.header-drawer.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}
@media screen and (max-width: 768px) {
  .header-drawer.is-open {
    z-index: 180;
  }
}
.header-drawer__nav {
  width: 100%;
  min-height: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .header-drawer__nav {
    padding: 12vw 0 0vw;
    align-items: flex-start;
  }
}
.header-drawer__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-drawer__list {
    gap: 0;
    margin-left: auto;
    margin-right: 0;
  }
}
.header-drawer__item {
  width: 100%;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 1.25em;
  letter-spacing: 0.15em;
  color: #fff;
  position: relative;
}
.header-drawer__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 92.333333%;
  height: 1px;
  background-color: #fff;
}
.header-drawer__item:last-child::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-drawer__item {
    font-size: 3.733333vw;
    text-align: left;
    color: rgba(255, 255, 255, 0.5);
  }
}
.header-drawer__item a,
.header-drawer__item span {
  color: #fff;
  display: block;
  position: relative;
  padding-left: 7.666667%;
  text-align: left;
  padding-block: 1em;
  cursor: pointer;
}
.header-drawer__item a::after,
.header-drawer__item span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0.4em;
  height: 0.4em;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header-drawer__item a,
  .header-drawer__item span {
    paddinf-block: 3.466666vw;
    position: relative;
  }
  .header-drawer__item a::before,
  .header-drawer__item span::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .header-drawer__item a::after,
  .header-drawer__item span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.8vw;
    width: 1.6vw;
    height: 1.6vw;
    border-top: 0.5vw solid currentColor;
    border-right: 0.5vw solid currentColor;
    transform: translateY(-50%) rotate(45deg);
  }
}
.header-drawer__item span {
  color: rgba(255, 255, 255, 0.4);
  cursor: default;
}
.header-drawer__link {
  display: block;
  width: 100%;
}
.header-drawer__link--reserve, .header-drawer__link--catalog {
  padding-block: 0.5em;
}
.header-drawer__link--reserve {
  background: linear-gradient(to right, rgba(0, 75, 47, 0.8) 0%, rgba(108, 151, 132, 0.8) 50%, rgba(0, 75, 47, 0.8) 100%);
}
.header-drawer__link--catalog {
  background: linear-gradient(to right, rgba(106, 70, 4, 0.8) 0%, rgba(160, 133, 86, 0.8) 50%, rgba(106, 70, 4, 0.8) 100%);
}

.note {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  background: #fff;
  position: relative;
}
.note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #3d4144 0%, #61686c 45%, #61686c 55%, #3d4144 100%);
}
@media screen and (max-width: 768px) {
  .note {
    padding-top: 3.733333vw;
    padding-bottom: 3.733333vw;
  }
}
.note__list {
  display: flex;
  flex-direction: column;
  text-indent: -0.6em;
  padding-left: 0.7em;
}
.note__item {
  font-family: "Noto Serif JP", serif;
  font-size: 0.6875em;
  font-weight: 300;
  line-height: 1.2727em;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .note__item {
    font-size: 1.866666vw;
  }
}

.footer {
  padding-top: 5.9375em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 13.3333vw;
  }
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #3d4144 0%, #61686c 45%, #60676b 55%, #3d4144 100%);
}
.footer__logo {
  width: 14.375em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 30.66666vw;
  }
}
.footer__cta {
  display: flex;
  justify-content: center;
  gap: 1.25em;
  margin-top: 5.9375em;
}
@media screen and (max-width: 768px) {
  .footer__cta {
    flex-direction: column;
    align-items: center;
    gap: 4vw;
    margin-top: 9.4vw;
  }
}
.footer__cta-item {
  width: 15.24em;
}
@media screen and (max-width: 768px) {
  .footer__cta-item {
    width: 65.33333vw;
  }
}
.footer__tel {
  width: 28.75em;
  margin-inline: auto;
  margin-top: 4.375em;
}
@media screen and (max-width: 768px) {
  .footer__tel {
    margin-top: 9.33333vw;
    width: 62.666667vw;
  }
}
.footer__tel-text {
  border-top: 0.0166em solid #231815;
  font-size: 1.125em;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.012em;
  margin-top: 0.88888em;
  padding-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .footer__tel-text {
    font-size: 2.4vw;
    margin-top: 1.8666667vw;
  }
}
.footer__title {
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.875em;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .footer__title {
    font-size: 2.66666667vw;
    margin-bottom: 3.2vw;
  }
}
.footer__toyota-logo {
  margin-top: 5.625em;
  width: 16.5em;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .footer__toyota-logo {
    width: 53.6vw;
    margin-top: 4.8vw;
  }
}
.footer .copyright {
  margin-top: 6.5em;
  height: 2.5em;
  background: linear-gradient(to right, #124e5d 0%, #3b8ca5 50%, #124e5d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer .copyright {
    height: 5.333333vw;
    margin-top: 12vw;
  }
}
.footer .copyright p {
  font-size: 0.8125em;
  letter-spacing: 0.05em;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .footer .copyright p {
    font-size: 1.733333vw;
  }
}

.bottom-menu {
  display: none;
}
@media screen and (max-width: 768px) {
  .bottom-menu {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 130;
  }
}
.bottom-menu__item {
  display: block;
  width: 50%;
  line-height: 0;
}
.bottom-menu__item img {
  width: 100%;
  height: auto;
  display: block;
}

.sp-none {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .sp-none {
    display: none !important;
  }
}

.sp-block {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block !important;
  }
}

.pc-block {
  display: block !important;
}
@media screen and (max-width: 768px) {
  .pc-block {
    display: none !important;
  }
}

.sp-block {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block !important;
  }
}