:root {
  /* ===========================
       Base
    =========================== */

  --color-bg: #f5f5f5;
  --color-text: #333333;
  --color-accent: #fffee5;

  /* ===========================
       KAMENOI HOTEL
    =========================== */

  --color-kamenoi-bg: #fcefdb;
  --color-kamenoi-text: #641510;

  /* ===========================
       Ocean Resort
    =========================== */

  --color-ocean-bg: #dfedf5;
  --color-ocean-text: #373996;

  /* ===========================
       Wan Wan Paradise
    =========================== */

  --color-wanpara-bg: #d5ebd1;
  --color-wanpara-text: #01395c;

  /* ===========================
       Kusatsu Daitokan
    =========================== */

  --color-daitokan-bg: #ece3de;
  --color-daitokan-text: #4a3931;
}

html {
  scroll-behavior: smooth;
}

.twd-iconia-lp,
.twd-iconia-lp * {
  box-sizing: border-box;
}

.twd-iconia-lp {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 16px;
}

.twd-iconia-lp img {
  display: block;
  max-width: 100%;
}

.twd-iconia-lp a {
  text-decoration: none;
}

.twd-iconia-lp {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: "Zen Old Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
}

.twd-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.twd-fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .twd-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* fv */
.twd-fv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.twd-fv::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: rgba(255, 255, 255, 0.25);

  pointer-events: none;
}

/* =========================
   FV background slider
========================= */
/* 背景スライド全体 */
.twd-fv__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* 各背景 */
.twd-fv__slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  opacity: 0;
  transform: scale(1);

  animation: twd-fv-slide 24s infinite;
  animation-timing-function: ease-in-out;

  will-change: opacity, transform;
}

/* 画像指定 */
.twd-fv__slide--01 {
  background-image: url("https://www.travelwithdog.com/com/wp-content/uploads/2026/08/iconia-fv-scaled.webp");
  animation-delay: 0s;
}

.twd-fv__slide--02 {
  background-image: url("https://www.travelwithdog.com/com/wp-content/uploads/2026/08/fv02.webp");
  animation-delay: 8s;
}

.twd-fv__slide--03 {
  background-image: url("https://www.travelwithdog.com/com/wp-content/uploads/2026/08/oceanresort-reson02-scaled.webp");
  animation-delay: 16s;
}

/* ゆっくりズーム＋クロスフェード */
@keyframes twd-fv-slide {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  8% {
    opacity: 1;
  }

  28% {
    opacity: 1;
  }

  42% {
    opacity: 0;
    transform: scale(1.07);
  }

  100% {
    opacity: 0;
    transform: scale(1.07);
  }
}

.twd-container {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 80px), 1200px);
  margin: 0 auto;
}

.twd-fv__inner {
  position: relative;
  z-index: 2;
  min-height: 680px;
}

.twd-fv__content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-top: 135px;
}

.twd-fv__text {
  width: 50%;
}

.twd-fv__title {
  margin: 0;
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
  filter: drop-shadow(1px 1px 4px rgba(255, 255, 255, 1));
}

.twd-fv__lead {
  margin: 26px 0 0;
  line-height: 1.9;
  letter-spacing: 0.12em;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 1));
}

.twd-fv__logo {
  display: flex;
  justify-content: center;
  width: 38%;
}

.twd-fv__logo-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 260px;
  aspect-ratio: 1/1.1;

  border: 1px solid #333;
  border-radius: 50% / 45%;
}

.twd-fv__iconia {
  width: 160px;
  height: auto;
  margin-bottom: 32px;
}

.twd-fv__curated {
  margin: 0;
  font-size: 14px;
  margin-bottom: 16px;
}

.twd-fv__twd {
  width: 100px;
  height: auto;
}

.twd-fv__curve {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 3;

  width: 100%;
  height: auto;

  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .twd-fv {
    min-height: 680px;
  }

  .twd-fv__slide--01 {
    background-position: 70% center;
  }

  .twd-container {
    width: calc(100% - 40px);
  }

  .twd-fv__content {
    display: block;
    padding-top: 70px;
  }

  .twd-fv__text {
    width: 100%;
  }

  .twd-fv__title {
    font-size: clamp(27px, 8vw, 36px);
  }

  .twd-fv__lead {
    font-size: 14px;
  }

  .twd-fv__logo {
    justify-content: flex-end;
    width: 100%;
    margin-top: 25px;
    padding-top: 0;
  }

  .twd-fv__logo-frame {
    width: 180px;
    padding: 60px 24px 32px;
  }

  .twd-fv__iconia {
    width: 120px;
    margin-bottom: 24px;
  }

  .twd-fv__twd {
    width: 80px;
  }

  .twd-fv__curve {
    left: 50%;
    width: 150%;
    max-width: none;
    transform: translateX(-50%);
  }
}

