/*
Theme Name: Seisan Kanko
Theme URI: http://seisan-kankocojp.local/
Author: Codex
Description: Standalone WordPress theme for the Seisan Kanko site migrated from the sample /seisan-kanko build.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: seisan-kanko
*/

:root {
  --ink: #17202a;
  --muted: #5d6875;
  --line: #dfe5eb;
  --paper: #ffffff;
  --soft: #f5f8f7;
  --blue: #1f78b4;
  --green: #5c9d33;
  --yellow: #f4c542;
  --coral: #da684f;
  --teal: #197a75;
  --shadow: 0 18px 45px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
}

body.is-page-loading {
  overflow: hidden;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  pointer-events: auto;
  transition:
    opacity 0.45s ease,
    visibility 0.45s ease;
}

.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.page-loader__mark {
  width: 54px;
  height: 54px;
  border: 4px solid rgba(92, 157, 51, 0.18);
  border-top-color: var(--brand, var(--green));
  border-radius: 50%;
  animation: pageLoaderSpin 0.8s linear infinite;
}

.page-loader__text {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

@keyframes pageLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}

body.seisan {
  --brand: #5c9d33;
  --brand-strong: #286a44;
  --accent: #f0bd3d;
  --band: #edf6ef;
}

body.chuo {
  --brand: #197a75;
  --brand-strong: #0f4f63;
  --accent: #e59336;
  --band: #eef7f6;
}

body.taxi {
  --brand: #264f87;
  --brand-strong: #1b3358;
  --accent: #d8a52e;
  --band: #f2f5f9;
}

body.group {
  --brand: #2f9a39;
  --brand-strong: #0f5130;
  --accent: #f4c542;
  --band: #f7f1dc;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .page-loader {
    transition: none;
  }

  .page-loader__mark {
    animation: none;
    border-top-color: rgba(92, 157, 51, 0.18);
    box-shadow: inset 0 0 0 4px var(--brand, var(--green));
  }
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.top-strip {
  background: #17202a;
  color: #fff;
  font-size: 0.82rem;
}

.top-strip__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.prototype-links {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.prototype-links a {
  opacity: 0.78;
}

.prototype-links a[aria-current="page"],
.prototype-links a:hover {
  opacity: 1;
  color: var(--yellow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 229, 235, 0.86);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__mark {
  width: 132px;
  height: auto;
}

.brand__mark--seisan {
  width: min(292px, 52vw);
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__name {
  color: var(--brand-strong);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
}

.brand__domain {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.3;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--brand-strong);
  background: transparent;
  border: 0;
  border-radius: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.nav-toggle__bar:nth-child(2) {
  background: var(--accent);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  background: var(--accent);
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: #2d3742;
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

body.seisan .site-nav {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 1 / 3;
  grid-template-columns: minmax(300px, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 14px 0;
  align-self: stretch;
  align-items: center;
  justify-items: stretch;
}

body.seisan .site-header__inner {
  min-height: 116px;
  padding: 18px 0 0;
  display: grid;
  grid-template-columns: minmax(280px, auto) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 14px 32px;
  align-items: center;
}

body.seisan .brand {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
}

body.seisan .site-nav__utility,
body.seisan .site-nav__main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

body.seisan .site-nav__utility {
  grid-column: 2;
  grid-row: 1;
  gap: 10px;
  justify-self: end;
}

body.seisan .site-nav__main {
  grid-column: 1 / -1;
  grid-row: 2;
  width: 100%;
  gap: 0;
  padding-top: 8px;
  border-top: 0;
  justify-content: stretch;
}

.site-nav a {
  padding: 9px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand-strong);
  border-color: var(--accent);
}

body.seisan .site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-bottom: 0;
  transition: color 0.3s ease;
}

body.seisan .site-nav__utility a {
  gap: 8px;
  min-width: 148px;
  min-height: 38px;
  justify-content: center;
  padding: 0 16px;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.34);
  border-radius: 2px;
  box-shadow: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  overflow: hidden;
}

body.seisan .site-nav__utility a:first-child {
  color: #fff;
  background: var(--brand-strong);
  border-color: var(--brand-strong);
}

body.seisan .site-nav__utility a::before {
  --utility-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
  content: "";
  position: static;
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  background: currentColor;
  border: 0;
  border-radius: 0;
  -webkit-mask: var(--utility-icon) center / 22px 22px no-repeat;
  mask: var(--utility-icon) center / 22px 22px no-repeat;
}

body.seisan .site-nav__utility a:first-child::before {
  color: currentColor;
}

body.seisan .site-nav__utility a:last-child::before {
  --utility-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

body.seisan .site-nav__utility > a:nth-child(2)::before,
body[data-local-snapshot="k-sss-current"] .seisan-sample-site-nav__utility > a:nth-child(2)::before {
  --utility-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 4h16v16H4z'/%3E%3Cpath d='m4 7 8 6 8-6'/%3E%3C/svg%3E");
}

body.seisan .site-nav__main a {
  flex: 1 1 auto;
  min-height: 40px;
  justify-content: center;
  padding: 0 clamp(22px, 2.5vw, 34px);
  border-left: 1px solid rgba(45, 55, 66, 0.22);
  border-radius: 0;
  font-size: 0.84rem;
  font-weight: 900;
}

body.seisan .site-nav__main a:first-child {
  border-left: 1px solid rgba(45, 55, 66, 0.22);
}

body.seisan .site-nav__main a:last-child {
  border-right: 1px solid rgba(45, 55, 66, 0.22);
}

body.seisan .site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

body.seisan .site-nav__utility a::after {
  content: none;
}

body.seisan .site-nav a:hover,
body.seisan .site-nav a:focus-visible {
  color: var(--brand-strong);
}

body.seisan .site-nav__main a[aria-current="page"] {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: 0 8px 18px rgba(40, 106, 68, 0.16);
}

body.seisan .site-nav__utility a:hover,
body.seisan .site-nav__utility a:focus-visible,
body.seisan .site-nav__utility a[aria-current="page"] {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

body.seisan .site-nav a:hover::after,
body.seisan .site-nav a:focus-visible::after {
  transform: scaleX(1);
}

body.seisan .site-nav__main a[aria-current="page"]::after {
  opacity: 0;
  transform: scaleX(0);
}

.site-nav-language {
  position: relative;
  flex: 1 1 28px;
  min-width: 0;
}

.site-nav-language__toggle {
  width: 100%;
  min-height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #2d3742;
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(45, 55, 66, 0.22);
  border-radius: 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 900;
}

.site-nav-language__toggle i {
  width: 8px;
  height: 8px;
  margin-top: -4px;
  display: block;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.site-nav-language__toggle[aria-expanded="true"] i {
  margin-top: 4px;
  transform: rotate(225deg);
}

.site-nav-language__toggle:hover,
.site-nav-language__toggle:focus-visible,
.site-nav-language__toggle[aria-expanded="true"] {
  color: var(--brand-strong);
  background: rgba(92, 157, 51, 0.08);
}

.site-nav-language__toggle[aria-current="page"] {
  color: #fff;
  background: var(--brand-strong);
  box-shadow: 0 8px 18px rgba(40, 106, 68, 0.16);
}

.site-nav-language__menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: 250px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(40, 106, 68, 0.2);
  border-top: 3px solid var(--brand);
  border-radius: 0 0 3px 3px;
  box-shadow: 0 18px 38px rgba(23, 32, 42, 0.18);
}

.site-nav-language__menu[hidden] {
  display: none;
}

:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #2d3742;
  background: transparent;
  border: 0;
  border-right: 0;
  border-bottom: 1px solid rgba(40, 106, 68, 0.14);
  border-radius: 0;
  box-shadow: none;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a:last-child {
  border-bottom: 0;
  border-right: 0;
}

:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a::after {
  content: "↗";
  position: static;
  width: auto;
  height: auto;
  margin-left: 12px;
  flex: 0 0 auto;
  color: var(--brand);
  background: none;
  opacity: 1;
  transform: none;
}

:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a:first-child::after {
  content: ">";
}

:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a:hover,
:is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a:focus-visible {
  color: var(--brand-strong);
  background: var(--band);
  border-bottom-color: rgba(40, 106, 68, 0.14);
}

.header-action {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 17px;
  color: #fff;
  background: var(--brand);
  border-radius: 6px;
  font-weight: 800;
}

.header-action:hover {
  background: var(--brand-strong);
}

.hero {
  position: relative;
  min-height: 560px;
  color: #fff;
  background: #14212b;
}

.hero.hero--compact {
  min-height: 500px;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transform: scale(1.035);
  transition:
    opacity 1400ms ease,
    transform 7600ms ease;
}

.hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(13, 27, 39, 0.84) 0%, rgba(13, 27, 39, 0.56) 40%, rgba(13, 27, 39, 0.18) 78%),
    linear-gradient(0deg, rgba(13, 27, 39, 0.38), rgba(13, 27, 39, 0.06));
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: inherit;
  margin: 0 auto;
  padding: 66px 0 48px;
  display: grid;
  align-content: end;
  gap: 34px;
}

.hero--seisan-home .hero__inner {
  padding-bottom: 170px;
}

.hero__copy {
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.4;
}

.hero h1 {
  margin: 0;
  font-size: 3rem;
  line-height: 1.16;
  font-weight: 900;
}

.hero__lead {
  width: min(620px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.91);
  font-size: 1rem;
}

@media (max-width: 750px) {
  .hero--seisan-home .hero__media::after {
    background:
      linear-gradient(90deg, rgba(9, 23, 35, 0.9) 0%, rgba(9, 23, 35, 0.7) 48%, rgba(9, 23, 35, 0.16) 100%),
      linear-gradient(0deg, rgba(9, 23, 35, 0.58) 0%, rgba(9, 23, 35, 0.08) 56%);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
}

.button--primary {
  color: #fff;
  background: var(--brand);
}

.button--primary:hover {
  background: var(--brand-strong);
}

.button--ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
}

.button--light {
  color: var(--brand-strong);
  background: #fff;
  border-color: var(--line);
}

.button--light:hover {
  background: var(--band);
}

.call-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  color: #fff;
  background: #c93f2e;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 900;
}

.call-button:hover {
  background: #a93124;
}

.button::after,
.link-arrow::after {
  content: ">";
  margin-left: 0.65em;
  font-weight: 900;
}

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow);
}

.quick-panel a {
  min-height: 150px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.95);
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.quick-panel a:hover {
  background: var(--band);
}

.quick-panel__label {
  color: var(--brand-strong);
  font-size: 0.83rem;
  font-weight: 900;
}

.quick-panel__title {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.45;
  font-weight: 900;
}

.quick-panel__meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-shortcuts {
  color: #fff;
  background: var(--brand-strong);
}

.service-shortcuts__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 146px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-shortcuts a {
  position: relative;
  min-width: 0;
  min-height: 146px;
  padding: 26px 18px 24px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.service-shortcuts a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.service-shortcuts a:hover,
.service-shortcuts a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.service-shortcuts a:focus-visible {
  outline: 3px solid rgba(240, 189, 61, 0.8);
  outline-offset: -6px;
}

.service-shortcuts__icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-shortcuts span {
  display: block;
  max-width: 100%;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

body.group {
  background: #f3f1ea;
}

body.group .site-header {
  background: rgba(243, 241, 234, 0.92);
  border-bottom: 0;
}

body.group .site-header__inner {
  min-height: 94px;
}

body.group .brand {
  padding: 10px 14px 10px 0;
}

body.group .brand__name {
  color: var(--brand-strong);
}

body.group .site-nav {
  align-self: stretch;
  gap: 7px;
  height: fit-content;
  margin-left: auto;
  padding: 7px;
  align-items: center;
  align-self: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid #17202a;
  border-radius: 8px;
  box-shadow: 7px 7px 0 rgba(244, 197, 66, 0.45);
}

body.group .site-nav a {
  min-height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  color: #17202a;
  border: 0;
  border-radius: 6px;
  border-bottom: 0;
  font-size: 0.88rem;
}

body.group .site-nav a:hover {
  color: var(--brand-strong);
  background: rgba(244, 197, 66, 0.28);
  border-color: transparent;
}

body.group .header-action {
  color: #fff;
  background: var(--brand-strong);
  border-radius: 6px;
}

body.group .header-action:hover {
  color: #17202a;
  background: var(--accent);
}

body.group .group-hero {
  min-height: 710px;
  color: #111811;
  background: #f3f1ea;
  overflow: hidden;
}

body.group .group-hero__media::after {
  background: none;
}

.group-hero__tiles,
.group-hero__brush {
  position: absolute;
  pointer-events: none;
}

.group-hero__tiles {
  z-index: 1;
  top: 54px;
  right: 6.2%;
  left: 6.2%;
  height: 440px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.group-hero__tile {
  margin: 0;
  overflow: hidden;
  background: #dbe4db;
  border-radius: 8px;
  clip-path: polygon(5% 0, 100% 7%, 95% 100%, 0 93%);
  box-shadow: 0 24px 60px rgba(23, 32, 42, 0.18);
}

.group-hero__tile:nth-child(even) {
  transform: translateY(18px);
  clip-path: polygon(0 7%, 95% 0, 100% 93%, 5% 100%);
}

.group-hero__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(0.92) brightness(0.84);
}

.group-hero__brush {
  z-index: 0;
  width: 560px;
  height: 170px;
  border-radius: 8px;
  opacity: 0.9;
}

.group-hero__brush--green {
  top: 74px;
  left: -110px;
  background: repeating-linear-gradient(
    100deg,
    rgba(47, 154, 57, 0.48) 0 7px,
    rgba(47, 154, 57, 0.14) 7px 14px,
    transparent 14px 20px
  );
  transform: rotate(-17deg);
}

.group-hero__brush--yellow {
  right: -96px;
  bottom: 112px;
  background: repeating-linear-gradient(
    100deg,
    rgba(244, 197, 66, 0.6) 0 7px,
    rgba(244, 197, 66, 0.18) 7px 14px,
    transparent 14px 20px
  );
  transform: rotate(-17deg);
}

body.group .group-hero .hero__inner {
  padding: 344px 0 48px;
  gap: 28px;
  align-content: end;
}

body.group .group-hero .hero__copy {
  width: min(860px, 100%);
}

body.group .group-hero .eyebrow {
  width: fit-content;
  margin-bottom: 12px;
  padding: 4px 10px;
  color: #0f5130;
  background: rgba(255, 255, 255, 0.74);
  border-left: 6px solid var(--accent);
  font-size: 0.82rem;
}

.group-hero__message {
  display: grid;
  gap: 8px;
}

.group-hero__3s {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin: 0;
  padding: 9px 12px;
  color: #fff;
  background: rgba(15, 81, 48, 0.86);
  border-left: 7px solid var(--accent);
  box-shadow: 7px 7px 0 rgba(244, 197, 66, 0.34);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.18em;
}

.group-hero__3s-mark {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 2px;
}

.group-hero__3s-mark i {
  width: 24px;
  height: 38px;
  display: block;
  background: #5c9d33;
  border-radius: 2px 14px 2px 14px;
  transform: skewX(-16deg);
}

.group-hero__3s-mark i:nth-child(2) {
  background: #8ca04a;
}

.group-hero__3s-mark i:nth-child(3) {
  background: var(--accent);
}

body.group .group-hero h1 {
  max-width: 880px;
  color: #101610;
  font-size: 4.55rem;
  line-height: 1.04;
  text-shadow: 0 2px 0 rgba(243, 241, 234, 0.9);
}

body.group .group-hero .hero__lead {
  width: min(700px, 100%);
  color: #27322a;
  font-weight: 700;
}

body.group .group-hero .button--primary {
  color: #17202a;
  background: var(--accent);
  border-color: #17202a;
}

body.group .group-hero .button--primary:hover {
  color: #fff;
  background: var(--brand-strong);
}

body.group .group-hero .button--ghost {
  color: #17202a;
  background: rgba(255, 255, 255, 0.68);
  border-color: #17202a;
}

body.group .group-hero .button--ghost:hover {
  background: #fff;
}

body.group .group-hero .quick-panel {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  background: transparent;
  box-shadow: none;
}

body.group .group-hero .quick-panel a {
  min-height: 128px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #17202a;
  border-radius: 8px;
  box-shadow: 8px 8px 0 rgba(244, 197, 66, 0.58);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

body.group .group-hero .quick-panel a:hover {
  background: #fff;
  transform: translateY(-3px);
  box-shadow: 10px 10px 0 rgba(47, 154, 57, 0.35);
}

body.group .section--band {
  background: var(--band);
}

body.group .service-card,
body.group .notice-box,
body.group .info-rail {
  border-color: #17202a;
}

body.group .service-card {
  box-shadow: 8px 8px 0 rgba(244, 197, 66, 0.34);
}

body.group .service-card__image {
  border-bottom: 1px solid #17202a;
}

body.group .section--dark {
  background: #174a2c;
}

body.group .news-category,
body.group .tag {
  color: #17202a;
  background: var(--accent);
}

body.group .banner-link {
  background: #174a2c;
}

.group-companies {
  position: relative;
  overflow: hidden;
  background: #f9faf3;
}

.group-companies::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(23, 32, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 42, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 82%);
  pointer-events: none;
}

.group-companies .section__inner {
  position: relative;
  z-index: 1;
}

.group-showcase {
  display: grid;
  gap: 18px;
}

.group-showcase__tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.group-showcase__tabs button {
  min-height: 42px;
  padding: 0 16px;
  color: #17202a;
  background: #fff;
  border: 1px solid #17202a;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
  white-space: nowrap;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.group-showcase__tabs button:hover,
.group-showcase__tabs button:focus-visible,
.group-showcase__tabs button.is-active {
  color: #fff;
  background: #17202a;
}

.group-showcase__tabs button:focus-visible {
  outline: 3px solid rgba(244, 197, 66, 0.6);
  outline-offset: 3px;
}

.group-showcase__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-padding: 4px;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 28px;
  -webkit-overflow-scrolling: touch;
}

.group-showcase__track::-webkit-scrollbar {
  height: 8px;
}

.group-showcase__track::-webkit-scrollbar-track {
  background: rgba(23, 32, 42, 0.08);
}

.group-showcase__track::-webkit-scrollbar-thumb {
  background: rgba(23, 32, 42, 0.34);
  border-radius: 999px;
}

.group-company-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  flex: 0 0 min(920px, calc(100vw - 72px));
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.45fr);
  color: #101610;
  background: #fff;
  border: 1px solid #17202a;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgba(23, 32, 42, 0.13);
  opacity: 0.56;
  scroll-snap-align: center;
  transform: scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.group-company-card:hover,
.group-company-card:focus-visible,
.group-company-card.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 70px rgba(23, 32, 42, 0.18);
}

