@charset "UTF-8";
:root {
  --blue: #3a9fda;
  --blue-dark: #2e90d6;
  --blue-title: #3fa4dc;
  --blue-link: #3f86cf;
  --blue-bg: #edf7fc;
  --periwinkle: #5385d1;
  --mint-bg: #e6f9f9;
  --footer-bg: #e4f3f9;
  --coral: #f56f61;
  --coral-dark: #ee6553;
  --text-dark: #4f5a6b;
  --text-body: #6e7787;
  --text-fine: #9aa3ad;
}

* {
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body {
  font-family:"Noto Sans JP","Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  color:var(--text-dark);
  background:#fff;
  min-width:1280px;
  -webkit-font-smoothing:antialiased;
  line-height:1.7;
}

img {
  display:block;
  max-width:100%;
}

a {
  text-decoration:none;
  color:inherit;
}

.container {
  max-width:1340px;
  margin:0 auto;
  padding:0 20px;
}

/* =================== HEADER (shared) =================== */
.site-header {
  position:fixed;
  top:0;
  left:0;
  right:0;
  background:#fff;
  z-index:1000;
  box-shadow:0 1px 10px rgba(0,0,0,.05);
  transition:padding .25s ease;
}

.header-inner {
  max-width:1520px;
  margin:0 auto;
  padding:18px 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  transition:padding .25s ease;
}

.header-logo img {
  width:400px;
  transition:width .25s ease;
}

.header-right {
  display:flex;
  align-items:flex-start;
  gap:48px;
}

.header-info,.header-contact {
  display:flex;
  align-items:flex-start;
  gap:12px;
}

.info-icon img {
  width:35px;
  margin-top:2px;
}

.contact-icon img {
  width:30px;
  margin-top:2px;
}

.info-body,.contact-body {
  display:flex;
  flex-direction:column;
  line-height:1.4;
}

.info-label,.contact-label {
  font-size:12px;
  color:var(--text-dark);
  letter-spacing:.05em;
}

.info-main {
  font-size:20px;
  font-weight:700;
  color:var(--blue);
  margin-top:2px;
}

.info-sub {
  font-size:14px;
  color:var(--blue);
}

.info-fine {
  font-size:12px;
  color:var(--text-body);
  margin-top:5px;
}

.contact-tel {
  font-size:30px;
  font-weight:700;
  color:var(--blue);
  letter-spacing:.02em;
  margin-top:1px;
  line-height:1.1;
  font-family: "Inter", sans-serif;
}

.contact-fine {
  font-size:12px;
  color:var(--text-body);
  margin-top:3px;
}

.contact-fine2 {
  font-size:12px;
  color:var(--text-body);
}

.site-header.scrolled .header-inner {
  padding:9px 32px;
}

.site-header.scrolled .header-logo img {
  width:250px;
}

.site-header.scrolled .info-fine, .site-header.scrolled .contact-fine, .site-header.scrolled .contact-fine2 {
  display:none;
}

.site-header.scrolled .info-main {
  font-size:17px;
}

.site-header.scrolled .contact-tel {
  font-size:24px;
}

/* =================== HERO =================== */
.lp-hero {
  position:relative;
  background:var(--blue-bg);
  padding-top:110px;
  overflow:hidden;
}

.lp-hero__inner {
  max-width:1500px;
  margin:0 auto;
  min-height:600px;
  padding:100px 0 0;
}

.lp-hero__img {
  position:absolute;
  right:0;
  bottom:0;
  width:1000px;
  height:auto;
  z-index:1;
}

.lp-hero__body {
  position:relative;
  z-index:4;
  width:640px;
  padding-left:36px;
}

.lp-hero__title {
  font-size:36px;
  font-weight:500;
  color:#46546a;
  line-height:1.5;
  letter-spacing:.03em;
}

.lp-hero__eyebrow {
  margin-top:22px;
  color:var(--blue);
  font-size:15px;
  font-weight:700;
  letter-spacing:.12em;
}

.lp-hero__lead {
  margin-top:18px;
  font-size:17px;
  color:var(--text-body);
  line-height:1.9;
}

.price-box {
  display:inline-flex;
  align-items:stretch;
  margin-top:26px;
  background:#fff;
  border:1px solid #dfe9f1;
  border-radius:8px;
  overflow:hidden;
  box-shadow:0 4px 12px rgba(83,133,209,.12);
}

.price-box__label {
  background:var(--periwinkle);
  color:#fff;
  font-weight:700;
  font-size:17px;
  padding:14px 24px;
  display:flex;
  align-items:center;
}

.price-box__value {
  color:#3d4658;
  font-weight:700;
  font-size:18px;
  padding:14px 30px;
  display:flex;
  align-items:center;
}

.lp-hero__wave {
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  line-height:0;
  z-index:0;
}

.lp-hero__wave svg {
  width:100%;
  height:145px;
  display:block;
}

/* =================== BREADCRUMB =================== */
.breadcrumb {
  max-width:1340px;
  margin:0 auto;
  padding:26px 20px 0;
}

.breadcrumb ol {
  list-style:none;
  display:flex;
  align-items:center;
  gap:16px;
  font-size:14px;
  color:var(--text-fine);
}

.breadcrumb li {
  display:flex;
  align-items:center;
  gap:16px;
}

.breadcrumb li::after {
  content:"ー";
  color:var(--text-fine);
}

.breadcrumb li:last-child::after {
  content:none;
}

/* =================== INTRO =================== */
.intro {
  background:#fff;
  padding:50px 0 30px;
  text-align:center;
}

.intro__title {
  font-size:40px;
  font-weight:500;
  color:var(--blue-title);
  letter-spacing:.04em;
  font-family: "Zen Maru Gothic", sans-serif;
}

.intro__text {
  max-width:1250px;
  margin:34px auto 0;
  font-size:17px;
  color:var(--text-dark);
  line-height:2;
  text-align:left;
}

.intro__text strong {
  font-weight:700;
}

/* ============ CTAボタン（ヒーロー／コンテンツ内 共通）ここから ============ */
.hero-btn,
.phone-btn {
  position:relative;
  display:inline-flex;
  flex-wrap:nowrap;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  gap:0;
  font-size:0;
  line-height:1.25;
  text-align:center;
  border:none;
  border-radius:999px;
  padding:20px 100px 20px 102px;
  color:#fff;
  box-shadow:0 10px 24px rgba(245,111,97,.32);
  background:
    url("../images/lp/cta-icon.png") no-repeat left 18px center / 58px 58px,
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='28' viewBox='0 0 16 28'%3E%3Cpath d='M3 3L12 14L3 25' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 28px center / 15px 26px,
    linear-gradient(96deg, #fa5d50 0%, #fb6e60 26%, #fc7a48 62%, #fd8033 100%);
}

.hero-btn img,
.phone-btn img {
  display:none;
}

.hero-btn::before,
.phone-btn::before {
  content:"ご予約はお電話のみとなります";
  font-size:14px;
  font-weight:500;
  letter-spacing:.02em;
}

.hero-btn::after,
.phone-btn::after {
  content:"今すぐ電話する";
  font-size:26px;
  font-weight:700;
  letter-spacing:.04em;
  margin-top:2px;
}

.phone-cta {
  margin: 80px auto;
  display: block;
  text-align: center;
}

@media (max-width:768px) {
  .hero-btn::before,
  .phone-btn::before {
    font-size:13px;
  }
}

/* =================== MENUS GRID =================== */
.menus {
  position:relative;
  background:#fff;
  padding:40px 0 170px;
}

.menus__bg {
  position:absolute;
  left:0;
  right:0;
  top:0;
  bottom:0;
  background:url("../images/lp_top/lp_all_bg.png") center top/100% 100% no-repeat;
  z-index:0;
  pointer-events:none;
}

.menus .container {
  position:relative;
  z-index:1;
}

.menus__grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px 36px;
}

.menu-card {
  position:relative;
  background:#fff;
  border:3px solid #cfe2f2;
  border-radius:16px;
  padding:22px 20px 24px;
  box-shadow:0 14px 34px rgba(86,130,170,.18);
  display:flex;
  flex-direction:column;
  color:inherit;
  text-decoration:none;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

a.menu-card{
  cursor:pointer;
}

a.menu-card:hover {
  transform:translateY(-8px);
  box-shadow:0 24px 46px rgba(86,130,170,.30);
  border-color:#b6d6ee;
}

a.menu-card:hover .menu-card__more {
  color:var(--blue);
}

a.menu-card:hover .menu-card__more .arrow {
  transform:translateX(4px);
}

.menu-card__tag {
  position:absolute;
  left:17px;
  top:24px;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-top: -35px;
}

.menu-card__tag::before {
  content:"";
  width:1px;
  height:65px;
  margin-left:2px;
  background:#b4bdc6;
}

.menu-card__tag span {
  writing-mode:vertical-rl;
  line-height:1;
  margin-top:9px;
  font-size:11px;
  letter-spacing:.06em;
  color:#8b95a1;
}

.menu-card__img {
  margin-left:34px;
}

.menu-card__img img {
  width:100%;
  border-radius:10px;
}

.menu-card__img.is-placeholder {
  margin-left:34px;
  height:191px;
  background:#d9d9d9;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#7d7d7d;
  font-size:15px;
}

.menu-card__title {
  text-align:center;
  color:var(--blue-title);
  font-weight:500;
  font-size:22px;
  line-height:1.5;
  margin:22px 0 16px;
  min-height:66px;
  font-family: "Zen Maru Gothic", sans-serif;
}

.menu-card__desc {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  padding: 0 15px;
}

.menu-card__more {
  display:block;
  text-align:right;
  margin-top:18px;
  color:var(--blue-link);
  font-weight:700;
  font-size:15px;
  letter-spacing:.04em;
}

.menu-card__more .arrow {
  margin-left:10px;
  display:inline-block;
  transition:transform .3s ease;
}

/* =================== FOOTER (shared) =================== */
.site-footer {
  position:relative;
  background:var(--footer-bg);
  padding:60px 0 30px;
  margin-top: 200px;
}

.site-footer::before{
  content:"";
  position:absolute;
  left:0;
  bottom:100%;
  width:100%;
  height:150px;
  background:url("../images/lp_top/footer_top.png") center bottom/100% 100% no-repeat;
  pointer-events:none;
}

.footer-inner {
  max-width:1300px;
  margin:0 auto;
  padding:0 20px;
  display:flex;
  gap:60px;
  align-items:stretch;
}

.footer-left {
  flex:0 0 600px;
  display:flex;
  flex-direction:column;
}

.footer-logo {
  width:350px;
  margin:0 auto 28px;
}

.footer-right {
  flex:1;
  display:flex;
}

.hours-card {
  background:#fff;
  border-radius:16px;
  padding:26px 30px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  scroll-margin-top: 100px;
}

.hours-table {
  width:100%;
  border-collapse:collapse;
}

.hours-table th,.hours-table td {
  text-align:center;
  padding:12px 4px;
  font-size:17px;
  color:var(--text-dark);
}

.hours-table thead th {
  border-bottom:1px solid #e2e8ee;
  font-weight:500;
  color:var(--text-body);
}

.hours-table .hcol-time {
  text-align:left;
  white-space:nowrap;
  padding-left:4px;
  font-weight:500;
  font-family:"Inter", sans-serif;
}

.hours-table td.o {
  color:var(--blue);
}

.hours-table td.f {
  color:var(--blue);
}

.hours-table td.dash {
  color:#9aa3ad;
}

.hours-legend {
  margin-top:16px;
  font-size:16px;
  color:var(--text-dark);
}

.hours-legend .leg-blue {
  color:var(--blue);
  font-weight:500;
}

.hours-legend .leg-fill {
  color:var(--blue);
}

.hours-note {
  margin-top:8px;
  font-size:15px;
  color:var(--coral);
  font-weight:500;
}

.map-wrap {
  width:100%;
}

.map-wrap iframe {
  width:100%;
  height:100%;
  min-height:330px;
  border-radius:14px;
}

.footer-access {
  max-width: 1300px;
  margin: 26px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: end;
  gap: 48px;
}

.fa-address{
  color:var(--text-body) !important;
  font-weight:500 !important;
}
.fa-item {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  color:var(--blue);
  font-weight:700;
}

.fa-item img {
  width:16px;
}

.footer-copy {
  max-width:1300px;
  margin:80px auto 0;
  padding:0 20px;
  text-align:right;
  color:var(--text-body);
  font-size:12px;
  letter-spacing:.05em;
}

.footer-copy .copy-sub {
  margin-top:4px;
}

.footer-hours-sp-br {
  display:none;
}

/* =================== BACK TO TOP =================== */
.back-top {
  position:fixed;
  right:30px;
  bottom:30px;
  width:62px;
  height:62px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 6px 18px rgba(58,159,218,.28);
  opacity:0;
  visibility:hidden;
  transform:translateY(14px);
  transition:opacity .3s ease,transform .3s ease,visibility .3s;
  z-index:900;
}

.back-top.show {
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.back-top img {
  width:45px;
}

/* =================== MOBILE FIXED BAR (base) =================== */
.mobile-fixed-bar {
  display:none;
}

/* =================== RESPONSIVE (smartphone) =================== */
@media (max-width:768px) {
  body {
    min-width:0;
    overflow-x:hidden;
    padding-bottom:60px;
  }
  .container {
    padding:0 18px;
  }
  .footer-hours-sp-br {
    display:inline;
  }

  .hero-btn,
  .phone-btn {
    padding:22px 60px 22px 84px;
    background-position:left 14px center, right 20px center, 0 0;
    background-size:52px 52px, 13px 23px, auto;
  }
  .hero-btn::after,
  .phone-btn::after {
    font-size:22px;
  }
  .hero-btn {
    display:flex;
    width:-moz-max-content;
    width:max-content;
    max-width:100%;
    margin-left:auto;
    margin-right:auto;
  }

  /* ---------- Header: logo centered only ---------- */
  .header-inner {
    padding:12px 16px;
    justify-content:center;
  }
  .header-right {
    display:none;
  }
  .header-logo img {
    width:210px;
  }
  .site-header.scrolled .header-inner {
    padding:8px 16px;
  }
  .site-header.scrolled .header-logo img {
    width:165px;
  }

  /* ---------- Hero ---------- */
  .lp-hero {
    padding-top:62px;
  }
  .lp-hero__inner {
    display:flex;
    flex-direction:column;
    max-width:100%;
    min-height:auto;
    padding:28px 0 0;
  }
  .lp-hero__body {
    order:1;
    position:static;
    width:100%;
    padding:0 18px;
  }
  .lp-hero__img {
    order:2;
    position:static;
    width:100%;
    margin-top:22px;
  }
  .lp-hero__title {
    font-size:23px;
    line-height:1.5;
  }
  .lp-hero__title br{
    display:none;
  }
  .lp-hero__eyebrow {
    margin-top:16px;
    font-size:13px;
  }
  .lp-hero__lead {
    margin-top:14px;
    font-size:14px;
  }
  .price-box {
    margin-top:20px;
  }
  .price-box__label {
    font-size:14px;
    padding:12px 16px;
  }
  .price-box__value {
    font-size:16px;
    padding:12px 20px;
  }
  .lp-hero__wave svg {
    height:40px;
  }

  /* ---------- Breadcrumb ---------- */
  .breadcrumb {
    padding:18px 18px 0;
  }
  .breadcrumb ol {
    font-size:11px;
    gap:10px;
    white-space: nowrap;
  }
  .breadcrumb li {
    gap:0;
  }

  /* ---------- Intro ---------- */
  .intro {
    padding:34px 0 18px;
  }
  .intro__title {
    font-size:23px;
    line-height:1.45;
    padding:30px 10px 20px;
  }
  .intro__text {
    font-size:17px;
    line-height:1.9;
    margin-top:22px;
    padding:0 4px;
  }

  /* ---------- Menus grid: single column ---------- */
  .menus {
    padding:24px 0 90px;
  }
  .menus__grid {
    grid-template-columns:1fr;
    gap:28px;
  }
  .menu-card__title {
    min-height:0;
    font-size:21px;
  }

  /* ---------- Footer: stacked & centered ---------- */
  .site-footer::before {
    height:60px;
  }
  .footer-inner {
    flex-direction:column;
    gap:0;
    max-width:100%;
    padding:0 18px;
  }
  .footer-left {
    flex:0 0 auto;
    width:100%;
  }
  .footer-logo {
    width:200px;
    margin:0 auto 24px;
  }
  .footer-right {
    width:100%;
    margin-top:22px;
  }
  .hours-card {
    width:100%;
    padding:22px 16px;
  }
  .hours-table th,
  .hours-table td {
    padding:9px 2px;
    font-size:13px;
  }
  .hours-table .hcol-time {
    font-size:13px;
  }
  .hours-legend {
    font-size:12px;
  }
  .hours-note {
    font-size:11px;
  }
  .map-wrap iframe {
    min-height:240px;
  }
  .footer-access {
    flex-direction:column;
    gap:8px;
    align-items:center;
    text-align:center;
    margin-top:22px;
  }
  .footer-copy {
    text-align:center;
    margin-top:24px;
  }

  /* ---------- Back to top: above the fixed bar ---------- */
  .back-top {
    right:16px;
    bottom:74px;
    width:50px;
    height:50px;
  }
  .back-top img {
    width:34px;
  }

  /* ---------- Mobile fixed bottom bar ---------- */
  .mobile-fixed-bar {
    display:flex;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:60px;
    z-index:1100;
    box-shadow:0 -2px 12px rgba(0,0,0,.14);
  }
  .mfb-item {
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:.04em;
    text-decoration:none;
  }
  .mfb-item svg {
    width:22px;
    height:22px;
  }
  .mfb-tel {
    background:#f56f61;
  }
  .mfb-access {
    background:#38a1db;
  }
  .mfb-hours {
    background:#38a1db;
    border-left:1px solid rgba(255,255,255,.28);
  }
  .site-footer {
    margin-top: 100px;
  }
}

/* =================== RESPONSIVE (tablet 769-1279px) =================== */
@media (min-width:769px) and (max-width:1279px) {

  body {
    min-width:0;
    overflow-x:hidden;
    padding-bottom:62px;
  }

  .container {
    padding:0 28px;
  }

  /* ---------- Header: logo centered only ---------- */
  .header-inner {
    padding:14px 24px;
    justify-content:center;
  }
  .header-right {
    display:none;
  }
  .header-logo img {
    width:250px;
  }
  .site-header.scrolled .header-inner {
    padding:9px 24px;
  }
  .site-header.scrolled .header-logo img {
    width:200px;
  }

  /* ---------- Hero: stacked & constrained ---------- */
  .lp-hero {
    padding-top:72px;
  }
  .lp-hero__inner {
    display:flex;
    flex-direction:column;
    align-items:center;
    max-width:100%;
    min-height:auto;
    padding:44px 32px 0;
  }
  .lp-hero__body {
    order:1;
    position:static;
    width:100%;
    max-width:680px;
    padding-left:0;
  }
  .lp-hero__img {
    order:2;
    position:static;
    width:560px;
    max-width:88%;
    margin:30px auto 0;
  }
  .lp-hero__title {
    font-size:30px;
  }
  .lp-hero__wave svg {
    height:80px;
  }

  /* ---------- Breadcrumb ---------- */
  .breadcrumb {
    padding:24px 32px 0;
  }

  /* ---------- Intro ---------- */
  .intro {
    padding:44px 0 24px;
  }
  .intro__title {
    font-size:32px;
    padding:0 16px;
  }
  .intro__text {
    max-width:88%;
    font-size:16px;
  }

  /* ---------- Menus grid: 2 columns ---------- */
  .menus {
    padding:36px 0 120px;
  }
  .menus__grid {
    grid-template-columns:repeat(2,1fr);
    gap:32px;
    max-width:840px;
    margin:0 auto;
  }
  .menu-card__title {
    min-height:0;
  }

  /* ---------- Footer: stacked & centered ---------- */
  .site-footer::before {
    height:90px;
  }
  .footer-inner {
    flex-direction:column;
    gap:0;
    max-width:720px;
  }
  .footer-left {
    flex:0 0 auto;
    width:100%;
  }
  .footer-logo {
    width:220px;
    margin:0 auto 26px;
  }
  .footer-right {
    width:100%;
    margin-top:24px;
  }
  .hours-card {
    width:100%;
  }
  .map-wrap iframe {
    min-height:300px;
  }
  .footer-access {
    justify-content:center;
    gap:32px;
    margin-top:24px;
  }
  .footer-copy {
    text-align:center;
    margin-top:26px;
  }

  /* ---------- Back to top: above the fixed bar ---------- */
  .back-top {
    right:24px;
    bottom:78px;
  }

  /* ---------- Mobile fixed bottom bar ---------- */
  .mobile-fixed-bar {
    display:flex;
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    height:62px;
    z-index:1100;
    box-shadow:0 -2px 12px rgba(0,0,0,.14);
  }
  .mfb-item {
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:3px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    letter-spacing:.04em;
    text-decoration:none;
  }
  .mfb-item svg {
    width:24px;
    height:24px;
  }
  .mfb-tel {
    background:#f56f61;
  }
  .mfb-access {
    background:#38a1db;
  }
  .mfb-hours {
    background:#38a1db;
    border-left:1px solid rgba(255,255,255,.28);
  }
}


/*  LP本体  */
.cont {
  max-width:1200px;
  margin:0 auto;
  padding:0 20px;
}

/* ---------- Section common heading ---------- */
.eyebrow {
  text-align:center;
  color:var(--blue);
  font-size:14px;
  font-weight:700;
  letter-spacing:.18em;
}

.sec-title {
  text-align:center;
  color:var(--text-dark);
  font-size:34px;
  font-weight:500;
  letter-spacing:.05em;
  margin-top:14px;
  font-family:"Zen Maru Gothic", sans-serif;
}

.title-underline {
  display:block;
  width:60px;
  height:3px;
  background:var(--blue);
  border-radius:2px;
  margin:18px auto 0;
}

/* =================== HERO =================== */
.hero {
  position:relative;
  background:var(--blue-bg);
  padding-top:118px;
  overflow:hidden;
}

.hero-inner {
  max-width:1320px;
  margin:0 auto;
  padding:60px 32px 185px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.hero-text {
  flex:0 0 640px;
}

.hero-title {
  font-weight:500;
  line-height:1.4;
  display:flex;
  flex-direction:column;
  font-family:"Zen Maru Gothic", sans-serif;
}

.hero-title .dark {
  font-size:42px;
  color:#46546a;
}

.hero-title .blue {
  font-size:52px;
  color:var(--blue-dark);
  line-height:1.3;
  white-space:nowrap;
}

.hero-title .blue.indent {
  margin-left:.6em;
}

.hero-lead {
  margin: 26px 0 40px;
  font-size:17px;
  color:var(--text-body);
  line-height:1.9;
}

.hero-image {
  flex:0 0 560px;
}

.hero-image img {
  width:100%;
  border-radius:8px;
}

.hero-wave {
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  line-height:0;
}

.hero-wave svg {
  width:100%;
  height:156px;
  display:block;
}

/* =================== CONCERN =================== */
.concern {
  background:#fff;
  padding:80px 0 90px;
}

.concern .eyebrow {
  margin-top:0;
}

.concern-grid {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px 80px;
  max-width:900px;
  margin:60px auto 0;
}

.concern-card {
  background:var(--blue-bg);
  border-radius:14px;
  padding:38px 40px 34px;
  text-align:center;
}

.concern-icon {
  width:90px;
  height:90px;
  background:#fff;
  border-radius:18px;
  margin:0 auto 22px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.concern-icon img {
  width:55px;
}

.concern-card h3 {
  font-size:23px;
  color:var(--blue-title);
  font-weight:700;
  font-family:"Zen Maru Gothic", sans-serif;
}

.concern-card p {
  margin-top:14px;
  font-size:17px;
  color:var(--text-body);
  line-height:1.8;
}

.concern-center {
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:210px;
  pointer-events:none;
}

/* =================== ABOUT =================== */
.about {
  background:#fff;
  padding:30px 0 90px;
}

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:950px;
  margin:56px auto 0;
}

.about-card {
  background:#fff;
  border:3px solid #bfe0f3;
  border-radius:16px;
  padding:36px 40px;
  box-shadow: 2px 1px 15px rgba(0,0,0,0.2);
}

.about-card h3 {
  font-size:23px;
  color:var(--blue-title);
  font-weight:700;
  line-height:1.3;
  font-family:"Zen Maru Gothic", sans-serif;
}

.about-card h3.has-icon {
  padding-left:36px;
  background-repeat:no-repeat;
  background-position:left 6px;
  background-size:24px auto;
}

.about-card p {
  margin-top:25px;
  font-size:17px;
  color:var(--text-body);
  line-height:1.5;
}

/* =================== マンジャロ =================== */
.manjaro {
  position:relative;
  background:var(--mint-bg);
  padding:70px 0 80px;
  margin-top:60px;
}

.manjaro-notch {
  position:absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:0;
  border-left:30px solid transparent;
  border-right:30px solid transparent;
  border-top:24px solid #fff;
}

.manjaro .eyebrow {
  margin-top:0;
}

.manjaro-body {
  display:flex;
  align-items:center;
  gap:46px;
  margin-top:56px;
}

.manjaro-image {
  flex:0 0 500px;
}

.manjaro-image img {
  width:100%;
  border-radius:10px;
}

.manjaro-cards {
  flex:1;
  display:flex;
  flex-direction:column;
  gap:18px;
}

.manjaro-card {
  background:#fff;
  border:3px solid #bfe0f3;
  border-radius:12px;
  padding:22px 26px;
  box-shadow: 2px 1px 15px rgba(0,0,0,0.2);
}

.manjaro-card h3 {
  font-size:21px;
  color:var(--periwinkle);
  font-weight:700;
  display:flex;
  align-items:center;
  gap:10px;
  font-family:"Zen Maru Gothic", sans-serif;
}

.manjaro-card h3 img {
  width:22px;
}

.manjaro-card p {
  margin-top: 10px;
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.5;
  padding: 5px 10px 10px;
}


/* =================== 進め方 =================== */
.progress {
  background:#fff;
  padding:80px 0 90px;
}

.progress .eyebrow {
  margin-top:0;
}

.progress-graphic {
  max-width:680px;
  margin:56px auto 0;
}

.progress-graphic img {
  width:100%;
}

.progress-labels {
  display:flex;
  justify-content:center;
  gap:28px;
  margin-top:5px;
}

.plabel {
  background:#eef3f8;
  color:var(--blue-title);
  font-size:18px;
  font-weight:500;
  padding:10px 30px;
  border-radius:8px;
  font-family:"Zen Maru Gothic", sans-serif;
}

.progress-text {
  max-width:840px;
  margin:36px auto 0;
  font-size:17px;
  color:var(--text-body);
  line-height:2;
}

/* =================== COMPARISON =================== */
.comparison {
  background:#fff;
  padding:40px 0 90px;
}

.comp-table {
  max-width:1020px;
  margin:60px auto 0;
  border:2px solid #e7ecf1;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,.04);
}

.comp-row {
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
}

.comp-row:not(:last-child) {
  border-bottom:1px solid #eef2f5;
}

.comp-row>div {
  padding:24px 30px;
  display:flex;
  align-items:center;
  font-size:16px;
}

.comp-c1 {
  color:var(--text-dark);
}

.comp-c3 {
  background:#eaf4fc;
}

.comp-head {
  background:#f7fafc;
}

.comp-head .comp-c2,.comp-head .comp-c3 {
  justify-content:center;
  font-weight:700;
  color:var(--blue-title);
  font-family:"Zen Maru Gothic", sans-serif;
}

.comp-head .comp-c3 {
  background:#dcecfa;
}

.comp-c2 .x,.comp-c3 .o {
  width:22px;
  height:22px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:#fff;
  margin-right:14px;
  flex:0 0 22px;
}

.comp-c2 .x {
  background:#bcc4cc;
}

.comp-c3 .o {
  background:var(--coral);
}

.comp-c3 {
  color:var(--coral);
  font-weight:500;
}

/* =================== EFFECTS =================== */
.effects {
  background:url("../images/lp/effect_bg.png") center/cover no-repeat;
  padding:70px 0 80px;
}

.effects .eyebrow {
  margin-top:0;
  color:#7fa9d6;
}

.effects .sec-title {
  color:#5a6473;
}

.effects-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:56px;
}

.effect-card {
  background:rgba(255,255,255,.78);
  border-radius:14px;
  padding:26px 22px 28px;
  text-align:center;
  box-shadow:0 8px 20px rgba(120,140,170,.12);
  display: flex;
  flex-flow: wrap;
  justify-content: center;
}

.effect-card h3 {
  font-size:18px;
  color:#5a6473;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  font-family:"Zen Maru Gothic", sans-serif;
  text-align: left;
  line-height: 1.2;
}

.effect-card h3 img {
  width:22px;
}

.effect-img {
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:16px 0 25px;
}

.effect-img img {
  max-height:120px;
  width:auto;
}

.effect-card p {
  font-size:16px;
  color:var(--text-body);
  line-height:1.5;
  text-align:left;
}

/* =================== SAFETY =================== */
.safety {
  background:#fff;
  padding:80px 0 80px;
}

.safety .eyebrow {
  margin-top:0;
}

.safety-lead {
  max-width:880px;
  margin:40px auto 70px;
  font-size:17px;
  color:var(--text-body);
  line-height:2;
}

.safety-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  max-width:1300px;
  margin:50px auto 0;
}

.safety-card {
  background:#fff;
  border-radius:16px;
  box-shadow:0 10px 28px rgba(0,0,0,.15);
  overflow:hidden;
  display:flex;
  align-items:stretch;
  padding:35px;
}

.safety-photo {
  flex:0 0 155px;
}

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

.safety-info {
  padding:28px 30px;
  flex:1;
}

.safety-info h3 {
  font-size:20px;
  color:var(--text-dark);
  font-weight:700;
  margin-bottom:18px;
  font-family:"Zen Maru Gothic", sans-serif;
}

.dot-list li,.check-list li {
  list-style:none;
  font-size:16px;
  color:var(--text-body);
  margin-bottom:10px;
  display:flex;
  align-items:center;
  gap:12px;
  line-height: 1.3;
}

.dot-list li::before {
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:#9aa3ad;
  flex:0 0 6px;
}

.check-list li::before {
  content:"✓";
  width:22px;
  height:22px;
  border-radius:50%;
  background:var(--coral);
  color:#fff;
  font-size:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 22px;
}

.side-effect {
  max-width:880px;
  margin:80px auto 0;
  font-size:17px;
  color:var(--text-body);
  line-height:2;
}

.side-effect strong {
  color:var(--text-dark);
}

.side-effect-alert {
  max-width:880px;
  margin:22px auto 0;
  font-size:17px;
  color:var(--coral);
  font-weight:700;
  line-height:2;
}

.safety .phone-cta {
  margin-top:80px;
}

/* =================== FLOW =================== */
.flow {
  background:#fff;
  padding:30px 0 90px;
}

.flow-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  margin-top:56px;
}

.flow-card {
  border:3px solid #d4e8f5;
  border-radius:16px;
  padding:24px 24px 28px;
  text-align:left;
}

.flow-head {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  font-weight:700;
  color:var(--text-dark);
  font-family:"Zen Maru Gothic", sans-serif;
}

.flow-num {
  width:26px;
  height:26px;
  border-radius:50%;
  background:#2e7fd2;
  color:#fff;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 26px;
}

.flow-icon {
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:18px 0 12px;
}

.flow-icon img {
  height:72px;
  width:auto;
}

.flow-card p {
  font-size:16px;
  color:var(--text-body);
  line-height:1.5;
}

.flow-tel{
  background: aliceblue;
  padding: 5px 10px 10px;
  border-radius: 7px;
  margin: 7px 0 0;
}
.flow-tel .contact-tel{
  font-size: 25px;
  text-align: center;
}

/* =================== FAQ =================== */
.faq {
  background:var(--mint-bg);
  padding:70px 0 80px;
}

.faq .eyebrow {
  margin-top:0;
}

.faq-list {
  max-width:720px;
  margin:50px auto 0;
}

.faq-item {
  margin-bottom:16px;
}

.faq-q {
  width:100%;
  background:#fff;
  border:none;
  border-radius:10px;
  padding:22px 64px 22px 28px;
  text-align:left;
  font-family:inherit;
  font-size:18px;
  color:var(--text-dark);
  font-weight:500;
  cursor:pointer;
  position:relative;
  box-shadow:0 3px 10px rgba(0,0,0,.04);
  font-family:"Zen Maru Gothic", sans-serif;
}

.faq-toggle {
  position:absolute;
  right:22px;
  top:50%;
  transform:translateY(-50%);
  width:30px;
  height:30px;
  border-radius:50%;
  background:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}

.faq-toggle::before {
  content:"";
  width:9px;
  height:9px;
  border-right:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:translateY(-2px) rotate(45deg);
  transition:transform .25s ease;
}

.faq-item.is-open .faq-toggle::before {
  transform:translateY(2px) rotate(-135deg);
}

.faq-a {
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
}

.faq-a p {
  padding:18px 28px 6px;
  font-size:16px;
  color:var(--text-body);
  line-height:1.5;
}

.faq-item.is-open .faq-a {
  max-height:300px;
}

/* =================== BOTTOM CTA =================== */
.bottom-cta {
  position:relative;
  background:url("../images/lp/foot_img.png") center/cover no-repeat;
  padding:70px 0;
  text-align:center;
}

.bottom-cta-overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}

