/* =========================
   ACCESS
========================= */
.access {
  position: relative;
  background: #6b625c;
  overflow: hidden;
padding-top: 70px;
padding-bottom: 40px;
}

.home-room__content--access {
  width: 100%;
}

.home-room__title-wrap--access {
  margin-bottom: 44px;
}

.home-room__title-svg--access {
  display: block;
  width: min(340px, 42vw);
  max-width: 100%;
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: start;
}

/* =========================
   MAP
========================= */
.access-map-col {
  min-width: 0;
}

.access-map-art {
  position: relative;
  width: 100%;
  max-width: 760px;
  aspect-ratio: 440.44 / 364.78;
  margin: 0;
}

.access-map-art__map {
  position: absolute;
  left: 10.05%;
  top: 18.80%;
  width: 81.88%;
  height: 77.23%;
  overflow: hidden;
  border-radius: 18px;
  z-index: 1;
  background: #ddd;
}

.access-map-art__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.9) contrast(1.02);
}

.access-map-art__frame {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.access-map-frame-svg {
  display: block;
  width: 100%;
  height: 100%;
}

.access-map-frame-svg #y {
  transform-origin: center;
}

.access-map-frame-svg #w {
  animation: suzuDogFloat 3.2s ease-in-out infinite;
  transform-origin: center;
}

/* ACCESS文字の黒を少しやわらかく */
.access-map-frame-svg #z path,
.access-map-frame-svg #w path,
.access-map-frame-svg #w circle,
.access-map-frame-svg #y rect {
  vector-effect: non-scaling-stroke;
}

/* =========================
   ROUTE
========================= */
.access-route-col {
  min-width: 0;
  padding-top: 8px;
}

.access-route-head {
  margin-bottom: 28px;
}

.access-route-head__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.24em;
color: var(--color-bg-soft);
}

.access-route-head__title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.45;
  font-weight: 500;
color: var(--color-bg);
}

.access-route-list {
  display: grid;
  gap: 18px;
}

.access-route-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 30px rgba(88, 63, 45, 0.08);
}

.access-route-card__label {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(46, 42, 40, 0.66);
  align-self: start;
  padding-top: 4px;
}

.access-route-card__body {
  min-width: 0;
}

.access-route-card__lead {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #2e2a28;
}

.access-route-card__text {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 2;
  color: rgba(46, 42, 40, 0.82);
}

.access-route-card__sub {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(46, 42, 40, 0.78);
}

.access-route-card__sub span {
  display: inline-block;
  min-width: 88px;
  margin-right: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(46, 42, 40, 0.52);
}

/* =========================
   animation
========================= */
@keyframes suzuDogFloat {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ・・・の共通 */
.access-map-frame-svg #aa,
.access-map-frame-svg #ab {
  opacity: 0;
  transform: translateX(-12px);
}

/* 1個目 */
.access-map-frame-svg #aa {
  animation: suzuDotSlide 1.2s ease-out infinite;
  animation-delay: 0.2s;
}

/* 2個目 */
.access-map-frame-svg #ab {
  animation: suzuDotSlide 1.2s ease-out infinite;
  animation-delay: 0.5s;
}
@keyframes suzuDotSlide {
  0% {
    opacity: 0;
    transform: translateX(-12px);
  }
  30% {
    opacity: 1;
    transform: translateX(0);
  }
  70% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(6px);
  }
}
/* =========================
   tablet
========================= */
@media (max-width: 1024px) {
  .access-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .access-map-art {
    max-width: 680px;
  }
}

