@charset "UTF-8";

/* Variables */
:root{--color-primary:#296db6;--color-primary-light:#296db6;--color-text:#332c29;--color-text-muted:#555555;--color-bg-body:#ffffff;--color-bg-panel:#dfeaf5;--color-bg-dark:#0c2d42;--color-white:#ffffff;--color-green:#0d9991;--color-brown:#332c29;--color-footer-bg:#0c2d42;--color-text-light:#e8f0f4;--color-text-light-muted:#a8c4d4;--font-base:'Noto Sans JP',sans-serif;}

/* =========================================================================
   Reset & Base
========================================================================= */
body {
  font-family: var(--font-base);
  color: var(--color-text);
  line-height: 1.6;
  background-color: var(--color-bg-body);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; vertical-align: bottom; }
svg { display: block; }

.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================================
   Components - Button
========================================================================= */
.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}
.btn:hover { opacity: 0.8; }
.btn--header { padding: 10px 28px; font-size: 14px; }
.btn--outline {
  display: inline-block;
  padding: 10px 28px;
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn--more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  margin-top: 12px;
  gap: 10px;
}
.btn--more-with-icon {
  background-color: var(--color-primary-light);
  color: var(--color-white);
}
.btn--more-with-icon:hover {
  opacity: 0.9;
}
.btn__icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
	margin-top: 3px;
}
.btn__icon-wrap img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* =========================================================================
   Components - Link Arrow
========================================================================= */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s ease;
}
.link-arrow:hover { opacity: 0.7; }
.link-arrow:hover .link-arrow__icon {
  transform: translateX(4px);
}
.link-arrow__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.25s ease;
	margin-top: 5px;
}
.link-arrow__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.link-arrow--green { color: var(--color-green); }

/* =========================================================================
   Focus Styles (Keyboard Navigation)
========================================================================= */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px rgba(41, 109, 182, 0.2);
}
.header__burger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* =========================================================================
   Header
========================================================================= */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  border-bottom: 2px solid #296db6;
}
.header.is-scrolled {
  background-color: #fff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.header__logo { line-height: 1; }
.header__nav { margin-left: auto; margin-right: 40px; }
.header__menu { display: flex; gap: 32px; }
.header__item a {
  font-size: 15px; font-weight: 500;
  color: #332c29;
  transition: color 0.3s ease, opacity 0.3s ease;
}
.header__item a:hover { color: var(--color-primary-light); opacity: 0.9; }

/* Hamburger Button (mobile only) */
.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.header__burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.is-active .header__burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.is-active .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-active .header__burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Drawer (mobile only) - ヘッダーより前面に表示してロゴと重ならないようにする */
.drawer {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 105;
  pointer-events: none;
  visibility: hidden;
}
.drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}
.drawer__overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__body {
  position: absolute;
  top: 0; left: 0;
  width: 280px; height: 100%;
  background: var(--color-white);
  padding: 100px 30px 40px;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0,0,0,0.1);
}
.drawer.is-open .drawer__body { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 28px;
  line-height: 1;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.drawer__close:hover { color: var(--color-primary); }
.drawer__menu {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 30px;
}
.drawer__menu li a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid #e8e8e8;
  transition: color 0.3s ease;
}
.drawer__menu li a:hover { color: var(--color-primary); }
.drawer__cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* =========================================================================
   Main
========================================================================= */
main { padding-top: 80px; }

/* =========================================================================
   Hero
========================================================================= */
.hero {
  position: relative;
  height: calc(100vh - 80px);
  min-height: 500px;
  max-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #fff;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  transform: translateY(-40px);
}
.hero__logo { flex-shrink: 0; }
.hero__copy {
  font-size: 32px; font-weight: 700;
  line-height: 1.7; color: var(--color-brown);
}
.hero__scroll {
  position: absolute; bottom: 40px;
  left: 50%; transform: translateX(-50%);
  text-align: center;
}
.hero__scroll-link {
  display: inline-block;
}
.hero__scroll-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
}

