.page-tour {
  background: url(../../assets/images/top/bg.jpg) repeat;
}

/* ===== Tour Inner ===== */
.tour__inner {
  width: 100%;
  padding-top: 80px;
  padding-inline: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
  max-width: calc(1280px * 80px * 2);
  margin-inline: auto;
}

/* ===== Hero ===== */
.tour__hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.tour__hero-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.tour__hero-content {
  position: absolute;
  inset: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 80px;
  padding: 40px;
}

.tour__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 19px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tour__title {
  font-size: 5.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.38;
  letter-spacing: 0.03em;
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.4);
}

.tour__schedule-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.tour__schedule-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.tour__day {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.4);
}

.tour__time-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.4);
}

.tour__note {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 0 36px rgba(0, 0, 0, 0.4);
}

.tour__map-btn {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  color: #292929;
  border: 1px solid #292929;
  padding: 17px 43px;
  min-width: 320px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tour__map-btn::after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background: url(../images/common/arrow_right.svg) no-repeat center/contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.tour__map-btn:hover {
  background-color: #292929;
  color: #fff;
  opacity: 1;
}
.tour__map-btn:hover::after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* ===== Map Section ===== */
.tour__map-section {
  padding-block: 40px 28px;
  background: #fff;
}

.tour__map-container {
  max-width: 1000px;
  width: calc(100% - 160px);
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}

.tour__map-container iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.tour__address {
  margin-block-start: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.7;
  color: #1c1c1c;
}

/* ===== Footer CTA ===== */
.tour__footer {
  margin-block-start: 80px;
  background-color: #292929;
  padding: 137px 80px;
}

.tour__footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 40px;
}

.tour__footer-title {
  font-size: 3.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 36px;
}

.tour__footer .tour__day,
.tour__footer .tour__time-range,
.tour__footer .tour__note {
  text-shadow: none;
}

.tour__footer-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ===== Tour Buttons (contact__button ベース) ===== */
.tour__btn {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 17px 43px;
  min-width: 325px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tour__btn::after {
  content: "";
  position: relative;
  width: 24px;
  height: 24px;
  background: url(../images/common/arrow_right.svg) no-repeat center/contain;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

/* 白ボタン */
.tour__btn--white {
  background-color: #fff;
  color: #292929;
  border: 1px solid #fff;
}
.tour__btn--white:hover {
  background-color: #292929;
  color: #fff;
  opacity: 1;
}
.tour__btn--white:hover::after {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/* アウトラインボタン（暗背景上の白枠・矢印左） */
.tour__btn--outline {
  background-color: #292929;
  color: #fff;
  border: 1px solid #fff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.tour__btn--outline::after {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.tour__btn--outline:hover {
  background-color: #fff;
  color: #292929;
  opacity: 1;
}
.tour__btn--outline:hover::after {
  -webkit-transform: scaleX(-1) translateX(4px);
  transform: scaleX(-1) translateX(4px);
  -webkit-filter: none;
  filter: none;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .tour__inner {
    padding-inline: 40px;
  }
  .tour__title {
    font-size: 4rem;
  }
  .tour__map-container {
    width: calc(100% - 80px);
  }
  .tour__footer {
    padding: 80px 40px;
  }
  .tour__footer-title {
    font-size: 3rem;
  }
}
@media (max-width: 800px) {
  .tour__footer {
    padding: 60px 24px;
  }
  .tour__footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 48px;
  }
  .tour__footer-title {
    font-size: 2.4rem;
    margin-bottom: 24px;
  }
  .tour__footer-buttons {
    width: 100%;
  }
  .tour__btn {
    min-width: unset;
    width: 100%;
    max-width: 600px;
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  .tour__inner {
    padding-top: 40px;
    gap: 40px;
    padding-inline: 20px;
  }
  .tour__hero {
    width: 100%;
    height: 420px;
  }
  .tour__hero-content {
    gap: 32px;
    padding: 24px 16px;
  }
  .tour__title {
    font-size: 2.8rem;
  }
  .tour__day {
    font-size: 1.8rem;
  }
  .tour__time-range {
    font-size: 2.2rem;
  }
  .tour__note {
    font-size: 1.4rem;
  }
  .tour__map-btn {
    min-width: unset;
    padding: 14px 32px;
  }
  .tour__map-section {
    padding: 20px 20px 16px;
  }
  .tour__map-container {
    max-width: 1000px;
    width: 100%;
    height: auto;
    aspect-ratio: 1000 / 450;
  }
  .tour__map-container iframe {
    height: 300px;
  }
  .tour__footer {
    padding-inline: 20px;
  }
  .tour__btn {
    padding-inline: 20px;
  }
}

@media (max-width: 374px) {
  .tour__title {
    font-size: 2.4rem;
  }

  .tour__day {
    font-size: 1.6rem;
  }

  .tour__time-range {
    font-size: 2rem;
  }
}
