:root {
  --container: 1312px;
  --wp--style--global--content-size: 1312px;
  --wp--style--global--wide-size: 1312px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 20px;
  --font-base: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-heading: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", serif;
  --font-bona: "Bona Nova SC", "Times New Roman", serif;
  --font-kaku: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
  --color-bg: #f6f8fa;
  --color-surface: #ffffff;
  --color-text: #1b232a;
  --color-muted: #74838f;
  --color-line: #d8e0e6;
  --color-accent: #0c718d;
  --color-accent-strong: #0a5674;
  --color-header-bg: #ffffff;
  --color-footer: #0f1b24;
  --shadow-1: 0 10px 28px rgba(16, 31, 42, 0.08);
  --header-text: #181818;
  --header-caption-size: 11.2px;
  --header-nav-size: 15.2px;
  --header-nav-letter: 0.3px;
  --header-reserve-ja-size: 20px;
  --header-reserve-ja-line: 25.6px;
  --header-reserve-en-size: 11.2px;
  --header-reserve-en-line: 14.34px;
  --header-offset: 86px;
  --edge-padding: 20px;
}

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

html {
  font-size: 16px;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--color-text);
  background: var(--color-bg);
  padding-top: var(--header-offset);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

body.ts-has-main-visual {
  padding-top: 0;
}

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

a {
  color: var(--color-accent);
  text-underline-offset: 0.2em;
}

a:hover,
a:focus-visible {
  color: var(--color-accent-strong);
}