/* ===========================
   TWD Selection
=========================== */

.twd-selection {
  padding: 90px 0 110px;
}

.twd-selection__box {
  position: relative;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 56px 24px 60px;

  background-color: var(--color-accent);

  border: 1px solid var(--color-ocean-text);
  border-radius: 300px;
}

/* 上の手書き風SVG */
.twd-selection__title-img {
  position: absolute;
  top: -42px;
  left: 50%;
  z-index: 2;

  width: min(70%, 520px);
  height: auto;

  transform: translateX(-50%);
}

.twd-selection__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* ===========================
   Profile
=========================== */

.twd-selection__profile {
  position: relative;
  flex: 0 0 200px;
  align-self: flex-start;
  text-align: center;
}

.twd-selection__person {
  position: relative;
  z-index: 1;

  width: 100%;
  height: auto;
}

.twd-selection__name {
  position: relative;
  z-index: 2;

  width: fit-content;
  min-width: 165px;
  margin: -12px auto 0;
  padding: 8px 32px;

  color: var(--color-ocean-text);
  background-color: #fff;

  border: 1px solid var(--color-ocean-text);
  border-radius: 999px;

  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
}

.twd-selection__name span {
  margin-right: 8px;
  font-size: 11px;
}

/* ===========================
   Text
=========================== */

.twd-selection__body {
  flex: 1;
  max-width: 470px;
}

.twd-selection__heading {
  margin: 0;

  color: var(--color-ocean-text);

  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.1em;
}

.twd-selection__text {
  margin: 22px 0 0;

  font-size: clamp(16px, 1vw, 20px);
  line-height: 2;
  letter-spacing: 0.08em;
}

/* ===========================
   Tablet
=========================== */

@media screen and (max-width: 900px) {
  .twd-selection__box {
    width: calc(100% - 40px);
    padding: 60px 45px 45px;
  }

  .twd-selection__content {
    gap: 35px;
  }

  .twd-selection__profile {
    width: 190px;
  }

  .twd-selection__body {
    max-width: 420px;
  }
}

/* ===========================
   Smartphone
=========================== */

@media screen and (max-width: 767px) {
  .twd-selection {
    padding: 75px 0 85px;
  }

  .twd-selection__box {
    width: calc(100% - 32px);
    padding: 65px 24px 38px;

    border-radius: 50px;
  }

  .twd-selection__title-img {
    top: -27px;
    width: 85%;
  }

  .twd-selection__content {
    flex-direction: column;
    gap: 25px;
  }

  .twd-selection__profile {
    width: 180px;
    margin-inline: auto;
  }

  .twd-selection__name {
    min-width: 165px;
    padding: 8px 16px;
  }

  .twd-selection__body {
    max-width: none;
    text-align: left;
  }

  .twd-selection__heading {
    font-size: 20px;
    line-height: 1.65;
  }

  .twd-selection__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .twd-selection__text br {
    display: none;
  }
}

/* ===========================
   Hotel Guide
=========================== */

.twd-hotel-guide {
  padding: 70px 0 120px;
}

.twd-brand-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: min(100%, 1300px);
  margin: 0 auto;
}

/* ===========================
   Brand Card
=========================== */

.twd-brand-card {
  position: relative;
  padding: 14px 40px 28px;
}

.twd-brand-card--kamenoi {
  color: var(--color-kamenoi-text);
  background-color: var(--color-kamenoi-bg);
}

.twd-brand-card--ocean {
  color: var(--color-ocean-text);
  background-color: var(--color-ocean-bg);
}

.twd-brand-card--wanpara {
  color: var(--color-wanpara-text);
  background-color: var(--color-wanpara-bg);
}

.twd-brand-card__catch {
  margin: 0 0 4px;

  font-size: 19px;
  line-height: 1.5;
  letter-spacing: 0.12em;
  text-align: right;
}

.twd-brand-card__image-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.twd-brand-card__image {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  object-fit: cover;
  transition: 0.6s ease;
}

.twd-brand-card-link:hover .twd-brand-card__image {
  transform: scale(1.03);
  opacity: 0.5;
}

.twd-brand-card__logo {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 120px;
  height: auto;
  filter: drop-shadow(1px 1px 2px rgba(255, 255, 255, 1));
}

.ocean-logo {
  width: 100px;
}