.bottom-cta-inner {
  position:relative;
  z-index:1;
  color:#fff;
}

.bottom-cta-inner h2 {
  font-size:35px;
  font-weight:700;
  letter-spacing:.04em;
  font-family:"Zen Maru Gothic", sans-serif;
}

.bottom-cta-inner p {
  margin: 35px 0 20px;
  font-size:17px;
  line-height:1.6;
}

.bottom-cta-inner .phone-btn {
  margin-top:28px;
}

.vc-price-scroll-note {
  display: none;
}

@media (max-width: 768px) {
  .vc-price-scroll-note {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #888;
    margin: 8px 0;
  }

  .vc-price-wrap {
    position: relative;
  }

  .vc-price-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, #fff, rgba(255,255,255,0));
  }

  .vc-price {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}


/* ======================================================== */
/* RESPONSIVE : TABLET & SHARED  (769px - 1279px / and below) */
/* ======================================================== */

@media (max-width:1279px) {
  body {
    min-width:0;
    overflow-x:hidden;
  }

  .container {
    padding:0 26px;
  }

  /* ---- hero : stacked ---- */
  .hero-inner {
    flex-direction:column-reverse;
    align-items:stretch;
    max-width:760px;
    padding:0px 26px 150px;
    gap:34px;
  }

  .hero-text {
    flex:none;
    width:100%;
  }

  .hero-image {
    flex:none;
    width:100%;
    max-width:600px;
    margin:0 auto;
  }

  .hero-title .blue {
    white-space:normal;
  }

  .hero-wave svg {
    height:90px;
  }

  /* ---- manjaro : stacked ---- */
  .manjaro-body {
    flex-direction:column;
    gap:30px;
  }

  .manjaro-image {
    flex:none;
    width:100%;
    max-width:560px;
    margin:0 auto;
  }

  .manjaro-cards {
    width:100%;
  }

  /* ---- effects : 2 columns ---- */
  .effects-grid {
    grid-template-columns:repeat(2,1fr);
  }

  /* ---- safety : 1 column ---- */
  .safety-grid {
    grid-template-columns:1fr;
    max-width:680px;
  }

  /* ---- flow : 2 columns ---- */
  .flow-grid {
    grid-template-columns:repeat(2,1fr);
  }
  .flow-tel .contact-label{
    text-align: center;
  }

}