/* =========================
   sp
========================= */
@media (max-width: 767px) {
  .home-room__title-wrap--access {
    margin-bottom: 30px;
  }

  .home-room__title-svg--access {
    width: min(260px, 68vw);
padding-left: 20px;
  }

  .access-layout {
    gap: 28px;
  }

  .access-route-head {
    margin-bottom: 22px;
  }

  .access-route-head__title {
    font-size: 22px;
    line-height: 1.7;
  }

  .access-route-list {
    gap: 14px;
  }

  .access-route-card {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 18px 16px;
    border-radius: 20px;
  }

  /* スマホ時はラベルを縦書き */
  .access-route-card__label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    letter-spacing: 0.18em;
    font-size: 11px;
    padding-top: 0;
    height: 84px;
  }

  .access-route-card__lead {
    font-size: 17px;
  }

  .access-route-card__text {
    font-size: 13px;
    line-height: 1.9;
  }

  .access-route-card__sub {
    font-size: 12px;
    line-height: 1.8;
  }

  .access-route-card__sub span {
    min-width: 72px;
  }
}
/* accessタイトルSVGを白に固定 */
.home-room__title-svg--access path,
.home-room__title-svg--access rect,
.home-room__title-svg--access circle,
.home-room__title-svg--access ellipse,
.home-room__title-svg--access polygon {
  fill: #fff !important;
  stroke: #fff !important;
}

/* =========================
   FAQ
========================= */
.home-faq {
  padding: 120px 0;
  background: #f7f4ef;
}

.home-faq__inner {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.home-faq__head {
  margin-bottom: 48px;
}

.home-faq__eyebrow {
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: #8a817b;
}

.home-faq__title {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 500;
  line-height: 1.2;
  color: #3e3a38;
}

.home-faq__lead {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 14px;
  line-height: 2;
  color: #6b625c;
}

.home-faq__list {
  border-top: 1px solid rgba(62, 58, 56, 0.18);
}

.home-faq__item {
  border-bottom: 1px solid rgba(62, 58, 56, 0.18);
}

.home-faq__question {
  appearance: none;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  text-align: left;
  cursor: pointer;
  color: inherit;
}

.home-faq__qmark,
.home-faq__amark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(62, 58, 56, 0.22);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #6b625c;
  flex-shrink: 0;
}

.home-faq__question-text {
  font-size: 18px;
  line-height: 1.7;
  color: #3e3a38;
}

.home-faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}

.home-faq__icon::before,
.home-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background: #3e3a38;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.home-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq__question[aria-expanded="true"] .home-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.home-faq__answer {
  padding: 0 0 28px;
}

.home-faq__answer-inner {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.home-faq__answer-inner p {
  margin: 0;
  font-size: 14px;
  line-height: 2;
  color: #6b625c;
}

.home-faq__footer {
  margin-top: 34px;
  display: flex;
  justify-content: flex-end;
}

.home-faq__more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 14px 28px;
  border: 1px solid rgba(62, 58, 56, 0.22);
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: #3e3a38;
  background: transparent;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.home-faq__more-button:hover {
  background: #3e3a38;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================
   sp
========================= */
@media (max-width: 767px) {
  .home-faq {
    padding: 88px 0 50px;
  }

  .home-faq__inner {
    width: min(100% - 24px, 100%);
  }

  .home-faq__head {
    margin-bottom: 34px;
  }

  .home-faq__title {
    font-size: 30px;
  }

  .home-faq__lead {
    font-size: 13px;
    line-height: 1.9;
  }

  .home-faq__question {
    grid-template-columns: 28px minmax(0, 1fr) 20px;
    gap: 12px;
    padding: 22px 0;
  }

  .home-faq__qmark,
  .home-faq__amark {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .home-faq__question-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .home-faq__answer-inner {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .home-faq__answer-inner p {
    font-size: 13px;
    line-height: 1.9;
  }

  .home-faq__footer {
    margin-top: 28px;
    justify-content: center;
  }

  .home-faq__more-button {
    width: 100%;
    min-width: 0;
  }
}

/* =========================
   SEE / TRAVEL
========================= */
.see {
  position: relative;
  padding: 120px 0;
  background: transparent;
  overflow: hidden;
background: #d8cec4;
}

.home-room__content--see {
  width: 100%;
}

.home-room__title-wrap--see {
  margin-bottom: 22px;
}

.home-room__title-svg--see {
  display: block;
  width: min(340px, 42vw);
  max-width: 100%;
  margin-left: 20px;
}

.see-intro {
  margin-bottom: 36px;
}

.see-intro__lead {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #3e3a38;
  letter-spacing: 0.08em;
}

.see-list-wrap {
  width: 100%;
}

.see-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.see-card {
  min-width: 0;
}

.see-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.see-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 0.82 / 1;
}

.see-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.9s ease;
}

.see-card__link:hover .see-card__image img {
  transform: scale(1.06);
}

.see-card__body {
  padding-top: 16px;
}

.see-card__title {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #3e3a38;
}

.see-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #6b625c;
}

/* =========================
   tablet
========================= */
@media (max-width: 1024px) {
  .see {
    padding: 100px 0;
  }

  .see-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 22px;
  }
}

