/* =====================================================
   Also medical support — 5-ALA / VALUE / CONTACT / FOOTER
   ===================================================== */

/* ===== 5-ALA ===== */
.ala {
  position: relative;
  background: linear-gradient(135deg, #f7f9f9 0%, #eef5f5 50%, #e6f2f3 100%);
  overflow: hidden;
  padding: clamp(80px, 10vh, 140px) clamp(32px, 6vw, 100px);
}
.ala::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70vw 60vh at 80% 50%, rgba(47,110,115,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.ala__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

/* 5-ALA image */
.ala__visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ala__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 540px;
  max-width: 100%;
  filter: drop-shadow(0 24px 44px rgba(47,110,115,0.28));
}
.ala__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(47,110,115,0.14), rgba(47,110,115,0.04));
  border: 1px solid rgba(47,110,115,0.12);
}
.ala__orb--1 { inset: 10%; animation: orbFloat 8s ease-in-out infinite; }
.ala__orb--2 { inset: 25%; animation: orbFloat 10s ease-in-out 1.5s infinite reverse; }
.ala__orb--3 { inset: 38%; background: radial-gradient(circle at 40% 40%, rgba(47,110,115,0.22), rgba(47,110,115,0.08)); animation: orbFloat 7s ease-in-out 0.8s infinite; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-14px) scale(1.02); }
}
.ala__mol {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: molSpin 30s linear infinite;
}
.ala__mol svg { width: 60%; height: 60%; }
@keyframes molSpin { to { transform: rotate(360deg); } }

/* right text */
.ala__label {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 90px);
  letter-spacing: 0.06em;
  color: var(--accent);
  line-height: 1;
}
.ala__sub {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(14px, 1.4vw, 18px);
  letter-spacing: 0.3em;
  color: var(--sub);
  margin-top: 0.5em;
}
.ala__copy {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 28px);
  line-height: 1.75;
  letter-spacing: 0.14em;
  color: var(--text);
  margin-top: 1.2em;
}
.ala__rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 1.6em 0;
}
.ala__text {
  font-size: clamp(13px, 1vw, 15px);
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: var(--sub);
}
.ala__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 2em;
  padding: 16px 36px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.14em;
  border-radius: 2px;
  transition: background 0.35s ease, transform 0.35s ease;
}
.ala__btn:hover { background: #3a8389; transform: translateX(4px); }
.ala__btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ===== VALUE ===== */
.value {
  background: var(--white);
  padding: clamp(80px, 10vh, 140px) clamp(32px, 6vw, 80px);
}
.value__inner { max-width: 1280px; margin: 0 auto; }
.value__head { text-align: center; margin-bottom: clamp(56px, 7vh, 90px); }
.value__en {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1;
}
.value__ja-label {
  font-family: var(--serif-jp);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.36em;
  color: var(--sub);
  margin-top: 0.6em;
}
.value__rule {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin: 1.4em auto;
}
.value__copy {
  font-family: var(--serif-jp);
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.9;
  letter-spacing: 0.14em;
  color: var(--text);
}
.value__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
.value__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 36px;
  background: #f7f9f9;
  border: 1px solid rgba(47,110,115,0.1);
  border-radius: 4px;
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.value__item:hover {
  box-shadow: 0 12px 40px rgba(47,110,115,0.1);
  transform: translateY(-4px);
}
.value__icon {
  width: 56px;
  height: 56px;
  margin-bottom: 1.2em;
  color: var(--accent);
}
.value__icon svg { width: 100%; height: 100%; }
.value__num {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: 0.06em;
  color: var(--accent);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.5em;
}
.value__title {
  font-family: var(--serif-jp);
  font-weight: 400;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.14em;
  color: var(--text);
  margin-bottom: 0.9em;
}
.value__desc {
  font-size: clamp(10.5px, 0.8vw, 12px);
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--sub);
}