/* ======================================================== */
/* RESPONSIVE : SMARTPHONE  (<= 768px) */
/* ======================================================== */
@media (max-width:768px) {
  .container {
    padding:0 18px;
  }

  .sec-title {
    font-size:26px;
  }

  .eyebrow {
    font-size:13px;
  }

  /* ---- hero ---- */
  .hero-inner {
    padding:0px 18px 80px;
    gap:26px;
  }

  .hero-title .dark {
    font-size:26px;
  }

  .hero-title .blue {
    font-size:30px;
    line-height:1.35;
  }

  .hero-lead {
    margin-top:18px;
    font-size:15px;
  }

  .hero-wave svg {
    height:48px;
  }

  /* ---- concern : 1 column, hide floating image ---- */
  .concern {
    padding:56px 0 60px;
  }

  .concern-grid {
    grid-template-columns:1fr;
    gap:18px;
    max-width:400px;
    margin-top:40px;
  }

  .concern-center {
    display:none;
  }

  .concern-card {
    padding:30px 28px 28px;
  }

  .concern-card h3 {
    font-size:20px;
  }

  .concern-card p {
    font-size:15px;
  }

  /* ---- about : 1 column ---- */
  .about {
    padding:24px 0 60px;
  }

  .about-grid {
    grid-template-columns:1fr;
    gap:22px;
    margin-top:40px;
  }

  .about-card {
    padding:28px 26px;
  }

  .about-card h3 {
    font-size:20px;
  }

  .about-card p {
    font-size:15px;
  }

  /* ---- manjaro ---- */
  .manjaro {
    padding:54px 0 60px;
  }

  .manjaro-body {
    margin-top:40px;
  }

  .manjaro-card h3 {
    font-size:18px;
  }

  /* ---- progress ---- */
  .progress {
    padding:56px 0 60px;
  }

  .progress-labels {
    gap:8px;
    margin-top:14px;
  }

  .plabel {
    padding:8px 14px;
    font-size:14px;
  }

  .progress-text {
    font-size:15px;
    margin-top:26px;
  }

  /* ---- COMPARISON : card layout ---- */
  .comparison {
    padding:24px 0 60px;
  }

  .comp-table {
    max-width:430px;
    margin:40px auto 0;
    border:none;
    border-radius:0;
    box-shadow:none;
    overflow:visible;
  }

  .comp-row.comp-head {
    display:none;
  }

  .comp-row {
    display:block;
    border:1px solid #e7ecf1;
    border-radius:12px;
    overflow:hidden;
    margin-bottom:22px;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
  }

  .comp-row:not(:last-child) {
    border-bottom:1px solid #e7ecf1;
  }

  .comp-row>div {
    padding:15px 22px;
    font-size:16px;
  }

  .comp-c1 {
    background:#f4f6f8;
    justify-content:center;
    font-weight:700;
    color:var(--text-dark);
  }

  .comp-c2,.comp-c3 {
    background:#fff;
    justify-content:flex-start;
  }

  .comp-c2 {
    border-bottom:1px solid #eef2f5;
    color:var(--text-dark);
  }

  .comp-c3 {
    color:var(--blue);
    font-weight:500;
  }

  .comp-c2::before {
    content:"ダイエット";
    margin-right:auto;
    color:var(--text-dark);
    font-weight:500;
  }

  .comp-c3::before {
    content:"マンジャロ";
    margin-right:auto;
    color:var(--text-dark);
    font-weight:500;
  }

  /* ---- effects : 1 column ---- */
  .effects {
    padding:56px 0 60px;
  }

  .effects-grid {
    grid-template-columns:1fr;
    gap:18px;
    max-width:360px;
    margin:40px auto 0;
  }

  /* ---- safety : stacked cards (portrait photo, no upscaling) ---- */
  .safety {
    padding:56px 0 60px;
  }

  .safety-lead {
    margin:34px auto 40px;
    font-size:15px;
  }

  .safety-card {
    flex-direction:column;
    align-items:center;
    padding:30px 24px 28px;
  }

  .safety-photo {
    flex:none;
    width:200px;
    max-width:100%;
    height:236px;
    border-radius:12px;
    overflow:hidden;
  }

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

  .safety-info {
    padding:24px 4px 0;
    width:100%;
  }

  .side-effect {
    margin-top:50px;
    font-size:15px;
  }

  .side-effect-alert {
    font-size:15px;
  }

  .safety .phone-cta {
    margin-top:50px;
  }

  /* ---- flow : 1 column ---- */
  .flow {
    padding:24px 0 60px;
  }

  .flow-card {
    max-width: 90%;
    margin: auto;
  }

  .flow-grid {
    grid-template-columns:1fr;
    gap:18px;
    width: min(100%, 300px);
    margin:40px auto 0;
  }
  .flow-tel {
    width:215px;
  }
  .flow-tel .contact-tel{
    font-size: 18px;
    white-space: nowrap;
  }

  /* ---- faq ---- */
  .faq {
    padding:56px 0 60px;
  }

  .faq-list {
    margin-top:40px;
  }

  .faq-q {
    font-size:16px;
    padding:18px 56px 18px 20px;
  }

  .faq-a p {
    font-size:15px;
  }

  /* ---- bottom CTA ---- */
  .bottom-cta {
    padding:54px 0;
  }

  .bottom-cta-inner h2 {
    font-size:22px;
    padding: 0 10px;
  }

  .bottom-cta-inner p {
    margin:24px 20px 14px;
    font-size:15px;
  }

}