/* =========================
   sp
========================= */
@media (max-width: 767px) {
  .see {
    padding: 84px 0;
  }

  .home-room__title-wrap--see {
    margin-bottom: 18px;
  }

  .home-room__title-svg--see {
width: min(260px, 68vw);
  }

  .see-intro {
    margin-bottom: 22px;
  }

  .see-intro__lead {
    font-size: 14px;
    line-height: 1.8;
  }

  .see-list-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-right: calc(50% - 50vw);
    padding-right: 20px;
  }

  .see-list-wrap::-webkit-scrollbar {
    display: none;
  }

  .see-list {
    display: flex;
    gap: 16px;
    width: max-content;
    min-width: 100%;
  }

  .see-card {
    width: 72vw;
    max-width: 300px;
    flex: 0 0 auto;
  }

  .see-card__image {
    aspect-ratio: 0.82 / 1.02;
    border-radius: 18px;
  }

  .see-card__body {
    padding-top: 14px;
  }

  .see-card__title {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .see-card__text {
    font-size: 13px;
    line-height: 1.85;
  }
}
/* =========================
   Floating Coupon
========================= */
.floating-coupon {
  position: fixed;
  left: 22px;
  bottom: 24px;
  z-index: 9997;
  width: min(320px, calc(100vw - 32px));
  animation: suzuCouponIn 0.8s ease both;
}

.floating-coupon.is-hidden {
  display: none;
}

.floating-coupon__inner {
  position: relative;
  width: 100%;
  border: 0;
  border-radius: 24px;
  padding: 22px 22px 20px;
  background: rgba(232, 215, 200, 0.96); /* #e8d7c8 ベージュ */
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(62, 58, 56, 0.14);
  text-align: left;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.floating-coupon__inner:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 50px rgba(62, 58, 56, 0.18);
}

.floating-coupon__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #3e3a38;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  padding: 0;
}

.floating-coupon__close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background: #fff;
  border-radius: 999px;
}

.floating-coupon__close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.floating-coupon__close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.floating-coupon__sub {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: #6b625c;
}

.floating-coupon__main {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-bottom: 14px;
  line-height: 1;
}

.floating-coupon__price {
  font-size: clamp(34px, 4vw, 42px);
  font-weight: 600;
  color: #3e3a38;
  letter-spacing: -0.03em;
}

.floating-coupon__off {
  font-size: 20px;
  font-weight: 500;
  color: #3e3a38;
  transform: translateY(-4px);
}

.floating-coupon__code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(62, 58, 56, 0.12);
  margin-bottom: 10px;
}

.floating-coupon__code-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8a817b;
}

.floating-coupon__code {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #3e3a38;
}

.floating-coupon__copy-note {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #8a817b;
}

/* コピー成功時 */
.floating-coupon.is-copied .floating-coupon__inner {
  background: rgba(223, 188, 193, 0.97);
}

.floating-coupon.is-copied .floating-coupon__copy-note {
  color: #3e3a38;
  font-weight: 500;
}

/* animation */
@keyframes suzuCouponIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   sp
========================= */
@media (max-width: 767px) {
  .floating-coupon {
    left: 12px;
    bottom: 16px;
    width: min(290px, calc(100vw - 24px));
  }

  .floating-coupon__inner {
    padding: 18px 18px 16px;
    border-radius: 20px;
  }

  .floating-coupon__sub {
    font-size: 11px;
    margin-bottom: 8px;
  }

  .floating-coupon__price {
    font-size: 32px;
  }

  .floating-coupon__off {
    font-size: 18px;
  }

  .floating-coupon__code-wrap {
    padding: 9px 12px;
    gap: 8px;
  }

  .floating-coupon__code {
    font-size: 14px;
  }

  .floating-coupon__copy-note {
    font-size: 10px;
  }
}
/* =========================
   Floating Coupon Dog
========================= */
.floating-coupon__dog {
  position: absolute;
  left: 14px;
  top: -62px;
  width: calc(100% - 28px);
  height: 58px;
  pointer-events: none;
  overflow: visible;
  z-index: 2;
}

