#header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
#header.is-header-visible {
  transform: translateY(0);
}

.contents {
  padding-top: 0;
  position: relative;
}

.main {
  padding: 0;
  padding-bottom: clamp(96px, 13vw, 150px);
  display: flex;
  flex-direction: column;
  align-items: center;
  word-break: auto-phrase;
}
.main h2 {
  font-size: 2.12544rem;
  margin-bottom: 16px;
}
.main .lead {
  font-size: 1.476rem;
  font-weight: bold;
  margin: 16px auto 8px;
}
.main div,
.main section {
  box-sizing: border-box;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .hero {
    height: 870px;
  }
}

.hero__slideshow {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  z-index: 0;
  transition: opacity 1s ease-in-out;
}
.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.hero__slide--1 {
  background-image: url(img/slide/hero_slide_1.jpg);
}

.hero__inner {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__logo {
  width: 900px;
  max-width: 90%;
  padding-top: 16px;
  text-align: left;
  position: relative;
  z-index: 2;
  height: 0;
}
.hero__logo img {
  height: 36px;
  width: auto;
}
@media only screen and (min-width: 769px) {
  .hero__logo img {
    height: 62px;
  }
}

.hero__charter {
  text-align: right;
  width: 900px;
  max-width: 100%;
  position: relative;
  z-index: 1;
  right: -18px;
}
@media only screen and (min-width: 769px) {
  .hero__charter {
    right: 0;
  }
}
.hero__charter img {
  width: 180px;
  height: auto;
  display: inline-block;
}
@media only screen and (min-width: 769px) {
  .hero__charter img {
    width: 284px;
    right: 0;
  }
}

.hero__text-wrap {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  top: -18px;
  z-index: 0;
}
@media only screen and (min-width: 769px) {
  .hero__text-wrap {
    top: -50px;
  }
}

.hero__text-bg {
  position: absolute;
  left: 48%;
  top: 45%;
  transform: translate(-50%, -50%);
  width: 115%;
  max-width: 820px;
  pointer-events: none;
}

.hero__text-img {
  position: relative;
  z-index: 1;
  width: 92%;
  max-width: 600px;
}

.tour-lead {
  padding: 40px 24px;
  text-align: center;
  font-weight: bold;
}
.tour-lead p {
  display: inline-block;
  text-align: left;
  font-size: 1.23rem;
  line-height: 1.8;
  max-width: 700px;
}
.tour-lead-note {
  font-size: 1.23rem;
  display: block;
  background-color: #eff1ea;
  margin-top: 16px;
  padding: 0.3em 1em;
  text-align: center;
}

.tour-info {
  padding: 0 24px 40px;
  display: flex;
  justify-content: center;
}

.tour-info__table {
  border-collapse: separate;
  border-spacing: 0;
  border: 5px solid #979c81;
  border-radius: 8px;
}
.tour-info__table tr:first-child th,
.tour-info__table tr:first-child td {
  border: none;
}
.tour-info__table th,
.tour-info__table td {
  border-top: 1px solid #c8c8c8;
  padding: 8px 12px;
  font-size: 1.025rem;
  font-weight: bold;
  vertical-align: middle;
  text-align: left;
  line-height: 1.5;
}
@media only screen and (min-width: 769px) {
  .tour-info__table th,
  .tour-info__table td {
    font-size: 1.23rem;
    padding: 9.6px 20px;
  }
}
.tour-info__table th {
  background-color: #979c81;
  color: #fff;
  font-weight: bold;
}
.tour-info__table td {
  background-color: #fff;
  color: #333;
  max-width: 440px;
}

.tour-info__price {
  color: #e8761b;
  font-size: 1.7712rem;
  font-weight: bold;
}

@keyframes cta-shimmer {
  0% {
    left: -75%;
  }
  60%, 100% {
    left: 125%;
  }
}
.tour-cta {
  text-align: center;
  padding: 40px 24px 80px;
  width: 100%;
}

.tour-cta__btn {
  display: inline-block;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background-color: #aacd06;
  color: #fff;
  font-weight: bold;
  font-size: 1.7712rem;
  padding: 16px 32px;
  margin: 16px;
  border-radius: 3em;
  text-decoration: none;
  min-width: 240px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(170, 205, 6, 0.45), 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  will-change: transform;
}
.tour-cta__btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: cta-shimmer 3s ease-in-out infinite;
  pointer-events: none;
}
.tour-cta__btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(170, 205, 6, 0.55), 0 4px 12px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-decoration: none;
}
.tour-cta__btn:hover .tour-cta__btn-icon {
  transform: translateY(-50%) translateX(5px);
}
.tour-cta__btn:active {
  transform: translateY(1px);
  box-shadow: 0 2px 10px rgba(170, 205, 6, 0.4);
  transition-duration: 0.08s;
}
.tour-cta__btn:visited {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .tour-cta__btn {
    font-size: 1.7712rem;
    padding: 20px 64px;
  }
}
.tour-cta__btn .chuuki {
  font-size: 4vw;
  color: inherit;
  font-weight: normal;
}
@media only screen and (min-width: 769px) {
  .tour-cta__btn .chuuki {
    font-size: 0.8em;
  }
}