/* ======================================================== */
/* ============ 水素療法LP 追加分（新規）ここから ============ */
/* ======================================================== */

/* ---------- 水素療法について（白背景のmanjaro流用） ---------- */
.hydro-about {
  background:#fff;
  padding:70px 0 80px;
}

/* ---------- REASON 水素療法が注目される理由 ---------- */
.reason {
  background:#fff;
  padding:70px 0 80px;
}

.reason .eyebrow {
  margin-top:0;
}

.reason-body {
  display:flex;
  align-items:center;
  gap:50px;
  max-width:1080px;
  margin:56px auto 0;
}

.reason-text {
  flex:1;
}

.reason-list {
  list-style:none;
}

.reason-list li {
  position:relative;
  padding-left:44px;
  font-size:19px;
  font-weight:400;
  color:var(--text-dark);
  line-height:1.6;
  margin-bottom:22px;
}

.reason-list li:last-child {
  margin-bottom:0;
}

.reason-list li::before {
  content:"";
  position:absolute;
  left:0;
  top:1px;
  width:28px;
  height:28px;
  background:url("../images/lp/hydro_icon.png") no-repeat center/contain;
}

.reason-list li .hl {
  color:var(--blue);
  font-weight:700;
}

.reason-image {
  flex:0 0 460px;
}