.ts-container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.ts-header .ts-container {
  width: 100%;
  max-width: none;
  padding-inline: var(--edge-padding);
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.ts-header {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  top: 0;
  z-index: 150;
  background: transparent;
  border: 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.ts-header.ts-header--scrolled,
.ts-header.is-open {
  background: var(--color-header-bg);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.ts-header__inner {
  min-height: 0;
  padding-block: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: var(--space-3);
}

.ts-brand-wrap {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}

.ts-brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
}

.ts-brand img {
  width: 128px;
  height: auto;
  display: block;
}

.ts-brand__caption {
  margin: 0;
  font-size: var(--header-caption-size);
  letter-spacing: 0;
  white-space: normal;
  display: none;
}

.ts-nav-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  color: var(--header-text);
  cursor: pointer;
  transition: none;
}

.ts-nav-toggle:hover,
.ts-nav-toggle:focus-visible {
  background: transparent;
}

.ts-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ts-header.is-open .ts-nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.ts-header.is-open .ts-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.ts-header.is-open .ts-nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.ts-header__right {
  display: none;
}

.ts-header.is-open .ts-header__right {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.9rem;
  background: #ffffff;
  border: 0;
  border-radius: 14px;
  padding: 0.9rem;
  margin-bottom: 0.8rem;
}

.ts-nav {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__item {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__dropdown {
  display: grid;
  gap: 0.2rem;
}

.ts-nav__dropdown-toggle {
  display: none;
}

.ts-nav__dropdown-label {
  display: none;
}

.ts-nav__submenu {
  display: none;
  width: 100%;
  margin: 0;
  gap: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  overflow: visible;
}

.ts-nav__dropdown-toggle:checked ~ .ts-nav__submenu {
  display: grid;
}

.ts-nav__item--has-children:focus-within .ts-nav__submenu {
  display: grid;
}

.ts-nav__sublink {
  font-size: 15px;
  line-height: 1.45;
  padding: 14px 44px 14px 22px;
  text-align: left;
  border-radius: 0;
  border-bottom: 1px solid #d2d2d2;
  background: #f7f7f7;
  transition: none;
}

.ts-nav__sublink:first-child {
  border-top: 1px solid #d2d2d2;
}

.ts-nav__link,
.ts-nav__dropdown-label,
.ts-nav__sublink {
  display: block;
  text-decoration: none;
  letter-spacing: var(--header-nav-letter);
  line-height: normal;
}

.ts-nav__link {
  border-radius: 10px;
  font-size: var(--header-nav-size);
  padding: 0.5rem 0.45rem;
}

.ts-nav__dropdown-label {
  border-radius: 10px;
  font-size: var(--header-nav-size);
  padding: 0.5rem 2rem 0.5rem 0.45rem;
  position: relative;
  cursor: pointer;
}

.ts-nav__dropdown-label::after {
  content: "";
  position: absolute;
  right: 0.8rem;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.ts-nav__dropdown-toggle:checked + .ts-nav__dropdown-label::after {
  transform: translateY(-40%) rotate(-135deg);
}

.ts-nav__link:hover,
.ts-nav__link:focus-visible,
.ts-nav__dropdown-label:hover,
.ts-nav__dropdown-label:focus-visible,
.ts-nav__sublink:hover,
.ts-nav__sublink:focus-visible {
  background: #f4f6f8;
  color: var(--header-text);
}

/* Instagram icon toggle: set --ts-instagram-display:inline-flex to show again */
.ts-instagram {
  width: 20px;
  height: 20px;
  display: var(--ts-instagram-display, none);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex-shrink: 0;
}

.ts-instagram img {
  width: 20px;
  height: 20px;
  display: block;
}

.ts-reserve {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  border-radius: 4px;
  background: linear-gradient(90deg, #0070d0 20%, #e73414 100%);
  padding: 8px;
}

.ts-reserve__copy {
  flex: 1 1 0;
  padding-top: 2px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
  gap: 10px;
}

.ts-reserve__ja {
  color: #ffffff;
  font-family: var(--font-mincho);
  font-size: var(--header-reserve-ja-size);
  font-weight: 300;
  line-height: var(--header-reserve-ja-line);
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.ts-reserve__en {
  color: #ffffff;
  font-family: var(--font-bona);
  font-size: var(--header-reserve-en-size);
  font-weight: 400;
  line-height: var(--header-reserve-en-line);
  text-align: center;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-transform: none;
}

.ts-brand__caption,
.ts-nav__link,
.ts-nav__dropdown-label,
.ts-nav__sublink {
  color: var(--header-text);
  font-family: var(--font-mincho);
  font-weight: 300;
  overflow-wrap: break-word;
}

.ts-reserve__arrow {
  width: 48px;
  height: 48px;
  border-radius: 96px;
  outline: 1px solid #ffffff;
  outline-offset: -1px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.ts-reserve__arrow-icon {
  width: 12px;
  height: 9px;
  display: block;
}

/* Top main visual */
.ts-top-main {
  display: block;
  margin: 0;
}

:where(.wp-site-blocks) > .ts-top-main,
:where(.wp-site-blocks) > .ts-main-visual-part,
:where(.wp-site-blocks) > .ts-concept-part,
:where(.wp-site-blocks) > .ts-school-image-part,
:where(.wp-site-blocks) > .ts-activity-part,
:where(.wp-site-blocks) > .ts-coach-part,
:where(.wp-site-blocks) > .ts-flow-part,
:where(.wp-site-blocks) > .ts-faq-part,
:where(.wp-site-blocks) > .ts-ocean-gallery-part {
  margin-block-start: 0;
  margin-block-end: 0;
}

:where(.wp-site-blocks) > .ts-main-visual-part .ts-top-main,
:where(.wp-site-blocks) > .ts-top-main {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Override WP global block gap for all top-level blocks */
.wp-site-blocks > * {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.wp-site-blocks > .wp-block-template-part.ts-school-image-part,
.wp-block-template-part.ts-school-image-part {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.wp-site-blocks > .wp-block-template-part.ts-concept-part,
.wp-block-template-part.ts-concept-part,
.ts-concept-part {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.ts-main-visual {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.ts-main-visual__stage {
  align-self: stretch;
  position: relative;
  min-height: 520px;
  width: 100%;
  padding: 64px var(--edge-padding);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #ffffff;
  overflow: hidden;
}

.ts-main-visual__bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.ts-main-visual__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.ts-main-visual__copy-wrap {
  width: min(100%, 568px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.ts-main-visual__jp {
  margin: 0;
  color: #181818;
  font-size: clamp(32px, 9vw, 56px);
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.28;
  overflow-wrap: normal;
}

.ts-main-visual__jp-line {
  display: inline-block;
  white-space: nowrap;
}

.ts-main-visual__en {
  margin: 0;
  color: #181818;
  font-size: clamp(84px, 20vw, 160px);
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 0.88;
  overflow-wrap: normal;
  word-break: keep-all;
}

.ts-main-visual__en-line {
  display: inline-block;
  white-space: nowrap;
}

.ts-main-visual__note,
.ts-concept__note {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ts-main-visual__note {
  position: relative;
  z-index: 3;
  margin: -24px 16px 0;
}

.ts-main-visual__note-icon,
.ts-concept__note-icon {
  border-radius: 160px;
  object-fit: cover;
  display: block;
}

.ts-main-visual__note-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(224, 247, 255, 1) 100%);
}

.ts-main-visual__note-copy,
.ts-concept__note-copy {
  transform: rotate(-4deg);
  transform-origin: top left;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.ts-main-visual__note-line,
.ts-concept__note-line {
  display: block;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-main-visual__note-line--top,
.ts-concept__note-line--top {
  width: 94.59px;
  transform: rotate(-5deg);
  transform-origin: top left;
}

.ts-main-visual__note-line--bottom,
.ts-concept__note-line--bottom {
  width: 96.95px;
  transform: rotate(5deg);
  transform-origin: top left;
}

.ts-main-visual__note-text,
.ts-concept__note-text {
  margin: 0;
  color: #181818;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 20.16px;
  letter-spacing: 0.24px;
  white-space: nowrap;
}

.ts-main-visual__side {
  display: none;
  position: relative;
  z-index: 2;
}

.ts-main-visual__side-text {
  margin: 0;
  transform: rotate(90deg);
  transform-origin: top left;
  text-align: center;
  color: #181818;
  font-size: 11.2px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 14.34px;
  letter-spacing: 0.45px;
  white-space: nowrap;
}

.ts-main-visual__line {
  display: none;
  pointer-events: none;
}

/* Concept section */
.ts-concept {
  position: relative;
  padding: 0 0 32px;
  background: #ffffff;
}

.ts-concept__line {
  display: none;
  pointer-events: none;
}

.ts-concept__frame {
  position: relative;
  z-index: 2;
}

.ts-concept__hero-shell {
  position: relative;
}

.ts-concept__hero {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.ts-concept__hero-overlay {
  padding-top: 20px;
  display: grid;
  gap: 24px;
}

.ts-concept__heading {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ts-concept__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-concept__kicker-logo {
  width: 64px;
  height: 19px;
  display: block;
  flex-shrink: 0;
}

.ts-concept__eyebrow {
  margin: 0;
  color: #181818;
  font-family: var(--font-bona);
  font-size: 24px;
  font-weight: 400;
  line-height: 21.12px;
  letter-spacing: 0.48px;
}

.ts-concept__title {
  margin: 0;
  color: #181818;
  font-family: var(--font-mincho);
  font-size: clamp(32px, 9vw, 56px);
  font-weight: 300;
  line-height: 1.28;
}

.ts-concept__subline {
  width: min(100%, 448px);
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.ts-concept__subline-text {
  margin: 0;
  color: #181818;
  font-size: 12.8px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.38px;
  text-transform: uppercase;
  white-space: normal;
}

.ts-concept__subline-rule {
  flex: 1 1 0;
  height: 0;
  border-top: 0.4px solid #000000;
}

.ts-concept__photo {
  border-radius: 2px;
  display: block;
  object-fit: cover;
}

.ts-concept__photo--top {
  width: 160px;
  height: 213px;
  justify-self: end;
}

.ts-concept__photo--top-sp {
  display: none;
}

.ts-concept__body-row {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}

.ts-concept__copy-wrap {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ts-concept__copy {
  margin: 0;
  color: #181818;
  font-size: 14px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.28px;
}

.ts-concept__copy-line {
  display: inline;
}

.ts-concept__note {
  position: relative;
}

.ts-concept__note-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(0deg, rgba(160, 224, 255, 0.08) 0%, rgba(160, 224, 255, 0.08) 100%);
}

.ts-concept__photo-column {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  width: min(100%, 220px);
  margin-left: auto;
}

.ts-concept__photo--mid {
  width: 100%;
  height: auto;
  aspect-ratio: 220 / 293;
}

.ts-concept__photo--bottom {
  width: 112px;
  height: auto;
  aspect-ratio: 112 / 149;
}

/* School image section */
.ts-school-image {
  padding: 0 0 40px;
  display: grid;
  gap: 32px;
  background: #ffffff;
}

.ts-school-image__strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 74vw);
  gap: 8px;
  overflow-x: auto;
  padding-inline: var(--edge-padding);
}

.ts-school-image__strip-image {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 2px;
  display: block;
}

.ts-school-image__feature-wrap {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.ts-school-image__feature-grid {
  display: grid;
  grid-template-areas:
    "left"
    "caption"
    "title"
    "right";
  gap: 16px;
  align-items: start;
}

.ts-school-image__main {
  width: 100%;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.ts-school-image__main--left {
  grid-area: left;
}

.ts-school-image__main--right {
  grid-area: right;
}

.ts-school-image__caption {
  grid-area: caption;
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 4px 8px;
  background: #ffffff;
  color: #181818;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 15.36px;
  letter-spacing: 0.24px;
  text-align: center;
}

.ts-school-image__title {
  grid-area: title;
  margin: 0;
  color: #181818;
  text-align: center;
  font-size: 24px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 30.72px;
}

/* Activity section */
.ts-activity {
  position: relative;
  padding: 150px 0;
  background: #f2f2f2;
  overflow: hidden;
}

.ts-activity__bg-line {
  display: none;
  pointer-events: none;
}

.ts-activity__frame {
  position: relative;
  z-index: 1;
}

.ts-activity__wave {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
}

.ts-activity__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.ts-activity__matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.ts-activity__lead,
.ts-activity__pair {
  flex: 1 1 100%;
  min-width: 0;
}

.ts-activity__pair {
  position: relative;
  display: grid;
  gap: 16px;
  align-items: start;
}

.ts-activity__pair-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 4px;
  text-decoration: none;
}

.ts-activity__pair-link:focus-visible {
  outline: 2px solid #307ec1;
  outline-offset: 4px;
}

.ts-activity__lead {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ts-activity__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-activity__kicker-logo {
  width: 64px;
  height: auto;
  display: block;
}

.ts-activity__eyebrow {
  margin: 0;
  color: #181818;
  font-size: 24px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 21.12px;
  letter-spacing: 0.48px;
}

.ts-activity__title {
  margin: 0;
  color: #181818;
  font-size: clamp(36px, 10vw, 56px);
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.28;
}

.ts-activity__subline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: min(100%, 440px);
}

.ts-activity__subline-text {
  margin: 0;
  color: #181818;
  font-size: 12.8px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.38px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ts-activity__subline-rule {
  flex: 1 1 0;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-activity__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  width: min(100%, 384px);
}

.ts-activity__chips li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 0 12px 12px 12px;
  background: #ffffff;
  color: #181818;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 15.36px;
  white-space: nowrap;
}

.ts-activity__chips li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #181818 url("/wp-content/themes/ts-surfwind/assets/img/common/icons/check.svg") center / 6px 4px no-repeat;
  flex-shrink: 0;
}

.ts-activity__photo-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}

.ts-activity__photo-card picture {
  display: block;
}

.ts-activity__photo-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
}

.ts-activity__photo-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  background:
    linear-gradient(202deg, rgba(255, 255, 255, 0) 0%, #84d0dc 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0.88) 100%),
    rgba(72, 72, 72, 0.2),
    rgba(160, 224, 255, 0.2);
  background-blend-mode: normal, normal, lighten, overlay, normal;
}

.ts-activity__photo-card--wing .ts-activity__photo-overlay {
  background:
    linear-gradient(202deg, rgba(255, 255, 255, 0) 0%, #84d0dc 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0.88) 100%),
    rgba(72, 72, 72, 0.16),
    rgba(160, 224, 255, 0.2);
  background-blend-mode: normal, normal, lighten, darken, normal;
}

.ts-activity__photo-card--foil .ts-activity__photo-overlay {
  background:
    linear-gradient(202deg, rgba(255, 255, 255, 0) 0%, #84d0dc 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0.88) 100%),
    rgba(72, 72, 72, 0.2),
    rgba(160, 224, 255, 0.4);
  background-blend-mode: normal, normal, lighten, darken, normal;
}

.ts-activity__photo-card--wind .ts-activity__photo-overlay,
.ts-activity__photo-card--longboard .ts-activity__photo-overlay {
  background:
    linear-gradient(202deg, rgba(255, 255, 255, 0) 0%, #84d0dc 60%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 64%, rgba(255, 255, 255, 0.88) 100%),
    rgba(72, 72, 72, 0.2),
    rgba(160, 224, 255, 0.4);
  background-blend-mode: normal, normal, lighten, overlay, normal;
}

.ts-activity__badge-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.ts-activity__badge {
  margin: 0;
  width: fit-content;
  max-width: 100%;
  padding: 4px;
  background: rgba(255, 255, 255, 0.92);
  color: #181818;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 15.36px;
  letter-spacing: 0;
  text-align: center;
}

.ts-activity__price {
  margin: 0;
  color: #181818;
  font-size: clamp(40px, 12vw, 48px);
  font-family: "Times New Roman", var(--font-bona);
  font-weight: 400;
  line-height: 0.88;
  white-space: nowrap;
}

.ts-activity__price span {
  font-family: var(--font-mincho);
  font-size: 0.5em;
  line-height: 1.2;
}

.ts-activity__detail {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 14px;
}

.ts-activity__detail-en {
  margin: 0;
  color: #181818;
  font-size: 18.4px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.19px;
}

.ts-activity__detail-title {
  margin: 0;
  color: #181818;
  font-size: 32px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 40.96px;
}

.ts-activity__detail-title-break-pc {
  display: none;
}

.ts-activity__detail-title-main {
  font-size: 1em;
  letter-spacing: 0.64px;
}

.ts-activity__detail-title-sub {
  font-size: 0.75em;
  letter-spacing: 0;
}

.ts-activity__detail-title--sup {
  letter-spacing: 0.02em;
}

.ts-activity__detail-title--sup .ts-activity__detail-title-main,
.ts-activity__detail-title--sup .ts-activity__detail-title-sub {
  letter-spacing: 0.02em;
}

.ts-activity__detail-title--minus12 {
  letter-spacing: -0.12em;
}

.ts-activity__detail-title--windsurfing {
  letter-spacing: -0.16em;
}

.ts-activity__detail-text {
  margin: 0;
  color: #181818;
  font-size: 15.2px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 30.4px;
  letter-spacing: 0.3px;
}

.ts-activity__line {
  display: inline;
}

.ts-activity__button {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  height: 48px;
  margin-top: 0;
  padding: 0 10px 0 20px;
  border-radius: 4px;
  background: #307ec1;
  color: #ffffff;
  font-size: 15.2px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 30.4px;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.ts-activity__button:hover,
.ts-activity__button:focus-visible {
  color: #ffffff;
  background: #24679f;
}

.ts-activity__button-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ts-activity__button-arrow img {
  width: 8px;
  height: 6px;
  display: block;
}

/* Coach section */
.ts-coach {
  position: relative;
  margin-top: -96px;
  padding: 144px 0 144px;
  background: #ffffff;
}

.ts-coach__frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
}

.ts-coach__wave {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}

.ts-coach__wave--top {
  top: 0;
  background: #f2f2f2;
}

.ts-coach__wave--bottom {
  bottom: 0;
  background: var(--color-bg);
}

.ts-coach__wave svg {
  display: block;
  width: 100%;
  height: auto;
}

.ts-coach__hero-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  isolation: isolate;
}

.ts-coach__hero-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(117deg, rgba(255, 255, 255, 0) 48%, #84d0dc 80%),
    rgba(136, 228, 255, 0.4),
    rgba(72, 72, 72, 0.2);
  background-blend-mode: normal, overlay, lighten, normal;
}

.ts-coach__hero {
  width: 100%;
  aspect-ratio: 1312 / 656;
  object-fit: cover;
  display: block;
}

.ts-coach__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 24px 20px;
}

.ts-coach__layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.ts-coach__photos {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.ts-coach__photo {
  display: block;
  object-fit: cover;
  border-radius: 2px;
}

.ts-coach__photo--main {
  width: min(44%, 256px);
  aspect-ratio: 256 / 341;
}

.ts-coach__photo--sub {
  width: min(31%, 160px);
  aspect-ratio: 160 / 213;
}

.ts-coach__photo--small {
  width: min(23%, 120px);
  aspect-ratio: 120 / 160;
}

.ts-coach__heading {
  width: min(100%, 544px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ts-coach__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-coach__kicker-logo {
  width: 64px;
  height: auto;
  display: block;
}

.ts-coach__eyebrow {
  margin: 0;
  color: #181818;
  font-size: 24px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 21.12px;
  letter-spacing: 0.48px;
}

.ts-coach__title {
  margin: 0;
  color: #181818;
  font-size: clamp(34px, 8.8vw, 56px);
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.28;
  letter-spacing: -0.04em;
}

.ts-coach__subline {
  width: min(100%, 448px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-coach__subline-text {
  margin: 0;
  color: #181818;
  font-size: 12.8px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.38px;
  white-space: nowrap;
}

.ts-coach__subline-rule {
  flex: 1 1 0;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-coach__body {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.ts-coach__copy-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.ts-coach__copy {
  margin: 0;
  color: #181818;
  font-size: 16px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.32px;
}

.ts-coach__button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  height: 48px;
  padding: 0 10px 0 20px;
  border-radius: 4px;
  background: #307ec1;
  color: #ffffff;
  font-size: 15.2px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 30.4px;
  letter-spacing: 0.3px;
  text-decoration: none;
}

.ts-coach__button:hover,
.ts-coach__button:focus-visible {
  color: #ffffff;
  background: #24679f;
}

.ts-coach__button-arrow {
  width: 28px;
  height: 28px;
  border: 1px solid #ffffff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ts-coach__button-arrow img {
  width: 8px;
  height: 6px;
  display: block;
}

.ts-coach__note {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.ts-coach__note-icon {
  width: 128px;
  height: 128px;
  border-radius: 160px;
  object-fit: cover;
  background:
    linear-gradient(0deg, rgba(160, 224, 255, 0.04) 0%, rgba(160, 224, 255, 0.04) 100%),
    rgba(0, 0, 0, 0.02);
  background-blend-mode: overlay, normal;
}

.ts-coach__note-copy {
  transform: rotate(-4deg);
  transform-origin: top left;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
}

.ts-coach__note-line {
  display: block;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-coach__note-line--top {
  width: 94.59px;
  transform: rotate(-5deg);
  transform-origin: top left;
}

.ts-coach__note-line--bottom {
  width: 96.95px;
  transform: rotate(5deg);
  transform-origin: top left;
}

.ts-coach__note-text {
  margin: 0;
  color: #181818;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 20.16px;
  letter-spacing: 0.24px;
  white-space: nowrap;
}

/* Flow section */
.ts-flow {
  position: relative;
  margin-top: -96px;
  padding: 136px 0 144px;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  overflow: hidden;
}

.ts-flow__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

.ts-flow__wave {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: auto;
  line-height: 0;
  pointer-events: none;
}

.ts-flow__wave--top {
  top: 0;
}

.ts-flow__wave--bottom {
  bottom: -1px;
}

.ts-flow__wave svg {
  width: 100%;
  height: auto;
  display: block;
}

.ts-flow__frame {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.ts-flow__lead {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.ts-flow__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-flow__kicker-logo {
  width: 64px;
  height: auto;
  display: block;
}

.ts-flow__eyebrow {
  margin: 0;
  color: #181818;
  font-size: 24px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 21.12px;
  letter-spacing: 0.48px;
}

.ts-flow__title {
  margin: 0;
  color: #181818;
  font-size: clamp(30px, 8.2vw, 40px);
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.28;
  text-align: center;
}

.ts-flow__break-pc {
  display: none;
}

.ts-flow__subline {
  width: min(100%, 448px);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-flow__subline-text {
  margin: 0;
  color: #181818;
  font-size: 12.8px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.38px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ts-flow__subline-rule {
  flex: 1 1 0;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-flow__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.ts-flow__steps-wrap {
  width: 100%;
  display: grid;
  gap: 24px;
}

.ts-flow__steps-title {
  margin: 0;
  color: #181818;
  font-size: 24px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 30.72px;
  letter-spacing: 0.48px;
}

.ts-flow__steps {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.ts-flow__step {
  width: 160px;
  min-height: 232px;
  flex: 0 0 160px;
  border-radius: 4px;
  background: #ffffff;
  overflow: hidden;
}

.ts-flow__step-no-wrap {
  width: 40px;
  height: 40px;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  background: #181818;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ts-flow__step-no {
  margin: 0;
  color: #ffffff;
  font-size: 20px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 17.6px;
}

.ts-flow__step-body {
  padding: 16px 10px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.ts-flow__icon {
  width: 58px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ts-flow__icon--gather {
  width: 51px;
  height: 45px;
}

.ts-flow__icon--land {
  width: 50px;
  height: 42px;
}

.ts-flow__icon--sea {
  width: 48px;
  height: 44px;
}

.ts-flow__icon--feedback {
  width: 48px;
  height: 46px;
}

.ts-flow__icon--shower {
  width: 58px;
  height: 50px;
}

.ts-flow__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ts-flow__step-label {
  margin: 0;
  color: #181818;
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 25.6px;
  letter-spacing: 0.4px;
  text-align: center;
}

.ts-flow__step-line {
  display: block;
}

.ts-flow__arrow {
  width: 16px;
  height: 12px;
  flex: 0 0 16px;
}

.ts-flow__arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  stroke: #181818;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ts-flow__note {
  margin: 0;
  color: #181818;
  font-size: 16px;
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 32px;
  letter-spacing: 0.32px;
  text-align: center;
}

/* FAQ section */
.ts-faq {
  position: relative;
  padding: 56px 0 136px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0) 80%, #ffffff 100%),
    linear-gradient(180deg, #ffffff 8%, rgba(255, 255, 255, 0) 40%);
}

.ts-faq__bg-line {
  display: none;
  pointer-events: none;
}

.ts-faq__frame {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 64px;
}

.ts-faq__lead {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
}

.ts-faq__kicker {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.ts-faq__kicker-logo {
  width: 64px;
  height: auto;
  display: block;
}

.ts-faq__eyebrow {
  margin: 0;
  color: #181818;
  font-size: 24px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 21.12px;
  letter-spacing: 0.48px;
}

.ts-faq__title {
  margin: 0;
  color: #181818;
  text-align: center;
  font-size: clamp(30px, 8.2vw, 40px);
  font-family: var(--font-mincho);
  font-weight: 300;
  line-height: 1.28;
}

.ts-faq__subline {
  width: min(100%, 448px);
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.ts-faq__subline-text {
  margin: 0;
  color: #181818;
  font-size: 12.8px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 16.38px;
  white-space: nowrap;
}

.ts-faq__subline-rule {
  flex: 1 1 0;
  height: 0;
  border-top: 0.4px solid #181818;
}

.ts-faq__list {
  width: min(100%, 1120px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 48px;
}

.ts-faq__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.ts-faq__row {
  width: 100%;
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.ts-faq__badge {
  width: 32px;
  height: 32px;
  border-radius: 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 20px;
  font-family: var(--font-bona);
  font-weight: 400;
  line-height: 17.6px;
  flex: 0 0 32px;
}

.ts-faq__badge--q {
  background: #181818;
}

.ts-faq__badge--a {
  background: #e73414;
}

.ts-faq__question,
.ts-faq__answer {
  margin: 0;
  flex: 1 1 0;
  color: #181818;
  font-family: var(--font-mincho);
  font-weight: 300;
}

.ts-faq__question {
  font-size: 24px;
  line-height: 30.72px;
  letter-spacing: 0.48px;
}

.ts-faq__answer {
  font-size: 16px;
  line-height: 23.04px;
}

.ts-faq__answer--long {
  line-height: 26.88px;
}

/* Ocean gallery section */
.ts-ocean-gallery {
  position: relative;
  padding: 8px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

.ts-ocean-gallery__bg-line {
  display: none;
  pointer-events: none;
}

.ts-ocean-gallery__frame {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
}

.ts-ocean-gallery__left,
.ts-ocean-gallery__right {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-content: start;
}

.ts-ocean-gallery__photo {
  position: relative;
  width: 100%;
  margin: 0;
  border-radius: 8px;
  background: #dfe5ea;
  overflow: hidden;
}

.ts-ocean-gallery__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-ocean-gallery__photo--edge-left {
  align-self: stretch;
}

.ts-ocean-gallery__photo--edge-right {
  align-self: stretch;
}

.ts-ocean-gallery__photo--lead {
  max-width: none;
  aspect-ratio: 16 / 10;
}

.ts-ocean-gallery__caption-wrap {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  margin: 0;
  max-width: calc(100% - 24px);
  padding: 4px 8px;
  background: #ffffff;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.ts-ocean-gallery__caption {
  color: #181818;
  text-align: left;
  font-size: 12px;
  font-family: var(--font-kaku);
  font-weight: 300;
  line-height: 15.36px;
  letter-spacing: 0.24px;
}

.ts-ocean-gallery__photo--detail {
  width: min(100%, 520px);
  aspect-ratio: 16 / 10;
  justify-self: start;
}

.ts-ocean-gallery__photo--side-top,
.ts-ocean-gallery__photo--side-bottom {
  width: 100%;
  aspect-ratio: 4 / 3;
}

/* Footer CTA */
.ts-footer-cta {
  margin-top: 0;
  background: #7fc3d2;
  padding: 24px 0 0;
}

.ts-footer-cta__inner {
  display: grid;
  gap: 24px;
}

.ts-footer-cta__cards {
  display: grid;
  gap: 12px;
}

.ts-footer-cta__card {
  display: grid;
  background: #f2f2f2;
  border-radius: 4px;
  overflow: hidden;
}

.ts-footer-cta__media {
  margin: 0;
  aspect-ratio: 16 / 9;
}

.ts-footer-cta__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.ts-footer-cta__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ts-footer-cta__title {
  margin: 0;
  color: #181818;
  font-family: var(--font-bona);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

.ts-footer-cta__title-break-pc {
  display: none;
}

.ts-footer-cta__lead {
  margin: 14px 0 22px;
  color: #181818;
  font-family: var(--font-kaku);
  font-size: 12px;
  font-weight: 300;
  line-height: 15.36px;
  letter-spacing: 0.24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ts-footer-cta__lead span[aria-hidden="true"] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #181818;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  line-height: 1;
}

.ts-footer-cta__lead span[aria-hidden="true"]::before {
  content: "✓";
}

.ts-footer-cta__button {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #2f80c8;
  color: #ffffff;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 300;
  line-height: 30.4px;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  text-align: center;
  position: relative;
}

.ts-footer-cta__button > span:first-child {
  flex: 0 1 auto;
  min-width: 0;
  text-align: center;
}

.ts-footer-cta__button:hover,
.ts-footer-cta__button:focus-visible {
  color: #ffffff;
  background: #2467a4;
}

.ts-footer-cta__button-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.9);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  flex: 0 0 28px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.ts-footer-cta__button-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 10px;
  background: url("/wp-content/themes/ts-surfwind/assets/img/common/icons/arrow.svg")
    center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.ts-footer-cta__rule {
  width: min(100%, 1120px);
  height: 1px;
  margin-inline: auto;
  background: rgba(24, 24, 24, 0.2);
}

.ts-footer-cta__phone {
  color: #181818;
  width: min(100%, 1120px);
  margin-inline: auto;
  margin-bottom: 48px;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.ts-footer-cta__phone-contact {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.ts-footer-cta__phone-lead {
  margin: 0;
  font-family: var(--font-mincho);
  font-size: 24px;
  font-weight: 300;
  line-height: 30.72px;
  letter-spacing: 0.48px;
}

.ts-footer-cta__phone-number {
  margin: 0;
  color: #181818;
  text-decoration: none;
  font-family: "Times New Roman", Times, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 42.24px;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ts-footer-cta__phone-icon {
  width: 16px;
  height: auto;
  flex: 0 0 auto;
  display: block;
  transform: translateY(1px);
}

.ts-footer-cta__phone-hours {
  margin: 0;
  font-family: var(--font-kaku);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.ts-footer-cta__phone-number:hover,
.ts-footer-cta__phone-number:focus-visible {
  color: #181818;
}

/* Footer main */
.ts-footer-main {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 88px 16px 24px;
  background: #0f141d;
  color: #ffffff;
}

.ts-footer-main a {
  color: #ffffff;
}

.ts-footer-main__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 86px;
  grid-auto-flow: dense;
  gap: 16px;
  padding: 16px;
}

.ts-footer-main__col {
  display: contents;
}

.ts-footer-main__tile {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #0a0e13;
}

.ts-footer-main__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ts-footer-main__tile--01 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--02 {
  grid-row: span 3;
}

.ts-footer-main__tile--03 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--04 {
  grid-row: span 4;
}

.ts-footer-main__tile--05 {
  grid-column: span 2;
  grid-row: span 4;
}

.ts-footer-main__tile--06 {
  grid-column: span 2;
  grid-row: span 4;
}

.ts-footer-main__tile--07 {
  grid-row: span 3;
}

.ts-footer-main__tile--08 {
  grid-column: span 2;
  grid-row: span 2;
}

.ts-footer-main__tile--09 {
  grid-column: span 2;
  grid-row: span 3;
}

.ts-footer-main__tile--10 {
  grid-row: span 2;
}

.ts-footer-main__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(132, 208, 220, 0.34) 0%, rgba(10, 13, 20, 0.86) 58%, rgba(8, 10, 16, 0.94) 100%),
    rgba(6, 8, 12, 0.48);
}

.ts-footer-main__inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  min-height: 648px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 36px;
}

.ts-footer-main__center {
  width: min(100%, 900px);
  margin-inline: auto;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.ts-footer-main__tagline,
.ts-footer-main__address,
.ts-footer-main__catch-en {
  margin: 0;
  text-align: center;
}

.ts-footer-main__tagline {
  margin-top: -12px;
  margin-bottom: 32px;
  font-family: var(--font-kaku);
  font-size: 11.2px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0.42px;
}

.ts-footer-main__brand {
  display: inline-flex;
  line-height: 1;
}

.ts-footer-main__brand img {
  width: clamp(132px, 32vw, 160px);
  height: auto;
  display: block;
}

.ts-footer-main__address {
  width: min(100%, 920px);
  font-family: var(--font-kaku);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.32px;
}

.ts-footer-main__station {
  margin: 0;
  display: inline-block;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 300;
  line-height: 1.25;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.ts-footer-main__station-rule {
  display: none;
}

.ts-footer-main__catch-ja {
  margin: 0;
  text-align: center;
  font-family: var(--font-mincho);
  font-size: clamp(48px, 10.5vw, 72px);
  font-weight: 300;
  line-height: 1.2;
}

.ts-footer-main__catch-line {
  display: block;
}

.ts-footer-main__catch-en {
  font-family: var(--font-bona);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.2px;
}

.ts-footer-main__nav {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
}

.ts-footer-main__nav a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.24px;
}

.ts-footer-main__nav a:hover,
.ts-footer-main__nav a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.ts-footer-main__bottom {
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.ts-footer-main__meta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.ts-footer-main__instagram {
  width: 24px;
  height: 24px;
  display: var(--ts-instagram-display, none);
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ts-footer-main__instagram img {
  width: 24px;
  height: 24px;
  display: block;
}

.ts-footer-main__privacy,
.ts-footer-main__copyright {
  margin: 0;
  text-decoration: none;
  font-family: var(--font-mincho);
  font-size: 10.5px;
  font-weight: 300;
  line-height: 1.35;
}

.ts-footer-main__copyright {
  font-family: var(--font-bona);
}

.ts-footer-main__privacy:hover,
.ts-footer-main__privacy:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

/* Footer */
.ts-footer,
footer.site-footer {
  margin-top: var(--space-6);
  background: var(--color-footer);
  color: #d7e4ec;
  padding: var(--space-5) 0;
}

.ts-footer a,
footer.site-footer a {
  color: #eaf6ff;
}

/* Post list cards */
.wp-block-query {
  display: grid;
  gap: var(--space-3);
}

.wp-block-post {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-1);
  padding: var(--space-4);
}

.wp-block-post-title {
  margin: 0 0 var(--space-2);
  font-family: var(--font-heading);
  line-height: 1.35;
}

.wp-block-post-date {
  color: var(--color-muted);
  font-size: 0.9rem;
}

/* Post detail */
.entry-content,
.wp-block-post-content {
  color: var(--color-text);
}

.entry-content > * + *,
.wp-block-post-content > * + * {
  margin-block-start: var(--space-3);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.wp-block-post-content h1,
.wp-block-post-content h2,
.wp-block-post-content h3 {
  font-family: var(--font-heading);
  line-height: 1.35;
}

/* Buttons */
button,
.button,
.wp-element-button,
input[type="submit"] {
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 44px;
  padding: 0 1rem;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

button:hover,
.button:hover,
.wp-element-button:hover,
input[type="submit"]:hover {
  background: var(--color-accent-strong);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-s);
  padding: 0.7rem 0.8rem;
  background: #fff;
  color: var(--color-text);
}

label {
  display: inline-block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}