.twd-brand-card__body {
  position: relative;
  z-index: 2;
  margin-top: -16px;
}

.twd-brand-card__text {
  display: table;
  margin: 0 -24px 6px -24px;
  padding: 3px 8px;
  background-color: #fff;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.twd-brand-card__text:last-child {
  margin-bottom: 0;
}

/* ===========================
   Daitokan Card
=========================== */

.twd-feature {
  position: relative;
}

.twd-feature-card {
  position: relative;

  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 0 40px;

  width: min(100%, 800px);
  margin: 80px auto 0;
  padding: 40px 56px;

  overflow: hidden;
  border-radius: 50px;
}

.twd-feature-card--daitokan {
  color: var(--color-daitokan-text);
  background-color: var(--color-daitokan-bg);
}

.twd-feature-card__image-wrap {
  overflow: hidden;
  border-radius: 38px;
}

.twd-feature-card__image {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.twd-feature-card__body {
  position: relative;
  z-index: 2;
}

.twd-feature-card__heading-wrap {
  display: flex;
  align-items: baseline;
  gap: 24px;

  padding-bottom: 13px;
  border-bottom: 1px solid currentColor;
}

.twd-feature-card__place,
.twd-feature-card__title {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.twd-feature-card__place {
  font-size: 20px;
}

.twd-feature-card__title {
  font-size: 24px;
}

.twd-feature-card__text {
  margin: 24px 0 0;

  color: var(--color-text);

  line-height: 2;
  letter-spacing: 0.08em;
}

.twd-feature-card__paws-img {
  position: absolute;
  top: -20%;
  right: 16%;
  width: 140px;
}

/* ===========================
   Tablet
=========================== */

@media screen and (max-width: 900px) {
  .twd-brand-cards {
    width: calc(100% - 40px);
    gap: 25px;
  }

  .twd-brand-card {
    padding: 12px 12px 24px;
  }

  .twd-brand-card__catch {
    font-size: 17px;
  }

  .twd-brand-card__text {
    margin: 0 0 6px 0;
    padding: 3px 8px;
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .twd-feature-card {
    width: calc(100% - 60px);
  }
}

/* ===========================
   Smartphone
=========================== */

@media screen and (max-width: 767px) {
  .twd-hotel-guide {
    padding: 50px 0 80px;
  }

  .twd-brand-cards {
    grid-template-columns: 1fr;
    width: calc(100% - 24px);
    gap: 32px;
  }

  .twd-brand-card {
    padding: 14px 24px 26px;
  }

  .twd-brand-card__catch {
    font-size: 18px;
  }

  .twd-brand-card__logo {
    width: 68px;
  }

  .twd-feature-card {
    grid-template-columns: 1fr;
    gap: 25px;

    width: calc(100% - 24px);
    margin-top: 55px;
    padding: 25px;

    border-radius: 38px;
  }

  .twd-feature-card__image-wrap {
    border-radius: 28px;
  }

  .twd-feature-card__heading-wrap {
    justify-content: center;
    gap: 18px;
  }

  .twd-feature-card__text {
    text-align: center;
  }

  .twd-feature-card__paws-img {
    top: -26%;
    right: -3%;
  }
}

/* ===========================
   Hotel Brand
=========================== */

.hotel-brand {
  padding: 110px 0 130px;
}

.hotel-brand--kamenoi {
  color: var(--color-kamenoi-text);
  background-color: var(--color-kamenoi-bg);
}

/* ===========================
   Brand Intro
=========================== */

.hotel-brand__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  gap: 60px;
}

.hotel-brand__intro-text {
  max-width: 520px;
}

.hotel-brand__logo {
  width: 180px;
  height: auto;
}

.hotel-brand__lead {
  margin: 44px 0 0;

  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.hotel-brand__description {
  margin: 28px 0 0;
  color: var(--color-text);
  line-height: 2;
  letter-spacing: 0.06em;
}

.twd-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;

  min-width: 170px;
  margin-top: 32px;
  padding: 11px 22px;

  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 999px;

  font-size: 14px;
  letter-spacing: 0.14em;
  text-decoration: none;

  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}

.twd-outline-button::after {
  content: "";

  width: 7px;
  height: 7px;

  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;

  transform: rotate(45deg);

  transition: 0.3s;
}

.twd-outline-button:hover::after {
  transform: rotate(45deg) translate(3px, -3px);
}

.hotel-brand--kamenoi .twd-outline-button:hover {
  color: var(--color-kamenoi-bg);
  background-color: var(--color-kamenoi-text);
}

.hotel-brand--ocean .twd-outline-button:hover {
  color: var(--color-ocean-bg);
  background-color: var(--color-ocean-text);
}

.hotel-brand__hero {
  position: relative;
  padding-top: 40px;
}

.hotel-brand__script-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

  width: min(70%, 360px);
  height: auto;
}

.hotel-brand__hero-image {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: cover;
}

/* ===========================
   Hotel List
=========================== */

.hotel-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 55px 70px;

  width: min(100%, 1000px);
  margin: 90px auto 0;
}