.reason-image img {
  width:100%;
  border-radius:14px;
  box-shadow:0 10px 26px rgba(58,159,218,.18);
}

/* ---------- 水素の働き ---------- */
/* 上辺は直線。中央だけ半円（ドーム）が飛び出し「こんなにすごい！」を囲う */
.hydro-work {
  position: relative;
  background: var(--blue-bg);
  margin: 150px 0 100px;
  padding: 0 0 50px;
}

/* 中央の半円（セクション上辺の上に乗せる） */
.hydro-work::before {
  content:"";
  position:absolute;
  z-index:-1;
  left:50%;
  top:50px;
  transform:translate(-50%, -100%);
  width:320px;
  height:160px;
  background:var(--blue-bg);
  border-radius:160px 160px 0 0;
}

/* バッジは半円の中に配置（セクション基準で絶対配置） */
.hwork-badge-wrap {
  position:absolute;
  top:-45px;
  left:0;
  right:0;
  text-align:center;
  margin:0;
  z-index:2;
}

.hwork-badge {
  display:inline-block;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  padding:7px 22px;
  border-radius:20px;
  box-shadow:0 4px 12px rgba(58,159,218,.25);
}

.hwork-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  max-width:1000px;
  margin:56px auto 0;
}

.hwork-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(86,130,170,.16);
}