/* =========================================================================
   Message Section
========================================================================= */
.message {
  position: relative;
  background-image: url('../images/sea01.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 20px;
  text-align: center;
}
.message__inner { max-width: 800px; margin: 0 auto; }
.message__text {
  font-size: 18px; line-height: 2.2;
  margin-bottom: 60px; font-weight: 500;
  color: var(--color-text);
}
.message__text:last-child { margin-bottom: 0; }
.message__text--strong { font-size: 20px; font-weight: 700; }

/* =========================================================================
   CEO Section
========================================================================= */
.ceo {
  padding: 100px 0;
  
}
.ceo__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.ceo__panel {
  background-color: var(--color-bg-panel);
  border-radius: 10px;
  padding: 50px 60px;
}
.ceo__title {
  font-size: 28px; font-weight: 700;
  color: var(--color-primary);
}
.ceo__box {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
}
.ceo__image { flex-shrink: 0; width: 220px; }
.ceo__image img { border-radius: 10px; width: 100%; }
.ceo__content { flex-grow: 1; }
.ceo__text { font-size: 16px; line-height: 2.0; margin-bottom: 12px; color: var(--color-text); }
.ceo__list {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 30px;
  margin-top: 20px;
}
.ceo__list li {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}
.ceo__more { display: flex; justify-content: flex-end; margin-top: 30px; }
.ceo__more-link {
  display: flex; align-items: center; gap: 8px;
  color: var(--color-primary); transition: opacity 0.3s ease;
}
.ceo__more-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  object-fit: contain;
	margin-top: 5px;
}
.ceo__more-link:hover { opacity: 0.8; }
.ceo__more-text {
  font-size: 22px; font-weight: 700;
  text-decoration: underline; text-underline-offset: 4px;
}

/* =========================================================================
   Section Panel (User / Supporters)
========================================================================= */
.section-target {
  padding: 60px 0;
  background-color: var(--color-bg-body);
  background-size: cover;
  background-position: center;
}

.section-panel__header {
  display: flex; align-items: center;
  gap: 16px; margin-bottom: 36px;
}
.section-panel__badge {
  display: inline-block;
  
}
.section-panel__badge img {
  height: 32px;
  width: auto;
  object-fit: contain;
  vertical-align: middle;
}
.section-panel__badge--green { background-color: var(--color-green); }
.section-panel__title {
  font-size: 23px; font-weight: 700;
  color: var(--color-text);
}
#user .section-panel__title { color: #296db6; }
#supporters .section-panel__title { color: #296db6; }
#supporters .section-panel__badge img { margin-top: 5px; }
/* 経験者のあなたへセクションのリンクは --color-primary (#0a78a3) に統一 */
#supporters .link-arrow,
#supporters .link-arrow--green,
#supporters .voice-card__more { color: var(--color-primary); }
#supporters .link-arrow:hover,
#supporters .link-arrow--green:hover,
#supporters .voice-card__more:hover { color: var(--color-primary); opacity: 0.85; }
.section-panel__body--two-col {
  display: flex; gap: 40px;
  align-items: flex-start;
}
.section-panel__main { flex: 1; min-width: 0; }
.section-panel__headline {
  font-size: 1.5rem; font-weight: 700;
  line-height: 1.8; margin-bottom: 24px;
  color: var(--color-text);
	padding-bottom: 1rem;
  border-bottom: 2px solid #332c29;
}
.section-panel__desc { margin-bottom: 28px; border-bottom: 2px solid #332c29; padding-bottom: 28px; }
.section-panel__desc p {
  font-size: 1rem; line-height: 2.0;
  margin-bottom: 16px; color: var(--color-text);
}
.section-panel__desc p:last-child { margin-bottom: 0; }
#user .section-panel__desc p {
  font-size: 1rem;
}
.section-panel__links { display: flex; gap: 24px; flex-wrap: wrap; }
.section-panel__side {
  flex-shrink: 0; width: 320px;
  display: flex; flex-direction: column; gap: 16px;
}

/* =========================================================================
   Voice Card
========================================================================= */
.voice-card {
  position: relative;
  border-radius: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(41, 109, 182, 0.2);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}
/* 背景のみ乗算ブレンド（背後の画像と馴染む） */
.voice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-panel);
  border-radius: 28px;
  mix-blend-mode: multiply;
  z-index: 0;
}
.voice-card > * {
  position: relative;
  z-index: 1;
}
.voice-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
	align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-text);
}
.voice-card__label {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  padding: 0;
  border-radius: 0;
  background: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.voice-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.voice-card__author > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.voice-card__author-label {
  font-size: 11px;
  color: var(--color-text-muted);
  font-weight: 400;
}
.voice-card__author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}
.voice-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #e8a8b8;
}
.voice-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-card__avatar svg {
  display: block;
  width: 22px;
  height: 22px;
}
.voice-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 10px;
}
.voice-card__text {
  font-size: 13px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 14px;
}
.voice-card__more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.voice-card__more .link-arrow__icon {
  order: -1;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
	margin-top: 4px;
}
.voice-card__more .link-arrow__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