.hotel-card {
  overflow: visible;
  background-color: transparent;
}

.hotel-card__image-wrap {
  overflow: hidden;
  aspect-ratio: 1.55 / 1;
  border-radius: 0 70px 0 0;
}

.hotel-card__image {
  width: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.hotel-card:hover .hotel-card__image {
  transform: scale(1.03);
  opacity: 0.5;
}

.hotel-card__body {
  padding: 0 14px 18px;
  background-color: var(--color-bg);
}

.hotel-card__title-area {
  min-height: 82px;
}

.hotel-card__title {
  position: relative;
  display: table;

  margin: -20px 0 0;
  padding: 4px 10px;

  color: var(--color-kamenoi-text);
  background-color: #fff;

  font-size: 24px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.08em;
}

.hotel-card__catch {
  margin: 22px 0 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-size: 18px;
  color: var(--color-text);
}

.single-title {
  margin-top: -4px;
  padding-bottom: 27px;
}

.hotel-card__address,
.hotel-card__dogs {
  margin: 18px 0 0;
  color: var(--color-text);
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.04em;
}

.hotel-card__dogs {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
}

.hotel-card__dogs img {
  flex-shrink: 0;
  width: 16px;
  height: auto;
}

/* ===========================
   Attraction
=========================== */

.hotel-attraction {
  width: min(100%, 1050px);
  margin: 120px auto 0;
}

.hotel-attraction__header {
  text-align: center;
}

.hotel-attraction__title {
  margin: 0;

  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.hotel-attraction__lead {
  margin: 22px 0 0;

  color: var(--color-text);

  line-height: 1.9;
  letter-spacing: 0.07em;
}

.hotel-attraction__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;

  margin-top: 65px;
}

.hotel-attraction-card__title {
  display: table;

  min-width: 150px;
  margin: 0 0 14px;
  padding: 8px 20px;

  border: 1px solid currentColor;

  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
}

.hotel-attraction-card__image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.hotel-attraction-card__text {
  margin: 15px 0 0;

  color: var(--color-text);

  line-height: 1.8;
  letter-spacing: 0.04em;
}

/* ===========================
   Tablet
=========================== */

@media screen and (max-width: 900px) {
  .hotel-brand {
    padding: 90px 0 110px;
  }

  .hotel-brand__intro {
    gap: 40px;
  }

  .hotel-brand__lead br,
  .hotel-brand__description br {
    display: none;
  }

  .hotel-list {
    width: calc(100% - 40px);
    gap: 40px 35px;
  }
}

/* ===========================
   Smartphone
=========================== */

@media screen and (max-width: 767px) {
  .hotel-brand {
    padding: 70px 0 85px;
  }

  .hotel-brand__intro {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hotel-brand__intro-text {
    max-width: none;
  }

  .hotel-brand__logo {
    width: 150px;
  }

  .hotel-brand__lead {
    margin-top: 30px;
    font-size: 20px;
  }

  .hotel-brand__hero {
    padding-top: 25px;
  }

  .hotel-brand__script-logo {
    width: 68%;
  }

  .hotel-list {
    grid-template-columns: 1fr;
    width: 100%;
    margin-top: 65px;
    gap: 34px;
  }

  .hotel-card__image-wrap {
    border-radius: 0 48px 0 0;
  }

  .hotel-card__title {
    font-size: 20px;
  }

  .hotel-attraction {
    margin-top: 90px;
    padding-inline: 20px;
  }

  .hotel-attraction__header {
    max-width: 360px;
    margin-inline: auto;
  }

  .hotel-attraction__title {
    font-size: 21px;
    line-height: 1.65;
    letter-spacing: 0.06em;
  }

  .hotel-attraction__lead {
    margin-top: 20px;
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.03em;
  }

  .hotel-attraction__lead br {
    display: none;
  }

  .hotel-attraction__grid {
    grid-template-columns: 1fr;
    gap: 45px;
    margin-top: 45px;
  }

  .hotel-attraction-card__title {
    min-width: 140px;
    font-size: 17px;
  }
}

/* ===========================
   Ocean Resort
=========================== */

.hotel-brand--ocean {
  color: var(--color-ocean-text);
  background-color: var(--color-ocean-bg);
  position: relative;
}

#oceanresort .hotel-brand__hero-image,
#wanpara .hotel-brand__hero-image {
  opacity: 0.7;
}

/* オーシャンは画像を左、文章を右にする */
.hotel-brand__intro--reverse {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
}

/* ブランドロゴ */
.hotel-brand__logo--ocean {
  width: 190px;
}

/* 手書きロゴの位置 */
.hotel-brand__script-logo--ocean {
  top: 0;
  left: 0;
  width: min(65%, 360px);
}

.moving-dog {
  position: absolute;
  top: -55px;
  right: 16%;
  width: 120px;
  transform: translateX(-50%);
  animation: dog-bounce 2s ease-in-out infinite;
  will-change: transform;
  z-index: 20;
}

@keyframes dog-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-12px);
  }

  55% {
    transform: translateY(-12px);
  }
}