.hwork-img img {
  width:100%;
  height:200px;
  object-fit:cover;
  display:block;
}

.hwork-card h3 {
  font-size:21px;
  color:var(--blue-title);
  font-weight:700;
  margin:24px 30px 0;
  padding-bottom:16px;
  border-bottom:1px solid #e4ebf1;
  font-family:"Zen Maru Gothic", sans-serif;
}

.hwork-card p {
  margin:18px 30px 30px;
  font-size:16px;
  color:var(--text-body);
  line-height:1.7;
}

/* ---------- 水素吸入をご体験頂けます！ ---------- */
.experience {
  background:#fff;
  padding:70px 0 125px;
}

.exp-body {
  display:flex;
  align-items:center;
  gap:56px;
  max-width:1040px;
  margin:0 auto;
}

.exp-image {
  flex:0 0 450px;
  background:#fff;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(86,130,170,.16);
  padding:32px 30px;
  text-align:center;
}

.exp-image img {
  width:100%;
  max-width:335px;
  margin:0 auto;
}

.exp-text {
  flex:1;
}

.exp-title {
  font-size:32px;
  font-weight:700;
  color:#46546a;
  line-height:1.4;
  margin-bottom:24px;
  font-family:"Zen Maru Gothic", sans-serif;
}

.exp-title .hl {
  color:var(--blue-title);
}

.exp-text p {
  font-size:16px;
  color:var(--text-body);
  line-height:1.9;
  margin-bottom:18px;
}

.exp-text p:last-child {
  margin-bottom:0;
}

