:root {
  --color-text: #1f3b56;
  --color-text-muted: #5a6b7e;
  --color-bg: #ffffff;
  --color-surface: #ebf8ff;
  --color-primary: #0ab6e4;
  --color-primary-dark: #0a7ea8;
  --color-deep: #14507e;
  --color-accent: #ff901a;
  --color-accent-dark: #e87c00;
  --color-purple: #cf73f9;
  --color-pink: #fe78cf;
  --color-dark: #14507e;
  --color-white: #ffffff;
  --color-border: #e2e8ed;
  --font-sans: Noto Sans JP, Hiragino Sans, Yu Gothic, sans-serif;
  --font-rounded: Zen Maru Gothic, Noto Sans JP, Hiragino Sans, sans-serif;
  --font-latin: Baloo 2, Zen Maru Gothic, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

.container {
  width: min(100% - 2.5rem, 70rem);
  margin-inline: auto;
}

.container--narrow {
  width: min(100% - 2.5rem, 52.5rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 0.0625rem solid var(--color-border);
  backdrop-filter: blur(0.75rem);
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}
@media screen and (min-width: 48rem) {
  .site-header__inner {
    min-height: 6.25rem;
  }
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  text-decoration: none;
}

.site-header__logo img {
  width: auto;
  height: 3.5rem;
}
@media screen and (min-width: 48rem) {
  .site-header__logo img {
    height: 4.5rem;
  }
}

.site-header__brand {
  display: grid;
  gap: 0.125rem;
  line-height: 1.2;
  color: var(--color-deep);
  font-family: "Zen Maru Gothic", sans-serif;
}

.site-header__brand-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 48rem) {
  .site-header__brand-sub {
    font-size: 0.875rem;
  }
}

.site-header__brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 48rem) {
  .site-header__brand-name {
    font-size: 1.5rem;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__tel {
  display: none;
}
@media screen and (min-width: 64rem) {
  .site-header__tel {
    display: inline-flex;
  }
}

.site-header__menu-button {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 0.875rem;
  background: var(--color-surface);
  cursor: pointer;
}
@media screen and (min-width: 64rem) {
  .site-header__menu-button {
    display: none;
  }
}

.site-header__menu-button span {
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  border-radius: 0.125rem;
  background: var(--color-deep);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header__menu-button[aria-expanded=true] span:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}

.site-header__menu-button[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.site-header__menu-button[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  top: calc(100% + 0.0625rem);
  left: 0;
  width: 100%;
  padding: 1rem 1.25rem 1.5rem;
  background: var(--color-white);
  border-bottom: 0.0625rem solid var(--color-border);
  box-shadow: 0 1rem 2rem rgba(20, 80, 126, 0.08);
}
@media screen and (min-width: 64rem) {
  .site-nav {
    display: block;
    position: static;
    width: auto;
    padding: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }
}

.site-nav.is-open {
  display: block;
}

.site-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
@media screen and (min-width: 64rem) {
  .site-nav__list {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

.site-nav__link {
  position: relative;
  display: block;
  padding: 0.75rem 0.5rem;
  font-family: var(--font-rounded);
  font-weight: 700;
  border-radius: 0.625rem;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.site-nav__link:hover {
  color: var(--color-primary-dark);
  background: var(--color-surface);
}
@media screen and (min-width: 64rem) {
  .site-nav__link {
    padding: 0.375rem 0;
    border-radius: 0;
  }
  .site-nav__link:hover {
    background: transparent;
  }
  .site-nav__link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0.1875rem;
    border-radius: 0.1875rem;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
  }
  .site-nav__link:hover::after, .site-nav__link:focus-visible::after {
    transform: scaleX(1);
  }
}

.site-nav__tel {
  margin-top: 0.75rem;
}

@media screen and (min-width: 64rem) {
  .site-nav .site-nav__tel {
    display: none;
  }
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.5rem;
  padding-inline: 1.75rem;
  border: 0.125rem solid transparent;
  border-radius: 624.9375rem;
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.button:hover {
  transform: none;
}

.button__icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

.button--tel {
  flex-direction: column;
  gap: 0.125rem;
  min-height: 4rem;
  background: var(--color-accent);
  color: var(--color-deep);
  box-shadow: 0 0.5rem 1.25rem rgba(255, 144, 26, 0.32);
}
.button--tel:hover {
  background: var(--color-accent-dark);
  box-shadow: 0 0.75rem 1.5rem rgba(255, 144, 26, 0.38);
}

.button--tel-row {
  flex-direction: row;
  gap: 0.625rem;
}

.button__tel-number {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-latin);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.button__tel-note {
  flex-basis: 100%;
  margin-top: 0.25rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.cta__actions .button__tel-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.button--primary {
  background: var(--color-deep);
  color: var(--color-white);
  box-shadow: 0 0.5rem 1.25rem rgba(20, 80, 126, 0.24);
}
.button--primary:hover {
  background: var(--color-white);
  color: var(--color-deep);
  border-color: var(--color-deep);
  box-shadow: none;
}

.button--ghost {
  background: var(--color-white);
  color: var(--color-deep);
  border-color: var(--color-border);
}
.button--ghost:hover {
  background: var(--color-deep);
  color: var(--color-white);
  border-color: var(--color-deep);
}

.button--small {
  min-height: 3rem;
  font-size: 0.9375rem;
}

.tel-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.125rem;
  border-radius: 624.9375rem;
  background: var(--color-accent);
  color: var(--color-deep);
  font-family: var(--font-latin);
  font-size: 1.125rem;
  font-weight: 800;
  transition: background-color 0.2s ease;
}
.tel-chip:hover {
  background: var(--color-accent-dark);
}

.tel-chip__icon {
  width: 1.125rem;
  height: 1.125rem;
}

.tel-chip.site-header__tel {
  background: var(--color-white);
  color: var(--color-deep);
  border: 0.0625rem solid var(--color-border);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.tel-chip.site-header__tel:hover {
  background: var(--color-surface);
  border-color: var(--color-primary);
}

.tel-chip.site-header__tel .tel-chip__icon {
  color: var(--color-primary);
}

.section {
  position: relative;
  padding-block: 4rem;
}
@media screen and (min-width: 48rem) {
  .section {
    padding-block: 6rem;
  }
}

.section--alt {
  background: var(--color-surface);
}

.section--deep {
  background: var(--color-deep);
  color: var(--color-white);
}

.section__header {
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
  text-align: center;
  justify-items: center;
}
@media screen and (min-width: 48rem) {
  .section__header {
    margin-bottom: 3.5rem;
  }
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-latin);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.section__label::before,
.section__label::after {
  content: "";
  width: 1.375rem;
  height: 1.375rem;
  background: url("../img/common/icon-sun.svg") center/contain no-repeat;
}

.section--deep .section__label {
  color: var(--color-accent);
}

.section__title {
  font-family: var(--font-rounded);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-deep);
}
@media screen and (min-width: 48rem) {
  .section__title {
    font-size: 2.5rem;
  }
}

.section--deep .section__title {
  color: var(--color-white);
}

.section__title .accent {
  color: var(--color-primary-dark);
}

.section__text {
  max-width: 42.5rem;
  color: var(--color-text-muted);
}

.section--deep .section__text {
  color: rgba(255, 255, 255, 0.86);
}

.wave {
  display: block;
  width: 100%;
  height: 3rem;
  line-height: 0;
}
@media screen and (min-width: 48rem) {
  .wave {
    height: 4.5rem;
  }
}

.wave svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wave--white {
  background: var(--color-white);
}

.wave--surface {
  background: var(--color-surface);
}

.wave--deep {
  background: var(--color-deep);
}

.wave--primary {
  background: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #cdeffb 0%, var(--color-surface) 70%, var(--color-white) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  padding-block: 3rem 1.5rem;
}
@media screen and (min-width: 64rem) {
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: stretch;
    gap: 3rem;
    padding-block: 4.5rem 3rem;
  }
}

.hero__body {
  display: grid;
  gap: 1.5rem;
  justify-items: start;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 624.9375rem;
  background: var(--color-white);
  color: var(--color-deep);
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0.25rem 0.875rem rgba(20, 80, 126, 0.1);
}

.hero__title {
  font-family: var(--font-rounded);
  font-size: clamp(1.3125rem, 6.2vw, 2.125rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-deep);
  letter-spacing: 0.01em;
}
@media screen and (min-width: 64rem) {
  .hero__title {
    font-size: 3.25rem;
  }
}

.hero__title .accent {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  color: var(--color-primary-dark);
}

.hero__title .accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.375rem;
  height: 0.5rem;
  background: url("../img/common/underline.svg") left center/contain no-repeat;
}

.hero__lead {
  max-width: 30rem;
  font-size: 1.0625rem;
  color: var(--color-text);
}
@media screen and (min-width: 64rem) {
  .hero__lead {
    font-size: 1.125rem;
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.hero__actions .button--tel {
  background: var(--color-deep);
  color: var(--color-white);
  box-shadow: none;
}
.hero__actions .button--tel:hover {
  background: var(--color-white);
  color: var(--color-deep);
  border-color: var(--color-deep);
  box-shadow: none;
}

.hero__note {
  position: relative;
  align-self: start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6875rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-deep);
  background: #e3f6fd;
  border: 0.0625rem solid rgba(10, 182, 228, 0.3);
  border-radius: 624.9375rem;
}
.hero__note::before {
  content: "";
  position: absolute;
  top: -0.4375rem;
  left: 1.625rem;
  width: 0.8125rem;
  height: 0.8125rem;
  background: #e3f6fd;
  border-top: 0.0625rem solid rgba(10, 182, 228, 0.3);
  border-left: 0.0625rem solid rgba(10, 182, 228, 0.3);
  transform: rotate(45deg);
}

.hero__visual {
  position: relative;
  aspect-ratio: 4/3.4;
}
@media screen and (min-width: 64rem) {
  .hero__visual {
    aspect-ratio: auto;
    height: 100%;
  }
}

.hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 1.75rem;
  overflow: hidden;
}

.hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__deco {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero__deco--sun {
  top: -0.375rem;
  right: -0.5rem;
  width: 6rem;
  animation: float-slow 6s ease-in-out infinite;
}

.hero__deco--boat {
  bottom: -0.625rem;
  left: -0.875rem;
  width: 7.5rem;
  animation: bob 4s ease-in-out infinite;
}

.hero__deco--cloud {
  top: 2.5rem;
  left: -1.5rem;
  width: 5.25rem;
  animation: float-slow 7s ease-in-out infinite;
}

.worry__list {
  display: grid;
  gap: 1rem;
}
@media screen and (min-width: 48rem) {
  .worry__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.worry__item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.875rem;
  padding: 1.375rem 1.5rem;
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: 0 0.5rem 1.5rem rgba(20, 80, 126, 0.06);
}

.worry__icon {
  display: grid;
  place-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 624.9375rem;
  background: var(--color-surface);
  color: var(--color-primary);
}

.worry__icon svg {
  width: 1.625rem;
  height: 1.625rem;
}

.worry__text {
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}

.worry__lead {
  margin-top: 2.5rem;
  text-align: center;
  font-family: var(--font-rounded);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-deep);
}
@media screen and (min-width: 48rem) {
  .worry__lead {
    font-size: 1.5rem;
  }
}

.worry__lead .accent {
  color: var(--color-primary-dark);
}

.features__list {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .features__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }
}

.feature {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: 2.25rem 1.75rem 2rem;
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover {
  transform: translateY(-0.375rem);
  box-shadow: 0 1.25rem 2.25rem rgba(20, 80, 126, 0.12);
}

.feature__badge {
  display: grid;
  place-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 1.375rem;
  color: var(--color-white);
}

.feature__badge svg {
  width: 2.375rem;
  height: 2.375rem;
}

.feature__badge--blue {
  background: var(--color-primary);
}

.feature__badge--yellow {
  background: var(--color-accent);
  color: var(--color-deep);
}

.feature__badge--purple {
  background: var(--color-purple);
}

.feature__badge--pink {
  background: var(--color-pink);
}

.features__list .feature:nth-child(3n+1) .feature__badge {
  background: var(--color-primary);
}

.features__list .feature:nth-child(3n+2) .feature__badge {
  background: var(--color-purple);
}

.features__list .feature:nth-child(3n+3) .feature__badge {
  background: var(--color-pink);
}

.feature__title {
  font-family: var(--font-rounded);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-deep);
}

.feature__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

.flow__list {
  position: relative;
  display: grid;
  gap: 1.75rem;
  max-width: 45rem;
  margin-inline: auto;
  padding-left: 2.5rem;
}

.flow__list::before {
  content: "";
  position: absolute;
  left: 0.9375rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 0.1875rem;
  border-radius: 0.1875rem;
  background: repeating-linear-gradient(to bottom, var(--color-primary) 0, var(--color-primary) 0.5rem, transparent 0.5rem, transparent 1rem);
}

.flow__step {
  position: relative;
  display: grid;
  gap: 0.375rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: 1.125rem;
  box-shadow: 0 0.5rem 1.375rem rgba(20, 80, 126, 0.06);
}

.flow__marker {
  position: absolute;
  left: -2.5rem;
  top: 1.125rem;
  display: grid;
  place-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 624.9375rem;
  background: var(--color-accent);
  color: var(--color-deep);
  font-family: var(--font-latin);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 0 0 0.3125rem var(--color-surface);
}

.flow__time {
  font-family: var(--font-latin);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.flow__title {
  font-family: var(--font-rounded);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-deep);
}

.flow__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.facility__grid {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .facility__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

.facility__media {
  position: relative;
  aspect-ratio: 5/4;
  border-radius: 1.75rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(10, 182, 228, 0.16), rgba(254, 120, 207, 0.16)), var(--color-surface);
  display: grid;
  place-content: center;
  gap: 0.5rem;
  text-align: center;
  color: var(--color-deep);
}

.facility__media:has(.facility__media-img) {
  aspect-ratio: auto;
}

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

.facility__media-icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-inline: auto;
  color: var(--color-primary);
}

.facility__media-label {
  font-size: 0.8125rem;
  font-weight: 700;
}

.facility__body {
  display: grid;
  gap: 1.125rem;
  justify-items: start;
}

.facility__title {
  font-family: var(--font-rounded);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-deep);
}
@media screen and (min-width: 48rem) {
  .facility__title {
    font-size: 1.875rem;
  }
}

.facility__text {
  color: var(--color-text-muted);
}

.access__grid {
  display: grid;
  gap: 1.75rem;
}
@media screen and (min-width: 48rem) {
  .access__grid {
    grid-template-columns: 20rem 1fr;
    align-items: stretch;
    gap: 2.5rem;
  }
}

.access__info {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.access__info dt {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-primary-dark);
}

.access__info dd {
  margin-top: 0.25rem;
  color: var(--color-text);
  line-height: 1.8;
}

.access__tel {
  font-weight: 700;
  color: var(--color-primary-dark);
}

.map-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0.75rem 2rem rgba(20, 80, 126, 0.08);
}
@media screen and (min-width: 48rem) {
  .map-embed {
    aspect-ratio: 16/10;
  }
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.info-table + .map-embed {
  margin-top: 2rem;
}

.guide__grid {
  display: grid;
  gap: 1.25rem;
}
@media screen and (min-width: 48rem) {
  .guide__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.guide__card {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 1.625rem;
  background: var(--color-white);
  border-radius: 1.375rem;
  border-top: 0.3125rem solid var(--color-primary);
  box-shadow: 0 0.5rem 1.5rem rgba(20, 80, 126, 0.06);
}

.guide__card--yellow {
  border-top-color: var(--color-accent);
}

.guide__card--purple {
  border-top-color: var(--color-purple);
}

.guide__card--pink {
  border-top-color: var(--color-pink);
}

.guide__grid .guide__card:nth-child(3n+1) {
  border-top-color: var(--color-primary);
}

.guide__grid .guide__card:nth-child(3n+2) {
  border-top-color: var(--color-accent);
}

.guide__grid .guide__card:nth-child(3n+3) {
  border-top-color: var(--color-pink);
}

.guide__card-label {
  font-family: var(--font-rounded);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.guide__card-value {
  font-family: var(--font-rounded);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-deep);
}

.guide__card-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.guide__foot {
  margin-top: 2rem;
  text-align: center;
}

.cta {
  position: relative;
  overflow: hidden;
  background: var(--color-primary);
}

.cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.5rem;
  padding-block: 3.5rem;
  text-align: center;
  justify-items: center;
}
@media screen and (min-width: 48rem) {
  .cta__inner {
    padding-block: 4.5rem;
  }
}

.cta__title {
  font-family: var(--font-rounded);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-white);
}
@media screen and (min-width: 48rem) {
  .cta__title {
    font-size: 2.25rem;
  }
}