.group-company-card:focus-visible {
  outline: 3px solid rgba(244, 197, 66, 0.72);
  outline-offset: 4px;
}

.group-company-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.94) 0 56%, rgba(255, 255, 255, 0.72) 56% 100%),
    radial-gradient(circle at 18% 24%, rgba(244, 197, 66, 0.22), transparent 34%);
}

.group-company-card__image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.8) contrast(0.92);
}

.group-company-card__body {
  min-height: 100%;
  padding: 42px 44px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.group-company-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--company-dark);
  font-weight: 900;
}

.group-company-card__meta span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #08110f;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1;
}

.group-company-card__meta strong {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  line-height: 1.4;
}

.group-company-card h3 {
  max-width: 620px;
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.28;
  font-weight: 900;
}

.group-company-card__body p {
  max-width: 620px;
  margin: 0;
  color: #344135;
  font-weight: 700;
}

.group-company-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.group-company-card__services li {
  min-height: 30px;
  padding: 3px 11px;
  display: inline-flex;
  align-items: center;
  color: #17202a;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(23, 32, 42, 0.2);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
}

.group-company-card__summary {
  min-height: 100%;
  padding: 42px;
  display: grid;
  align-content: center;
  gap: 18px;
  color: #fff;
  background: linear-gradient(180deg, var(--company-color), var(--company-dark));
}

.group-company-card__summary span {
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.4;
}

.group-company-card__summary p {
  margin: 0;
  font-size: 1.38rem;
  line-height: 1.7;
  font-weight: 900;
}

.group-company-card__summary .link-arrow {
  font-size: 0.92rem;
  font-weight: 900;
}

.group-showcase__progress {
  height: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #17202a;
  border-radius: 999px;
}

.group-showcase__progress span {
  width: 25%;
  height: 100%;
  display: block;
  background: var(--accent);
  transition: width 0.3s ease;
}

.page-hero {
  color: #fff;
  background: var(--brand-strong);
}

.page-hero__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 300px;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
  gap: 30px;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.18;
  font-weight: 900;
}

.page-hero .eyebrow {
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.page-hero--faq h1 {
  white-space: nowrap;
}

.page-hero p {
  max-width: 660px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.page-hero__visual {
  min-height: 210px;
  padding: 18px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.page-hero__visual img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.page-hero--no-visual .page-hero__inner {
  grid-template-columns: minmax(0, 780px);
}

.lineup-fv {
  width: 100%;
}

.lineup-fv__photo {
  display: block;
  width: 100%;
  height: clamp(150px, 22vw, 300px);
  object-fit: cover;
}

.lineup-intro {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.lineup-intro .eyebrow {
  color: var(--brand-strong);
}

.lineup-intro h1 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  line-height: 1.2;
  font-weight: 900;
}

.lineup-intro > p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
}

.lineup-intro .hero-actions {
  justify-content: center;
}

.lineup-intro .button--ghost {
  color: var(--brand-strong);
  background: #fff;
  border-color: var(--brand);
}

.lineup-intro .button--ghost:hover {
  background: var(--band);
}

.breadcrumb {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 16px 0;
  color: var(--muted);
  font-family:
    "Yu Gothic", YuGothic, "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo,
    sans-serif;
  font-size: 0.84rem;
  letter-spacing: 0.1rem;
}

.breadcrumb a {
  color: var(--brand-strong);
  font-weight: 800;
}

.breadcrumb span + span::before {
  content: "/";
  margin: 0 8px;
  color: #aeb8c2;
}

.dispatch-panel {
  width: min(720px, 100%);
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.dispatch-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.dispatch-panel__head h2 {
  font-size: 1.32rem;
}

.dispatch-panel__status {
  min-height: 32px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.dispatch-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.dispatch-phone {
  min-height: 54px;
  padding: 8px 16px;
  display: grid;
  align-content: center;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.dispatch-phone span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.dispatch-phone strong {
  color: var(--brand-strong);
  font-size: 1.18rem;
  line-height: 1.25;
}

.dispatch-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.dispatch-steps span {
  min-height: 44px;
  padding: 9px 10px;
  display: flex;
  align-items: center;
  color: #2d3742;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.35;
}

.section {
  padding: 86px 0;
}

body.seisan main#top .scroll-fade-section {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.72s ease,
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--scroll-fade-delay, 0ms);
  will-change: opacity, transform;
}

body.seisan main#top .scroll-fade-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.seisan main#top .scroll-fade-section {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.section--band {
  background: var(--band);
}

.section--dark {
  color: #fff;
  background: var(--brand-strong);
}

.section__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-head__copy {
  width: min(720px, 100%);
}

.kicker {
  margin: 0 0 9px;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 900;
}

.section--dark .kicker {
  color: var(--accent);
}

h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 900;
}

.section-head p,
.text-block p {
  margin: 13px 0 0;
  color: var(--muted);
}

.section--dark .section-head p,
.section--dark .text-block p {
  color: rgba(255, 255, 255, 0.78);
}

/* 西讃観光サイトのみ：セクションタイトルを中央寄せ */
body.seisan .section-head {
  justify-content: center;
  text-align: center;
}

body.seisan .section-head__copy {
  margin-inline: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card__image {
  aspect-ratio: 16 / 10;
  background: #dfe5eb;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 22px;
}

.service-card h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.45;
}

.service-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card .link-arrow {
  color: var(--brand-strong);
  font-weight: 900;
}

.not-found-page {
  background: #fff;
}

.not-found-hero {
  padding: clamp(54px, 8vw, 96px) 0 clamp(42px, 6vw, 72px);
  border-top: 1px solid rgba(223, 229, 235, 0.8);
  background:
    linear-gradient(180deg, rgba(243, 248, 242, 0.78), rgba(255, 255, 255, 0) 62%),
    #fff;
}

.not-found-hero__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  text-align: center;
}

.not-found-hero__copy {
  max-width: 780px;
}

.not-found-hero__code {
  margin: 0 0 10px;
  color: rgba(38, 111, 73, 0.12);
  font-size: clamp(4.5rem, 12vw, 9rem);
  line-height: 0.82;
  font-weight: 900;
  letter-spacing: 0;
}

.not-found-hero h1 {
  margin: 0;
  color: var(--brand-strong);
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: 0;
}

.not-found-hero h1 + p {
  max-width: 680px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
  font-weight: 700;
}

.not-found-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
}

.not-found-services {
  padding: clamp(48px, 7vw, 82px) 0 clamp(64px, 8vw, 104px);
}

.not-found-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.not-found-service-card {
  overflow: hidden;
  display: grid;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(23, 32, 42, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.not-found-service-card:hover,
.not-found-service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(40, 106, 68, 0.42);
  box-shadow: 0 20px 42px rgba(23, 32, 42, 0.1);
}

.not-found-service-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dfe5eb;
}

.not-found-service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.not-found-service-card:hover .not-found-service-card__image img,
.not-found-service-card:focus-visible .not-found-service-card__image img {
  transform: scale(1.04);
}

.not-found-service-card__body {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.not-found-service-card__body strong {
  color: var(--brand-strong);
  font-size: 1.14rem;
  line-height: 1.45;
  font-weight: 900;
}

.not-found-service-card__body span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 700;
}

@media (max-width: 920px) {
  .not-found-service-grid {
    grid-template-columns: 1fr;
  }

  .not-found-service-card {
    grid-template-columns: minmax(180px, 38%) 1fr;
  }

  .not-found-service-card__image {
    aspect-ratio: auto;
    min-height: 170px;
  }
}

@media (max-width: 640px) {
  .not-found-hero {
    padding-top: 40px;
  }

  .not-found-hero__inner,
  .not-found-services .section__inner {
    width: min(100% - 28px, 1180px);
  }

  .not-found-hero__actions {
    display: grid;
  }

  .not-found-hero__actions .button {
    width: 100%;
  }

  .not-found-service-card {
    grid-template-columns: 1fr;
  }

  .not-found-service-card__image {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--brand-strong);
  background: var(--band);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 44px;
  align-items: center;
}

.split__image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  background: #dfe5eb;
}

.split__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split__image--logo {
  padding: 44px;
  display: grid;
  place-items: center;
  background: #fff;
}

.split__image--logo img {
  height: auto;
  object-fit: contain;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 4px solid var(--accent);
}

.section--dark .feature-list li {
  background: rgba(255, 255, 255, 0.1);
}

.section--dark .feature-list a {
  color: #fff;
}

.feature-list strong {
  display: block;
  margin-bottom: 3px;
}

.info-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.info-rail__item {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.info-rail__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: 1.08rem;
}

.info-rail__item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.corporate-feature-list li {
  background: var(--band);
}

.corporate-table th {
  width: 230px;
}

/* band背景に表のラベル列(th)が溶け込むため、白背景＋区切り線で分離する */
.compare-table.corporate-table th {
  background: #fff;
  border-right: 1px solid var(--line);
}

.corporate-table td {
  color: var(--muted);
}

.corporate-area-map {
  max-width: 900px;
  margin: 0 auto;
}

.corporate-area-map img {
  width: 100%;
  height: auto;
}

.corporate-safety {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.corporate-safety__text {
  margin: 0;
  color: var(--muted);
  line-height: 1.95;
  text-align: left;
}

.corporate-safety__badge {
  margin: 30px 0 0;
}

.corporate-safety__badge img {
  width: 160px;
  height: auto;
}

.corporate-safety__badge figcaption {
  margin-top: 12px;
  color: var(--ink);
  font-weight: 900;
}

.corporate-safety__action {
  margin-top: 32px;
}

.corporate-safety__action .button {
  min-width: 340px;
  max-width: 100%;
}

.service-card .tag-row + .link-arrow {
  display: inline-flex;
  margin-top: 16px;
}

.transport-feed {
  background: #fff;
}

.transport-feed.lemon-feed {
  background: var(--band);
}

.transport-feed__head .section-head__copy {
  max-width: 720px;
}

.transport-feed__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.transport-feed-card {
  min-width: 0;
  min-height: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #dfe7ee;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.transport-feed-card:hover {
  border-color: rgba(82, 162, 46, 0.36);
  box-shadow: 0 18px 44px rgba(23, 32, 42, 0.12);
  transform: translateY(-3px);
}

.transport-feed-card__image {
  display: block;
  margin: 0;
  overflow: hidden;
  color: inherit;
  background: #dfe5eb;
  aspect-ratio: 16 / 9;
}

.transport-feed-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.transport-feed-card__image:hover img,
.transport-feed-card__image:focus-visible img {
  transform: scale(1.04);
}

.transport-feed-card h3 {
  margin: 22px 22px 0;
  color: var(--brand-strong);
  font-size: 1.02rem;
  line-height: 1.55;
  font-weight: 900;
}

.transport-feed-card h3 a {
  color: inherit;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.transport-feed-card h3 a:hover {
  color: var(--brand);
}

.transport-feed-card p {
  margin: 12px 22px 24px;
  color: #3f4d5a;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.transport-feed-empty {
  padding: 30px;
  display: grid;
  gap: 14px;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.transport-feed-empty h3,
.transport-feed-empty p {
  margin: 0;
}

.transport-feed-empty h3 {
  color: var(--ink);
  font-size: 1.28rem;
}

.charter-intro-section {
  background: #fff;
}

@media (min-width: 751px) {
  .line-cta + .charter-intro-section {
    padding-top: 42px;
  }
}

.charter-scenes {
  background: #eef7ec;
}

.charter-intro {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.charter-intro__copy {
  max-width: 980px;
  margin: 0 auto;
}

.charter-intro .kicker {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
}

.charter-intro h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2.35rem;
  line-height: 1.32;
  font-weight: 900;
  text-align: center;
}

.charter-intro p:not(.kicker) {
  max-width: 920px;
  margin: 22px auto 0;
  color: #2d3742;
  font-size: 1.06rem;
  line-height: 1.9;
  font-weight: 700;
}

.charter-intro__services {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.charter-service-card {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(223, 229, 235, 0.92);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.1);
}

.charter-service-card__link {
  display: grid;
  grid-template-rows: auto 1fr;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.charter-service-card__link:focus-visible {
  outline: 3px solid rgba(92, 157, 51, 0.85);
  outline-offset: 4px;
  border-radius: 8px;
}

.charter-service-card img,
.charter-service-card__dummy {
  width: 100%;
  display: block;
}

.charter-service-card img {
  aspect-ratio: 16 / 9;
  height: auto;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.28s ease;
}

.charter-service-card:hover img,
.charter-service-card:focus-within img {
  transform: scale(1.025);
}

.charter-service-card::after {
  content: none;
}

.charter-service-card figcaption {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 74px;
  padding: 18px 20px 20px;
  color: var(--brand-strong);
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  white-space: normal;
}

.charter-service-card figcaption::after {
  width: 0.56em;
  height: 0.56em;
  margin-left: 0.62em;
  flex: 0 0 auto;
  align-self: center;
  border-top: 0.17em solid var(--accent);
  border-right: 0.17em solid var(--accent);
  box-sizing: border-box;
  content: "";
  transform: rotate(45deg);
}

.charter-service-card__dummy {
  display: grid;
  place-items: center;
  color: rgba(40, 106, 68, 0.58);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.7) 75%) 0 0 / 28px 28px,
    #dfe8df;
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.charter-service-card:nth-child(1) img {
  object-position: center center;
}

.charter-service-card:nth-child(2) img {
  object-position: center center;
}

.charter-service-card:nth-child(3) img {
  object-position: 50% center;
}

.selected-points {
  padding: 86px 0 92px;
  overflow: hidden;
  background: #fff;
}

.selected-points__lead {
  background: transparent;
}

.selected-points__lead-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0;
  text-align: center;
}

.selected-points__title {
  padding: 0;
}

.selected-points__title::after {
  content: none;
}

.selected-points__title p {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 900;
}

.selected-points__title h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2.35rem;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

.selected-points__title h2 span {
  display: inline;
}

.selected-points__intro {
  max-width: 760px;
  margin: 16px auto 0;
  color: #2d3742;
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 600;
}

.selected-points__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 48px;
  display: grid;
  gap: 58px;
}

.selected-point {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  align-items: center;
  gap: 40px;
}

.selected-point--image-right {
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1fr);
}

.selected-point--image-right .selected-point__visual {
  order: 2;
}

.selected-point--image-right .selected-point__body {
  order: 1;
  justify-items: end;
  text-align: right;
}

.selected-point__visual {
  position: relative;
  min-width: 0;
  margin: 0;
  aspect-ratio: 16 / 7.4;
  overflow: hidden;
  background: #e8edf1;
}

.selected-point__visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(23, 32, 42, 0), rgba(23, 32, 42, 0.38));
  pointer-events: none;
}

.selected-point__visual--lineup {
  background:
    linear-gradient(135deg, rgba(229, 245, 242, 0.88), rgba(255, 255, 255, 0.96)),
    #e8edf1;
}

.selected-point__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.selected-point__visual--safety .selected-point__image {
  object-position: center 58%;
}

.selected-point__visual--lineup .selected-point__image {
  padding: 26px;
  object-fit: contain;
}

.selected-point__badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  width: 184px;
  display: block;
  filter: drop-shadow(0 12px 22px rgba(23, 32, 42, 0.14));
}

.selected-point__badge img {
  width: 100%;
  height: auto;
  display: block;
}

.selected-point__number {
  position: absolute;
  right: 24px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: rgba(255, 255, 255, 0.96);
  line-height: 0.76;
  font-weight: 900;
  text-shadow:
    0 3px 10px rgba(23, 32, 42, 0.62),
    0 12px 28px rgba(23, 32, 42, 0.34);
  pointer-events: none;
}