.exp-text a {
  color:var(--blue-link);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* ---------- 安心感セクション（水素LP用：正方形写真・カード調整） ---------- */
.hydro-safety .safety-card {
  align-items:center;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(86,130,170,.16);
}

/* 右カード：副作用説明（箇条書きなしのテキスト） */
.se-text,
.se-symptom,
.se-note {
  font-size:15px;
  line-height:1.7;
  color:var(--text-body);
}

.se-symptom {
  margin-top:14px;
}

.se-note {
  margin-top:14px;
  color:var(--coral);
}

/* ---------- PRICE 価格について ---------- */
.price {
  background:#fff;
  padding:30px 0 80px;
}

.price .eyebrow {
  margin-top:0;
}

.price-table {
  max-width:700px;
  margin:56px auto 0;
  border:1px solid #e2e8ee;
  border-top:none;
  overflow:hidden;
}

/* 全幅の青ヘッダー（1セル） */
.price-head {
  background:var(--periwinkle);
  color:#fff;
  font-size:19px;
  font-weight:700;
  text-align:center;
  padding:18px 20px;
  letter-spacing:.04em;
  font-family:"Zen Maru Gothic", sans-serif;
}

.price-row {
  display:grid;
  grid-template-columns:1fr 2fr;
}

.price-row:not(:last-child) {
  border-bottom:1px solid #e2e8ee;
}

.price-row > div {
  padding:20px 30px;
  font-size:17px;
  color:var(--text-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
}

.price-c1 {
  border-right:1px solid #e2e8ee;
}

/* 価格行（薄い黄色） */
.price-row--accent .price-c1,
.price-row--accent .price-c2 {
  background:#fcf8e0;
}

/* ---------- SYNERGY 相乗効果が期待できる美容施術（flex・他LP共用） ---------- */
.synergy {
  background:#fff;
  padding:100px 0 80px;
}

.synergy .eyebrow {
  margin-top:0;
}

.synergy-grid {
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:32px;
  max-width:1100px;
  margin:56px auto 0;
}

/* 横長バナー型カード（画像左・テキスト右・矢印）／flexで1〜複数対応 */
.synergy-card {
  flex:1 1 480px;
  max-width:600px;
  position:relative;
  display:flex;
  align-items:stretch;
  background:#fff;
  border:2px solid #d6e8f5;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(86,130,170,.12);
  text-decoration:none;
  color:inherit;
  transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.synergy-card:hover {
  transform:translateY(-6px);
  box-shadow:0 20px 38px rgba(86,130,170,.22);
  border-color:#bcdcf2;
}

.synergy-thumb {
  flex:0 0 43%;
}

.synergy-thumb img {
  width:100%;
  height:100%;
  min-height:190px;
  object-fit:cover;
  display:block;
}

.synergy-body {
  flex:1;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:34px 70px 34px 44px;
}

.synergy-title {
  font-size:19px;
  color:var(--blue-title);
  font-weight:700;
  margin:0 0 14px;
  font-family:"Zen Maru Gothic", sans-serif;
  line-height: 1.5;
}

.synergy-desc {
  font-size:16px;
  color:var(--text-dark);
  line-height:1.7;
  margin:0;
}

/* 右端の青い丸矢印 */
.synergy-arrow {
  position:absolute;
  right:26px;
  top:50%;
  transform:translateY(-50%);
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
}

.synergy-arrow::before {
  content:"";
  width:8px;
  height:8px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  transform:translateX(-1px) rotate(45deg);
}

/* ---------- 水素療法LP 追加分 レスポンシブ（タブレット 〜1279px） ---------- */
@media (max-width:1279px) {
  .reason-body {
    flex-direction:column;
    gap:36px;
    max-width:640px;
  }
  .reason-image {
    flex:none;
    width:100%;
    max-width:520px;
  }
  .exp-body {
    flex-direction:column;
    gap:36px;
    max-width:600px;
    text-align:center;
  }
  .exp-image {
    flex:none;
    width:100%;
  }
  .exp-title {
    text-align:center;
  }
  .exp-text p {
    text-align:left;
  }
}

/* ---------- 水素療法LP 追加分 レスポンシブ（スマホ 〜768px） ---------- */
@media (max-width:768px) {
  .hydro-about {
    padding:24px 0 56px;
  }
  .reason {
    padding:54px 0 60px;
  }
  .reason-body {
    margin-top:40px;
    gap:28px;
  }
  .reason-list li {
    font-size:16px;
  }
  .reason-text p {
    font-size:15px;
  }
  .hydro-work {
    padding:48px 0 60px;
    margin-top:80px;
  }
  .hydro-work::before {
    width:240px;
    height:120px;
    border-radius:120px 120px 0 0;
  }
  .hwork-badge-wrap {
    top:-15px;
  }
  .hwork-grid {
    grid-template-columns:1fr;
    gap:22px;
    max-width:400px;
    margin-top:40px;
  }
  .hwork-img img {
    height:170px;
  }
  .hwork-card h3 {
    font-size:19px;
    margin:22px 24px 0;
  }
  .hwork-card p {
    margin:12px 24px 26px;
    font-size:15px;
  }
  .experience {
    padding:54px 0 60px;
  }
  .exp-body {
    gap:28px;
  }
  .exp-title {
    font-size:23px;
  }
  .exp-text p {
    font-size:15px;
  }
  .price {
    padding:54px 0 60px;
  }
  .price-table {
    margin-top:40px;
  }
  .price-row > div {
    padding:16px 18px;
    font-size:16px;
  }
  .synergy {
    padding:54px 0 60px;
  }
  .synergy-grid {
    margin-top:40px;
    gap:22px;
    max-width:400px;
  }
  .synergy-card {
    flex:0 1 100%;
    max-width:400px;
    flex-direction:column;
  }
  .synergy-thumb {
    flex:none;
  }
  .synergy-thumb img {
    height:145px;
    min-height:0;
  }
  .synergy-body {
    padding:24px 24px 28px;
  }
  .synergy-title {
    font-size:22px;
  }
  .synergy-desc {
    font-size:15px;
  }
  .synergy-arrow {
    right:18px;
    top:auto;
    bottom:22px;
    transform:none;
  }
}

/* ======================================================== */
/* ============ 水素療法LP 追加分（新規）ここまで ============ */
/* ======================================================== */
/* ======================================================== */
/* ====== 高濃度ビタミンC点滴LP 追加分（新規）ここから ====== */
/* ======================================================== */

/* ---------- 多列の価格表 ---------- */
.vc-price {
  max-width:1020px;
  margin:56px auto 0;
  border:1px solid #e2e8ee;
  border-top:none;
  overflow:hidden;
}

.vc-price-head {
  background:var(--periwinkle);
  color:#fff;
  font-size:19px;
  font-weight:700;
  text-align:center;
  padding:18px 20px;
  letter-spacing:.04em;
  font-family:"Zen Maru Gothic", sans-serif;
}

.vc-price-row {
  display:grid;
  grid-template-columns:0.9fr 1fr 1fr 1fr 1fr 1fr;
}

.vc-price-row:not(:last-child) {
  border-bottom:1px solid #e2e8ee;
}

.vc-price-c {
  padding:18px 10px;
  font-size:17px;
  color:var(--text-dark);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:600;
}

.vc-price-c:not(:last-child) {
  border-right:1px solid #e2e8ee;
}

.vc-price-label {
  color:var(--text-body);
  font-weight:600;
}

.vc-price-row--accent .vc-price-c {
  background:#fcf8e0;
}

/* ---------- サプリメントとの違い（合成画像2枚） ---------- */
.vc-compare {
  background:#fff;
  padding:70px 0 80px;
}

.vc-compare .eyebrow {
  margin-top:0;
}

.vc-compare-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  max-width:1000px;
  margin:56px auto 0;
}

.vc-compare-item {
  background:#fff;
  border:1px solid #e7eef4;
  border-radius:16px;
  padding:30px 26px;
  box-shadow:0 8px 24px rgba(86,130,170,.10);
}

.vc-compare-item img {
  width:100%;
  display:block;
}

.vc-compare-note {
  max-width:900px;
  margin:34px auto 0;
  font-size:16px;
  color:var(--text-body);
  line-height:1.9;
  text-align:left;
}

/* ---------- 安心感セクションの黄色注意ボックス（カード全幅で下に配置） ---------- */
.hydro-safety .se-card {
  flex-direction:column;
  align-items:stretch;
}

.se-row {
  display:flex;
  align-items:center;
}

.se-warn {
  margin-top:24px;
  padding:16px 20px;
  background:#fcf8e0;
  border-radius:10px;
  font-size:14px;
  line-height:1.7;
  color:var(--text-body);
}

/* ビタミンCのみ：右カード（黄色ボックス）の高さを抑え、左カードと高さを揃える */
.vc-safety .safety-card {
  padding:26px 30px;
}

.vc-safety .safety-photo {
  flex:0 0 170px;
  width:170px;
}

.vc-safety .safety-info {
  padding:18px 26px;
}

.vc-safety .se-text,
.vc-safety .se-symptom,
.vc-safety .se-note {
  line-height:1.55;
}

.vc-safety .se-symptom,
.vc-safety .se-note {
  margin-top:10px;
}

.vc-safety .se-warn {
  margin-top:14px;
  padding:12px 18px;
  line-height:1.6;
}

/* ---------- ABOUT補足テキスト（がん相談） ---------- */
.vc-about-text {
  max-width:1000px;
  margin:46px auto 0;
}

.vc-about-text p {
  font-size:16px;
  color:var(--text-body);
  line-height:2;
  margin-bottom:22px;
}

.vc-about-text strong {
  color:var(--text-dark);
  font-weight:700;
}

.vc-ref a {
  color:var(--blue-link);
  text-decoration:underline;
  text-underline-offset:2px;
}

/* ---------- 安全性と施術について（3枚カード） ---------- */
.vc-safe3 {
  background:#fff;
  padding:30px 0 80px;
}

.vc-safe3 .eyebrow {
  margin-top:0;
}

.vc-safe3-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px;
  max-width:1100px;
  margin:56px auto 0;
}

.vc-safe3-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(86,130,170,.14);
  text-align:center;
  padding-bottom:30px;
}

.vc-safe3-img img {
  width:100%;
  height:180px;
  object-fit:cover;
  display:block;
}

.vc-safe3-card h3 {
  font-size:21px;
  color:var(--blue-title);
  font-weight:700;
  margin:24px 24px 0;
  font-family:"Zen Maru Gothic", sans-serif;
}

.vc-safe3-card p {
  margin:14px 30px 0;
  font-size:15px;
  color:var(--text-body);
  line-height:1.7;
}

.vc-safe-text {
  max-width:1000px;
  margin:50px auto 0;
}

.vc-safe-text p {
  font-size:16px;
  color:var(--text-body);
  line-height:2;
  margin-bottom:22px;
}

.vc-alert {
  color:var(--coral);
  font-weight:700;
}

/* ---------- インターネット情報との違い ---------- */
.vc-net {
  background:#fff;
}

.vc-net-close {
  max-width:1000px;
  margin:46px auto 0;
  font-size:16px;
  color:var(--text-body);
  line-height:1.9;
  text-align:center;
}

/* ---------- ビタミンC点滴LP レスポンシブ（〜1279px） ---------- */
@media (max-width:1279px) {
  .vc-safe3-grid {
    grid-template-columns:1fr;
    max-width:480px;
  }
  .vc-compare-grid {
    grid-template-columns:1fr;
    max-width:520px;
  }
}

/* ---------- ビタミンC点滴LP レスポンシブ（〜768px） ---------- */
@media (max-width:768px) {
  .vc-hero .hero-title .dark {
    font-size:22px;
  }
  .vc-hero .hero-title .blue {
    font-size:24px;
    white-space:normal;
  }
  .vc-hero .hero-title .blue.vc-sub {
    font-size:18px;
  }
  .vc-compare {
    padding:54px 0 60px;
  }
  .vc-compare-note {
    font-size:15px;
  }
  .vc-safe3 {
    padding:24px 0 56px;
  }
  .vc-safe-text p,
  .vc-about-text p,
  .vc-net-close {
    font-size:15px;
  }
  /* 多列価格表：横スクロール可に */
  .vc-price {
    overflow-x:auto;
  }
  .vc-price-head,
  .vc-price-row {
    min-width:620px;
  }
  .vc-price-c {
    font-size:15px;
    padding:14px 8px;
  }
  .se-row {
    flex-direction: column;
  }
}

