/* =========================
   DOG DEPT
   Base Settings
========================= */

:root {
  /* Color */
  --color-base: #fffeee;
  --color-accent: #c00017;

  --color-karuizawa: #dcecd4;
  --color-awa: #bde0f0;
  --color-tateyama: #b9d5ab;

  --color-navy: #18316b;
  --color-text: #312727;
  --color-white: #ffffff;

  /* Font */
  --font-en: "Manrope", sans-serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;

  background: var(--color-base);
  color: var(--color-text);

  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.18em;

  -webkit-font-smoothing: antialiased;
}

/* 英字用 */
.font-en {
  font-family: var(--font-en);
}

.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
========================= */

.dogdept-fv {
  position: relative;
  width: 100%;
  min-height: 100svh;
  overflow: hidden;
}

.dogdept-fv__inner {
  position: relative;
  z-index: 2;
  min-height: 820px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 80px;
}

.dogdept-fv__content {
  width: min(100%, 600px);

  color: var(--color-white);
}

/* DOG FIRST, TRAVEL FREE. */
.dogdept-fv__en {
  margin: 0;

  font-family: var(--font-en);
  font-weight: 600;
  font-style: italic;

  line-height: 1.5;
  letter-spacing: 0.18em;
}

/* 愛犬ともっと自由な旅へ。 */
.dogdept-fv__title {
  margin: 8px 0 0;

  font-family: var(--font-ja);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 700;

  line-height: 1.5;
  letter-spacing: 0.12em;
}