/* =========================================================================
   Service Section
========================================================================= */
.service { padding: 80px 0 60px; }
.service .section-panel__header { margin-bottom: 20px; }
.service .section-panel__title { color: #296db6; }
.service__headline {
  font-size: 22px; font-weight: 400;
  line-height: 1.8; margin-bottom: 60px;
  color: var(--color-text);
}

/* Flow Diagram */
.service__flow {
  max-width: 640px;
  margin: 0 auto 70px;
  text-align: center;
}
.service__flow img {
  width: 100%;
  height: auto;
}

/* Service Cards */
.service__cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 28px; margin-bottom: 50px;
}
.service__card {
  background-color: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 2rem; padding: 30px;
}
.service__card--brown {
  border: 2px solid var(--color-brown);
}
.service__card--green {
  border: 2px solid #000;
}
.service__card-header {
  display: flex; align-items: center;
  gap: 8px; margin-bottom: 18px;
}
.service__card-badge {
  display: inline-block; padding: 3px 14px;
  font-size: 13px;
  font-weight: 700;
  background-color: var(--color-primary);
  color: var(--color-white);
}
.service__card-badge--outline {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}
.service__card-badge--brown-solid {
  background-color: #a08877;
  color: var(--color-white);
}
.service__card-badge--outline-brown {
  background-color: transparent;
  border: 2px solid var(--color-brown);
  color: var(--color-brown);
}
.service__card-badge--green-solid {
  background-color: var(--color-green);
  color: var(--color-white);
}
.service__card-badge--outline-green {
  background-color: transparent;
  border: 2px solid var(--color-green);
  color: var(--color-green);
}
.service__card-title {
  font-size: 1.5rem; font-weight: 700;
  line-height: 1.7; margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 2px solid #332c29;
  color: var(--color-text);
}
.service__card--brown .service__card-title {
  color: var(--color-text);
}
.service__card--green .service__card-title {
  color: var(--color-text);
}
.service__card-text {
  font-size: 1rem; line-height: 2.1;
  color: var(--color-text-muted); margin-bottom: 24px;
}
.service__card--brown .service__card-text {
  color: var(--color-text-muted);
}
.service__card--green .service__card-text {
  color: var(--color-text-muted);
}
.service__card-link { text-align: center; }
.service__card-link .link-arrow { font-size: 18px; font-weight: 700; }
.service__card--brown .service__card-link .link-arrow { color: var(--color-primary); }
.service__card--green .service__card-link .link-arrow { color: var(--color-primary); }

/* Service Bottom Links */
.service__bottom-links {
  display: flex; flex-direction: column;
  gap: 12px; font-size: 16px;
  font-weight: 500; color: var(--color-text);
}
.service__bottom-links p { display: flex; align-items: center; gap: 8px; }
.service__bottom-links .link-arrow { color: var(--color-primary-light); }