/* ======================================================== */
/* ====== EECP ====== */
/* ======================================================== */

.eecp-text {
  max-width:1080px;
  margin:46px auto 0;
}
.eecp-text p {
  font-size:16px;
  color:var(--text-body);
  line-height:2;
  max-width:1000px;
  margin:auto;
  text-align:left;
}
.eecp-text p + p {
  margin-top:22px;
}
.eecp-text strong {
  color:var(--text-dark);
  font-weight:700;
}
.eecp-text.center {
  text-align:center;
}
.eecp-about {
  background:#fff;
  padding:70px 0 80px;
}
.eecp-about .eyebrow {
  margin-top:0;
}
.eecp-cond {
  background:#fff;
  padding:30px 0 80px;
}
.eecp-cond .eyebrow {
  margin-top:0;
}
.eecp-cond-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  max-width:1120px;
  margin:56px auto 0;
}
.eecp-cond-card {
  background:#fff;
  border:2px solid #cfe6f5;
  border-radius:14px;
  padding:30px 36px;
  box-shadow:0 6px 18px rgba(86,130,170,.10);
}
.eecp-cond-card h3 {
  display:flex;
  align-items:center;
  gap:10px;
  font-size:21px;
  color:#3461c9;
  font-weight:700;
  margin-bottom:18px;
  font-family:"Zen Maru Gothic", sans-serif;
}
.eecp-cond-card h3 img {
  width:24px;
}
.eecp-cond-list {
  list-style:none;
}
.eecp-cond-list li {
  position:relative;
  padding-left:18px;
  font-size:16px;
  color:var(--text-body);
  line-height:1.5;
  margin: 0 0 8px;
  break-inside:avoid;
}
.eecp-cond-list li::before {
  content:"・";
  position:absolute;
  left:0;
}
.eecp-cond-list.cols2 {
  columns:2;
  column-gap:28px;
}
.eecp-attention .eecp-text {
  margin-top:40px;
}
.eecp-benefits {
  background:#fff;
  padding:30px 0 80px;
}
.eecp-benefits .eyebrow {
  margin-top:0;
}
.eecp-benefits-img {
  max-width:760px;
  margin:56px auto 0;
}
.eecp-benefits-img img {
  width:100%;
}
.eecp-flow-grid {
  grid-template-columns:repeat(3,1fr);
  gap:28px 24px;
}
.eecp-synergy .synergy-grid{
  justify-content:flex-start;
}
.eecp-synergy .eecp_end{
  max-width:535px;
}

/* レスポンシブ */
@media (max-width:1279px){
  .eecp-cond-grid {
    grid-template-columns:1fr;
    max-width:600px;
  }
  .eecp-flow-grid {
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width:1030px){
  .eecp-synergy .synergy-grid{
    justify-content:center;
  }
  .eecp-synergy .eecp_end{
    max-width:600px;
  }
}
@media (max-width:768px){
  .eecp-hero .hero-title .dark {
    font-size:23px;
  }
  .eecp-about,
  .eecp-cond,
  .eecp-benefits {
    padding:24px 0 56px;
  }
  .eecp-about {
    padding-top:54px;
  }
  .eecp-text p {
    font-size:15px;
  }
  .eecp-cond-card {
    padding:26px 24px;
  }
  .eecp-cond-card h3 {
    font-size:19px;
  }
  .eecp-cond-list li {
    font-size:15px;
  }
  .eecp-cond-list.cols2 {
    columns:1;
  }
  .eecp-flow-grid {
    grid-template-columns:1fr;
    max-width:400px;
    margin-left:auto;
    margin-right:auto;
  }
}
/* ======================================================== */
/* ====== マイヤーズカクテル ====== */
/* ======================================================== */
.my-comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1080px;
  margin: 56px auto 0;
}
.my-card-title {
  margin-bottom: 16px;
  color: var(--blue-title);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.my-card-desc {
  margin-top: 16px;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
  font-weight: 500;
}
.price-note {
  max-width: 700px;
  margin: 18px auto 0;
  color: var(--text-fine);
  font-size: 16px;
  text-align: center;
}
@media (max-width: 1279px) {
  .my-comp-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .price-note {
    text-align: left;
    padding: 0 20px;
  }
}
/* ======================================================== */
/* ====== プラセンタ ====== */
/* ======================================================== */
.pl-reason {
  background: #fff;
  padding: 30px 0 80px;
}
.pl-reason .eyebrow {
  margin-top: 0;
}
.pl-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 56px auto 0;
}
.pl-reason-card {
  position: relative;
  min-height: 300px;
  padding: 46px 40px 52px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.pl-reason-num {
  display: block;
  color: #9fb6d6;
  font-family: "Inter", sans-serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.pl-reason-card h3 {
  margin: 6px 0 14px;
  color: var(--text-dark);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.pl-reason-card p {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.85;
}
.pl-reason-note {
  max-width: 900px;
  margin: 46px auto 0;
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.9;
  text-align: center;
}
@media (max-width: 1279px) {
  .pl-reason-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .pl-reason {
    padding: 24px 0 56px;
  }
  .pl-reason-card {
    min-height: 0;
    padding: 38px 32px 42px;
  }
  .pl-reason-note {
    font-size: 15px;
  }
}
.gl-mech img {
  width: 100%;
  height: auto;
  display: block;
}
.vc-price.cols3 .vc-price-row {
  grid-template-columns: 0.9fr 1fr 1fr 1fr;
}
.sp-info-box {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 24px 30px;
  background: #f0f2f5;
  border-radius: 10px;
  text-align: center;
}
.sp-info-box h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.sp-info-box p {
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  text-align:left;
}
.sp-info-box p span{
  color: var(--coral);
}
.vc-add{
  max-width: 1020px;
}
.vc-add .price-c2{
  background: #fcf8e0;
}
.vc-add span{
  color: var(--coral);
  font-size: 14px;
  padding-left: 5px;
}

.cancer-area{
  flex-wrap: wrap;
  justify-content: center;
}
.cancer-area .manjaro-cards{
  flex-basis: 100%;
  display: flex;
  flex-direction: unset;
  flex-wrap: wrap;
  justify-content: center;
}
.cancer-area .manjaro-card{
    flex-basis: 40%;
}
@media (max-width: 768px) {
  .cancer-area .manjaro-card{
    flex-basis: 100%;
  }
}
.youtube-wrap {
  max-width: 900px;
  margin: 50px auto;
  position: relative;
  aspect-ratio: 900 / 664;
}

.youtube-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.ozone-table{
  max-width: 1020px;
}
.ozone-table .price-c2{
  text-align: center;
  display: block;
}
.ozone-table .price-c2 b{
  font-size:13px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ozone-close{
    text-align:left;
  }
}

.nutrition-add{
  display: flex;
  gap: 25px;
}
.nutrition-add .sp-info-box{
  flex:1 1 500px;
}
@media (max-width: 768px) {
  .nutrition-add{
    flex-wrap:wrap;
    gap:0;
  }
}

.tenteki-cert{
  display:flex;
  gap:35px;
  align-items:center;
  margin:55px 0 0;
  padding:18px 22px;
  background:#fff;
  border:1px solid #dcebf3;
  border-radius:12px;
  box-shadow:0 5px 18px rgba(20,80,120,.08);
}
.tenteki-cert__badge{
  width:200px;
  height:auto;
  flex:none;
  border-radius:8px;
  box-shadow:0 6px 18px rgba(20,60,55,.28);
}
.tenteki-cert__body{flex:1;}
.tenteki-cert__tag{
  display:inline-block;
  margin-bottom:9px;
  padding:3px 10px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.12em;
  color:#1f7a6b;
  background:#e7f4f0;
  border:1px solid #c7e6dd;
  border-radius:999px;
}
.tenteki-cert__text{
  margin:0;
  font-size:17px;
  line-height:1.95;
  font-weight:400;
  color:var(--text-dark);
}
.tenteki-cert__text strong{
  color:#0d96cb;
  font-weight:700;
}

/* スマホ表示：縦並びに */
@media (max-width:600px){
  .tenteki-cert{flex-direction:column;text-align:center;gap:14px;}
  .tenteki-cert__badge{width:180px;height:auto;}
}
.glutathione-box .eecp-cond-list{
  margin-top:10px;
}
.glutathione-box .eecp-cond-list li{
  padding-left:0;
}
.glutathione-box .eecp-cond-list li::before{
  display:none;
}