.selected-point--image-right .selected-point__number {
  right: auto;
  left: 24px;
}

.selected-point__number span {
  margin-bottom: 15px;
  font-size: clamp(0.92rem, 1.25vw, 1.1rem);
  line-height: 1;
}

.selected-point__number b {
  font-size: clamp(5.2rem, 9vw, 8.4rem);
  line-height: 0.76;
  font-variant-numeric: tabular-nums;
  -webkit-text-stroke: 1px rgba(23, 32, 42, 0.18);
}

.selected-point__body {
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: 14px;
}

.selected-point__eyebrow {
  margin: 0;
  color: #111;
  font-size: 1.08rem;
  line-height: 1.35;
  font-weight: 900;
}

.selected-point__body h3 {
  margin: 0;
  color: #111;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0;
}

.selected-point__body p:not(.selected-point__eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #626b73;
  font-size: 1.02rem;
  line-height: 1.85;
  font-weight: 600;
}

.selected-point__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-strong);
  font-weight: 900;
  text-decoration: none;
}

.selected-point__link::after {
  content: ">";
  color: var(--accent);
  font-size: 1.35em;
  line-height: 1;
  transform: translateY(-1px);
}

.selected-point__link:hover,
.selected-point__link:focus-visible {
  color: var(--brand);
}

@media (max-width: 1040px) {
  .selected-points {
    padding-bottom: 78px;
  }

  .selected-points__lead-inner {
    padding: 0;
  }

  .selected-points__title {
    padding-right: 0;
  }

  .selected-point,
  .selected-point--image-right {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .selected-point--image-right .selected-point__visual,
  .selected-point--image-right .selected-point__body {
    order: initial;
  }

  .selected-point--image-right .selected-point__body {
    justify-items: start;
    text-align: left;
  }

  .selected-point__visual {
    aspect-ratio: 16 / 8.6;
  }

  .selected-point--image-right .selected-point__number {
    right: 22px;
    left: auto;
  }
}

@media (max-width: 720px) {
  .selected-points {
    padding-bottom: 62px;
  }

  .selected-points__lead-inner,
  .selected-points__inner {
    width: min(100% - 28px, 1180px);
  }

  .selected-points__lead-inner {
    padding: 0;
  }

  .selected-points__title {
    padding-bottom: 0;
  }

  .selected-points__title p {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  .selected-points__title h2 {
    font-size: 1.42rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  .selected-points__intro {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .selected-points__inner {
    padding-top: 36px;
    gap: 42px;
  }

  .selected-point {
    gap: 20px;
  }

  .selected-point__visual {
    aspect-ratio: 4 / 3;
  }

  .selected-point__visual--lineup .selected-point__image {
    padding: 14px;
  }

  .selected-point__badge {
    top: 14px;
    left: 14px;
    width: 124px;
  }

  .selected-point__number {
    right: 14px;
    bottom: 12px;
    gap: 6px;
  }

  .selected-point--image-right .selected-point__number {
    right: 14px;
    left: auto;
  }

  .selected-point__number span {
    margin-bottom: 11px;
    font-size: 0.78rem;
  }

  .selected-point__number b {
    font-size: 5rem;
  }

  .selected-point__body {
    gap: 11px;
  }

  .selected-point__eyebrow {
    font-size: 0.96rem;
  }

  .selected-point__body h3 {
    font-size: 1.52rem;
    line-height: 1.28;
  }

  .selected-point__body p:not(.selected-point__eyebrow) {
    max-width: none;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .selected-point__link {
    justify-self: end;
    text-align: right;
  }
}

.charter-scenes__head {
  max-width: 980px;
  margin: 0 auto 38px;
  text-align: center;
}

.charter-scenes__head h2 {
  color: var(--brand-strong);
  font-size: 2.35rem;
}

.charter-scenes__head p:not(.kicker) {
  margin: 16px 0 0;
  color: #2d3742;
  font-size: 1.08rem;
  font-weight: 700;
}

.charter-scenes__grid {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 28px;
}

.charter-scene-card {
  min-width: 0;
  display: block;
  background: #fff;
  border: 4px solid var(--brand);
  border-radius: 0;
  box-shadow: none;
}

.charter-scene-card__body {
  display: grid;
  gap: 16px;
  padding: 22px 22px 24px;
}

.charter-scene-card h3 {
  margin: 0;
  padding-bottom: 10px;
  color: var(--brand);
  border-bottom: 4px solid var(--brand);
  font-size: clamp(1.42rem, 1.7vw, 1.9rem);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.charter-scene-card h3 span {
  color: inherit;
}

.charter-scene-card p {
  margin: 0;
  min-height: 3.4em;
  color: #333;
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.7;
}

.charter-scene-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dfe5eb;
}

.charter-scenes__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.charter-scenes__actions .button--primary {
  color: #fff;
  background: var(--brand);
}

.charter-scenes__actions .button--primary:hover {
  background: var(--brand-strong);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 30px;
}

.news-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.news-list li {
  position: relative;
  display: grid;
  grid-template-columns: 110px 130px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 17px 44px 17px 0;
  border-bottom: 1px solid var(--line);
}

.news-list li::after {
  position: absolute;
  top: 50%;
  right: 5px;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--brand);
  border-right: 3px solid var(--brand);
  content: "";
  transform: translateY(-50%) rotate(45deg);
  transition:
    right 0.2s ease,
    border-color 0.2s ease;
}

.news-list li:hover::after {
  right: 0;
  border-color: var(--brand-strong);
}

.news-list li > a::before {
  position: absolute;
  inset: 0;
  content: "";
}

.news-date {
  color: var(--muted);
  font-weight: 800;
}

.news-category {
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.notice-box {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.notice-box h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.notice-box p {
  margin: 0;
  color: var(--muted);
}

.home-news-section {
  padding-bottom: 0;
  background: #fff;
}

.home-news-section .section__inner {
  width: min(1000px, calc(100% - 40px));
}

.home-news-section .section-head {
  position: relative;
}

.news-rss-button {
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.42);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.news-rss-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.news-rss-button:hover,
.news-rss-button:focus-visible {
  color: #fff;
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  transform: translateY(-1px);
}

.home-news-section .news-rss-button {
  position: absolute;
  right: 0;
  bottom: 0;
}

.news-archive__title .news-rss-button {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
}

.line-cta {
  padding: 86px 0 78px;
  background: #fff;
}

.line-cta__inner {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 30px;
}

.line-cta__section-head {
  width: min(720px, 100%);
  margin: 0 auto;
  text-align: center;
}

.line-cta__section-head h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 900;
}

.line-cta__section-head h2 span {
  display: inline-block;
}

.line-cta__section-head p:not(.kicker) {
  max-width: 680px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
}

.line-cta__slider {
  display: grid;
  gap: 18px;
}

.line-cta__viewport {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(23, 32, 42, 0.18);
}

.line-cta__track {
  display: flex;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.line-cta__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.line-cta__card {
  display: block;
  overflow: hidden;
  position: relative;
  color: #fff;
  background: #06c755;
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(23, 32, 42, 0.18);
  isolation: isolate;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.line-cta__slider .line-cta__card {
  height: 100%;
  box-shadow: none;
}

.line-cta__card:hover,
.line-cta__card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 28px 62px rgba(23, 32, 42, 0.22);
}

.line-cta__slider .line-cta__card:hover,
.line-cta__slider .line-cta__card:focus-visible {
  transform: none;
  box-shadow: none;
}

.line-cta__card:focus-visible {
  outline: 3px solid rgba(6, 199, 85, 0.4);
  outline-offset: 4px;
}

.line-cta__card--booking {
  color: #17202a;
  background: #ffd800 url("assets/site/generated/home-cta-booking-imagen-v4.webp") center / cover no-repeat;
}

.line-cta__card--line {
  background: #06c755 url("assets/site/generated/home-cta-line-imagen-v4.webp") center / cover no-repeat;
}

.line-cta__main {
  position: relative;
  min-height: 310px;
  padding: 44px 44px 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 28px;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 145, 53, 0.98) 0%, rgba(3, 173, 63, 0.94) 54%, rgba(6, 199, 85, 0.76) 100%),
    url("assets/current-ksss/k-sss.com/wp-content/themes/seisan-wp/images/limousine-bg01.webp") center / cover;
}

.line-cta__main--booking {
  background:
    linear-gradient(105deg, rgba(255, 216, 0, 0.96) 0%, rgba(255, 231, 97, 0.94) 58%, rgba(255, 250, 198, 0.9) 100%),
    url("assets/current-ksss/k-sss.com/wp-content/themes/seisan-wp/images/limousine-bg01.webp") center / cover;
}

.line-cta__card--line .line-cta__main,
.line-cta__card--booking .line-cta__main {
  min-height: clamp(340px, 48vw, 540px);
  background: transparent;
  grid-template-columns: minmax(0, 1fr);
  aspect-ratio: 16 / 8.5;
}

.line-cta__main::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 18px;
  width: 120px;
  height: 92px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.26) 2px, transparent 2px);
  background-size: 12px 12px;
  opacity: 0.8;
}

.line-cta__main--booking::before {
  background-image: radial-gradient(rgba(40, 106, 68, 0.22) 2px, transparent 2px);
}

.line-cta__main::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -118px;
  left: -10%;
  height: 190px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.line-cta__main--booking::after {
  background: rgba(255, 255, 255, 0.34);
}

.line-cta__card--line .line-cta__main::before,
.line-cta__card--line .line-cta__main::after,
.line-cta__card--booking .line-cta__main::before,
.line-cta__card--booking .line-cta__main::after {
  display: none;
}

.line-cta__card--line .line-cta__visual,
.line-cta__card--booking .line-cta__visual {
  display: none;
}

.line-cta__card--line .line-cta__main--line-panel {
  padding: 0;
  display: block;
  background: transparent;
}

.line-cta__line-device {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
}

.line-cta__line-phone {
  position: relative;
  z-index: 2;
  width: 132px;
  height: 230px;
  display: grid;
  place-items: center;
  color: #06c755;
  background: #09bb27;
  border: 8px solid #17202a;
  border-radius: 22px;
  box-shadow: 0 20px 34px rgba(0, 68, 22, 0.32);
  transform: rotate(7deg);
}

.line-cta__line-logo {
  width: 82px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #09bb27;
  background: #fff;
  border-radius: 50%;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
}

.line-cta__line-logo::after {
  content: "";
  position: absolute;
  top: calc(50% + 20px);
  left: calc(50% + 18px);
  border-top: 12px solid #fff;
  border-left: 8px solid transparent;
  transform: rotate(-28deg);
}

.line-cta__hand {
  position: absolute;
  z-index: 1;
  background: #ffe6c8;
  border-radius: 999px;
  box-shadow: inset -8px -8px 0 rgba(219, 151, 93, 0.18);
}

.line-cta__hand--back {
  top: 86px;
  left: 20px;
  width: 96px;
  height: 130px;
  transform: rotate(-20deg);
}

.line-cta__hand--front {
  right: 18px;
  bottom: 2px;
  width: 64px;
  height: 130px;
  transform: rotate(-18deg);
}

.line-cta__line-panel {
  position: absolute;
  top: 50%;
  left: 42.5%;
  z-index: 2;
  width: 45%;
  min-height: auto;
  padding: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  border: 0;
  color: #fff;
  box-shadow: none;
  transform: translateY(-48%);
}

.line-cta__line-panel .line-cta__eyebrow {
  margin: 0;
  padding: 0;
  color: #fff45c;
  border: 0;
  border-radius: 0;
}

.line-cta__line-panel h2 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.9vw, 2.75rem);
  line-height: 1.18;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 84, 34, 0.28);
  overflow-wrap: normal;
}

.line-cta__line-panel h2 span {
  display: block;
  white-space: nowrap;
}

.line-cta__line-icon {
  position: absolute;
  display: grid;
  place-items: center;
  color: #09bb27;
  background: #fff;
  border-radius: 50%;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(0, 68, 22, 0.22);
}

.line-cta__line-icon--chat {
  top: -50px;
  right: -38px;
  width: 94px;
  height: 94px;
  font-size: 2.15rem;
}

.line-cta__line-icon--chat::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -12px;
  border-top: 24px solid #fff;
  border-left: 20px solid transparent;
  transform: rotate(-14deg);
}

.line-cta__line-icon--gear {
  right: -42px;
  bottom: -42px;
  width: 96px;
  height: 96px;
}

.line-cta__line-icon--gear::before {
  content: "";
  width: 42px;
  height: 42px;
  border: 14px solid #09bb27;
  border-radius: 50%;
}

.line-cta__click-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 13px 20px 14px 24px;
  border-radius: 999px;
  font-size: 1rem;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(23, 32, 42, 0.16);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.line-cta__click-pill span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 1;
}

.line-cta__click-pill--booking {
  color: #17202a;
  background: #fff;
}

.line-cta__click-pill--booking span {
  color: #fff;
  background: var(--brand-strong);
}

.line-cta__click-pill--line {
  color: #057922;
  background: #fff45c;
  box-shadow: 0 12px 26px rgba(0, 68, 22, 0.24);
}

.line-cta__click-pill--line span {
  color: #fff45c;
  background: #057922;
}

.line-cta__card:hover .line-cta__click-pill,
.line-cta__card:focus-visible .line-cta__click-pill {
  transform: translateX(4px);
  box-shadow: 0 16px 32px rgba(23, 32, 42, 0.22);
}

.line-cta__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.line-cta__card--booking .line-cta__copy {
  width: min(34%, 520px);
}

.line-cta__eyebrow {
  width: fit-content;
  margin: 0 0 14px;
  padding: 4px 14px 6px;
  color: #fff45c;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
}

.line-cta__main--booking .line-cta__eyebrow {
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.68);
}

.line-cta__copy h2 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: 2.35rem;
  line-height: 1.32;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 84, 34, 0.32);
  overflow-wrap: anywhere;
}

.line-cta__main--booking .line-cta__copy h2 {
  color: #17202a;
  text-shadow: none;
}

.line-cta__card--booking .line-cta__copy h2 {
  max-width: none;
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  line-height: 1.14;
  white-space: normal;
  overflow-wrap: normal;
}

.line-cta__card--booking .line-cta__copy h2 span {
  display: block;
  white-space: nowrap;
}

.line-cta__card--line .line-cta__copy h2 {
  max-width: none;
  font-size: clamp(1.75rem, 2.8vw, 2.15rem);
}

.line-cta__copy p:not(.line-cta__eyebrow) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 700;
}

.line-cta__main--booking .line-cta__copy p:not(.line-cta__eyebrow) {
  color: #2d3742;
}

.line-cta__visual {
  position: relative;
  z-index: 2;
  min-height: 246px;
}

.line-cta__ticket {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 2;
  width: 178px;
  padding: 18px 18px 20px;
  display: grid;
  gap: 6px;
  color: var(--brand-strong);
  background: rgba(255, 255, 255, 0.92);
  border: 2px dashed rgba(40, 106, 68, 0.42);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(23, 32, 42, 0.14);
  transform: rotate(-4deg);
}

.line-cta__ticket span {
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
}

.line-cta__ticket strong {
  color: #17202a;
  font-size: 1.34rem;
  line-height: 1.2;
  font-weight: 900;
}

.line-cta__sun,
.line-cta__bubble {
  position: absolute;
  border-radius: 50%;
  background: #fff45c;
  box-shadow: 0 12px 28px rgba(17, 80, 34, 0.18);
}

.line-cta__sun {
  top: 4px;
  right: 18px;
  width: 88px;
  height: 88px;
}

.line-cta__sun--booking {
  top: 120px;
  right: 10px;
  background: #fff;
}

.line-cta__bubble--small {
  top: 114px;
  right: 2px;
  width: 56px;
  height: 56px;
}

.line-cta__phone {
  position: absolute;
  top: 8px;
  right: 78px;
  width: 150px;
  height: 238px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #fff 0%, #f2f6f5 100%);
  border: 6px solid #17202a;
  border-radius: 26px;
  box-shadow: 0 18px 32px rgba(23, 32, 42, 0.22);
  transform: rotate(6deg);
}

.line-cta__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 42px;
  height: 10px;
  background: #17202a;
  border-radius: 999px;
  transform: translateX(-50%);
}

.line-cta__line-mark {
  width: 86px;
  height: 74px;
  fill: #06c755;
}

.line-cta__bus {
  position: absolute;
  right: 114px;
  bottom: 0;
  width: 190px;
  height: auto;
  fill: #fff;
  filter: drop-shadow(0 14px 18px rgba(23, 32, 42, 0.2));
}

.line-cta__bus--booking {
  right: 80px;
  bottom: 4px;
  width: 220px;
  filter: drop-shadow(0 16px 20px rgba(23, 32, 42, 0.2));
}

.line-cta__bus-body {
  fill: #fff;
}

.line-cta__bus-roof {
  fill: #f4cb22;
}

.line-cta__bus-glass {
  fill: #20242b;
}

.line-cta__bus-window-shine {
  fill: rgba(255, 255, 255, 0.08);
}

.line-cta__bus-window-divider {
  fill: none;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 3;
}