.cta__text {
  max-width: 35rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.cta .button--tel {
  background: var(--color-deep);
  color: var(--color-white);
  box-shadow: none;
}
.cta .button--tel:hover {
  background: var(--color-white);
  color: var(--color-deep);
  border-color: var(--color-deep);
  box-shadow: none;
  transform: none;
}

.cta__deco {
  position: absolute;
  pointer-events: none;
}

.cta__deco--yacht {
  top: 1rem;
  right: 0;
  width: 7.5rem;
}

.cta__deco--lighthouse {
  bottom: 0.625rem;
  left: 0;
  width: 8.5rem;
}

.faq__list {
  display: grid;
  gap: 0.875rem;
  max-width: 50rem;
  margin-inline: auto;
}

.faq__item {
  background: var(--color-white);
  border: 0.0625rem solid var(--color-border);
  border-radius: 1rem;
  overflow: hidden;
}

.faq__item[open] {
  border-color: var(--color-primary);
}

.faq__q {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-deep);
  cursor: pointer;
  list-style: none;
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q::before {
  content: "Q";
  display: grid;
  place-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 624.9375rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-latin);
  font-size: 1rem;
  font-weight: 800;
}

.faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  background: url("../img/common/icon-plus.svg") center/contain no-repeat;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q::after {
  transform: rotate(45deg);
}