/* ===== HOME NEWS（簡易お知らせ） ===== */
.home-news {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-2) 100%);
  padding: clamp(70px, 11vh, 130px) clamp(24px, 6vw, 80px);
}
.home-news__inner { max-width: 1080px; margin: 0 auto; }
.home-news__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(28px, 4vh, 48px);
  gap: 24px;
}
.home-news__en {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px); /* セクション見出しと統一 */
  letter-spacing: 0.12em;
  color: var(--accent);
  line-height: 1;
}
.home-news__ja {
  font-family: var(--serif-jp);
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.36em;
  color: var(--sub);
  margin-top: 0.6em;
}
.home-news__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--accent);
  white-space: nowrap;
  padding-bottom: 6px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.home-news__more:hover { border-color: var(--accent); }
.home-news__more svg { width: 18px; height: 18px; }

/* ===== CONTACT CTA ===== */
.contact-cta {
  position: relative;
  background: linear-gradient(135deg, #1a3a3d 0%, #2f6e73 45%, #1d4f54 100%);
  overflow: hidden;
  padding: clamp(90px, 12vh, 160px) clamp(32px, 6vw, 80px);
  text-align: center;
}
/* animated rings */
.contact-cta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.contact-cta__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,61,0.82) 0%, rgba(47,110,115,0.72) 45%, rgba(29,79,84,0.85) 100%);
}
.contact-cta__ripple {
  position: absolute;
  top: 50%; left: 50%;
  width: 400px; height: 400px;
  margin: -200px 0 0 -200px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  animation: ctaRipple 6s ease-out infinite;
}
.contact-cta__ripple--2 { animation-delay: 2s; }
.contact-cta__ripple--3 { animation-delay: 4s; }
@keyframes ctaRipple {
  0%   { transform: scale(0.6); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}
.contact-cta__inner { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.contact-cta__label {
  font-family: var(--serif-en);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px); /* セクション見出しと統一 */
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.95);
  line-height: 1;
}
.contact-cta__copy {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.5vw, 20px);
  line-height: 2;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.8);
  margin-top: 1.2em;
}
.contact-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 2.4em;
  padding: 18px 48px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.18em;
  border-radius: 2px;
  backdrop-filter: blur(4px);
  transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
}
.contact-cta__btn:hover {
  background: rgba(255,255,255,0.22);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.contact-cta__btn svg { width: 18px; height: 18px; }

/* ===== FOOTER ===== */
.footer {
  background: #111c1e;
  padding: 60px clamp(32px, 6vw, 80px) 32px;
}
.footer__inner { max-width: 1280px; margin: 0 auto; }
.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 44px;
}
.footer__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.footer__logo-main {
  font-family: var(--serif-en);
  font-weight: 400;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.9);
}
.footer__logo-sub {
  font-size: 10px;
  letter-spacing: 0.34em;
  color: rgba(255,255,255,0.4);
  margin-top: 5px;
}
.footer__nav ul {
  display: flex;
  gap: 44px;
  list-style: none;
  flex-wrap: wrap;
}
.footer__nav a {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer__nav a:hover { color: rgba(255,255,255,0.9); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__info {
  padding-top: 8px;
}
.footer__company {
  font-family: var(--serif-jp);
  font-size: 15px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.78);
}
.footer__rep {
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
}
.footer__address,
.footer__contact {
  font-size: 12.5px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}
.footer__contact a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact a:hover { color: #fff; }
.footer__copy {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

/* ===== Responsive — all new sections ===== */
@media (max-width: 900px) {
  .ala__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ala__visual { max-width: 280px; }
  .ala__left { order: 2; }
  .ala__right { order: 1; }

  .value__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .value__item:last-child {
    grid-column: 1 / -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .footer__top { flex-direction: column; gap: 28px; }
  .footer__nav ul { gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .ala { padding: 70px 22px; }
  .value { padding: 70px 22px; }
  .value__grid { grid-template-columns: 1fr 1fr; }
  .contact-cta { padding: 80px 22px; }
  .footer { padding: 48px 22px 28px; }
  .footer__nav ul { gap: 18px; }
  .contact-cta__ripple { width: 280px; height: 280px; margin: -140px 0 0 -140px; }
  .ala__text br { display: none; }
  .contact-cta__copy br { display: none; }
}