.tour-cta__btn-datenum {
  display: inline-block;
  font-size: 1.2em;
  color: inherit;
}

.tour-cta__btn-icon {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 1.3em;
  height: 1.3em;
  transition: transform 0.22s ease;
}

.spot-info {
  background-color: #eff1ea;
  width: 100%;
  padding: 0 0 96px;
  text-align: left;
  color: #231815;
}

.oshi-hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 48px 16px 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media only screen and (min-width: 769px) {
  .oshi-hero {
    gap: 32px;
    padding: 64px 32px 16px;
  }
}
.oshi-hero + .chuuki {
  text-align: center;
  padding-bottom: 48px;
}

.oshi-circles {
  position: absolute;
  top: 48px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media only screen and (min-width: 769px) {
  .oshi-circles {
    position: static;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
}

.oshi-circles--left {
  left: 16px;
}
@media only screen and (min-width: 769px) {
  .oshi-circles--left {
    left: auto;
  }
}

.oshi-circles--right {
  right: 16px;
}
@media only screen and (min-width: 769px) {
  .oshi-circles--right {
    right: auto;
  }
}

.oshi-circle {
  width: clamp(60px, 12vw, 168px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.oshi-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease;
}

.oshi-hero__center {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .oshi-hero__center {
    flex: 0 1 650px;
    width: auto;
    margin: 0;
  }
}

.oshi-hero__logo {
  width: clamp(200px, 30vw, 380px);
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.oshi-hero__lead {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.476rem;
  line-height: 1.95;
  color: #231815;
  margin-bottom: 24px;
}

.btn-profile {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin-bottom: 24px;
}
.btn-profile img {
  width: auto;
  height: 40px;
  max-width: 100%;
  transition: transform 0.2s ease, filter 0.2s ease;
}
@media only screen and (min-width: 769px) {
  .btn-profile img {
    height: 46px;
  }
}
.btn-profile:hover img {
  transform: translateY(-2px);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
}

.oshi-hero__note {
  font-size: 0.8541666667rem;
  color: #555;
  line-height: 1.6;
  text-align: center;
}

.plan-title-wrap {
  background-color: #eff1ea;
  width: 100%;
  padding: 16px 24px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .plan-title-wrap {
    padding: 24px 48px 64px;
  }
}

.plan-title-badge-mini {
  width: clamp(96px, 12vw, 140px);
  height: auto;
  margin-bottom: 16px;
}

.plan-title-img {
  width: clamp(280px, 46vw, 560px);
  height: auto;
  display: block;
  margin: 0 auto 32px;
}

.yanmo-hito {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.yanmo-hito__face {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
@media only screen and (min-width: 769px) {
  .yanmo-hito__face {
    width: 72px;
    height: 72px;
  }
}

.yanmo-hito__bubble {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  max-width: 260px;
}
.yanmo-hito__bubble::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: -1px;
  border: 9px solid transparent;
  border-left-color: #fff;
}

.yanmo-hito__text {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.23rem;
  line-height: 1.7;
  color: #231815;
  margin: 0;
}

.yanmo-hito--closing {
  margin-top: 48px;
  padding: 0 24px;
}
.yanmo-hito--closing .yanmo-hito__bubble {
  max-width: 460px;
}

.day-section {
  position: relative;
  width: 100%;
  min-height: clamp(240px, 22vw, 320px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.day-section__map-wrap {
  position: absolute;
  inset: 0;
}

.day-section__map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
  filter: grayscale(0.4) saturate(0.55) brightness(1.03);
}

.day-section__map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(47, 49, 33, 0.66);
}

.day-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.day-section__badge {
  width: clamp(120px, 15vw, 196px);
  height: auto;
}

.day-section__route {
  background: #fff;
  border-radius: 12px;
  padding: 12px 24px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.14);
  text-align: center;
  max-width: 100%;
}

.day-section__route-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 4px;
}

.day-section__route-point {
  font-size: 1.23rem;
  font-weight: bold;
  color: #333;
}

.day-section__route-mid {
  font-size: 1.025rem;
  color: #555;
}

.day-section__route-icon {
  width: 1.1em;
  height: 1.1em;
  color: #aacc03;
  flex-shrink: 0;
}

.day-section__route-comment {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.23rem;
  color: #231815;
  line-height: 1.6;
  margin: 0;
}

.oshi-sub {
  background-color: #eff1ea;
  width: 100%;
  padding: 40px 24px 64px;
}
@media only screen and (min-width: 769px) {
  .oshi-sub {
    padding: 48px 32px 20px;
  }
}

.oshi-sub__header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.oshi-sub__badge {
  width: clamp(88px, 11vw, 124px);
  height: auto;
}

.oshi-sub__midashi {
  width: clamp(230px, 34vw, 400px);
  height: auto;
}

.oshi-sub__box {
  border: 2px solid #cfe07d;
  border-radius: 10px;
  background: transparent;
  max-width: 1740px;
  margin: 0 auto;
  padding: 32px 24px 40px;
}
@media only screen and (min-width: 769px) {
  .oshi-sub__box {
    padding: 48px 40px;
    position: relative;
    top: -4em;
    z-index: 0;
  }
}

.oshi-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media only screen and (min-width: 481px) {
  .oshi-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .oshi-card-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.oshi-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.oshi-card__photo {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 2px;
}
.oshi-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.oshi-card:hover .oshi-card__photo img {
  transform: scale(1.04);
}

.oshi-card__body {
  width: 100%;
  padding: 16px 4px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.oshi-card__name {
  margin: 0 0 12px;
  line-height: 1;
  width: 100%;
}
.oshi-card__name img {
  height: clamp(2.1rem, 3vw, 2.7rem);
  width: auto;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.oshi-sub--spot .oshi-card__name img {
  height: clamp(4.55rem, 6.5vw, 5.85rem);
}

.oshi-sub + .oshi-sub {
  padding-top: 0;
}

.oshi-sub--susukino .oshi-sub__box {
  max-width: 1180px;
}
.oshi-sub--susukino .oshi-card-grid {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 481px) {
  .oshi-sub--susukino .oshi-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .oshi-sub--susukino .oshi-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.oshi-sub--susukino .oshi-card__name {
  margin-bottom: 16px;
}
.oshi-sub--susukino .oshi-card__name img {
  height: clamp(4.55rem, 6.5vw, 5.85rem);
  width: auto;
  max-width: 100%;
}
.oshi-sub--susukino .oshi-card__shop {
  width: 100%;
  max-width: 340px;
}
.oshi-sub--susukino .oshi-card__shop + .oshi-card__shop {
  margin-top: 10px;
}

.oshi-sub--otarulunch .oshi-sub__box {
  max-width: 1180px;
}
.oshi-sub--otarulunch .oshi-card-grid {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 481px) {
  .oshi-sub--otarulunch .oshi-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 769px) {
  .oshi-sub--otarulunch .oshi-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
.oshi-sub--otarulunch .oshi-card__name img {
  height: clamp(4.55rem, 6.5vw, 5.85rem);
}

.oshi-sub--tabearuki .oshi-sub__box {
  max-width: 1120px;
}
.oshi-sub--tabearuki .oshi-card__desc {
  flex: 0 0 auto;
  margin-left: auto;
  margin-right: auto;
}
.oshi-sub--tabearuki .oshi-card__shop {
  width: auto;
  min-width: 220px;
  max-width: 360px;
}

.tabearuki {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tabearuki__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 24px;
}
@media only screen and (min-width: 769px) {
  .tabearuki__gallery {
    gap: 12px;
  }
}

.tabearuki__photo {
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}
.tabearuki__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tabearuki__photo:hover img {
  transform: scale(1.04);
}

.oshi-card__desc {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.23rem;
  line-height: 1.7;
  color: #231815;
  margin: 0 0 16px;
  flex: 1;
  width: 100%;
  max-width: 26em;
}

.oshi-card__shop {
  width: 86%;
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.oshi-card__shop-name {
  display: block;
  font-size: 1.23rem;
  font-weight: bold;
  color: #231815;
  margin-bottom: 4px;
  line-height: 1.4;
}

.oshi-card__addr {
  display: block;
  font-size: 1.025rem;
  color: #575757;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (min-width: 769px) {
  .oshi-card__addr {
    text-align: center;
  }
}

.yanmo-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.yanmo-modal[hidden] {
  display: none;
}

.yanmo-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.yanmo-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  padding: 32px 24px 32px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}

.yanmo-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}
.yanmo-modal__close:hover {
  color: #222;
}

.yanmo-modal__inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.yanmo-modal__face {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #aacc03;
}

.yanmo-modal__role {
  font-size: 1.025rem;
  color: #888;
  margin: 0;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.yanmo-modal__name {
  font-size: 2.12544rem;
  font-weight: bold;
  margin: 0;
}

.yanmo-modal__bio {
  font-size: 1.23rem;
  line-height: 1.85;
  color: #231815;
  text-align: left;
  margin: 8px 0 0;
}

[data-inview] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
[data-inview].is-inview {
  opacity: 1;
  transform: translateY(0);
}

.comingsoon {
  font-size: 1.476rem;
}

@media only screen and (min-width: 769px) {
  br.sp {
    display: none;
  }
}

.floating-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  display: flex;
  justify-content: center;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
  transform: translateY(130%);
  transition: transform 0.35s ease;
  word-break: auto-phrase;
}
.floating-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta.is-docked {
  position: absolute;
  transform: scale(1.1);
}
@media only screen and (min-width: 769px) {
  .floating-cta.is-docked {
    transform: scale(1.3);
    bottom: 30px;
  }
}

@keyframes cta-attention {
  0%, 12%, 100% {
    transform: scale(1);
  }
  3% {
    transform: scale(1.08);
  }
  6% {
    transform: scale(0.95);
  }
  9% {
    transform: scale(1.04);
  }
}
.floating-cta__btn {
  width: 100%;
  max-width: 520px;
  border: 0;
  cursor: pointer;
  background-color: #aacd06;
  color: #fff;
  font-weight: bold;
  font-size: 1.476rem;
  line-height: 1.3;
  padding: 16px 24px;
  border-radius: 3em;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28), 0 2px 6px rgba(170, 205, 6, 0.5);
  transform-origin: center;
  transition: box-shadow 0.18s ease, filter 0.18s ease;
  animation: cta-attention 10s ease-in-out infinite;
}
.floating-cta__btn:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32), 0 4px 10px rgba(170, 205, 6, 0.55);
  filter: brightness(1.05);
}
@media only screen and (min-width: 769px) {
  .floating-cta__btn {
    font-size: 1.7712rem;
    padding: 18px 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-cta__btn {
    animation: none;
  }
}
.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.cta-modal[hidden] {
  display: none;
}

.cta-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  cursor: pointer;
}

.cta-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px 24px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.cta-modal__close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  color: #666;
  padding: 4px 8px;
}
.cta-modal__close:hover {
  color: #222;
}

.cta-modal__inner h2 {
  font-size: 2.12544rem;
  margin-bottom: 16px;
}
.cta-modal__inner .lead {
  font-size: 1.476rem;
  font-weight: bold;
  margin: 8px auto 16px;
}
.cta-modal__inner .tour-cta__btn {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  max-width: 420px;
  margin: 12px auto;
}
.cta-modal__inner .chuuki {
  display: block;
  margin-top: 16px;
}

.teiban {
  background-color: #eff1ea;
  width: 100%;
  padding: 0 24px 64px;
}
@media only screen and (min-width: 769px) {
  .teiban {
    padding: 0 32px 80px;
  }
}

.teiban--wide {
  padding-top: 56px;
}
@media only screen and (min-width: 769px) {
  .teiban--wide {
    padding-top: 72px;
  }
}

.teiban__box {
  background: #fff;
  border-radius: 12px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 32px 24px 40px;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .teiban__box {
    padding: 40px 48px 48px;
  }
}

.teiban__midashi {
  width: clamp(180px, 24vw, 260px);
  height: auto;
  display: block;
  margin: 0 auto 12px;
}

.teiban__subhead {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.23rem;
  color: #575757;
  margin: 0 0 24px;
}

.teiban__photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media only screen and (min-width: 769px) {
  .teiban__photos {
    gap: 12px;
  }
}

.teiban__photo {
  position: relative;
  margin: 0;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
}
.teiban__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.teiban__label {
  display: none;
}
@media only screen and (min-width: 769px) {
  .teiban__label {
    position: absolute;
    top: 0;
    left: 0;
    background: #a9cc03;
    color: #fff;
    font-size: 0.8541666667rem;
    font-weight: bold;
    line-height: 1;
    padding: 12px 6px 6px;
    max-width: calc(100% - 12px);
    text-align: left;
    font-size: 1.025rem;
  }
}

.teiban__bus-track {
  position: relative;
  width: 100%;
  height: clamp(34px, 5vw, 52px);
  margin-top: -12px;
  z-index: 3;
  pointer-events: none;
  overflow: visible;
}

.teiban__bus {
  position: absolute;
  left: 0;
  bottom: 0;
  height: clamp(30px, 4.5vw, 48px);
  width: auto;
  transform: translateX(0);
  will-change: transform;
}

.teiban__desc {
  font-family: "Zen Kurenaido", sans-serif;
  font-size: 1.23rem;
  line-height: 1.8;
  color: #231815;
  max-width: 42em;
  margin: 16px auto 12px;
  text-align: center;
}

.teiban__note {
  font-size: 0.8541666667rem;
  color: #231815;
  line-height: 1.6;
  margin: 0;
}

.teiban__title {
  font-size: 1.7712rem;
  font-weight: bold;
  color: #231815;
  line-height: 1.4;
  margin: 0 0 20px;
}
@media only screen and (min-width: 769px) {
  .teiban__title {
    font-size: 2.12544rem;
  }
}

.teiban__wide-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.teiban__wide {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}

.teiban__slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  border-radius: 6px;
  overflow: hidden;
}

.teiban__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.teiban__slide.is-active {
  opacity: 1;
}

.teiban__link {
  font-size: 1.025rem;
  line-height: 1.6;
  margin: 12px 0 0;
  text-align: center;
}
.teiban__link a {
  color: #2f7d32;
  text-decoration: underline;
  word-break: break-all;
}
.teiban__link a:hover {
  color: #1f5c22;
}

.teiban__illust-track {
  position: absolute;
  left: 6vw;
  right: 6vw;
  bottom: -8px;
  height: clamp(64px, 9.6vw, 102px);
  z-index: 3;
  pointer-events: none;
}

.teiban__illust {
  position: absolute;
  left: 0;
  bottom: 0;
  height: clamp(64px, 9.6vw, 102px);
  width: auto;
  transform: translateX(0);
  will-change: transform;
}

.teiban__illust--2 {
  bottom: -5px;
  display: none;
}
@media only screen and (min-width: 481px) {
  .teiban__illust--2 {
    display: block;
  }
}

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