/* =========================================================================
   Footer
========================================================================= */
.footer {
  background-color: #dfeaf5;
  color: var(--color-text-light);
  padding: 60px 0 40px;
}
.footer__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 60px;
}
.footer__brand {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
.footer__brand .link-arrow { color: var(--color-primary-light); }
.footer__logo { display: block; }
.footer__columns { display: flex; gap: 52px; flex: 1; flex-wrap: wrap; }
.footer__col { flex: 1; min-width: 140px; }
.footer__col-title {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.footer__list { display: flex; flex-direction: column; gap: 10px; }
.footer__list li a {
  font-size: 14px; color: #332c29;
  transition: color 0.3s ease;
}
.footer__list li a:hover { color: var(--color-white); }
.footer__copyright {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: var(--color-text-light-muted);
  text-align: center;
}

/* =========================================================================
   Responsive (Smartphone)
========================================================================= */
@media screen and (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .header {
    border-bottom: none;
  }
  .header__inner {
    padding: 15px 20px;
  }
  .header__logo {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__action {
    display: inline-block;
    order: 1;
    position: absolute;
    right: -20px;
    top: 0;
  }
  .header__burger {
    display: flex;
    order: -1;
  }
  .hero {
    position: relative;
    height: 220px;
    min-height: 220px;
    max-height: 220px;
    margin-bottom: 20px;
    background-attachment: scroll;
  }
  .hero__inner {
    flex-direction: column;
    gap: 8px;
    text-align: left;
    align-items: flex-start;
    transform: none;
  }
  .hero__logo {
    width: 60%;
    max-width: 60%;
  }
  .hero__copy {
    font-size: 18px;
    text-align: left;
  }
  .hero__scroll {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: auto;
    padding-top: 12px;
  }
  .hero__scroll-img {
    max-width: 100px;
  }
  .message {
    padding: 80px 16px;
    background-attachment: scroll;
  }
  .message__text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 40px;
  }
  .ceo {
    padding: 60px 0;
    background-attachment: scroll;
  }
  .ceo__panel {
    padding: 20px 16px;
  }
  .ceo__header {
    gap: 10px;
  }
  .ceo__header img {
    max-width: 80px;
    height: auto;
  }
  .ceo__title {
    font-size: 16px;
  }
  .ceo__text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .ceo__list {
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .ceo__list li {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .ceo__more {
    margin-top: 16px;
  }
  .ceo__more-text {
    font-size: 14px;
  }
  .ceo__more-icon {
    width: 24px;
    height: 24px;
  }
  .ceo__box {
    flex-direction: column;
    gap: 16px;
  }
  .ceo__image {
    width: 120px;
    margin: 0 auto;
  }
  .section-target {
    padding: 40px 0;
  }
  .section-panel__title {
    font-size: 18px;
  }
  .section-panel__badge img {
    height: 28px;
  }
  .section-panel__headline {
    font-size: 18px;
  }
  .section-panel__desc p {
    font-size: 1rem;
  }
  #user .section-panel__desc p {
    font-size: 1rem;
  }
  .section-panel__body--two-col {
    flex-direction: column;
  }
  .section-panel__side {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
  }
  .voice-card {
    flex: none;
    width: 100%;
    min-width: 0;
    padding: 16px;
    border-radius: 16px;
  }
  .voice-card::before {
    border-radius: 16px;
  }
  .voice-card__header {
    gap: 8px;
    margin-bottom: 8px;
    padding-bottom: 8px;
  }
  .voice-card__label {
    font-size: 12px;
  }
  .voice-card__author {
    flex-shrink: 1;
    min-width: 0;
  }
  .voice-card__author > div {
    min-width: 0;
    overflow: hidden;
    font-size: 10px;
  }
  .voice-card__author-label {
    font-size: 10px;
  }
  .voice-card__author-name {
    font-size: 11px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .voice-card__avatar {
    width: 32px;
    height: 32px;
  }
  .voice-card__title {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .voice-card__text {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  .voice-card__more {
    font-size: 12px;
  }
  .voice-card__more .link-arrow__icon {
    width: 24px;
    height: 24px;
  }
  .voice-card__more .link-arrow__icon img {
    width: 24px;
    height: 24px;
  }
  .section-panel__side > .btn.btn--more {
    width: 100%;
    max-width: none;
  }
  .service {
    padding: 60px 0 40px;
  }
  .service__headline {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .service__flow {
    margin: 0 auto 40px;
  }
  .service__cards {
    grid-template-columns: 1fr;
  }
  .service__card {
    padding: 20px 16px;
  }
  .service__card-title {
    font-size: 1.125rem;
  }
  .service__card-text {
    font-size: 1rem;
  }
  .footer {
    padding: 40px 0 32px;
    background-color: #cfe5ed;
    color: var(--color-text);
  }
  .footer__col-title {
    font-size: 12px;
    padding: 6px 14px;
    margin-bottom: 8px;
  }
  .footer__list {
    gap: 6px;
  }
  .footer__list li a {
    color: #332c29;
    font-size: 12px;
  }
  .footer__list li a:hover {
    color: var(--color-primary);
  }
  .footer__brand {
    align-items: center;
    text-align: center;
  }
  .footer__brand .link-arrow {
    color: var(--color-primary);
  }
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer__columns {
    flex-direction: row;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    min-width: 0;
    width: 100%;
  }
  .footer__col {
    min-width: 0;
  }
  .footer__copyright {
    color: var(--color-text-muted);
    font-size: 11px;
    margin-top: 28px;
    padding-top: 20px;
  }
  .link-arrow__icon,
  .link-arrow__icon img {
    width: 24px;
    height: 24px;
  }
  #user,
  #supporters {
    background-attachment: scroll;
  }
}

/* =========================================================================
   Touch devices (iOS Safari etc.): fixed background causes zoom/layout issues.
   Use scrolling background only — no parallax on mobile.
========================================================================= */
@supports (-webkit-touch-callout: none) {
  .message,
  .ceo {
    background-attachment: scroll;
  }
}

/* =========================================================================
   User Section (ID-specific backgrounds)
========================================================================= */
#user {
  background-image: url('../images/sea02.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

/* =========================================================================
   Supporters Section
========================================================================= */
#supporters {
  background-image: url('../images/sea03.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

@media (min-width: 769px) {
  #user,
  #supporters {
    background-attachment: fixed;
  }
}