.floating-coupon__dog-walk {
  position: absolute;
  left: 0;
  bottom: 0;
  animation: suzuDogWalkX 7s linear infinite;
}

.floating-coupon__dog-svg-wrap {
  width: 58px;
  height: auto;
  animation: suzuDogWalkBounce 0.9s ease-in-out infinite;
}

.floating-coupon__dog-svg {
  display: block;
  width: 100%;
  height: auto;
}

.floating-coupon__dog-svg path {
  fill: #3e3a38;
}

/* スマホで正しかった向きに統一 */
@keyframes suzuDogWalkX {
  0% {
    transform: translateX(0) scaleX(-1);
  }
  45% {
    transform: translateX(210px) scaleX(-1);
  }
  50% {
    transform: translateX(210px) scaleX(1);
  }
  95% {
    transform: translateX(0) scaleX(1);
  }
  100% {
    transform: translateX(0) scaleX(-1);
  }
}

@keyframes suzuDogWalkBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@media (max-width: 767px) {
  .floating-coupon__dog {
    top: -52px;
    height: 48px;
  }

  .floating-coupon__dog-svg-wrap {
    width: 50px;
  }

  /* スマホは距離だけ短くする */
  .floating-coupon__dog-walk {
    animation: suzuDogWalkXSp 7s linear infinite;
  }

  @keyframes suzuDogWalkXSp {
    0% {
      transform: translateX(0) scaleX(-1);
    }
    45% {
      transform: translateX(180px) scaleX(-1);
    }
    50% {
      transform: translateX(180px) scaleX(1);
    }
    95% {
      transform: translateX(0) scaleX(1);
    }
    100% {
      transform: translateX(0) scaleX(-1);
    }
  }
}







/* =========================
   BOOK BAR
========================= */
.home-book {
  position: relative;
margin-top: 20px;
  z-index: 20;
}

.home-book__inner {
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.home-book__form {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.9fr 180px;
  align-items: end;
  gap: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(62, 58, 56, 0.12);
  overflow: hidden;
  border: 1px solid rgba(62, 58, 56, 0.08);
}

.home-book__field {
  position: relative;
  padding: 22px 26px 20px;
}

.home-book__field:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 42px;
  background: rgba(62, 58, 56, 0.12);
  transform: translateY(-50%);
}

.home-book__label {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #8a817b;
}

.home-book__input {
  width: 100%;
  border: 0;
  background: transparent;
  font-size: 16px;
  line-height: 1.4;
  color: #3e3a38;
  outline: none;
  font-family: inherit;
}

.home-book__input::-webkit-calendar-picker-indicator {
  opacity: 0.7;
  cursor: pointer;
}

.home-book__select {
  appearance: none;
  cursor: pointer;
}

.home-book__submit {
  height: 100%;
  min-height: 92px;
  border: 0;
  background: #3e3a38;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home-book__submit:hover {
  background: #2f2a28;
}

/* tablet */
@media (max-width: 1024px) {
  .home-book {
    margin-top: -28px;
  }

  .home-book__form {
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
  }

  .home-book__field--guest::after {
    display: none;
  }

  .home-book__submit {
    min-height: 74px;
    grid-column: 1 / -1;
  }
}

/* sp */
@media (max-width: 767px) {
  .home-book {
    margin-top: -18px;
  }

  .home-book__inner {
    width: min(100% - 24px, 100%);
  }

  .home-book__form {
    grid-template-columns: 1fr;
    border-radius: 22px;
margin-top: 30px;
  }

  .home-book__field {
    padding: 18px 18px 16px;
  }

  .home-book__field::after {
    display: none;
  }

  .home-book__field:not(:last-of-type) {
    border-bottom: 1px solid rgba(62, 58, 56, 0.08);
  }

  .home-book__label {
    font-size: 10px;
    margin-bottom: 6px;
  }

  .home-book__input {
    font-size: 15px;
  }

  .home-book__submit {
    min-height: 58px;
    font-size: 12px;
    letter-spacing: 0.14em;
  }
}