.faq__a {
  padding: 0 1.5rem 1.375rem 4.375rem;
  color: var(--color-text-muted);
}

.site-footer {
  padding-block: 3.5rem 1.75rem;
  background: var(--color-primary-dark);
  color: var(--color-white);
}

.site-footer__inner {
  display: grid;
  gap: 2.25rem;
}
@media screen and (min-width: 48rem) {
  .site-footer__inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.site-footer__brand {
  display: grid;
  gap: 0.25rem;
  justify-items: start;
}

.site-footer__logo img {
  width: 11.25rem;
  height: auto;
}

.site-footer__desc {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
@media screen and (min-width: 48rem) {
  .site-footer__desc {
    font-size: 1.5rem;
  }
}

.site-footer__info {
  display: grid;
  gap: 0.875rem;
  font-size: 0.9375rem;
}

.site-footer__info dt {
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--color-accent);
}

.site-footer__info dd {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__tel {
  font-family: var(--font-latin);
  font-size: 1.375rem;
  font-weight: 800;
}

.site-footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.16);
  text-align: center;
}

.site-footer__copy {
  font-family: var(--font-latin);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 3rem 2.5rem;
  background: linear-gradient(180deg, #cdeffb 0%, var(--color-surface) 100%);
  text-align: center;
}
@media screen and (min-width: 48rem) {
  .page-hero {
    padding-block: 4.5rem 3.5rem;
  }
}

.page-hero__inner {
  position: relative;
  width: min(100% - 2.5rem, 45rem);
}

.page-hero__eyebrow {
  font-family: var(--font-latin);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-dark);
}