.line-cta__bus-window {
  fill: rgba(6, 199, 85, 0.42);
}

.line-cta__bus-white-belly {
  fill: #fff;
}

.line-cta__bus-dark-swoosh,
.line-cta__bus-green-swoosh {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-cta__bus-dark-swoosh {
  stroke: #3d4248;
  stroke-width: 8;
}

.line-cta__bus-green-swoosh {
  stroke: #8fd183;
  stroke-width: 4;
}

.line-cta__bus-front-mark {
  fill: #fff;
}

.line-cta__bus circle {
  fill: #17202a;
  stroke: #fff;
  stroke-width: 5;
}

.line-cta__bus .line-cta__bus-wheel-hub {
  fill: #fff;
  stroke: #d8dde1;
  stroke-width: 2;
}

.line-cta__bus-line,
.line-cta__route,
.line-cta__plane {
  fill: none;
  stroke: #fff45c;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.line-cta__plane {
  stroke-width: 4;
}

.line-cta__action {
  position: relative;
  z-index: 3;
  min-height: 122px;
  padding: 24px 40px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  color: #0f6f2e;
  background: #fff;
}

.line-cta__action--booking {
  color: #17202a;
  background: #fff;
}

.line-cta__card--line .line-cta__action {
  background: #fff;
}

.line-cta__card:hover .line-cta__action,
.line-cta__card:focus-visible .line-cta__action {
  background: #f4fff7;
}

.line-cta__card--booking:hover .line-cta__action--booking,
.line-cta__card--booking:focus-visible .line-cta__action--booking {
  background: #fff8c8;
}

.line-cta__card--line:hover .line-cta__action,
.line-cta__card--line:focus-visible .line-cta__action,
.line-cta__card--booking:hover .line-cta__action--booking,
.line-cta__card--booking:focus-visible .line-cta__action--booking {
  background: #fff;
}

.line-cta__card--booking .line-cta__arrow {
  color: #17202a;
}

.line-cta__icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  color: #06c755;
  background: #f0fff5;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.12);
}

.line-cta__icon--booking {
  color: #17202a;
  background: #ffe566;
}

.line-cta__icon svg {
  width: 56px;
  height: 56px;
  fill: currentColor;
}

.line-cta__icon span {
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #06c755;
  border: 3px solid #fff;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.line-cta__action-text {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.line-cta__action-text strong {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.line-cta__action-text span {
  width: fit-content;
  padding: 3px 14px 5px;
  color: #116f2e;
  background: #fff6a6;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.line-cta__arrow {
  color: #06c755;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease;
}

.line-cta__card:hover .line-cta__arrow,
.line-cta__card:focus-visible .line-cta__arrow {
  transform: translateX(4px);
}

.line-cta__controls {
  display: flex;
  align-items: center;
  justify-content: center;
}

.line-cta__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.line-cta__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  background: #c9d8cf;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: background 180ms ease;
}

.line-cta__dot.is-active {
  background: var(--brand);
}

@media (prefers-reduced-motion: reduce) {
  .line-cta__track {
    transition: none;
  }
}

.tabiiro-banner {
  display: block;
  width: min(1000px, 100%);
  aspect-ratio: 1000 / 122;
  margin: 86px auto 0;
  line-height: 0;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.tabiiro-banner:hover,
.tabiiro-banner:focus-visible {
  opacity: 0.86;
  transform: translateY(-1px);
}

.tabiiro-banner:focus-visible {
  outline: 3px solid rgba(92, 157, 51, 0.34);
  outline-offset: 4px;
}

.tabiiro-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tabiiro-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 750px) {
  :root {
    --home-sp-section-gap: 62px;
  }

  .tabiiro-banner {
    aspect-ratio: 640 / 200;
    margin: var(--home-sp-section-gap) auto;
  }

  .section.home-news-section {
    padding-bottom: 0;
  }

  .home-news-section .news-rss-button {
    position: static;
    margin-top: 18px;
  }

  .news-archive__title .news-rss-button {
    position: static;
    margin-top: 18px;
  }

  .home-news-section + .line-cta {
    padding-top: 0;
  }
}

.banner-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.banner-link {
  min-height: 150px;
  padding: 22px;
  display: grid;
  align-content: end;
  color: #fff;
  background: var(--brand-strong);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.banner-link img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.46;
}

.banner-link strong,
.banner-link span {
  position: relative;
}

.banner-link strong {
  font-size: 1.2rem;
  line-height: 1.4;
}

.banner-link span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.lineup-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: 28px;
  align-items: stretch;
}

.call-card {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.call-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.call-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.choice-card {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.choice-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand-strong);
}

.choice-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-area-section {
  border-top: 1px solid rgba(38, 111, 73, 0.08);
  border-bottom: 1px solid rgba(38, 111, 73, 0.08);
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.78fr);
  gap: 42px;
  align-items: center;
}

.service-area--map-only {
  grid-template-columns: minmax(0, 1040px);
  justify-content: center;
}

.service-area__copy h2 {
  margin: 0;
}

.service-area__copy p {
  margin: 16px 0 0;
  color: var(--muted);
}

.service-area__copy .button {
  margin-top: 22px;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.area-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 13px;
  color: var(--brand-strong);
  font-size: 0.88rem;
  font-weight: 900;
  background: #fff;
  border: 1px solid rgba(38, 111, 73, 0.16);
  border-radius: 999px;
}

.service-area__map {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-area__map img {
  display: block;
  width: 100%;
  height: auto;
}

.industry-block {
  margin-top: 54px;
}

.industry-section {
  background: #fff;
}

.industry-section .industry-block {
  margin-top: 0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.industry-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.industry-card__image {
  aspect-ratio: 16 / 10;
  background: #dfe5eb;
}

.industry-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.industry-card__body {
  padding: 18px;
}

.industry-card h3 {
  margin: 0 0 9px;
  color: var(--brand-strong);
  font-size: 1.05rem;
}

.industry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.vehicle-list {
  display: grid;
  gap: 24px;
}

.vehicle-card {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
  gap: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.vehicle-card__image {
  min-height: 320px;
  padding: 26px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff, var(--band));
}

.vehicle-card__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.vehicle-card__body {
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.vehicle-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seat-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.vehicle-card h3 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.35;
}

.vehicle-card p {
  margin: 0;
  color: var(--muted);
}

.vehicle-card__interior {
  overflow: hidden;
  aspect-ratio: 16 / 8;
  background: #dfe5eb;
  border-radius: 6px;
}

.vehicle-card__interior img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-card__gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.vehicle-card__gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #dfe5eb;
  border-radius: 6px;
}

.seat-map-img {
  padding: 12px;
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.seat-map-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.compare-table th,
.compare-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-table th {
  color: var(--brand-strong);
  background: var(--band);
  font-weight: 900;
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

.page-hero--faq .page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-layout {
  width: min(1000px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 10px;
}

.faq-nav a {
  min-height: 66px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-nav a:hover,
.faq-nav a:focus-visible {
  border-color: var(--brand);
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.08);
}

.faq-nav span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.faq-nav strong {
  color: var(--brand-strong);
  line-height: 1.35;
}

.faq-content {
  display: grid;
  gap: 34px;
}

.faq-section {
  scroll-margin-top: 104px;
}

.faq-section .section-head {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 32, 42, 0.06);
}

.faq-item summary {
  min-height: 68px;
  padding: 18px 54px 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.5;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 28px;
  height: 28px;
  background:
    linear-gradient(#fff, #fff) center / 13px 3px no-repeat,
    linear-gradient(#fff, #fff) center / 3px 13px no-repeat,
    var(--brand);
  border-radius: 999px;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  background:
    linear-gradient(#fff, #fff) center / 13px 3px no-repeat,
    var(--brand-strong);
}

.faq-item summary span {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
}

.faq-item__answer {
  padding: 0 20px 20px 66px;
  color: var(--muted);
}

.faq-item__answer p,
.faq-item__answer ul {
  margin: 0;
}

.faq-item__answer p + p,
.faq-item__answer p + ul {
  margin-top: 10px;
}

.faq-item__answer ul {
  padding-left: 1.2em;
}

.faq-item__answer a {
  color: var(--brand-strong);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-band {
  color: #fff;
  background: var(--brand-strong);
}

.cta-band__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  max-width: 720px;
}

.cta-band p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.charter-form-section {
  background: #f6faf7;
}

.charter-form__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0 92px;
}

.charter-form__head {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.charter-form__head .kicker {
  color: var(--brand-strong);
}

.charter-form__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 2.35rem;
  line-height: 1.24;
}

.charter-form__head p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.charter-form__notice {
  width: 100%;
  margin: -4px 0 28px;
  padding: 22px 26px;
  color: var(--ink);
  background: #fff0f0;
  border: 1px solid #f0c6c6;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.9;
}

.charter-form__notice p {
  margin: 0;
}

.charter-form {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(32, 66, 48, 0.12);
}

.charter-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.charter-form__field {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.charter-form__field--full {
  grid-column: 1 / -1;
}

.charter-form__field em {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 8px;
  color: #fff;
  background: var(--brand);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
}

.charter-form input,
.charter-form select,
.charter-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfdfb;
  border: 1px solid #cddbd1;
  border-radius: 6px;
}

.charter-form textarea {
  min-height: 150px;
  resize: vertical;
}

.charter-form input:focus,
.charter-form select:focus,
.charter-form textarea:focus {
  border-color: var(--brand);
  outline: 3px solid rgba(61, 119, 73, 0.18);
}

.charter-form__footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.charter-form__footer p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.charter-form__footer .button {
  min-height: 56px;
  cursor: pointer;
}

/* 貸切バス相談 CTAセクション */
.charter-cta {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--brand-strong);
}

.charter-cta::before,
.charter-cta::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.charter-cta::before {
  width: 420px;
  height: 420px;
  top: -180px;
  right: -120px;
}

.charter-cta::after {
  width: 280px;
  height: 280px;
  bottom: -160px;
  left: -80px;
}

.charter-cta__inner {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.charter-cta__eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.charter-cta__copy h2 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.3;
}

.charter-cta__copy p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.85;
}

.charter-cta__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  flex: none;
}

.charter-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 320px;
  min-height: 68px;
  padding: 0 32px;
  color: #3a2e07;
  background: var(--accent);
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.charter-cta__button:hover {
  background: #e3ad27;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.34);
}

.charter-cta__arrow {
  font-weight: 900;
}

/* 関連サイト Swiper */
.swiper.related-swiper {
  --related-card-top-offset: 4px;
  --related-pagination-space: 56px;
  --related-nav-size: 38px;
  --related-nav-edge: calc(var(--related-nav-size) / 2);
  position: relative;
  padding:
    var(--related-card-top-offset)
    var(--related-nav-edge)
    var(--related-pagination-space);
}

.related-banner {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-banner:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.related-banner__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper.related-swiper > .swiper-pagination,
.swiper.related-swiper.swiper-horizontal > .swiper-pagination-bullets {
  bottom: 12px;
}

.related-swiper .swiper-pagination-bullet-active {
  background: var(--brand);
}

.related-swiper .swiper-button-prev,
.related-swiper .swiper-button-next {
  top: calc(var(--related-card-top-offset) + ((100% - var(--related-card-top-offset) - var(--related-pagination-space)) / 2));
  width: var(--related-nav-size);
  height: var(--related-nav-size);
  margin-top: calc(var(--related-nav-size) / -2);
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: none;
}

.related-swiper .swiper-button-prev {
  left: 0;
}

.related-swiper .swiper-button-next {
  right: 0;
}

.related-swiper .swiper-button-prev::after,
.related-swiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .charter-cta__inner {
    padding: 48px 0;
  }

  .charter-cta__copy h2 {
    font-size: 1.6rem;
  }

  .charter-cta__action {
    width: 100%;
  }

  .charter-cta__button {
    min-width: 0;
    width: 100%;
  }
}

/* Footer (k-sss グループ既存サイト準拠デザイン) */
.site-footer {
  color: #333;
  background: #fff;
  text-align: left;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 44px 0 38px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px 32px;
  padding-bottom: 26px;
}

.footer-top__brand {
  display: inline-flex;
  align-items: center;
}

.footer-top__brand img {
  display: block;
  width: auto;
  height: 40px;
}

.footer-top__brand:hover img {
  opacity: 0.7;
}

.footer-top__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
}

.footer-tel {
  text-align: right;
  line-height: 1.2;
}

.footer-tel__label {
  margin: 0 0 2px;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: #5d6875;
}

.footer-tel__num {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-strong, #286a44);
  text-decoration: none;
}

.footer-tel__icon {
  flex: none;
  width: 0.9em;
  height: 0.9em;
  fill: currentColor;
}

.footer-sns {
  display: flex;
  gap: 10px;
}

.footer-sns a {
  display: inline-flex;
  width: 42px;
  height: 42px;
  color: var(--brand, #5c9d33);
  transition: opacity 0.3s ease;
}

.footer-sns a:hover {
  opacity: 0.6;
}

.footer-sns svg {
  display: block;
  width: 100%;
  height: 100%;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 30px;
  padding-top: 28px;
  border-top: 1px solid #e3e6ea;
}

.footer-cols__intro h2 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #333;
}

.footer-cols__intro p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.85;
  color: #5d6875;
}

.footer-cols__intro .footer-tel {
  text-align: left;
}

.footer-cols__intro .footer-sns {
  margin-top: 18px;
}

.footer-col__title {
  position: relative;
  margin: 0 0 14px;
  padding-left: 16px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
}

.footer-col__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--brand, #5c9d33);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-col li {
  position: relative;
  padding-left: 16px;
  font-size: 0.85rem;
}

.footer-col li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 0.45em;
  width: 5px;
  height: 5px;
  border-top: 2px solid var(--brand, #5c9d33);
  border-right: 2px solid var(--brand, #5c9d33);
  transform: rotate(45deg);
}

.footer-col a {
  color: #333;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--brand-strong, #286a44);
}

.footer-copyright {
  background: #a2a2a2;
}

.footer-copyright__inner {
  width: min(1000px, calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 6px 20px;
}

.footer-copyright span {
  color: #fff;
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-cols__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-cols {
    grid-template-columns: 1fr;
  }

  .footer-copyright__inner {
    justify-content: center;
    text-align: center;
  }
}


.taxi-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 50;
  min-width: 190px;
  min-height: 62px;
  padding: 10px 18px;
  display: grid;
  align-content: center;
  color: #fff;
  background: #c93f2e;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(23, 32, 42, 0.24);
}

.taxi-float:hover {
  background: #a93124;
}

.taxi-float__label {
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
}

.taxi-float__phone {
  font-size: 1.14rem;
  line-height: 1.28;
}

.overview {
  background: #f7faf8;
}

.overview-hero {
  padding: 84px 0 58px;
  background: #16212b;
  color: #fff;
}

.overview-hero__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.overview-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.2;
}

.overview-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.overview-grid {
  width: min(1180px, calc(100% - 40px));
  margin: -28px auto 0;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.overview-card {
  display: block;
  overflow: hidden;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(23, 32, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.overview-card:hover,
.overview-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(23, 32, 42, 0.24);
  box-shadow: 0 22px 50px rgba(23, 32, 42, 0.14);
}

.overview-card:focus-visible {
  outline: 3px solid rgba(31, 120, 180, 0.35);
  outline-offset: 4px;
}

.overview-card__image {
  aspect-ratio: 16 / 9;
}

.overview-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overview-card__body {
  padding: 24px;
}

.overview-card h2 {
  font-size: 1.35rem;
}

.overview-card p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.domain-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #fff;
  background: #17202a;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.news-hero .page-hero__visual {
  min-height: 260px;
}

.page-hero--simple .page-hero__inner {
  grid-template-columns: minmax(0, 780px);
}

.news-hero .page-hero__inner,
.page-hero--faq .page-hero__inner,
.page-hero--safety .page-hero__inner {
  min-height: 105px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.news-hero h1,
.page-hero--faq h1,
.page-hero--safety h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.news-hero .kicker,
.news-hero .eyebrow,
.page-hero--faq .kicker,
.page-hero--faq .eyebrow,
.page-hero--safety .kicker,
.page-hero--safety .eyebrow {
  display: none;
}

.safety-simple__inner {
  width: min(1060px, calc(100% - 40px));
}

.safety-simple__intro {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.safety-simple__intro h1,
.safety-simple__intro h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2.05rem;
  line-height: 1.35;
}

.safety-simple__intro p:not(.kicker) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

.safety-overview .safety-simple__intro {
  margin-bottom: 36px;
}

.safety-section-title {
  margin: 72px 0 34px;
}

.safety-section-title--near-top {
  margin-top: 42px;
}

.safety-section-title[id] {
  scroll-margin-top: 104px;
}

.safety-section-title p:not(.kicker) {
  max-width: 840px;
}

.safety-overview {
  background: #fff;
}

.safety-intro-visual {
  width: 100%;
  margin: 0 auto 34px;
  overflow: hidden;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.safety-section-visual {
  width: 100%;
  margin: 8px auto 54px;
  overflow: hidden;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.safety-intro-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.safety-section-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.safety-lead,
.safety-policy,
.safety-principles,
.safety-panel,
.safety-public {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.safety-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 28px;
  align-items: center;
  padding: 34px;
  margin-bottom: 22px;
}

.safety-lead__copy {
  min-width: 0;
}

.safety-lead__label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0;
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.safety-lead h3,
.safety-policy h3,
.safety-principles h3,
.safety-panel h3,
.safety-public h3,
.safety-report h3,
.safety-action-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.34rem;
  line-height: 1.35;
}

.safety-lead__copy > p:not(.safety-lead__label),
.safety-policy > p,
.safety-public p,
.safety-action-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.safety-lead__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.safety-lead__links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
}

.safety-lead__external-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.safety-lead__links a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.safety-lead__badge {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 0;
}

.safety-lead__badge img {
  width: min(200px, 100%);
  height: auto;
}

.safety-lead__badge figcaption {
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.safety-feature-list {
  display: grid;
  gap: 52px;
  margin-bottom: 34px;
  padding: 30px 8px 14px;
}

.safety-feature-item {
  display: block;
}

.safety-feature-item__head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.safety-feature-item__icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--brand);
}

.safety-feature-item__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.safety-feature-item h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.58rem;
  line-height: 1.35;
}