#oceanresort .hotel-card__catch {
  min-height: 3.6em;
}

/* ボタンのホバー */
.hotel-brand--ocean .twd-outline-button:hover {
  color: var(--color-ocean-bg);
  background-color: var(--color-ocean-text);
}

/* 施設カード */
.hotel-brand--ocean .hotel-card__title {
  color: var(--color-ocean-text);
}

/* SP */
@media screen and (max-width: 767px) {
  .hotel-brand__intro--reverse {
    grid-template-columns: 1fr;
  }

  .hotel-brand__intro--reverse .hotel-brand__hero {
    order: 2;
  }

  .hotel-brand__intro--reverse .hotel-brand__intro-text {
    order: 1;
  }

  .hotel-brand__script-logo--ocean {
    width: 72%;
  }
}

/* ===========================
   WanWan Paradise
=========================== */

.hotel-brand--wanpara {
  position: relative;
  background: var(--color-wanpara-bg);
  color: var(--color-wanpara-text);
}

/* 境界の犬 */
.hotel-brand__divider-dog {
  position: absolute;
  top: -55px;
  left: 40%;
  width: 120px;
  animation: dog-wag 2s ease-in-out infinite;
  transform-origin: center bottom;
  z-index: 20;
}

@keyframes dog-wag {
  0%,
  100% {
    transform: rotate(-3deg);
  }

  50% {
    transform: rotate(3deg);
  }
}

/* ロゴ */
.hotel-brand__logo--wanpara {
  width: 160px;
}

/* 手書き文字 */
.hotel-brand__script-logo--wanpara {
  top: 0;
  left: 0;
  width: min(80%, 560px);
}

/* ボタン */
.hotel-brand--wanpara .twd-outline-button:hover {
  background: var(--color-wanpara-text);
  color: var(--color-wanpara-bg);
}

/* タイトル色 */
.hotel-brand--wanpara .hotel-card__title {
  color: var(--color-wanpara-text);
}

/* feature */
.hotel-brand--wanpara .hotel-attraction__title {
  color: var(--color-wanpara-text);
}

/*====================================
CTA
====================================*/

.twd-cta {
  position: relative;
  padding: 80px 20px;
  background: url("https://www.travelwithdog.com/com/wp-content/uploads/2026/08/iconia-cta-scaled.jpg")
    center / cover no-repeat;
  min-height: 100svh;
}

.twd-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  pointer-events: none;
}

.twd-cta__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 760px);
  min-height: calc(100svh - 112px);
  margin: 0 auto;
  text-align: center;
}

.twd-cta__main {
  margin: auto 0;
}

.twd-cta__title {
  margin: 0 0 32px;
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.twd-cta__text {
  margin: 0 0 56px;
  font-size: 18px;
  line-height: 2;
}

.twd-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(100%, 360px);
  height: 68px;
  background: var(--color-accent);
  border: 1px solid var(--color-ocean-text);
  border-radius: 999px;
  color: var(--color-ocean-text);
  transition: 0.35s;
}

.twd-cta__button svg {
  transition: 0.3s;
}

.twd-cta__button:hover {
  background: var(--color-ocean-text);
  color: #fff;
}

.twd-cta__button:hover svg {
  transform: translateX(6px);
}

/* footer部分 */

.twd-cta__footer {
  margin-top: 60px;
}

.twd-cta__footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  letter-spacing: 0.08em;
}

.twd-cta__footer-links a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.twd-cta__footer-links a:hover {
  opacity: 0.55;
}

.twd-cta__copyright {
  margin: 16px 0 0;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
}