/* FV説明 */
.dogdept-fv__lead {
  margin: 16px 0 0;

  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 500;

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

/* =========================
   FV SLIDER
========================= */
.dogdept-fv__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.dogdept-fv__slide {
  position: absolute;
  inset: 0;

  opacity: 0;

  transition: opacity 2s ease;
}

.dogdept-fv__slide.is-active {
  opacity: 1;
}

.dogdept-fv__slide img {
  display: block;
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 40%;

  transform: scale(1.08);
}

/* 表示された瞬間だけ1 → 1.08へ */
.dogdept-fv__slide.is-active img {
  animation: fvZoom 7s linear both;
}

@keyframes fvZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

/* =========================
   Logo
========================= */

.dogdept-fv__logos {
  display: flex;
  align-items: center;

  gap: 18px;
  margin-top: 24px;
}

.dogdept-fv__logo {
  display: block;

  width: auto;
  object-fit: contain;
}

.dogdept-fv__logo--dogdept {
  height: 55px;
}

.dogdept-fv__logo--twd {
  height: 48px;
}

.dogdept-fv__cross {
  color: var(--color-white);

  font-family: var(--font-en);
  font-size: 40px;
  font-weight: 400;

  line-height: 1;
}

/* =========================
　　Wave
========================= */
.dogdept-fv .section-wave {
  z-index: 3;
}

.section-wave {
  position: absolute;
  left: 0;
  bottom: -20px;

  width: 100%;

  line-height: 0;
}

.section-wave img {
  display: block;

  width: 100%;
  height: auto;
}

/* =========================
　　FV Responsive
========================= */

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .dogdept-fv {
    min-height: 720px;
  }

  .dogdept-fv__inner {
    width: calc(100% - 64px);
    min-height: 720px;
    padding-top: 80px;
  }

  .dogdept-fv__content {
    width: 44%;
    min-width: 360px;
  }

  .dogdept-fv__en {
    font-size: 16px;
    letter-spacing: 0.15em;
  }

  .dogdept-fv__title {
    margin-top: 14px;
    font-size: clamp(28px, 3.5vw, 38px);
    letter-spacing: 0.09em;
  }

  .dogdept-fv__lead {
    margin-top: 22px;

    font-size: 13px;

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

  .dogdept-fv__logos {
    gap: 14px;

    margin-top: 24px;
  }

  .dogdept-fv__logo--dogdept {
    height: 46px;
  }

  .dogdept-fv__logo--twd {
    height: 40px;
  }

  .dogdept-fv__cross {
    font-size: 25px;
  }
}

/* ---------- Smartphone ---------- */
@media (max-width: 767px) {
  .dogdept-fv {
    min-height: 680px;
  }

  .dogdept-fv__inner {
    width: calc(100% - 40px);
    min-height: 680px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    padding-top: 55px;
  }

  .dogdept-fv__content {
    width: 70%;
    min-width: 0;
    text-align: left;
  }

  .dogdept-fv__en {
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 0.16em;
  }

  .dogdept-fv__title {
    margin-top: 10px;
    font-size: clamp(25px, 7vw, 30px);
    line-height: 1.5;
    letter-spacing: 0.07em;
  }

  .dogdept-fv__lead {
    margin-top: 18px;
    font-size: 11px;
    line-height: 1.9;
    letter-spacing: 0.06em;
  }

  .dogdept-fv__logos {
    gap: 10px;
    margin-top: 20px;
  }

  .dogdept-fv__logo--dogdept {
    height: 38px;
  }

  .dogdept-fv__logo--twd {
    height: 32px;
  }

  .dogdept-fv__cross {
    font-size: 21px;
  }

  .section-wave {
    bottom: -10px;
  }
}

/* ---------- Small Smartphone ---------- */
@media (max-width: 390px) {
  .dogdept-fv {
    min-height: 630px;
  }

  .dogdept-fv__inner {
    width: calc(100% - 32px);
    min-height: 630px;

    padding-top: 45px;
  }

  .dogdept-fv__title {
    font-size: 24px;
  }

  .dogdept-fv__lead {
    font-size: 10px;
  }

  .dogdept-fv__logo--dogdept {
    height: 34px;
  }

  .dogdept-fv__logo--twd {
    height: 29px;
  }
}

/* =========================
  DOG FIRST / INTRO
========================= */

.dogdept-intro {
  position: relative;

  padding: 70px 0 150px;

  overflow: hidden;

  background: var(--color-base);
}

.dogdept-intro__inner {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
}

/* -------------------------
  Intro text
------------------------- */

.dogdept-intro__content {
  position: relative;

  width: 800px;
  margin-left: 80px;
}

.dogdept-intro__title-wrap {
  position: relative;
}

.dogdept-intro__bg-title {
  position: absolute;
  top: -48px;
  left: -5px;

  margin: 0;

  color: rgba(24, 49, 107, 0.07);

  font-size: 80px;
  font-weight: 500;
  font-style: italic;

  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.dogdept-intro__title {
  position: relative;
  z-index: 1;

  margin: 0;

  color: var(--color-navy);

  font-family: var(--font-ja);
  font-size: 40px;
  font-weight: 700;

  line-height: 1.7;
  letter-spacing: 0.18em;
}

.dogdept-intro__text {
  margin: 28px 0 0 250px;

  color: var(--color-text);

  font-family: var(--font-ja);
  font-size: 16px;

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

/* =========================
  Photos
========================= */

.dogdept-intro__photos {
  position: relative;
  min-height: 470px;
  margin-top: 20px;
}

.dogdept-intro__photo {
  position: absolute;
  margin: 0;
  border-radius: 300px;
  overflow: hidden;
}

.dogdept-intro__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.dogdept-intro__photo--left {
  left: -8%;
  top: 0;
  width: 380px;
  aspect-ratio: 1 / 1.45;
}

.dogdept-intro__photo--right-top {
  right: -8%;
  top: -180px;
  width: 320px;
}

.dogdept-intro__photo--right-bottom {
  right: 120px;
  bottom: -12%;
  width: 400px;
}

/* =========================
  Travel With Dog Selection
========================= */

.dogdept-selection {
  width: min(100%, 900px);

  margin: 140px auto 120px;
}

.dogdept-selection__heading {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 0 auto -15px;
  padding: 0 18px;
  background: var(--color-base);
  color: var(--color-accent);
  font-size: 32px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
}

.dogdept-selection__box {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 170px;
  padding: 28px 55px;
  border: 1px solid var(--color-accent);
  border-radius: 300px;
}

.dogdept-selection__profile {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}

.dogdept-selection__person {
  display: block;
  width: 150px;
  margin: 0 auto;
}

.dogdept-selection__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: -2px 0 0;
  padding: 5px 13px;
  border: 1px solid var(--color-navy);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 20px;
  font-weight: 700;
}

.dogdept-selection__name span {
  font-size: 14px;
}

.dogdept-selection__body {
  flex: 1;
}

.dogdept-selection__title {
  margin: 0;
  color: var(--color-navy);
  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.dogdept-selection__text {
  margin: 13px 0 0;
  color: var(--color-text);
  font-family: var(--font-ja);
  line-height: 1.9;
  letter-spacing: 0.04em;
}

@media (max-width: 1024px) {
  .dogdept-intro__photo--right-top {
    top: 0;
  }

  .dogdept-intro__photo--right-bottom {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .dogdept-intro {
    padding: 80px 0;
  }

  .dogdept-intro__inner {
    width: calc(100% - 40px);
  }

  .dogdept-intro__content {
    width: 100%;
    margin-left: 0;
  }

  .dogdept-intro__bg-title {
    top: -32px;
    font-size: 52px;
  }

  .dogdept-intro__title {
    font-size: 23px;
  }

  .dogdept-intro__text {
    margin: 22px 0 0;
    font-size: 12px;
  }

  .dogdept-intro__photos {
    min-height: 420px;
    margin-top: 35px;
  }

  .dogdept-intro__photo--left {
    left: 0;
    top: 0;
    width: 40vw;
  }

  .dogdept-intro__photo--right-top {
    top: -16%;
    width: 30vw;
  }

  .dogdept-intro__photo--right-bottom {
    right: 0;
    bottom: 0;
    width: 50vw;
  }

  .dogdept-selection {
    margin-top: 50px;
  }

  .dogdept-selection__heading {
    margin-bottom: 8px;

    padding: 0;

    background: transparent;

    font-size: 20px;
  }

  .dogdept-selection__box {
    display: block;

    padding: 30px 24px;

    border-radius: 40px;
  }

  .dogdept-selection__profile {
    width: 180px;
    margin: 0 auto 22px;
  }

  .dogdept-selection__person {
    width: 130px;
  }

  .dogdept-selection__name {
    padding: 8px 24px;
    font-size: 16px;
  }

  .dogdept-selection__title {
    font-size: 18px;
  }

  .dogdept-selection__text {
    font-size: 14px;
  }
}

@media (max-width: 390px) {
  .dogdept-intro__photo--left {
    top: 16px;
  }

  .dogdept-intro__photo--right-top {
    top: 0;
  }

  .dogdept-intro__photo--right-bottom {
    bottom: 32px;
  }
}

/* =========================
  HOTEL COMMON
========================= */

.dogdept-hotel {
  position: relative;
  padding: 40px 0 200px;
  overflow: hidden;
  color: var(--color-text);
  z-index: 2;
}

.dogdept-hotel--karuizawa {
  background: var(--color-karuizawa);
}

.dogdept-hotel__inner {
  width: min(100% - 48px, 1100px);
  margin: 0 auto;
}

/* =========================
  Main
========================= */

.dogdept-hotel__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  align-items: start;
  gap: 55px;
}

.dogdept-hotel:not(.dogdept-hotel--reverse) .dogdept-hotel__main-image {
  width: 600px;
  transform: translateX(100px);
}

.dogdept-hotel__number {
  margin: 0;
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: 0.02em;
}

.dogdept-hotel__title {
  margin: 20px 0 0;
  color: var(--color-navy);
  font-family: var(--font-ja);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.dogdept-hotel__description {
  margin-top: 24px;
  font-family: var(--font-ja);
  line-height: 2;
  letter-spacing: 0.04em;
}

.dogdept-hotel__description p {
  margin: 0;
}

.dogdept-hotel__description p + p {
  margin-top: 28px;
}

.dogdept-hotel__main-image {
  margin: 0;
}

.dogdept-hotel__main-image img {
  display: block;

  width: 100%;
  aspect-ratio: 700 / 520;

  object-fit: cover;
}

/* =========================
  Features
========================= */

.dogdept-hotel__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 65px;
  margin-top: 100px;
}

.dogdept-feature {
  text-align: center;
}

.dogdept-feature__title {
  margin: 0 0 14px;
  color: var(--color-navy);
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 600;
  font-style: italic;
  line-height: 1.2;
}

.dogdept-feature__image {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 300px;
}

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

.dogdept-feature__text {
  margin: 18px 0 0;
  font-family: var(--font-ja);
  line-height: 1.6;
  letter-spacing: 0.04em;
}

/* =========================
  INFORMATION
========================= */

.dogdept-info {
  width: min(100%, 800px);

  margin: 65px auto 0;

  padding: 22px 40px 24px;

  border: 1px solid var(--color-navy);
  border-radius: 32px;

  background: var(--color-white);
}

.dogdept-info__heading {
  margin: 0 0 13px;

  color: var(--color-navy);

  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 600;
  font-style: italic;

  line-height: 1;
}

.dogdept-info__content {
  display: grid;

  grid-template-columns: 1fr 1px 1fr;

  align-items: center;

  gap: 25px;
}

.dogdept-info__divider {
  width: 1px;
  height: 58px;

  background: rgba(24, 49, 107, 0.25);
}

.dogdept-info__item {
  min-width: 0;
}

.dogdept-info__line {
  display: flex;
  align-items: flex-start;

  gap: 7px;

  margin: 0;

  line-height: 1.7;
}

.dogdept-info__line + .dogdept-info__line {
  margin-top: 7px;
}

.dogdept-info__icon {
  flex-shrink: 0;
  width: 16px;
  height: auto;
  margin-top: 6px;
}

.dogdept-info__price {
  margin: 5px 0 0 20px;

  font-size: 14px;

  line-height: 1.7;
}

@media (max-width: 1024px) {
  .dogdept-hotel:not(.dogdept-hotel--reverse) .dogdept-hotel__main-image {
    transform: translateX(0);
  }

  .dogdept-hotel:not(.dogdept-hotel--reverse) .dogdept-hotel__main-image,
  .dogdept-hotel--reverse .dogdept-hotel__main-image {
    width: calc(100% + 40px);
    margin-left: -20px;
  }

  .dogdept-hotel__main-image img {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .dogdept-hotel {
    padding: 80px 0 135px;
  }

  .dogdept-hotel__inner {
    width: calc(100% - 64px);
  }

  .dogdept-hotel__main {
    grid-template-columns: 1fr 44%;

    gap: 45px;
  }

  .dogdept-hotel__number {
    font-size: 29px;
  }

  .dogdept-hotel__title {
    margin-top: 16px;

    font-size: 21px;
  }

  .dogdept-hotel__description {
    margin-top: 35px;

    font-size: 12px;
  }

  .dogdept-hotel__features {
    gap: 38px;

    margin-top: 65px;
  }

  .dogdept-feature__title {
    font-size: 19px;
  }

  .dogdept-feature__text {
    font-size: 11px;
  }

  .dogdept-info {
    width: min(100%, 620px);

    margin-top: 55px;
  }
}

@media (max-width: 767px) {
  .dogdept-hotel {
    padding: 70px 0 105px;
  }

  .dogdept-hotel__inner {
    width: calc(100% - 40px);
  }

  /* =========================
    Main
  ========================= */

  .dogdept-hotel__main {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .dogdept-hotel__content {
    display: contents;
  }

  .dogdept-hotel__number {
    order: 1;
    font-size: 32px;
  }

  .dogdept-hotel__title {
    order: 2;
    margin-top: 13px;
    font-size: 24px;
    line-height: 1.6;
  }

  .dogdept-hotel__main-image {
    order: 3;
    width: calc(100% + 40px);
    margin: 28px 0 0 -20px;
  }

  .dogdept-hotel__main-image img {
    aspect-ratio: 1.45 / 1;
  }

  .dogdept-hotel__description {
    order: 4;
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.9;
  }

  .dogdept-hotel__description p + p {
    margin-top: 22px;
  }

  .dogdept-hotel__description br {
    display: none;
  }

  /* =========================
    Features
  ========================= */

  .dogdept-hotel__features {
    grid-template-columns: 1fr;
    gap: 50px;
    width: min(100%, 300px);
    margin: 60px auto 0;
  }

  .dogdept-feature__title {
    margin-bottom: 12px;
    font-size: 20px;
  }

  .dogdept-feature__image {
    aspect-ratio: 1.45 / 1;
  }

  .dogdept-feature__text {
    margin-top: 8px;
    font-size: 14px;
  }

  /* =========================
    Information
  ========================= */

  .dogdept-info {
    width: 100%;
    margin-top: 60px;
    padding: 24px 22px 26px;
    border-radius: 25px;
  }

  .dogdept-info__heading {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .dogdept-info__content {
    display: block;
  }

  .dogdept-info__divider {
    width: 100%;
    height: 1px;
    margin: 17px 0;
    background: rgba(24, 49, 107, 0.18);
  }

  .dogdept-info__line {
    font-size: 14px;
  }

  .dogdept-info__price {
    margin-left: 20px;
    font-size: 12px;
  }
}

@media (max-width: 390px) {
  .dogdept-hotel__inner {
    width: calc(100% - 32px);
  }

  .dogdept-hotel__number {
    font-size: 24px;
  }

  .dogdept-hotel__title {
    font-size: 18px;
  }

  .dogdept-hotel__main-image {
    width: calc(100% + 32px);

    margin-left: -16px;
  }

  .dogdept-hotel__description {
    font-size: 11px;
  }

  .dogdept-hotel__features {
    width: min(100%, 270px);
  }
}

/* =========================
  AWA SHIRAHAMA
========================= */

.dogdept-hotel--awa {
  background: var(--color-awa);
  position: relative;
  overflow: visible;
}

.dog-photo-awa {
  position: absolute;
  width: 240px;
  top: -8%;
  right: 10%;
  z-index: 10;
}

/* 左右反転 */
.dogdept-hotel--reverse .dogdept-hotel__main {
  grid-template-columns: 540px minmax(0, 1fr);
}

.dogdept-hotel--reverse .dogdept-hotel__content {
  grid-column: 2;
  grid-row: 1;
}

.dogdept-hotel--reverse .dogdept-hotel__main-image {
  grid-column: 1;
  grid-row: 1;
  width: 600px;
  transform: translateX(-100px);
}

@media (max-width: 1024px) {
  .dog-photo-awa {
    width: 200px;
    top: -5%;
  }
}

@media (max-width: 767px) {
  .dogdept-hotel--reverse .dogdept-hotel__main {
    display: flex;
    flex-direction: column;
  }

  .dogdept-hotel:not(.dogdept-hotel--reverse) .dogdept-hotel__main-image,
  .dogdept-hotel--reverse .dogdept-hotel__main-image {
    width: calc(100% + 40px);
    margin-left: -20px;
    transform: none;
  }

  .dogdept-hotel--reverse .dogdept-hotel__content,
  .dogdept-hotel--reverse .dogdept-hotel__main-image {
    grid-column: auto;
    grid-row: auto;
  }

  .dog-photo-awa {
    width: 160px;
    top: -2%;
    right: 8%;
  }
}

/* =========================
  TATEYAMA INUISHI
========================= */

.dogdept-hotel--tateyama {
  background: var(--color-tateyama);
  position: relative;
  overflow: visible;
}

.dog-photo-tateyama {
  position: absolute;
  top: -12%;
  left: 40%;
  z-index: 10;
  width: 140px;
}

.dogdept-hotel--tateyama .dogdept-hotel__number {
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .dog-photo-tateyama {
    top: -8%;
    left: 40%;
    width: 140px;
  }
}

@media (max-width: 767px) {
  .dog-photo-tateyama {
    top: -3%;
    left: 40%;
    width: 120px;
  }
}

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

.dogdept-cta {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  margin-top: -80px;

  background:
    linear-gradient(rgba(255, 254, 238, 0.8), rgba(255, 254, 238, 0.8)),
    url("https://www.travelwithdog.com/com/wp-content/uploads/2026/08/cta.webp")
      center center / cover no-repeat;
}

/* =========================
  Curve
========================= */

.dogdept-cta__curve {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
}

.dogdept-cta__curve img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================
  Content
========================= */

.dogdept-cta__inner {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: min(100% - 48px, 760px);
  min-height: 650px;

  margin: 0 auto;

  padding: 240px 0 40px;

  text-align: center;
}

.dogdept-cta__main {
  margin: auto 0;
}

.dogdept-cta__en {
  margin: 0;

  color: var(--color-accent);

  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;

  line-height: 1.5;
  letter-spacing: 0.18em;
}

.dogdept-cta__title {
  margin: 18px 0 0;

  color: var(--color-navy);

  font-family: var(--font-ja);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 700;

  line-height: 1.6;
  letter-spacing: 0.1em;
}

.dogdept-cta__text {
  margin: 34px 0 0;

  color: var(--color-text);

  font-family: var(--font-ja);
  font-size: 20px;

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

/* =========================
  Button
========================= */

.dogdept-cta__button {
  width: fit-content;
  min-width: 390px;

  margin: 34px auto 0;

  padding: 17px 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

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

  background: var(--color-base);

  color: var(--color-navy);

  font-family: var(--font-ja);
  font-size: 24px;
  font-weight: 700;

  line-height: 1.4;
  letter-spacing: 0.08em;

  text-decoration: none;

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

.dogdept-cta__button svg {
  flex-shrink: 0;

  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .dogdept-cta__button:hover {
    background: var(--color-navy);
    color: var(--color-white);

    transform: translateY(-2px);
  }

  .dogdept-cta__button:hover svg {
    transform: translateX(4px);
  }
}

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

/* ---------- Tablet ---------- */
@media (max-width: 1024px) {
  .dogdept-cta {
    min-height: 560px;
  }

  .dogdept-cta__inner {
    width: min(100% - 64px, 650px);

    padding-top: 60px;
  }

  .dogdept-cta__en {
    font-size: 14px;
  }

  .dogdept-cta__title {
    font-size: 32px;
  }

  .dogdept-cta__text {
    margin-top: 28px;

    font-size: 13px;
  }
}

/* ---------- Smartphone ---------- */
@media (max-width: 767px) {
  .dogdept-cta__curve {
    top: 10%;
  }

  .dogdept-cta {
    min-height: 580px;
    background-position: center center;
  }

  .dogdept-cta__inner {
    width: calc(100% - 40px);
    min-height: 580px;
    padding: 90px 0 25px;
  }

  .dogdept-cta__en {
    font-size: 14px;
  }

  .dogdept-cta__title {
    margin-top: 14px;
    font-size: 24px;
    line-height: 1.65;
    letter-spacing: 0.08em;
  }

  .dogdept-cta__text {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.9;
  }

  .dogdept-cta__text br {
    display: none;
  }

  .dogdept-cta__button {
    width: 80%;
    min-width: 0;
    margin-top: 28px;
    padding: 15px 20px;
    gap: 12px;
    font-size: 16px;
  }
}

/* ---------- Small Smartphone ---------- */
@media (max-width: 390px) {
  .dogdept-cta {
    min-height: 490px;
  }

  .dogdept-cta__inner {
    width: calc(100% - 32px);
  }

  .dogdept-cta__title {
    font-size: 22px;
  }

  .dogdept-cta__button {
    font-size: 12px;
  }
}

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

.dogdept-cta__footer {
  margin-top: 55px;
  color: var(--color-navy);
}

.dogdept-cta__footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.dogdept-cta__footer-links a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .dogdept-cta__footer-links a:hover {
    opacity: 0.55;
  }
}

.dogdept-cta__copyright {
  margin: 14px 0 0;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.08em;
  opacity: 0.7;
}

@media (max-width: 767px) {
  .dogdept-cta__footer {
    margin-top: 45px;
  }

  .dogdept-cta__footer-links {
    gap: 10px;
    font-size: 12px;
  }

  .dogdept-cta__copyright {
    margin-top: 10px;
    font-size: 9px;
  }
}