.safety-feature-item p {
  margin: 16px 0 0 46px;
  color: #111820;
  font-size: 1.02rem;
  line-height: 2;
  font-weight: 700;
  text-align: left;
}

.safety-policy,
.safety-principles,
.safety-panel,
.safety-public {
  padding: 30px;
}

.safety-principles {
  padding: 50px clamp(34px, 5.8vw, 72px);
}

.safety-policy,
.safety-principles,
.safety-resource-card,
.safety-organization,
.safety-action-grid,
.safety-panel,
.safety-public {
  margin-bottom: 22px;
}

.safety-section-head {
  display: grid;
  gap: 6px;
}

.safety-section-head .kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.88rem;
  line-height: 1.2;
}

.safety-policy__list,
.safety-principles__list,
.safety-check-list,
.safety-public__list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.safety-policy__list {
  display: grid;
  gap: 12px;
  counter-reset: safety-policy;
}

.safety-principles__list {
  display: grid;
  width: 100%;
  margin: 0;
  gap: 24px;
  counter-reset: safety-principles;
}

.safety-policy__list li,
.safety-principles__list li {
  position: relative;
  min-height: 42px;
  padding-left: 54px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.65;
}

.safety-policy__list li::before,
.safety-principles__list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  counter-increment: safety-policy;
  content: counter(safety-policy, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 900;
}

.safety-principles__list li {
  padding-left: 52px;
  font-size: 0.98rem;
  line-height: 1.8;
}

.safety-principles__list li::before {
  counter-increment: safety-principles;
  content: counter(safety-principles);
}

.safety-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.safety-action-card {
  min-width: 0;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.safety-action-card h3 {
  font-size: 1.08rem;
}

.safety-action-card p {
  font-size: 0.94rem;
  line-height: 1.8;
}

.safety-resource-card {
  display: grid;
  gap: 18px;
  justify-items: center;
  margin-bottom: 52px;
}

.safety-resource-card__head {
  display: flex;
  gap: 14px;
  align-items: center;
  color: var(--brand);
}

.safety-resource-card__icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
}

.safety-resource-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.safety-resource-card h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.42rem;
  line-height: 1.45;
}

.safety-resource-card p {
  max-width: 920px;
  margin: 0;
  color: #111820;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}

.safety-resource-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.safety-resource-card__button {
  min-width: 220px;
  gap: 10px;
}

.safety-resource-card__pdf-icon {
  flex: 0 0 28px;
  width: 28px;
  height: 34px;
}

.safety-resource-card__pdf-page {
  fill: #fff;
  stroke: #d94332;
  stroke-linejoin: round;
  stroke-width: 2;
}

.safety-resource-card__pdf-fold {
  fill: none;
  stroke: #d94332;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.safety-resource-card__pdf-label {
  fill: #d94332;
}

.safety-resource-card__pdf-icon text {
  fill: #fff;
  font-family: inherit;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0;
}

.safety-resource-card__button::after {
  content: none;
}

.safety-resource-card__button > svg:not(.safety-resource-card__pdf-icon) {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.safety-organization__head {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--brand);
}

.safety-organization__icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
}

.safety-organization__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.safety-organization__head h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.42rem;
  line-height: 1.45;
}

.safety-organization__chart {
  margin: 0;
  overflow-x: auto;
  background: #fff;
}

.safety-organization__chart img {
  display: block;
  width: 100%;
  min-width: 720px;
  height: auto;
}

.safety-check-list {
  display: grid;
  gap: 10px;
}

.safety-panel .safety-check-list {
  margin-top: 0;
}

.safety-goal-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: safety-goal;
}

.safety-goal-list li {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 42px;
  padding-left: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.7;
}

.safety-goal-list__text {
  min-width: 0;
  align-self: center;
}

.safety-goal-list li::before {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  counter-increment: safety-goal;
  content: counter(safety-goal);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.safety-goal-status {
  margin: 0 0 52px;
}

.safety-goal-status h3 {
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.45;
}

.safety-status-table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--brand);
  -webkit-overflow-scrolling: touch;
}

.safety-status-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  color: var(--ink);
}

.safety-status-table th,
.safety-status-table td {
  border-right: 1px solid rgba(23, 32, 42, 0.2);
  border-bottom: 1px solid rgba(23, 32, 42, 0.12);
}

.safety-status-table th:last-child,
.safety-status-table td:last-child {
  border-right: 0;
}

.safety-status-table tr:last-child th,
.safety-status-table tr:last-child td {
  border-bottom: 0;
}

.safety-status-table thead th {
  padding: 20px 18px;
  color: #fff;
  background: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.safety-status-table thead th:first-child {
  width: 72%;
}

.safety-status-table tbody th,
.safety-status-table tbody td {
  padding: 18px 20px;
  background: #fff;
  vertical-align: middle;
}

.safety-status-table tbody tr:nth-child(even) th,
.safety-status-table tbody tr:nth-child(even) td {
  background: #f0f0f0;
}

.safety-status-table tbody th {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.7;
  text-align: left;
}

.safety-status-table tbody td {
  text-align: center;
  white-space: nowrap;
}

.safety-status-badge {
  display: inline-flex;
  min-width: 72px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--brand-strong);
  background: rgba(92, 157, 51, 0.12);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
}

.safety-status-badge--warning {
  color: #966000;
  background: rgba(238, 158, 25, 0.16);
}

.safety-status-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.45;
  white-space: normal;
}

.safety-panel--measures {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.safety-measure-groups {
  display: grid;
  gap: 18px;
}

.safety-measure-card {
  min-width: 0;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.06);
}

.safety-measure-card h3 {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 900;
  line-height: 1.45;
}

.safety-education {
  display: grid;
  gap: 34px;
  margin: 0 0 52px;
}

.safety-education > * {
  min-width: 0;
}

.safety-education h3 {
  margin: 0 0 18px;
  color: var(--brand-strong);
  font-size: 1.24rem;
  font-weight: 900;
  line-height: 1.45;
}

.safety-education__note,
.safety-education__notes {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.75;
}

.safety-education__table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--brand);
  -webkit-overflow-scrolling: touch;
}

.safety-education__table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: var(--ink);
}

.safety-education__table th,
.safety-education__table td {
  border-right: 1px solid rgba(23, 32, 42, 0.2);
  border-bottom: 1px solid rgba(23, 32, 42, 0.12);
}

.safety-education__table th:last-child,
.safety-education__table td:last-child {
  border-right: 0;
}

.safety-education__table tr:last-child th,
.safety-education__table tr:last-child td {
  border-bottom: 0;
}

.safety-education__table thead th {
  padding: 20px 18px;
  color: #fff;
  background: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.safety-education__table tbody th,
.safety-education__table tbody td {
  padding: 20px 18px;
  background: #fff;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.75;
  vertical-align: top;
}

.safety-education__table tbody tr:nth-child(even) th,
.safety-education__table tbody tr:nth-child(even) td {
  background: #f0f0f0;
}

.safety-education__table tbody th {
  width: 72px;
  color: var(--brand-strong);
  text-align: center;
  white-space: nowrap;
}

.safety-education__table--status {
  min-width: 760px;
}

.safety-education__table--status thead th:first-child {
  width: 68%;
}

.safety-education__table--status tbody th {
  width: auto;
  color: var(--ink);
  text-align: left;
  white-space: normal;
  vertical-align: middle;
}

.safety-education__table--status tbody td {
  color: var(--brand-strong);
  font-weight: 900;
  text-align: center;
  vertical-align: middle;
  white-space: normal;
}

.safety-education__table--status tbody tr.is-section th {
  padding: 14px 18px;
  color: var(--brand);
  background: #fff;
  font-size: 1rem;
  text-align: left;
}

.safety-education__item-number {
  display: inline-grid;
  width: 1.45em;
  margin-right: 8px;
  place-items: center;
  color: var(--brand-strong);
  font-weight: 900;
}

.safety-education__notes {
  padding-left: 1.2em;
}

.safety-target {
  margin: 0 0 52px;
}

.safety-target h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 900;
  line-height: 1.45;
}

.safety-target__table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--brand);
  -webkit-overflow-scrolling: touch;
}

.safety-target__table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: var(--ink);
}

.safety-target__table th,
.safety-target__table td {
  border-right: 1px solid rgba(23, 32, 42, 0.22);
  border-bottom: 1px solid rgba(23, 32, 42, 0.14);
}

.safety-target__table th:last-child,
.safety-target__table td:last-child {
  border-right: 0;
}

.safety-target__table tr:last-child th,
.safety-target__table tr:last-child td {
  border-bottom: 0;
}

.safety-target__table thead th {
  padding: 20px 18px;
  color: #fff;
  background: var(--brand);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.45;
  text-align: center;
}

.safety-target__table thead tr:first-child th:first-child {
  width: 15%;
}

.safety-target__table thead tr:first-child th:last-child {
  width: 41%;
}

.safety-target__table tbody th,
.safety-target__table tbody td {
  padding: 22px 20px;
  background: #fff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}

.safety-target__table tbody tr:nth-child(odd) th,
.safety-target__table tbody tr:nth-child(odd) td {
  background: #f0f0f0;
}

.safety-target__table tbody td:last-child {
  text-align: left;
}

.safety-statistics {
  margin: 0 0 52px;
}

.safety-statistics__table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--brand);
  -webkit-overflow-scrolling: touch;
}

.safety-statistics__table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--ink);
}

.safety-statistics__table th,
.safety-statistics__table td {
  border-right: 1px solid rgba(23, 32, 42, 0.2);
  border-bottom: 1px solid rgba(23, 32, 42, 0.12);
}

.safety-statistics__table th:last-child,
.safety-statistics__table td:last-child {
  border-right: 0;
}

.safety-statistics__table tr:last-child th,
.safety-statistics__table tr:last-child td {
  border-bottom: 0;
}

.safety-statistics__table thead th {
  padding: 24px 20px;
  color: #fff;
  background: var(--brand);
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
}

.safety-statistics__table thead th:first-child {
  width: 78%;
}

.safety-statistics__table tbody th,
.safety-statistics__table tbody td {
  padding: 24px 22px;
  background: #fff;
}

.safety-statistics__table tbody tr:nth-child(even) th,
.safety-statistics__table tbody tr:nth-child(even) td {
  background: #f0f0f0;
}

.safety-statistics__table tbody th {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.75;
  text-align: left;
}

.safety-statistics__table tbody td {
  width: 22%;
  color: #111820;
  font-size: 1.04rem;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  white-space: nowrap;
}

.safety-statistics__table tbody tr.is-total th,
.safety-statistics__table tbody tr.is-total td {
  font-size: 1.08rem;
  text-align: center;
}

.safety-check-list li,
.safety-public__list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink);
  line-height: 1.7;
}

.safety-check-list li::before,
.safety-public__list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  background: var(--brand);
  border-radius: 50%;
  content: "";
}

.safety-public {
  display: block;
}

.safety-public__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 36px;
  margin-top: 0;
}

.safety-public__list li.has-resource-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  gap: 14px;
  align-items: center;
  min-height: 40px;
}

.safety-public__list li.has-resource-link::before {
  top: 50%;
  transform: translateY(-50%);
}

.safety-public__label {
  display: flex;
  min-width: 0;
  min-height: 40px;
  align-items: center;
}

.safety-public__link {
  display: inline-flex;
  min-height: 40px;
  width: 170px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 32, 42, 0.04);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.safety-public__link:hover,
.safety-public__link:focus-visible {
  border-color: rgba(80, 163, 45, 0.42);
  box-shadow: 0 14px 30px rgba(23, 32, 42, 0.08);
  transform: translateY(-1px);
}

.safety-public__pdf-icon {
  flex: 0 0 21px;
  width: 21px;
  height: 26px;
}

.safety-public__pdf-page {
  fill: #fff;
  stroke: #d94332;
  stroke-linejoin: round;
  stroke-width: 2;
}

.safety-public__pdf-fold {
  fill: none;
  stroke: #d94332;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.safety-public__pdf-label {
  fill: #d94332;
}

.safety-public__pdf-icon text {
  fill: #fff;
  font-family: inherit;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0;
}

.safety-public__external-icon,
.safety-public__anchor-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.safety-document-list {
  display: grid;
  gap: 14px;
  margin-top: 0;
  border-top: 0;
}

.safety-document {
  padding: 24px 28px;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.05);
}

.safety-document__body {
  min-width: 0;
  display: flex;
  gap: 18px;
  align-items: baseline;
}

.safety-document__year {
  flex: 0 0 auto;
  color: var(--brand-strong);
  font-size: 1.08rem;
  font-weight: 900;
}

.safety-document__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.safety-document__meta span {
  min-height: 26px;
  padding: 2px 10px;
  color: var(--brand-strong);
  background: var(--band);
  border-radius: 999px;
}

.safety-document h2,
.safety-document h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.35;
}

.safety-document p {
  margin: 12px 0 0;
  color: var(--muted);
}

.safety-document__actions {
  flex: 0 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
}

.safety-document__actions .button {
  min-height: 44px;
  padding: 0 20px;
}

.safety-document__actions .button::after {
  content: none;
}

.safety-document__file {
  color: #6c7682;
  font-size: 0.86rem;
}

@media (max-width: 1040px) {
  .safety-lead {
    grid-template-columns: minmax(0, 1fr) 190px;
  }

  .safety-action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .safety-public {
    grid-template-columns: 1fr;
  }
}

.news-archive {
  width: min(1000px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 34px;
}

.news-archive__title {
  position: relative;
  width: 100%;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 18px;
  text-align: center;
}

.news-archive__title .kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.82rem;
  line-height: 1.4;
  font-weight: 900;
}

.news-archive__title h2 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2rem;
  line-height: 1.35;
  font-weight: 900;
}

.news-archive__list {
  display: grid;
  gap: 14px;
}

.news-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.news-card:hover {
  border-color: rgba(92, 157, 51, 0.34);
  box-shadow: 0 18px 42px rgba(23, 32, 42, 0.1);
  transform: translateY(-2px);
}

.news-card a {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.news-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.news-card__meta span {
  min-height: 26px;
  padding: 2px 10px;
  color: var(--brand-strong);
  background: var(--band);
  border-radius: 999px;
}

.news-category.news-badge--sunset,
.news-card__meta span.news-badge--sunset {
  color: #8a5100;
  background: #fff0d2;
}

.news-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.55;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-pagination {
  display: flex;
  justify-content: center;
}

.news-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.news-pagination .page-numbers {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 900;
}

.news-pagination .page-numbers.current,
.news-pagination .page-numbers:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.news-single {
  background: #f6f9f5;
}

.news-single__inner {
  width: min(880px, calc(100% - 40px));
}

.news-single__header {
  display: grid;
  gap: 16px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.news-single__header .news-card__meta {
  justify-content: flex-start;
}

.news-single__header h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.4;
}

.news-single__body-card {
  margin: 34px 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.18);
  border-radius: 8px;
}

.news-single__image {
  margin: 0;
  border-bottom: 1px solid rgba(40, 106, 68, 0.14);
}

.news-single__image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-single__image--default img {
  aspect-ratio: 1.904 / 1;
  object-fit: cover;
}

.news-single__content {
  margin: 0;
  padding: clamp(26px, 4vw, 44px);
  color: #27322a;
  background: #fff;
  font-size: 1.04rem;
  line-height: 1.95;
}

.news-single__content > *:first-child {
  margin-top: 0;
}

.news-single__content h2,
.news-single__content h3 {
  margin: 2em 0 0.75em;
  color: var(--brand-strong);
  line-height: 1.45;
}

.news-single__content p {
  margin: 0 0 1.2em;
}

.news-single__content ul,
.news-single__content ol {
  padding-left: 1.3em;
}

.news-single__content img {
  max-width: 100%;
  height: auto;
}

.news-single__content a {
  color: var(--brand-strong);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
}