.page-hero__title {
  margin-top: 0.5rem;
  font-family: var(--font-rounded);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-deep);
}
@media screen and (min-width: 48rem) {
  .page-hero__title {
    font-size: 2.75rem;
  }
}

.page-hero__lead {
  margin-top: 1rem;
  margin-inline: auto;
  max-width: 40rem;
  color: var(--color-text-muted);
}

.breadcrumb {
  padding-block: 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumb__sep {
  color: var(--color-border);
}

.prose {
  display: grid;
  gap: 1.25rem;
  max-width: 47.5rem;
  margin-inline: auto;
}

.prose h3 {
  font-family: var(--font-rounded);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-deep);
}
@media screen and (min-width: 48rem) {
  .prose h3 {
    font-size: 1.625rem;
  }
}

.prose p {
  color: var(--color-text-muted);
}

.prose ul {
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  list-style: none;
}

.prose li {
  position: relative;
  padding-left: 1.875rem;
  color: var(--color-text-muted);
}

.prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  background: url("../img/common/icon-sun.svg") center/contain no-repeat;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 1.5rem rgba(20, 80, 126, 0.06);
}

.info-table th,
.info-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 0.0625rem solid var(--color-border);
  font-size: 0.9375rem;
  vertical-align: top;
}

.info-table th {
  width: 38%;
  font-family: var(--font-rounded);
  font-weight: 700;
  color: var(--color-deep);
  background: var(--color-surface);
}