.news-single__navigation {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.news-single__navigation-link {
  min-height: 104px;
  padding: 18px 20px;
  display: grid;
  align-content: center;
  gap: 8px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.22);
  border-radius: 8px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.news-single__navigation-link--previous {
  grid-column: 1;
}

.news-single__navigation-link--next {
  grid-column: 2;
  justify-items: end;
  text-align: right;
}

.news-single__navigation-label {
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.news-single__navigation-link strong {
  font-size: 0.94rem;
  line-height: 1.55;
}

.news-single__navigation-link:hover,
.news-single__navigation-link:focus-visible {
  color: var(--brand-strong);
  background: var(--band);
  border-color: var(--brand);
}

.recruit-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.recruit-feed-card {
  min-height: 280px;
  padding: 26px;
  display: grid;
  align-content: start;
  gap: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.recruit-feed-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.recruit-feed-card__meta span {
  min-height: 28px;
  padding: 3px 10px;
  color: var(--brand-strong);
  background: var(--band);
  border-radius: 999px;
}

.recruit-feed-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.55;
}

.recruit-feed-card h3 a {
  color: inherit;
}

.recruit-feed-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.recruit-feed-card__actions .button {
  min-height: 44px;
}

.recruit-feed-more {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.recruit-feed-empty {
  padding: 30px;
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 32, 42, 0.07);
}

.recruit-feed-empty h3,
.recruit-feed-empty p {
  margin: 0;
}

.recruit-feed-empty h3 {
  color: var(--ink);
  font-size: 1.28rem;
}

.recruit-link-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.recruit-link-grid a {
  min-height: 78px;
  padding: 14px;
  display: flex;
  align-items: center;
  color: var(--brand-strong);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.45;
}

.recruit-link-grid a:hover {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

@media (max-width: 1220px) {
  .charter-scenes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    min-height: 68px;
  }

  body.seisan .site-header__inner {
    min-height: 68px;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 2;
    display: grid;
    gap: 0;
    width: 100%;
    max-height: calc(100dvh - 92px);
    padding: 0 8px 8px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
    pointer-events: none;
    align-items: stretch;
    justify-content: initial;
    text-align: left;
    white-space: normal;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    min-height: 50px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    border: 0;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
    border-radius: 0;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--brand-strong);
    background: rgba(92, 157, 51, 0.08);
    border-bottom-color: rgba(223, 229, 235, 0.92);
  }

  body.seisan .site-nav a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
  }

  body.seisan .site-nav {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    align-self: auto;
    justify-items: stretch;
  }

  body.seisan .site-nav__utility,
  body.seisan .site-nav__main {
    grid-column: auto;
    grid-row: auto;
    width: 100%;
    display: grid;
    gap: 0;
    justify-self: stretch;
    justify-content: stretch;
  }

  body.seisan .site-nav__utility a,
  body.seisan .site-nav__main a {
    flex: none;
    width: 100%;
    min-height: 50px;
    min-width: 0;
    padding: 12px 14px;
    justify-content: flex-start;
    color: #2d3742;
    background: transparent;
    border: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
    border-radius: 0;
    box-shadow: none;
    font-size: 0.92rem;
    font-weight: 700;
  }

  body.seisan .site-nav__utility a:first-child {
    color: #2d3742;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
    box-shadow: none;
  }

  body.seisan .site-nav a:last-child {
    border-bottom: 0;
  }

  body.seisan .site-nav__utility a:last-child {
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
  }

  body.seisan .site-nav__main a:last-child {
    border-bottom: 0;
  }

  .site-nav-language {
    width: 100%;
    flex: none;
  }

  .site-nav-language__toggle {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    justify-content: flex-start;
    gap: 12px;
    color: #2d3742;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
    border-radius: 0;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .site-nav-language__toggle i {
    margin-left: auto;
  }

  .site-nav-language__toggle:hover,
  .site-nav-language__toggle:focus-visible,
  .site-nav-language__toggle[aria-expanded="true"] {
    color: var(--brand-strong);
    background: rgba(92, 157, 51, 0.08);
    border-bottom-color: rgba(223, 229, 235, 0.92);
  }

  .site-nav-language__toggle[aria-current="page"] {
    color: #fff;
    background: var(--brand-strong);
  }

  .site-nav-language__menu {
    position: static;
    width: 100%;
    background: #f7faf8;
    border: 0;
    border-bottom: 1px solid rgba(223, 229, 235, 0.92);
    border-radius: 0;
    box-shadow: none;
  }

  :is(body.seisan, body[data-local-snapshot="k-sss-current"]) :is(.site-nav__main, .seisan-sample-site-nav__main) .site-nav-language__menu a {
    min-height: 46px;
    padding: 10px 16px 10px 44px;
    background: #f7faf8;
    font-size: 0.86rem;
  }

  body.seisan .site-nav a:hover,
  body.seisan .site-nav a:focus-visible,
  body.seisan .site-nav a[aria-current="page"] {
    border-bottom-color: rgba(223, 229, 235, 0.92);
  }

  body.seisan .site-nav a::after {
    right: 14px;
    bottom: -1px;
    left: 14px;
    transform-origin: left center;
  }

  body.group .site-nav {
    gap: 0;
    height: auto;
    padding: 0 8px 8px;
    align-self: auto;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 0;
    box-shadow: var(--shadow);
  }

  .header-action {
    justify-content: center;
  }

  .quick-panel,
  .service-grid,
  .banner-row,
  .overview-grid,
  .choice-grid,
  .recruit-feed-grid {
    grid-template-columns: 1fr;
  }

  .split,
  .news-layout,
  .footer-grid,
  .lineup-overview,
  .service-area,
  .industry-grid,
  .vehicle-card {
    grid-template-columns: 1fr;
  }

  .info-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .recruit-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .transport-feed__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dispatch-actions {
    grid-template-columns: 1fr;
  }

  .line-cta__main {
    grid-template-columns: minmax(0, 1fr) 270px;
    padding: 38px 34px 30px;
  }

  .line-cta__section-head h2 {
    font-size: 2rem;
  }

  .line-cta__copy h2 {
    font-size: 2rem;
  }

  .line-cta__phone {
    right: 44px;
  }

  .line-cta__bus {
    right: 84px;
    width: 168px;
  }

  body.group .site-nav a {
    min-height: auto;
    padding: 12px 14px;
  }

  body.group .group-hero__tiles {
    top: 38px;
    height: 430px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.group .group-hero .hero__inner {
    padding-top: 430px;
  }

  body.group .group-hero .quick-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-shortcuts__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-shortcuts a {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .service-shortcuts a:nth-child(2n + 1) {
    border-left: 0;
  }

  .service-shortcuts a:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-shortcuts a:last-child {
    border-right: 0;
  }

  .charter-intro__services {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .charter-service-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 6.8;
  }

  .charter-scenes__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-nav {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .group-company-card {
    flex-basis: min(760px, calc(100vw - 48px));
    grid-template-columns: 1fr;
  }

  .group-company-card__summary {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
    transform: none;
  }

  body.seisan .site-nav a,
  body.seisan .site-nav a::after {
    transition: none;
  }
}

@media (max-width: 720px) {
  body.overview {
    padding-bottom: 92px;
  }

  .top-strip__inner {
    width: min(100% - 28px, 1180px);
    min-height: 44px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 7px 0;
  }

  .prototype-links {
    gap: 10px;
    white-space: normal;
  }

  .site-header__inner,
  .hero__inner,
  .page-hero__inner,
  .breadcrumb,
  .section__inner,
  .cta-band__inner,
  .charter-form__inner,
  .line-cta__inner,
  .site-footer__inner,
  .overview-hero__inner,
  .overview-grid {
    width: min(100% - 28px, 1180px);
  }

  .brand__mark {
    width: 112px;
  }

  .brand__mark--seisan {
    width: min(240px, 62vw);
  }

  .brand__name {
    font-size: 0.98rem;
  }

  .brand__domain {
    display: none;
  }

  .hero,
  .hero.hero--compact {
    min-height: 520px;
  }

  .hero--seisan-home {
    min-height: 360px;
  }

  .hero__inner {
    padding: 44px 0 30px;
  }

  .hero--seisan-home .hero__inner {
    align-content: center;
    padding: 40px 0 64px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero--seisan-home h1 {
    font-size: clamp(1.58rem, 6.8vw, 1.86rem);
    line-height: 1.18;
  }

  .hero--seisan-home .eyebrow {
    margin-bottom: 10px;
    font-size: 0.82rem;
  }

  .hero--seisan-home .hero__lead {
    margin-top: 14px;
    font-size: 0.82rem;
    line-height: 1.85;
  }

  body.group .group-hero {
    min-height: 890px;
  }

  body.group .group-hero__tiles {
    top: 22px;
    right: 14px;
    left: 14px;
    height: 330px;
    gap: 8px;
  }

  .group-hero__tile:nth-child(even) {
    transform: translateY(10px);
  }

  .group-hero__brush {
    width: 340px;
    height: 112px;
  }

  .group-hero__brush--green {
    top: 36px;
    left: -118px;
  }

  .group-hero__brush--yellow {
    right: -120px;
    bottom: 330px;
  }

  body.group .group-hero .hero__inner {
    padding-top: 375px;
    gap: 22px;
  }

  body.group .group-hero h1 {
    font-size: 2.55rem;
    line-height: 1.12;
  }

  .group-hero__3s {
    gap: 8px;
    padding: 8px 10px;
    font-size: 0.84rem;
    letter-spacing: 0.12em;
  }

  .group-hero__3s-mark i {
    width: 16px;
    height: 26px;
  }

  body.group .group-hero .quick-panel {
    grid-template-columns: 1fr;
  }

  .group-showcase__tabs {
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .group-showcase__track {
    gap: 14px;
    margin-inline: -14px;
    padding-inline: 14px;
  }

  .group-company-card {
    flex-basis: calc(100vw - 28px);
    min-height: auto;
  }

  .group-company-card__body {
    padding: 28px;
  }

  .group-company-card h3 {
    font-size: 1.72rem;
  }

  .group-company-card__summary {
    min-height: 0;
    padding: 28px;
  }

  .group-company-card__summary p {
    font-size: 1.12rem;
  }

  .page-hero__inner {
    min-height: 220px;
    padding: 32px 0;
    grid-template-columns: 1fr;
  }

  .news-hero .page-hero__inner,
  .page-hero--faq .page-hero__inner,
  .page-hero--safety .page-hero__inner {
    min-height: 80px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-hero h1 {
    font-size: 1.78rem;
  }

  .page-hero .eyebrow {
    margin-bottom: 8px;
    font-size: 0.76rem;
  }

  .page-hero p {
    margin-top: 10px;
    font-size: 0.88rem;
  }

  .charter-scenes__head {
    margin-bottom: 28px;
  }

  .charter-intro {
    margin: 0;
    padding: 0;
  }

  .charter-intro .kicker {
    font-size: 0.9rem;
  }

  .charter-intro h2 {
    font-size: 1.42rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .charter-intro p:not(.kicker) {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .charter-intro__services {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .charter-service-card:last-child {
    grid-column: auto;
    aspect-ratio: auto;
  }

  .charter-scenes__head h2 {
    font-size: 2rem;
  }

  .charter-scenes__head p:not(.kicker) {
    font-size: 1rem;
  }

  .charter-scenes__grid {
    grid-template-columns: 1fr;
  }

  .charter-scene-card {
    border-width: 3px;
    border-radius: 0;
  }

  .charter-scene-card__body {
    padding: 18px;
  }

  .charter-scene-card h3 {
    font-size: 1.36rem;
    line-height: 1.25;
  }

  .charter-scene-card h3 span {
    min-width: 0;
    min-height: 0;
    font-size: inherit;
  }

  .charter-scene-card p {
    min-height: 0;
  }

  .news-single__header h1 {
    font-size: 1.7rem;
  }

  .news-single__navigation {
    grid-template-columns: 1fr;
  }

  .news-single__navigation-link--previous,
  .news-single__navigation-link--next {
    grid-column: 1;
    justify-items: start;
    text-align: left;
  }

  .safety-simple__inner {
    width: min(100% - 28px, 1060px);
  }

  .safety-simple__intro h1,
  .safety-simple__intro h2 {
    font-size: 1.7rem;
  }

  .safety-lead,
  .safety-public,
  .safety-action-grid {
    grid-template-columns: 1fr;
  }

  .safety-lead,
  .safety-policy,
  .safety-principles,
  .safety-panel,
  .safety-public,
  .safety-action-card,
  .safety-measure-card {
    padding: 22px;
  }

  .safety-panel--measures {
    padding: 0;
  }

  .safety-lead__badge {
    padding: 18px;
  }

  .safety-lead__links {
    width: 100%;
  }

  .safety-lead__links a {
    width: 100%;
    justify-content: center;
  }

  .safety-principles {
    padding: 20px;
  }

  .safety-feature-list {
    gap: 34px;
    padding: 18px 0 4px;
  }

  .safety-feature-item {
    display: block;
  }

  .safety-feature-item__head {
    gap: 10px;
  }

  .safety-feature-item__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .safety-feature-item h3 {
    font-size: 1.24rem;
  }

  .safety-feature-item p {
    margin: 12px 0 0;
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .safety-policy__list li {
    min-height: 0;
    padding-left: 44px;
    font-size: 0.94rem;
  }

  .safety-goal-list li {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
    min-height: 0;
    font-size: 0.94rem;
  }

  .safety-principles__list {
    gap: 12px;
  }

  .safety-principles__list li {
    min-height: 0;
    padding-left: 40px;
    font-size: 0.9rem;
    line-height: 1.68;
  }

  .safety-policy__list li::before {
    width: 32px;
    height: 32px;
  }

  .safety-goal-list li::before {
    width: 32px;
    height: 32px;
  }

  .safety-principles__list li::before {
    width: 30px;
    height: 30px;
  }

  .safety-section-title {
    margin: 44px 0 24px;
  }

  .safety-resource-card {
    gap: 14px;
    margin-bottom: 40px;
  }

  .safety-resource-card__head {
    gap: 10px;
    align-items: flex-start;
  }

  .safety-resource-card__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }

  .safety-resource-card h3 {
    font-size: 1.12rem;
  }

  .safety-resource-card p {
    font-size: 0.94rem;
    line-height: 1.85;
  }

  .safety-resource-card__button {
    width: 100%;
    min-width: 0;
  }

  .safety-organization__head {
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 18px;
  }

  .safety-organization__icon {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
    margin-top: 2px;
  }

  .safety-organization__head h3 {
    font-size: 1.12rem;
  }

  .safety-organization__chart img {
    min-width: 660px;
  }

  .safety-public__list {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .safety-measure-groups {
    grid-template-columns: 1fr;
  }

  .safety-public__list li.has-resource-link {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 36px;
  }

  .safety-public__list li.has-resource-link::before {
    top: 50%;
    transform: translateY(-50%);
  }

  .safety-public__label {
    min-height: 34px;
    font-size: 0.82rem;
    line-height: 1.35;
    white-space: nowrap;
  }

  .safety-public__link {
    width: auto;
    min-width: 74px;
    min-height: 34px;
    gap: 5px;
    padding: 0 9px;
    border-radius: 7px;
    font-size: 0.76rem;
  }

  .safety-public__link--pdf {
    min-width: 108px;
  }

  .safety-public__link--internal span {
    display: none;
  }

  .safety-public__link--internal {
    min-width: 38px;
    width: 38px;
    padding: 0;
  }

  .safety-public__pdf-icon {
    flex-basis: 17px;
    width: 17px;
    height: 21px;
  }

  .safety-public__external-icon,
  .safety-public__anchor-icon {
    flex-basis: 14px;
    width: 14px;
    height: 14px;
  }

  .safety-document {
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .safety-document__body {
    flex-direction: column;
    gap: 4px;
  }

  .safety-document__actions .button {
    width: 100%;
  }

  .page-hero__visual {
    min-height: 210px;
    padding: 16px;
  }

  .recruit-feed-card,
  .recruit-feed-empty {
    padding: 22px;
  }

  .recruit-feed-card h3 {
    font-size: 1.18rem;
  }

  .recruit-feed-card__actions .button {
    width: 100%;
  }

  .recruit-feed-more {
    justify-content: stretch;
  }

  .recruit-feed-more .button {
    width: 100%;
  }

  .recruit-link-grid {
    grid-template-columns: 1fr;
  }

  .charter-form__inner {
    padding: 54px 0 66px;
  }

  .charter-form__head {
    text-align: left;
  }

  .charter-form__head h2 {
    font-size: 1.85rem;
  }

  .charter-form__notice {
    margin-bottom: 22px;
    padding: 18px;
    font-size: 0.94rem;
  }

  .charter-form {
    padding: 20px;
  }

  .charter-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .charter-form__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .charter-form__footer .button {
    width: 100%;
  }

  .hero__lead {
    font-size: 1rem;
  }

  .quick-panel a {
    min-height: 128px;
    padding: 20px;
  }

  .service-shortcuts__inner {
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-shortcuts a {
    min-height: 118px;
    padding: 18px 8px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .service-shortcuts a:nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.34);
  }

  .service-shortcuts a:nth-child(-n + 2) {
    border-top: 0;
  }

  .service-shortcuts a:last-child {
    border-right: 0;
  }

  .faq-nav {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 62px;
    padding: 16px 50px 16px 16px;
  }

  .faq-item__answer {
    padding: 0 16px 18px 16px;
  }

  .service-shortcuts__icon {
    width: 30px;
    height: 30px;
  }

  .service-shortcuts span {
    font-size: 0.9rem;
  }

  .dispatch-panel {
    padding: 18px;
  }

  .dispatch-panel__head,
  .dispatch-steps {
    grid-template-columns: 1fr;
  }

  .dispatch-panel__head {
    display: grid;
    gap: 10px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head {
    display: grid;
    gap: 16px;
  }

  h2 {
    font-size: 1.62rem;
  }

  .info-rail {
    grid-template-columns: 1fr;
  }

  .news-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .home-news-section {
    background: #fff;
  }

  .home-news-section .section-head {
    margin-bottom: 26px;
  }

  .home-news-section .news-list {
    gap: 12px;
    border-top: 0;
  }

  .home-news-section .news-list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
    padding: 18px 48px 18px 18px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(92, 157, 51, 0.16);
    border-radius: 8px;
    box-shadow: 0 12px 26px rgba(23, 32, 42, 0.06);
  }

  .home-news-section .news-list li::after {
    right: 20px;
    width: 9px;
    height: 9px;
    border-width: 2px;
  }

  .home-news-section .news-list li:hover::after {
    right: 16px;
  }

  .home-news-section .news-date {
    color: var(--brand-strong);
    font-size: 0.94rem;
    line-height: 1.2;
  }

  .home-news-section .news-category {
    min-height: 26px;
    padding: 0 10px;
    font-size: 0.74rem;
  }

  .home-news-section .news-list a {
    flex: 0 0 100%;
    color: var(--ink);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 700;
  }

  .transport-feed__grid {
    grid-template-columns: 1fr;
  }

  .transport-feed-card {
    min-height: auto;
  }

  .vehicle-card__image {
    min-height: 220px;
    padding: 18px;
  }

  .vehicle-card__body {
    padding: 22px;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tr {
    border-bottom: 1px solid var(--line);
  }

  .compare-table td {
    border-bottom: 0;
  }

  .vehicle-card__gallery {
    grid-template-columns: 1fr;
  }

  .compare-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 3px;
    color: var(--brand-strong);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .cta-band__inner {
    min-height: auto;
    padding: 48px 0;
    display: grid;
  }

  .line-cta {
    padding: 62px 0 78px;
  }

  .line-cta__inner {
    gap: 24px;
  }

  .line-cta__section-head {
    text-align: left;
  }

  .line-cta__section-head h2 {
    font-size: 1.55rem;
    line-height: 1.42;
  }

  .line-cta__section-head p:not(.kicker) {
    margin-top: 10px;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .line-cta__main {
    min-height: auto;
    padding: 28px 22px 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .line-cta__card--booking {
    background-position: 28% center;
  }

  .line-cta__card--line {
    background-position: 34% center;
  }

  .line-cta__card--line .line-cta__main--line-panel {
    padding: 0;
  }

  .line-cta__card--booking .line-cta__copy {
    width: min(48%, 178px);
  }

  .line-cta__main--booking .line-cta__eyebrow {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .line-cta__line-device {
    min-height: 168px;
  }

  .line-cta__line-phone {
    width: 62px;
    height: 116px;
    border-width: 5px;
    border-radius: 14px;
  }

  .line-cta__line-logo {
    width: 42px;
    height: 28px;
    font-size: 0.62rem;
  }

  .line-cta__hand {
    display: none;
  }

  .line-cta__line-panel {
    top: 50%;
    left: 30%;
    width: 62%;
    gap: 7px;
  }

  .line-cta__line-panel .line-cta__eyebrow {
    padding: 0;
    font-size: 0.62rem;
  }

  .line-cta__line-panel h2 {
    font-size: 0.96rem;
    line-height: 1.18;
  }

  .line-cta__line-icon--chat {
    top: -24px;
    right: -18px;
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .line-cta__line-icon--gear {
    right: -18px;
    bottom: -20px;
    width: 48px;
    height: 48px;
  }

  .line-cta__line-icon--gear::before {
    width: 20px;
    height: 20px;
    border-width: 7px;
  }

  .line-cta__click-pill {
    margin-top: 4px;
    padding: 8px 9px 9px 11px;
    gap: 7px;
    font-size: 0.72rem;
  }

  .line-cta__click-pill span {
    width: 18px;
    height: 18px;
    font-size: 0.8rem;
  }

  .line-cta__main::before {
    top: 14px;
    left: 14px;
    width: 96px;
    height: 72px;
  }

  .line-cta__main::after {
    right: -18%;
    bottom: -104px;
    left: -22%;
    height: 160px;
  }

  .line-cta__eyebrow {
    margin-bottom: 12px;
    font-size: 0.92rem;
  }

  .line-cta__copy h2 {
    font-size: 1.65rem;
    line-height: 1.36;
  }

  .line-cta__copy p:not(.line-cta__eyebrow) {
    font-size: 0.94rem;
  }

  .line-cta__visual {
    min-height: 176px;
  }

  .line-cta__ticket {
    top: 0;
    right: 8px;
    width: 132px;
    padding: 14px 14px 16px;
  }

  .line-cta__ticket span {
    font-size: 0.76rem;
  }

  .line-cta__ticket strong {
    font-size: 1.04rem;
  }

  .line-cta__sun {
    top: 2px;
    right: 4px;
    width: 64px;
    height: 64px;
  }

  .line-cta__sun--booking {
    top: 96px;
    right: 4px;
    width: 54px;
    height: 54px;
  }

  .line-cta__bubble--small {
    top: 82px;
    right: 0;
    width: 42px;
    height: 42px;
  }

  .line-cta__phone {
    top: 0;
    right: 24px;
    width: 112px;
    height: 178px;
    border-width: 5px;
    border-radius: 22px;
  }

  .line-cta__notch {
    width: 34px;
    height: 8px;
  }

  .line-cta__line-mark {
    width: 66px;
    height: 58px;
  }

  .line-cta__bus {
    right: 84px;
    bottom: 4px;
    width: 150px;
  }

  .line-cta__bus--booking {
    right: 72px;
    bottom: 8px;
    width: 156px;
  }

  .line-cta__action {
    min-height: 96px;
    padding: 18px;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .line-cta__icon {
    width: 56px;
    height: 56px;
  }

  .line-cta__icon svg {
    width: 44px;
    height: 44px;
  }

  .line-cta__icon span {
    width: 24px;
    height: 24px;
    font-size: 0.9rem;
  }

  .line-cta__action-text strong {
    font-size: 1.14rem;
    line-height: 1.35;
  }

  .line-cta__action-text span {
    padding: 3px 10px 4px;
    font-size: 0.82rem;
  }

  .line-cta__arrow {
    font-size: 1.5rem;
  }

  .overview-hero {
    padding: 62px 0 50px;
  }

  .overview-hero h1 {
    font-size: 2.1rem;
  }

  .overview-grid {
    margin-top: -20px;
    padding-bottom: 62px;
  }

  .taxi-float {
    right: 14px;
    left: 14px;
    bottom: 14px;
    min-height: 64px;
    text-align: center;
  }
}

/* 西讃観光サイト：英語キッカーとセクションタイトルの共通デザイン */
body.seisan .section-head,
body.seisan .line-cta__section-head,
body.seisan .charter-scenes__head,
body.seisan .news-archive__title,
body.seisan .safety-simple__intro,
body.seisan .charter-form__head,
body.seisan .lineup-intro {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

@media (min-width: 1041px) {
  body.seisan .line-cta__section-head {
    width: min(1120px, 100%);
  }

  body.seisan .line-cta__section-head h2 {
    white-space: nowrap;
  }

  body.seisan .line-cta__section-head h2 span {
    display: inline;
  }
}

body.seisan .section-head {
  align-items: center;
  justify-content: center;
}

body.seisan .section-head__copy {
  width: min(1120px, 100%);
  margin-right: auto;
  margin-left: auto;
}

body.seisan .news-archive__title,
body.seisan .safety-simple__intro {
  gap: 0;
}

body.seisan .section-head .kicker,
body.seisan .line-cta__section-head .kicker,
body.seisan .charter-scenes__head .kicker,
body.seisan .news-archive__title .kicker,
body.seisan .safety-simple__intro .kicker,
body.seisan .charter-form__head .kicker,
body.seisan .lineup-intro .eyebrow {
  max-width: none;
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 1.22rem;
  line-height: 1.35;
  font-weight: 900;
  letter-spacing: 0;
}

body.seisan .section-head h2,
body.seisan .line-cta__section-head h2,
body.seisan .charter-intro h2,
body.seisan .charter-scenes__head h2,
body.seisan .news-archive__title h2,
body.seisan .safety-simple__intro h1,
body.seisan .safety-simple__intro h2,
body.seisan .charter-form__head h2,
body.seisan .lineup-intro h1 {
  margin: 0;
  color: var(--brand-strong);
  font-size: 2.35rem;
  line-height: 1.24;
  font-weight: 900;
  letter-spacing: 0;
}

body.seisan .section-head p:not(.kicker),
body.seisan .line-cta__section-head p:not(.kicker),
body.seisan .charter-scenes__head p:not(.kicker),
body.seisan .safety-simple__intro p:not(.kicker),
body.seisan .charter-form__head p,
body.seisan .lineup-intro > p:not(.eyebrow) {
  max-width: 760px;
  margin: 16px auto 0;
}

body.seisan .charter-scenes__head .kicker,
body.seisan .charter-scenes__head h2 {
  color: var(--brand-strong);
}

body.seisan .charter-scenes__head .kicker {
  color: var(--brand);
}

body.seisan .charter-scenes__head p:not(.kicker) {
  color: #2d3742;
}

body.seisan .lineup-intro h1 {
  font-size: clamp(1.5rem, 3vw, 2.05rem);
}

/* Customer Success */
.customer-success-intro {
  padding: 74px 0 84px;
  text-align: center;
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 189, 61, 0.18), transparent 34%),
    linear-gradient(135deg, #f7fbf7 0%, #edf6ef 100%);
  border-bottom: 1px solid rgba(40, 106, 68, 0.12);
}

.customer-success-intro__inner {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.customer-success-intro .kicker,
.customer-success-section-head .kicker,
.customer-success-cta .kicker {
  margin: 0 0 8px;
  color: var(--brand);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.customer-success-intro h1 {
  margin: 0;
  color: var(--brand-strong);
  font-size: clamp(2rem, 4.4vw, 3.25rem);
  line-height: 1.2;
  font-weight: 900;
}

.customer-success-intro__inner > p:not(.kicker) {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
}

.customer-success-rating {
  width: min(760px, 100%);
  margin: 38px auto 0;
  padding: 25px 34px;
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(300px, 1.22fr);
  align-items: center;
  gap: 34px;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 45px rgba(40, 106, 68, 0.1);
}

.customer-success-rating__score {
  min-height: 92px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: end;
  column-gap: 8px;
  padding-right: 34px;
  border-right: 1px solid var(--line);
}

.customer-success-rating__score span {
  grid-column: 1 / -1;
  align-self: start;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.customer-success-rating__score strong {
  color: var(--brand-strong);
  font-size: 3.5rem;
  line-height: 1;
}

.customer-success-rating__score small {
  padding-bottom: 5px;
  color: var(--muted);
  font-weight: 800;
}

.customer-success-stars {
  position: relative;
  width: max-content;
  color: #dce1e3;
  font-size: 1.72rem;
  line-height: 1;
  letter-spacing: 0.08em;
}

.customer-success-stars__fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 84%;
  overflow: hidden;
  color: #f0bd3d;
  white-space: nowrap;
}

.customer-success-rating__details dl {
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.customer-success-rating__details dl div {
  display: flex;
  gap: 7px;
}

.customer-success-rating__details dt,
.customer-success-rating__details dd {
  margin: 0;
}

.customer-success-rating__details dd {
  color: var(--ink);
  font-weight: 900;
}

.customer-success-results {
  background: #f7faf8;
}

.customer-success-results__inner {
  width: min(1040px, calc(100% - 40px));
}

.customer-success-section-head {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.customer-success-section-head h2 {
  color: var(--brand-strong);
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.customer-success-section-head > p:not(.kicker) {
  margin: 14px auto 0;
  color: var(--muted);
}

.customer-success-question-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.customer-success-question,
.customer-success-voices {
  padding: 30px;
  background: #fff;
  border: 1px solid rgba(40, 106, 68, 0.14);
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(23, 32, 42, 0.06);
}

.customer-success-question--wide,
.customer-success-voices {
  margin-top: 22px;
}

.customer-success-question__head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.customer-success-question__head > span {
  min-height: 50px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--brand-strong);
  border-radius: 8px;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 900;
}

.customer-success-question__head h2,
.customer-success-question__head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.55;
  font-weight: 900;
}

.customer-success-question__head p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.customer-success-bars {
  margin: 28px 0 0;
}

.customer-success-bars > div {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.customer-success-bars > div + div {
  margin-top: 13px;
}

.customer-success-bars dt {
  font-size: 0.84rem;
  font-weight: 800;
}

.customer-success-bars dd {
  min-width: 0;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(80px, 1fr) 82px;
  align-items: center;
  gap: 12px;
}

.customer-success-bar {
  height: 12px;
  display: block;
  overflow: hidden;
  background: #e8ecea;
  border-radius: 999px;
}

.customer-success-bar i {
  height: 100%;
  display: block;
  border-radius: inherit;
}

.customer-success-bar--yes {
  background: var(--brand);
}

.customer-success-bar--no {
  background: #d96b5f;
}

.customer-success-bars strong {
  text-align: right;
  white-space: nowrap;
  font-size: 0.92rem;
}

.customer-success-bars small {
  color: var(--muted);
  font-weight: 700;
}

.customer-success-short-comments {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.customer-success-short-comments blockquote {
  margin: 0;
  padding: 18px 20px;
  background: #fff7f5;
  border: 1px solid #efc4bc;
  border-radius: 10px;
}

.customer-success-short-comments strong {
  color: #a74b3d;
  font-size: 0.78rem;
}

.customer-success-short-comments p {
  margin: 5px 0 0;
}

.customer-success-empty {
  margin: 24px 0 0 82px;
  padding: 14px 18px;
  color: var(--muted);
  background: var(--soft);
  border-radius: 8px;
}

.customer-success-voices {
  margin-top: 44px;
}

.customer-success-voices__head {
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.customer-success-voices__head h2 {
  font-size: 1.28rem;
}

.customer-success-comment-groups {
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.customer-success-comment-group {
  --comment-accent: var(--brand);
  --comment-soft: #f1f8ef;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.customer-success-comment-group--improvement {
  --comment-accent: #c7594a;
  --comment-soft: #fff5f3;
}

.customer-success-comment-group--idea {
  --comment-accent: #4776b5;
  --comment-soft: #f3f7fd;
}

.customer-success-comment-group summary {
  position: relative;
  padding: 17px 54px 17px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--comment-accent);
  background: var(--comment-soft);
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.customer-success-comment-group summary::-webkit-details-marker {
  display: none;
}

.customer-success-comment-group summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  font-size: 1.45rem;
  line-height: 1;
}

.customer-success-comment-group[open] summary::after {
  content: "−";
}

.customer-success-comment-group summary small {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.75rem;
}

.customer-success-comments {
  margin: 0;
  padding: 18px 22px 22px 52px;
  columns: 2;
  column-gap: 38px;
}

.customer-success-comments li {
  break-inside: avoid;
  padding: 9px 0 9px 4px;
  color: #3e4852;
  border-bottom: 1px solid #edf0f1;
  font-size: 0.86rem;
  line-height: 1.75;
}

.customer-success-comments li::marker {
  color: var(--comment-accent);
  font-weight: 900;
}

.customer-success-cta {
  color: #fff;
  background: var(--brand-strong);
}

.customer-success-cta__inner {
  width: min(1040px, calc(100% - 40px));
  min-height: 230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.customer-success-cta .kicker {
  color: var(--accent);
}

.customer-success-cta h2 {
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.customer-success-cta p:not(.kicker) {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

@media (max-width: 820px) {
  .customer-success-rating {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .customer-success-rating__score {
    min-height: 0;
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .customer-success-question-grid {
    grid-template-columns: 1fr;
  }

  .customer-success-comments {
    columns: 1;
  }
}

@media (max-width: 720px) {
  .customer-success-intro {
    padding: 50px 0 58px;
  }

  .customer-success-intro__inner,
  .customer-success-results__inner,
  .customer-success-cta__inner {
    width: min(100% - 28px, 1040px);
  }

  .customer-success-intro h1 {
    font-size: 1.85rem;
  }

  .customer-success-intro__inner > p:not(.kicker) {
    margin-top: 13px;
    text-align: left;
    font-size: 0.9rem;
  }

  .customer-success-rating {
    margin-top: 28px;
    padding: 22px;
  }

  .customer-success-rating__score strong {
    font-size: 3rem;
  }

  .customer-success-results {
    padding: 62px 0;
  }

  .customer-success-section-head {
    margin-bottom: 30px;
  }

  .customer-success-section-head h2 {
    font-size: 1.58rem;
  }

  .customer-success-question,
  .customer-success-voices {
    padding: 22px 18px;
  }

  .customer-success-question__head {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 13px;
  }

  .customer-success-question__head > span {
    min-height: 44px;
    font-size: 0.96rem;
  }

  .customer-success-question__head h2,
  .customer-success-question__head h3,
  .customer-success-voices__head h2 {
    font-size: 1rem;
  }

  .customer-success-bars dd {
    grid-template-columns: minmax(60px, 1fr) 72px;
    gap: 8px;
  }

  .customer-success-short-comments {
    grid-template-columns: 1fr;
  }

  .customer-success-empty {
    margin-left: 0;
  }

  .customer-success-comment-group summary {
    padding-left: 15px;
  }

  .customer-success-comments {
    padding: 12px 18px 18px 40px;
  }

  .customer-success-cta__inner {
    min-height: 0;
    padding: 48px 0;
    align-items: stretch;
    flex-direction: column;
    gap: 22px;
  }

  .customer-success-cta .button {
    width: 100%;
  }
}

@media (min-width: 1041px) {
  body.seisan .charter-form__head p {
    max-width: 980px;
    white-space: nowrap;
  }
}

@media (max-width: 1040px) {
  body.seisan .section-head .kicker,
  body.seisan .line-cta__section-head .kicker,
  body.seisan .charter-scenes__head .kicker,
  body.seisan .news-archive__title .kicker,
  body.seisan .safety-simple__intro .kicker,
  body.seisan .charter-form__head .kicker,
  body.seisan .lineup-intro .eyebrow {
    font-size: 1.08rem;
  }

  body.seisan .section-head h2,
  body.seisan .line-cta__section-head h2,
  body.seisan .charter-intro h2,
  body.seisan .charter-scenes__head h2,
  body.seisan .news-archive__title h2,
  body.seisan .safety-simple__intro h1,
  body.seisan .safety-simple__intro h2,
  body.seisan .charter-form__head h2,
  body.seisan .lineup-intro h1 {
    font-size: 2.35rem;
  }

  body.seisan .lineup-intro h1 {
    font-size: clamp(1.45rem, 3.6vw, 1.95rem);
  }
}

@media (max-width: 720px) {
  body.seisan .section-head,
  body.seisan .line-cta__section-head,
  body.seisan .charter-scenes__head,
  body.seisan .news-archive__title,
  body.seisan .safety-simple__intro,
  body.seisan .charter-form__head,
  body.seisan .lineup-intro {
    text-align: center;
  }

  body.seisan .section-head .kicker,
  body.seisan .line-cta__section-head .kicker,
  body.seisan .charter-scenes__head .kicker,
  body.seisan .news-archive__title .kicker,
  body.seisan .safety-simple__intro .kicker,
  body.seisan .charter-form__head .kicker,
  body.seisan .lineup-intro .eyebrow {
    margin-bottom: 10px;
    font-size: 0.9rem;
  }

  body.seisan .section-head h2,
  body.seisan .line-cta__section-head h2,
  body.seisan .charter-intro h2,
  body.seisan .charter-scenes__head h2,
  body.seisan .news-archive__title h2,
  body.seisan .safety-simple__intro h1,
  body.seisan .safety-simple__intro h2,
  body.seisan .charter-form__head h2,
  body.seisan .lineup-intro h1 {
    max-width: 100%;
    font-size: 1.42rem;
    line-height: 1.28;
    overflow-wrap: anywhere;
  }

  body.seisan .line-cta__section-head h2 span {
    display: block;
  }

  body.seisan .line-cta__main {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.seisan .line-cta__card--line .line-cta__main--line-panel {
    padding: 0;
  }

  body.seisan .line-cta__card--booking {
    background-position: 28% center;
  }

  body.seisan .line-cta__card--line {
    background-position: 34% center;
  }

  body.seisan .line-cta__card--booking .line-cta__copy {
    width: min(48%, 178px);
  }

  body.seisan .line-cta__copy h2 {
    max-width: 100%;
    font-size: 1.36rem;
    line-height: 1.34;
    overflow-wrap: anywhere;
  }

  body.seisan .line-cta__card--booking .line-cta__copy h2 {
    font-size: clamp(0.98rem, 4.65vw, 1.3rem);
    line-height: 1.16;
    overflow-wrap: normal;
  }

  body.seisan .line-cta__card--booking .line-cta__copy h2 span,
  body.seisan .line-cta__line-panel h2 span {
    white-space: nowrap;
  }

  body.seisan .line-cta__card--booking .line-cta__copy h2 {
    white-space: normal;
  }

  body.seisan .line-cta__copy p:not(.line-cta__eyebrow) {
    font-size: 0.86rem;
  }

  body.seisan .section-head p:not(.kicker),
  body.seisan .line-cta__section-head p:not(.kicker),
  body.seisan .charter-scenes__head p:not(.kicker),
  body.seisan .safety-simple__intro p:not(.kicker),
  body.seisan .charter-form__head p,
  body.seisan .lineup-intro > p:not(.eyebrow) {
    margin-top: 16px;
  }
}

/* Airport limousine booking banner v6: graphic travel-poster direction. */
body.seisan .line-cta__card--booking {
  background: #ffd800 url("assets/site/generated/home-cta-booking-bg-pc-v5.webp") center / cover no-repeat;
}

body.seisan .line-cta__card--booking .line-cta__main--booking,
body.seisan .line-cta__card--line .line-cta__main--line-panel {
  min-height: 0;
  aspect-ratio: 1920 / 900;
}

body.seisan .line-cta__card--booking .line-cta__main--booking {
  position: relative;
  display: block;
  padding: 0;
  overflow: hidden;
  background: transparent;
}

body.seisan .line-cta__card--booking .line-cta__booking-panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 56%;
  background:
    radial-gradient(circle, rgba(255, 238, 139, 0.32) 0 2px, transparent 2.5px) 2px 2px / 17px 17px,
    linear-gradient(145deg, #31825a 0%, #1e6847 52%, #125339 100%);
  clip-path: polygon(0 0, 88% 0, 100% 18%, 93% 50%, 100% 82%, 88% 100%, 0 100%);
  pointer-events: none;
}

body.seisan .line-cta__card--booking .line-cta__booking-copy {
  position: absolute;
  top: 50%;
  left: 5.8%;
  z-index: 3;
  width: 42.5%;
  transform: translateY(-50%);
}

body.seisan .line-cta__card--booking .line-cta__booking-local-motifs {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 2;
  width: 56%;
  overflow: hidden;
  color: #fff4a8;
  pointer-events: none;
}

body.seisan .line-cta__card--booking .line-cta__booking-local-motif {
  position: absolute;
  display: block;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.48;
}

body.seisan .line-cta__card--booking .line-cta__booking-local-motif--udon {
  bottom: 5.8%;
  left: 8%;
  width: clamp(58px, 6vw, 84px);
  transform: rotate(-5deg);
}

body.seisan .line-cta__card--booking .line-cta__booking-local-motif--coin {
  top: 5.2%;
  right: 6.5%;
  width: clamp(48px, 5vw, 70px);
  transform: rotate(12deg);
}

body.seisan .line-cta__card--booking .line-cta__booking-route-frame {
  position: relative;
  padding: 27px 28px 25px;
  border: 2px solid rgba(255, 249, 197, 0.96);
  border-radius: 20px;
}

body.seisan .line-cta__card--booking .line-cta__booking-route-frame::before,
body.seisan .line-cta__card--booking .line-cta__booking-route-frame::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  background: #ffe166;
  border: 2px solid #fff9c5;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px #226c4a;
}

body.seisan .line-cta__card--booking .line-cta__booking-route-frame::before {
  left: -7px;
}

body.seisan .line-cta__card--booking .line-cta__booking-route-frame::after {
  right: -7px;
}

body.seisan .line-cta__card--booking .line-cta__booking-route-icon {
  position: absolute;
  top: -16px;
  left: 27px;
  width: 46px;
  height: 29px;
  padding: 3px 8px;
  color: #fff9c5;
  background: #2d7c56;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.seisan .line-cta__card--booking .line-cta__booking-copy h2 {
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3.8vw, 2.4rem);
  font-weight: 900;
  line-height: 1.17;
  letter-spacing: -0.04em;
  text-shadow: none;
}

body.seisan .line-cta__card--booking .line-cta__booking-copy h2 span {
  display: block;
  white-space: nowrap;
}

body.seisan .line-cta__card--booking .line-cta__booking-copy h2 span:last-child {
  margin-top: 0.03em;
  color: #ffe166;
  font-size: 1.22em;
  letter-spacing: -0.06em;
}

body.seisan .line-cta__card--booking .line-cta__booking-provider {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  margin: 5.5% 0 0;
  padding: 7px 16px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #14543a;
  background: rgba(255, 248, 189, 0.97);
  border-radius: 8px;
  clip-path: polygon(0 0, 100% 0, 100% 34%, calc(100% - 8px) 50%, 100% 66%, 100% 100%, 0 100%, 0 66%, 8px 50%, 0 34%);
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}

body.seisan .line-cta__card--booking .line-cta__booking-provider span {
  flex: 0 0 auto;
  position: relative;
  width: 28px;
  height: 18px;
  background: transparent;
  border: 2px solid #2b724e;
  border-radius: 3px;
}

body.seisan .line-cta__card--booking .line-cta__booking-provider span::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 9px;
  border-left: 1px dashed #2b724e;
}

body.seisan .line-cta__booking-bus {
  position: absolute;
  top: 8.5%;
  left: 40.5%;
  z-index: 2;
  width: 71.5%;
  max-width: none;
  height: auto;
  filter: drop-shadow(0 13px 13px rgba(75, 48, 0, 0.2));
  pointer-events: none;
}

@media (max-width: 750px) {
  body.seisan .line-cta__card--booking {
    background-image: url("assets/site/generated/home-cta-booking-bg-sp-v5.webp");
    background-position: center;
  }

  body.seisan .line-cta__card--booking .line-cta__main--booking,
  body.seisan .line-cta__card--line .line-cta__main--line-panel {
    min-height: 0;
    aspect-ratio: 3 / 4;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-panel {
    inset: 0 0 auto;
    width: 100%;
    height: 50%;
    clip-path: inset(0);
    border-radius: 0;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-copy {
    top: 6.2%;
    left: 7%;
    width: 86%;
    transform: none;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-local-motifs {
    inset: 0 0 auto;
    display: none;
    width: 100%;
    height: 50%;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-local-motif {
    opacity: 0.34;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-local-motif--udon {
    bottom: 4.5%;
    left: 1.8%;
    width: 44px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-local-motif--coin {
    top: 9%;
    right: 1.8%;
    width: 39px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-route-frame {
    padding: 21px 20px 18px;
    border-radius: 17px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-route-frame::before,
  body.seisan .line-cta__card--booking .line-cta__booking-route-frame::after {
    width: 9px;
    height: 9px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-route-frame::before {
    left: -6px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-route-frame::after {
    right: -6px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-route-icon {
    top: -14px;
    left: 20px;
    width: 40px;
    height: 26px;
    padding: 3px 7px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-copy h2 {
    font-size: clamp(1.55rem, 7vw, 4.625rem);
    line-height: 1.18;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-provider {
    margin-top: 3.5%;
    padding: 5px 10px 6px;
    gap: 8px;
    font-size: clamp(0.66rem, 3vw, 1.875rem);
  }

  body.seisan .line-cta__card--booking .line-cta__booking-provider span {
    width: 24px;
    height: 16px;
  }

  body.seisan .line-cta__card--booking .line-cta__booking-provider span::after {
    left: 8px;
  }

  body.seisan .line-cta__booking-bus {
    top: 47.5%;
    left: -11.1%;
    width: 126%;
  }
}

/* Airport limousine LINE banner v2: flat illustrated campaign poster. */
body.seisan .line-cta__card--line {
  background: #06c755;
}

body.seisan .line-cta__card--line .line-cta__main--line-panel {
  position: relative;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.22) 0 2px, transparent 2.5px) 96% 8% / 18px 18px no-repeat,
    linear-gradient(145deg, rgba(130, 221, 47, 0.58) 0 17%, transparent 17.2%),
    linear-gradient(30deg, transparent 0 68%, rgba(0, 133, 61, 0.22) 68.2% 84%, transparent 84.2%),
    linear-gradient(115deg, #28c941 0%, #06b949 58%, #009f50 100%);
}

body.seisan .line-cta__line-poster-art {
  position: absolute;
  top: -2%;
  bottom: 0;
  left: 1.5%;
  z-index: 2;
  width: 41%;
  pointer-events: none;
}

body.seisan .line-cta__line-poster-art svg {
  display: block;
  width: 100%;
  height: 100%;
}

body.seisan .line-cta__line-poster-star--mobile {
  display: none;
}

body.seisan .line-cta__card--line .line-cta__line-panel {
  top: calc(44.5% - 14.5px);
  left: 44.5%;
  width: 52%;
  gap: 15px;
  align-content: center;
  transform: translateY(-50%);
}

body.seisan .line-cta__card--line .line-cta__line-panel .line-cta__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff45c;
  font-size: clamp(0.95rem, 1.45vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: 0.01em;
}

body.seisan .line-cta__card--line .line-cta__line-panel .line-cta__eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: currentColor;
  transform: rotate(45deg);
}

body.seisan .line-cta__card--line .line-cta__line-panel h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-shadow: none;
}

body.seisan .line-cta__line-poster-footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 17%;
  background: #f3f7b8;
}

body.seisan .line-cta__line-route-track {
  position: absolute;
  top: 58%;
  right: 4%;
  left: 4%;
  z-index: 2;
  height: 4px;
  background: #079b50;
  border-radius: 999px;
}

body.seisan .line-cta__line-route-stop {
  position: absolute;
  top: 50%;
  left: var(--route-stop-position);
  width: 17px;
  height: 17px;
  background: #fff45c;
  border: 4px solid #079b50;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

body.seisan .line-cta__line-route-bus {
  position: absolute;
  bottom: -10px;
  left: 69%;
  z-index: 2;
  width: clamp(68px, 7.6vw, 104px);
  height: auto;
  overflow: visible;
  transform: translateX(-50%);
}

body.seisan .line-cta__line-route-shell {
  fill: #f3c928;
  stroke: #0b2c22;
  stroke-width: 4;
}

body.seisan .line-cta__line-route-window {
  fill: #26332f;
  stroke: #0b2c22;
  stroke-width: 4;
  stroke-linejoin: round;
}

body.seisan .line-cta__line-route-lower {
  fill: #fffdf2;
  stroke: #0b2c22;
  stroke-width: 4;
  stroke-linejoin: round;
}

body.seisan .line-cta__line-route-accent {
  fill: none;
  stroke: #46a84a;
  stroke-width: 5;
  stroke-linecap: round;
}

body.seisan .line-cta__line-route-mirror {
  fill: none;
  stroke: #0b2c22;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.seisan .line-cta__line-route-grille {
  fill: none;
  stroke: #0b2c22;
  stroke-width: 4;
  stroke-linecap: round;
}

body.seisan .line-cta__line-route-light {
  fill: #f3c928;
  stroke: #0b2c22;
  stroke-width: 3;
}

body.seisan .line-cta__line-route-wheel {
  fill: #0b2c22;
}

@media (max-width: 750px) {
  body.seisan .line-cta__card--line .line-cta__main--line-panel {
    background:
      linear-gradient(145deg, rgba(130, 221, 47, 0.5) 0 18%, transparent 18.2%),
      linear-gradient(30deg, transparent 0 70%, rgba(0, 133, 61, 0.2) 70.2% 86%, transparent 86.2%),
      linear-gradient(115deg, #28c941 0%, #06b949 58%, #009f50 100%);
  }

  body.seisan .line-cta__line-poster-star--mobile {
    display: block;
  }

  body.seisan .line-cta__line-poster-art {
    top: 25%;
    bottom: 11%;
    left: 0;
    width: 100%;
  }

  body.seisan .line-cta__card--line .line-cta__line-panel {
    top: 10.5%;
    left: 7%;
    width: 86%;
    gap: 0;
    text-align: center;
    transform: none;
  }

  body.seisan .line-cta__card--line .line-cta__line-panel .line-cta__eyebrow {
    display: none;
  }

  body.seisan .line-cta__card--line .line-cta__line-panel .line-cta__eyebrow::before {
    width: 7px;
    height: 7px;
  }

  body.seisan .line-cta__card--line .line-cta__line-panel h2 {
    font-size: clamp(1.48rem, 6.8vw, 2rem);
    line-height: 1.13;
  }

  body.seisan .line-cta__line-poster-footer {
    height: 14%;
  }

  body.seisan .line-cta__line-route-track {
    top: 59%;
    right: 14%;
    left: 14%;
    height: 3px;
  }

  body.seisan .line-cta__line-route-stop {
    width: 12px;
    height: 12px;
    border-width: 3px;
  }

  body.seisan .line-cta__line-route-stop--pc {
    display: none;
  }

  body.seisan .line-cta__line-route-bus {
    bottom: -8px;
    left: 68%;
    width: clamp(52px, 16vw, 64px);
  }
}