.info-table tr:last-child th,
.info-table tr:last-child td {
  border-bottom: 0;
}

.staff__grid {
  display: grid;
  gap: 1.5rem;
}
@media screen and (min-width: 48rem) {
  .staff__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64rem) {
  .staff__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.staff__card {
  display: grid;
  gap: 0.875rem;
  padding: 1.5rem;
  background: var(--color-white);
  border-radius: 1.25rem;
  box-shadow: 0 0.5rem 1.5rem rgba(20, 80, 126, 0.06);
  text-align: center;
}

.staff__avatar {
  width: 7.5rem;
  height: 7.5rem;
  margin-inline: auto;
  border-radius: 624.9375rem;
  overflow: hidden;
  background: linear-gradient(150deg, rgba(10, 182, 228, 0.18), rgba(255, 144, 26, 0.22)), var(--color-surface);
  display: grid;
  place-content: center;
  color: var(--color-primary);
}

.staff__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staff__avatar svg {
  width: 2.5rem;
  height: 2.5rem;
}

.staff__role {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}

.staff__name {
  font-family: var(--font-rounded);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-deep);
}

.staff__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.mt-section {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48rem) {
  .mt-section {
    margin-top: 3rem;
  }
}

.page-hero__deco {
  position: absolute;
  pointer-events: none;
}

.page-hero__deco--seagull {
  top: -1rem;
  right: 0;
  width: 6rem;
}
@media screen and (min-width: 48rem) {
  .page-hero__deco--seagull {
    width: 7.5rem;
  }
}

.page-hero__deco--sun {
  top: 0;
  left: 2.25rem;
  width: 4.5rem;
}
@media screen and (min-width: 48rem) {
  .page-hero__deco--sun {
    width: 5.625rem;
  }
}

@keyframes float-slow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-0.625rem);
  }
}
@keyframes bob {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-0.375rem) rotate(2deg);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 0.1875rem solid var(--color-primary-dark);
  outline-offset: 0.125rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
