:root{
  --blue:#3BA8D8;
  --blue-dark:#2A8BBB;
  --pink:#E0478A;
  --pink-dark:#c73577;
  --dark:#1A2E3B;
  --text:#4A6A7A;
  --muted:#6B8A9A;
  --line:#d0e8f5;
  --bg:#f4f9fd;
  --white:#fff;
}

.gastronomy-lp{
  overflow-x:hidden;
  background:#fff;
  color:var(--dark);
  font-family:"Noto Sans JP", sans-serif;
}

.lp-container{
  width:min(1100px, calc(100% - 40px));
  margin:0 auto;
}

.lp-section{
  padding:80px 0;
}

.lp-section--white{
  background:#fff;
}

.lp-section--blue-bg{
  background:var(--bg);
}

.lp-section-head{
  text-align:center;
  margin-bottom:56px;
}

.lp-section-head h2,
.lp-left-title{
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.35;
  font-weight:900;
  color:var(--dark);
  margin:0;
}

.lp-section-head p:last-child{
  color:var(--muted);
  font-size:14px;
  margin-top:10px;
}

.lp-eyebrow{
  color:var(--blue);
  font-size:12px;
  letter-spacing:.24em;
  text-transform:uppercase;
  font-weight:700;
  margin:0 0 10px;
}

.lp-eyebrow--pink{
  color:var(--pink);
}

.lp-eyebrow--white{
  color:rgba(255,255,255,.72);
}

.lp-mini-title{
  font-size:28px;
  color:var(--blue);
  font-weight:700;
  margin:0 0 12px;
}

.lp-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border-radius:999px;
  font-weight:800;
  transition:.3s ease;
  background:var(--blue);
  color:#fff;
  padding:16px 30px;
  box-shadow:0 4px 20px rgba(59,168,216,.25);
}

.lp-btn:hover{
  transform:translateY(-2px);
}

.lp-btn--small{
  padding:10px 18px;
  font-size:12px;
}

.lp-btn--hero{
  font-size:16px;
  padding:18px 34px;
}

.lp-btn--grad{
  background:linear-gradient(135deg,var(--blue),var(--pink));
}

.lp-btn--white{
  background:#fff;
  color:var(--blue);
  box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.lp-btn--line{
  background:transparent;
  border:2px solid rgba(255,255,255,.65);
  color:#fff;
  box-shadow:none;
}

.lp-header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:100;
  transition:.3s ease;
  background:transparent;
}

.lp-header.is-scrolled{
  background:rgba(255,255,255,.96);
  box-shadow:0 1px 20px rgba(59,168,216,.12);
  backdrop-filter:blur(12px);
}

.lp-header__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}

.lp-header__brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.lp-header__brand img{
  width:40px;
  height:40px;
  object-fit:contain;
}

.lp-header__title{
  font-size:14px;
  line-height:1.4;
  font-weight:700;
  color:#fff;
  transition:.3s ease;
}

.lp-header__sub{
  font-size:12px;
  color:rgba(255,255,255,.8);
  transition:.3s ease;
}

.lp-header.is-scrolled .lp-header__title{
  color:var(--dark);
}

.lp-header.is-scrolled .lp-header__sub{
  color:var(--muted);
}

.lp-hero{
  position:relative;
  min-height:680px;
  height:100vh;
  max-height:900px;
  display:flex;
  align-items:flex-end;
  background-size:cover;
  background-position:center;
}

.lp-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(10,30,50,.80) 0%, rgba(10,30,50,.35) 50%, rgba(10,30,50,.05) 100%);
}

.lp-hero__overlay-blue{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(59,168,216,.20) 0%, transparent 60%);
}

.lp-hero__content{
  position:relative;
  z-index:2;
  padding-bottom:70px;
}

.lp-badge{
  display:inline-flex;
  align-items:center;
  padding:8px 16px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
  color:#fff;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  margin-bottom:20px;
}

.lp-hero__title{
  font-size:clamp(40px, 6vw, 74px);
  line-height:1.18;
  font-weight:900;
  color:#fff;
  margin:0 0 20px;
}

.lp-hero__title span{
  color:#5CC8F0;
}

.lp-hero__lead{
  max-width:560px;
  color:rgba(255,255,255,.86);
  font-size:18px;
  line-height:1.9;
  margin-bottom:30px;
}

.lp-hero__chips{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:30px;
}

.lp-chip{
  border:1px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.12);
  backdrop-filter:blur(6px);
  color:#fff;
  border-radius:999px;
  padding:10px 16px;
  font-size:14px;
}

.lp-grid{
  display:grid;
  gap:32px;
}

.lp-grid--2col{
  grid-template-columns:repeat(2, 1fr);
}

.lp-grid--center{
  align-items:center;
}

.lp-symptom-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.lp-symptom-item{
  display:flex;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  background:#f7fbfe;
  border-radius:14px;
  border-left:4px solid var(--blue);
}

.lp-symptom-item.is-pink{
  border-left-color:var(--pink);
}

.lp-symptom-mark{
  color:var(--blue);
  font-size:14px;
  flex-shrink:0;
}

.lp-symptom-item.is-pink .lp-symptom-mark{
  color:var(--pink);
}

.lp-photo-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
}

.lp-photo-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.lp-photo-card__caption{
  position:absolute;
  left:20px;
  right:20px;
  bottom:20px;
  background:rgba(59,168,216,.85);
  color:#fff;
  border-radius:14px;
  padding:16px 18px;
  font-weight:700;
  font-size:14px;
}

.lp-feature-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  margin-bottom:24px;
}

.lp-feature-block--reverse .lp-feature-block__img{
  order:2;
}

.lp-feature-block--reverse .lp-feature-block__text{
  order:1;
}

.lp-feature-block__img{
  position:relative;
  min-height:320px;
}

.lp-feature-block__img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.lp-feature-number{
  position:absolute;
  top:18px;
  left:20px;
  font-size:72px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.4);
}

.lp-feature-block--reverse .lp-feature-number{
  left:auto;
  right:20px;
}

.lp-feature-block__text{
  padding:44px 40px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.lp-feature-label{
  color:var(--blue);
  font-size:12px;
  letter-spacing:.2em;
  font-weight:700;
  margin-bottom:12px;
}

.lp-feature-label--pink{
  color:var(--pink);
}

.lp-feature-block__text h3{
  font-size:38px;
  line-height:1.35;
  font-weight:900;
  margin:0 0 18px;
}

.lp-feature-block__text h3 span{
  color:var(--blue);
}

.lp-feature-block__text h3 .pink{
  color:var(--pink);
}

.lp-feature-block__text p{
  color:var(--muted);
  line-height:1.9;
  margin:0;
}

.lp-doctor-photo-wrap{
  position:relative;
  max-width:420px;
  margin:0 auto;
}

.lp-doctor-photo{
  aspect-ratio:1 / 1;
  border-radius:50%;
  overflow:hidden;
  border:4px solid #fff;
  box-shadow:0 8px 48px rgba(59,168,216,.2);
}

.lp-doctor-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:top;
  display:block;
}

.lp-doctor-badge{
  position:absolute;
  right:0;
  bottom:18px;
  background:var(--blue);
  color:#fff;
  border-radius:18px;
  padding:14px 18px;
  box-shadow:0 10px 24px rgba(59,168,216,.28);
}

.lp-doctor-badge p{
  font-size:12px;
  margin:0 0 4px;
  opacity:.8;
}

.lp-doctor-badge strong{
  font-size:20px;
}

.lp-trust-list{
  margin:26px 0 28px;
}

.lp-trust-item{
  display:flex;
  align-items:center;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid #e8f5fc;
}

.lp-trust-item span{
  font-size:28px;
  font-weight:900;
  color:rgba(59,168,216,.35);
}

.lp-trust-item p{
  margin:0;
  font-weight:700;
}

.lp-arrow-text{
  color:var(--blue);
  font-size:14px;
  font-weight:700;
}

.lp-early{
  padding:0;
}

.lp-early__inner{
  display:grid;
  grid-template-columns:45% 55%;
  align-items:stretch;
}

.lp-early__content{
  padding:80px 50px;
}

.lp-early__content h2 span{
  color:var(--blue);
}

.lp-early__lead{
  color:var(--text);
  line-height:1.9;
  margin:0 0 28px;
}

.lp-tag-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-bottom:30px;
}

.lp-tag{
  background:#fff;
  border-radius:14px;
  padding:14px 16px;
  font-weight:700;
  border:1px solid rgba(59,168,216,.35);
}

.lp-tag.is-pink{
  border-color:rgba(224,71,138,.35);
}

.lp-early__cta{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.lp-note-box{
  border:1px solid #e0f0fa;
  background:#fff;
  border-radius:16px;
  padding:14px 18px;
  font-size:14px;
  font-weight:700;
}

.lp-early__image{
  min-height:600px;
}

.lp-early__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center top;
  display:block;
}

.lp-choose{
  padding-top:0;
}

.lp-choose__head{
  text-align:center;
  padding:70px 20px 60px;
  background:linear-gradient(135deg,#f4f9fd 0%, #e8f5fc 100%);
}

.lp-choose__head h2{
  font-size:clamp(28px, 4vw, 42px);
  line-height:1.4;
  font-weight:900;
  margin:0 0 12px;
}

.lp-choose__head p:last-child{
  color:var(--muted);
  font-size:14px;
}

.lp-card-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
  margin-top:-28px;
}

.lp-choice-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  padding:32px;
  min-height:220px;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.lp-choice-card__label{
  margin:0 0 10px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  position:relative;
  z-index:2;
}

.lp-choice-card h3{
  margin:0 0 12px;
  font-size:32px;
  line-height:1.3;
  font-weight:900;
  position:relative;
  z-index:2;
}

.lp-choice-card p{
  margin:0;
  line-height:1.8;
  position:relative;
  z-index:2;
}

/* 上2枚 */
.lp-choice-card.blue,
.lp-choice-card.pink{
  color:#fff;
}

.lp-choice-card.blue{
  background:linear-gradient(135deg,#1ea7f3 0%, #1198e8 100%);
}

.lp-choice-card.pink{
  background:linear-gradient(135deg,#dd3f98 0%, #c92f88 100%);
}

/* 右上の薄い背景アイコンに置き換え */
.lp-choice-card.blue::before,
.lp-choice-card.pink::before{
  content:"";
  position:absolute;
  top:18px;
  right:22px;
  width:92px;
  height:92px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:92px 92px;
  opacity:.14;
  z-index:1;
}

/* 青カード：地図アイコン */
.lp-choice-card.blue::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-6-5.33-6-10a6 6 0 0 1 12 0c0 4.67-6 10-6 10z'/><circle cx='12' cy='11' r='2.5'/></svg>");
}

/* ピンクカード：カレンダーアイコン */
.lp-choice-card.pink::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M16 3v4'/><path d='M8 3v4'/><path d='M3 10h18'/></svg>");
}

/* 丸の輪っかを消す */
.lp-choice-card.blue::after,
.lp-choice-card.pink::after{
  content:none;
}

/* 上カードのアイコン風 */
.lp-choice-card.blue .lp-choice-card__label::before,
.lp-choice-card.pink .lp-choice-card__label::before{
  content:"";
  display:block;
  width:48px;
  height:48px;
  margin-bottom:18px;
  border-radius:14px;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  background-repeat:no-repeat;
  background-position:center;
  background-size:22px 22px;
}

.lp-choice-card.blue .lp-choice-card__label::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s-6-5.33-6-10a6 6 0 0 1 12 0c0 4.67-6 10-6 10z'/><circle cx='12' cy='11' r='2.5'/></svg>");
}

.lp-choice-card.pink .lp-choice-card__label::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M16 3v4'/><path d='M8 3v4'/><path d='M3 10h18'/></svg>");
}

/* 下2枚 */
.lp-choice-card.white-blue,
.lp-choice-card.white-pink{
  background:#fff;
  border:1px solid #e8edf3;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

/* 左端のカラーライン */
.lp-choice-card.white-blue::before,
.lp-choice-card.white-pink::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:4px;
  height:100%;
  border-radius:24px 0 0 24px;
}

.lp-choice-card.white-blue::before{
  background:linear-gradient(180deg,#2caaf3 0%, #148fdf 100%);
}

.lp-choice-card.white-pink::before{
  background:linear-gradient(180deg,#df469c 0%, #c92f88 100%);
}

.lp-choice-card.white-blue .lp-choice-card__label,
.lp-choice-card.white-pink .lp-choice-card__label{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:0;
  margin-bottom:10px;
}

.lp-choice-card.white-blue .lp-choice-card__label{
  color:var(--blue);
}

.lp-choice-card.white-pink .lp-choice-card__label{
  color:var(--pink);
}

/* 下カード左上のアイコン */
.lp-choice-card.white-blue .lp-choice-card__label::before,
.lp-choice-card.white-pink .lp-choice-card__label::before{
  content:"";
  display:block;
  width:50px;
  height:50px;
  margin-bottom:16px;
  border-radius:16px;
  background-repeat:no-repeat;
  background-position:center;
  background-size:22px 22px;
  box-shadow:0 8px 18px rgba(0,0,0,.08);
}

.lp-choice-card.white-blue .lp-choice-card__label::before{
  background-color:var(--blue);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='8'/><path d='M12 8v4l2.5 2.5'/></svg>");
}

.lp-choice-card.white-pink .lp-choice-card__label::before{
  background-color:var(--pink);
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M16 3v4'/><path d='M8 3v4'/><path d='M3 10h18'/></svg>");
}

.lp-choice-card__note{
  display:inline-block;
  margin-top:16px;
  font-size:12px;
  font-weight:700;
  border-radius:999px;
  padding:8px 12px;
  position:relative;
  z-index:2;
  background:#eef8fd;
  color:var(--blue);
}

.lp-choice-card.white-pink .lp-choice-card__note{
  background:#fff0f7;
  color:var(--pink);
}

@media (max-width: 900px){
  .lp-card-grid{
    grid-template-columns:1fr;
    margin-top:0;
  }
}

@media (max-width: 640px){
  .lp-choice-card{
    padding:24px 20px;
    min-height:auto;
  }

  .lp-choice-card h3{
    font-size:24px;
  }

  .lp-choice-card.blue::before,
  .lp-choice-card.pink::before{
    width:96px;
    height:96px;
  }

  .lp-choice-card.blue::after,
  .lp-choice-card.pink::after{
    width:62px;
    height:62px;
    top:18px;
    right:18px;
  }
}

.lp-step-list{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.lp-step-item{
  display:grid;
  grid-template-columns:180px 1fr;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  border:1px solid #e0f0fa;
  box-shadow:0 6px 16px rgba(0,0,0,.04);
}



.lp-step-item.blue .lp-step-item__left{
  background:linear-gradient(160deg,#2caaf3 0%, #148fdf 100%);
}

.lp-step-item.pink .lp-step-item__left{
  background:linear-gradient(160deg,#df469c 0%, #c92f88 100%);
}

.lp-step-item__left{
  padding:26px 18px 18px;
  text-align:center;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  position:relative;
}

.lp-step-item__left::before{
  content:"";
  display:block;
  width:54px;
  height:54px;
  margin:0 auto 14px;
  border-radius:16px;
  background:rgba(255,255,255,.16);
  background-repeat:no-repeat;
  background-position:center;
  background-size:24px 24px;
  order:1;
}

.lp-step-item__step{
  display:block;
  font-size:11px;
  letter-spacing:.16em;
  opacity:.7;
  margin-bottom:14px;
  order:2;
}

.lp-step-item__num{
  order:3;
  margin-top:auto;
  font-size:56px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.24);
}

.lp-step-item.blue:nth-child(1) .lp-step-item__left::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><rect x='3' y='5' width='18' height='16' rx='2'/><path d='M16 3v4'/><path d='M8 3v4'/><path d='M3 10h18'/></svg>");
}

.lp-step-item.pink:nth-child(2) .lp-step-item__left::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/><polyline points='14 2 14 8 20 8'/><line x1='16' y1='13' x2='8' y2='13'/><line x1='16' y1='17' x2='8' y2='17'/><polyline points='10 9 9 9 8 9'/></svg>");
}

.lp-step-item.blue:nth-child(3) .lp-step-item__left::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 12h-4l-3 9L9 3l-3 9H2'/></svg>");
}

.lp-step-item.pink:nth-child(4) .lp-step-item__left::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><circle cx='12' cy='12' r='10'/><polyline points='12 6 12 12 16 14'/></svg>");
}

.lp-step-item.blue:nth-child(5) .lp-step-item__left::before{
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'><path d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/><polyline points='22 4 12 14.01 9 11.01'/></svg>");
}

.lp-step-item__num{
  margin-top:auto;
  font-size:56px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.24);
}

.lp-step-item__right{
  padding:30px 34px;
}

.lp-step-item__head{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
  margin-bottom:14px;
}

.lp-step-item__head h3{
  margin:0;
  font-size:20px;
  font-weight:900;
  color:var(--dark);
}

.lp-step-item__head span{
  display:inline-block;
  font-size:12px;
  padding:7px 12px;
  border-radius:999px;
  background:#2caaf3;
  color:#fff;
  font-weight:700;
  line-height:1;
}

.lp-step-item.pink .lp-step-item__head span{
  background:#df469c;
}

.lp-step-item__right p{
  margin:0 0 10px;
  color:var(--muted);
  line-height:1.8;
}

.lp-step-item__right small{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}

.lp-step-item__right small::before{
  content:"";
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--blue);
  flex-shrink:0;
}

.lp-step-item.pink .lp-step-item__right small::before{
  background:var(--pink);
}

.lp-section-cta{
  text-align:center;
  margin-top:40px;
}

.lp-fee-table{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.lp-fee-table__head,
.lp-fee-table__row{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr;
}

.lp-fee-table__head{
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:#fff;
  font-weight:700;
}

.lp-fee-table__head > div,
.lp-fee-table__row > div{
  padding:22px 24px;
}

.lp-fee-table__head > div:not(:first-child),
.lp-fee-table__row > div:not(:first-child){
  border-left:1px solid rgba(255,255,255,.2);
}

.lp-fee-table__row{
  border-top:1px solid #e8f3fa;
}

.lp-fee-table__row:nth-child(odd){
  background:#fafcfe;
}

.lp-fee-table__label{
  font-weight:700;
}

.lp-fee-table__label.is-blue::before,
.lp-fee-table__label.is-pink::before{
  content:"●";
  margin-right:8px;
}

.lp-fee-table__label.is-blue::before{
  color:var(--blue);
}

.lp-fee-table__label.is-pink::before{
  color:var(--pink);
}

.lp-fee-table__row > div:nth-child(2){
  color:var(--blue);
  font-weight:900;
}

.lp-fee-table__row > div:nth-child(3){
  color:var(--dark);
  font-weight:900;
}

.lp-fee-table__foot{
  background:var(--bg);
  border-top:1px solid var(--line);
  padding:16px 24px;
  font-size:13px;
  color:#9BAAB5;
}

.lp-small-note{
  text-align:center;
  color:#9BAAB5;
  font-size:12px;
  margin-top:24px;
}

.lp-faq{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.04);
}

.lp-faq-item + .lp-faq-item{
  border-top:1px solid #e8f3fa;
}

.lp-faq-question{
  width:100%;
  background:none;
  border:none;
  display:flex;
  align-items:center;
  gap:16px;
  text-align:left;
  padding:24px 28px;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
  color:var(--dark);
}

.lp-faq-question > span:nth-child(2){
  flex:1;
  text-align:left;
}

.lp-faq-toggle{
  margin-left:auto;
  color:var(--blue);
  font-size:20px;
  flex-shrink:0;
}

.lp-faq-q{
  color:var(--blue);
  font-weight:900;
  margin-right:8px;
}

.lp-faq-toggle{
  color:var(--blue);
  font-size:20px;
  flex-shrink:0;
}

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

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

.lp-faq-item.is-open .lp-faq-toggle{
  transform:rotate(45deg);
}

.lp-faq-answer__inner{
  display:flex;
  gap:12px;
  padding:0 28px 24px;
}

.lp-faq-a{
  color:var(--pink);
  font-weight:900;
  flex-shrink:0;
}

.lp-faq-answer__inner p{
  margin:0;
  line-height:1.9;
  color:var(--dark);
}

.lp-cta{
  position:relative;
  background-size:cover;
  background-position:center;
  padding:100px 0;
}

.lp-cta__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(59,168,216,.92), rgba(42,139,187,.92));
}

.lp-cta__content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
}

.lp-cta__content h2{
  font-size:clamp(30px, 4vw, 56px);
  line-height:1.35;
  font-weight:900;
  margin:0 0 16px;
}

.lp-cta__content p{
  margin:0 0 32px;
  color:rgba(255,255,255,.85);
}

.lp-cta__buttons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:16px;
}

.lp-footer{
  background:#0f1e2b;
  color:#fff;
  padding:48px 0 30px;
}

.lp-footer__top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  padding-bottom:28px;
}

.lp-footer__brand{
  display:flex;
  align-items:center;
  gap:16px;
}

.lp-footer__brand img{
  width:48px;
  height:48px;
  object-fit:contain;
}

.lp-footer__brand p{
  margin:0 0 4px;
  font-weight:700;
}

.lp-footer__brand small,
.lp-footer__info p{
  color:rgba(255,255,255,.5);
  font-size:12px;
}

.lp-footer__info p{
  margin:0 0 6px;
}

.lp-footer__bottom{
  border-top:1px solid rgba(255,255,255,.1);
  padding-top:20px;
  text-align:center;
  color:rgba(255,255,255,.3);
  font-size:12px;
}

.lp-floating-cta{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:120;
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:.3s ease;
}

.lp-floating-cta.is-show{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

.lp-floating-cta a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  background:var(--pink);
  color:#fff;
  border-radius:999px;
  padding:14px 20px;
  font-size:14px;
  font-weight:700;
  box-shadow:0 4px 20px rgba(224,71,138,.5);
}

.js-fade-in{
  opacity:1;
  transform:none;
  transition:opacity .7s ease, transform .7s ease;
}

.js-fade-in.fade-left,
.js-fade-in.fade-right{
  transform:none;
}

.js-fade-in.is-visible{
  opacity:1;
  transform:none;
}

@media (max-width: 900px){
  .lp-grid--2col,
  .lp-feature-block,
  .lp-early__inner,
  .lp-card-grid,
  .lp-step-item,
  .lp-fee-table__head,
  .lp-fee-table__row,
  .lp-footer__top{
    grid-template-columns:1fr;
  }

  .lp-feature-block--reverse .lp-feature-block__img,
  .lp-feature-block--reverse .lp-feature-block__text{
    order:initial;
  }

  .lp-header__title{
    font-size:13px;
  }

  .lp-hero{
    min-height:620px;
    height:auto;
    padding-top:120px;
  }

  .lp-hero__content{
    padding-bottom:50px;
  }

  .lp-photo-card img{
    height:320px;
  }

  .lp-feature-block__img{
    min-height:260px;
  }

  .lp-feature-block__text{
    padding:32px 24px;
  }

  .lp-feature-block__text h3{
    font-size:30px;
  }

  .lp-early__content{
    padding:56px 20px 30px;
  }

  .lp-early__image{
    min-height:280px;
    order:-1;
  }

  .lp-card-grid{
    margin-top:0;
  }

  .lp-choice-card h3{
    font-size:26px;
  }

  .lp-step-item__left{
    padding:20px;
  }

  .lp-step-item__num{
    font-size:36px;
  }

  .lp-step-item__right{
    padding:22px 20px;
  }

  .lp-fee-table__head{
    display:none;
  }

  .lp-fee-table__row{
    border-top:1px solid #e8f3fa;
  }

  .lp-fee-table__row > div{
    border-left:none !important;
    padding:14px 18px;
  }

  .lp-fee-table__row > div:nth-child(1){
    background:#f9fcfe;
    font-size:14px;
  }

  .lp-fee-table__row > div:nth-child(2)::before{
    content:"3割負担 ";
    color:var(--muted);
    font-weight:500;
    margin-right:6px;
  }

  .lp-fee-table__row > div:nth-child(3)::before{
    content:"1割負担 ";
    color:var(--muted);
    font-weight:500;
    margin-right:6px;
  }

  .lp-faq-question{
    padding:20px 18px;
    font-size:15px;
  }

  .lp-faq-answer__inner{
    padding:0 18px 20px;
  }

  .lp-footer__top{
    display:flex;
    flex-direction:column;
  }
}

@media (max-width: 640px){
  .lp-container{
    width:min(100% - 24px, 1100px);
  }

  .lp-section{
    padding:64px 0;
  }

  .lp-header__inner{
    padding:10px 0;
  }

  .lp-header__brand img{
    width:34px;
    height:34px;
  }

  .lp-btn--small{
    padding:10px 14px;
    font-size:11px;
  }

  .lp-hero__title{
    font-size:40px;
  }

  .lp-hero__lead{
    font-size:15px;
    line-height:1.8;
  }

  .lp-chip{
    font-size:12px;
    padding:8px 12px;
  }

  .lp-btn--hero{
    width:100%;
    font-size:14px;
    padding:16px 18px;
  }

  .lp-doctor-badge{
    right:auto;
    left:16px;
    bottom:12px;
    padding:12px 14px;
  }

  .lp-tag-grid{
    grid-template-columns:1fr 1fr;
  }

  .lp-early__cta{
    flex-direction:column;
    align-items:stretch;
  }

  .lp-note-box{
    text-align:center;
  }

  .lp-cta{
    padding:80px 0;
  }

  .lp-cta__buttons{
    flex-direction:column;
  }

  .lp-btn--white,
  .lp-btn--line{
    width:100%;
  }

  .lp-floating-cta{
    right:12px;
    bottom:12px;
  }
}

.js-fade-in{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.js-fade-in.fade-left{
  transform: translateX(-28px);
}

.js-fade-in.fade-right{
  transform: translateX(28px);
}

.js-fade-in.is-visible{
  opacity: 1;
  transform: translate(0);
}

/* =========================
   Colonoscopy only
========================= */

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

.lp-empathy-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-bottom:32px;
}

.lp-empathy-card{
  display:flex;
  align-items:center;
  gap:18px;
  background:#fff;
  border:1px solid rgba(59,168,216,.15);
  border-radius:16px;
  padding:22px 24px;
  box-shadow:0 2px 10px rgba(59,168,216,.05);
}

.lp-empathy-card__icon{
  width:48px;
  height:48px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(59,168,216,.12);
  color:var(--blue);
  font-size:14px;
  font-weight:900;
}

.lp-empathy-card p{
  margin:0;
  font-size:16px;
  font-weight:700;
  color:var(--dark);
}

.lp-empathy-note{
  display:flex;
  align-items:stretch;
  gap:16px;
  padding:20px 22px;
  border-radius:16px;
  background:rgba(59,168,216,.08);
  border:1px solid rgba(59,168,216,.22);
}

.lp-empathy-note__line{
  width:4px;
  border-radius:999px;
  background:var(--blue);
  flex-shrink:0;
}

.lp-empathy-note p{
  margin:0;
  color:#2a4a5e;
  line-height:1.9;
  font-size:15px;
}

.lp-polyp-card{
  display:grid;
  grid-template-columns:3fr 2fr;
  border:1.5px solid rgba(59,168,216,.15);
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 8px 30px rgba(59,168,216,.08);
}

.lp-polyp-card__image{
  position:relative;
  min-height:320px;
}

.lp-polyp-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.lp-polyp-card__badge{
  position:absolute;
  top:18px;
  left:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  background:var(--blue);
  color:#fff;
  border-radius:999px;
  font-size:12px;
  font-weight:700;
}

.lp-polyp-card__content{
  background:#f7fbfe;
  padding:40px 34px;
  display:flex;
  align-items:center;
}

.lp-polyp-list{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.lp-polyp-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.lp-polyp-item__icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  background:rgba(59,168,216,.15);
  color:var(--blue);
  font-size:13px;
  font-weight:900;
}

.lp-polyp-item__title{
  margin:0 0 6px;
  color:var(--dark);
  font-size:15px;
  font-weight:800;
}

.lp-polyp-item__desc{
  margin:0;
  color:#5a7a8a;
  font-size:13px;
  line-height:1.8;
}

.lp-faq-question{
  align-items:flex-start;
}

.lp-faq-question__text{
  flex:1;
  text-align:left;
  display:block;
}

@media (max-width:900px){
  .lp-empathy-grid{
    grid-template-columns:1fr;
  }

  .lp-polyp-card{
    grid-template-columns:1fr;
  }

  .lp-polyp-card__image{
    min-height:260px;
  }

  .lp-polyp-card__content{
    padding:28px 20px;
  }
}

@media (max-width: 640px){

  /* 右上ヘッダーCTA */
  .lp-btn--small{
    font-size: 10px;
    padding: 8px 10px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    min-width: 72px;
  }

  /* 右下フローティングCTA */
  .lp-floating-cta a{
    font-size: 11px;
    padding: 10px 12px;
    line-height: 1.2;
    white-space: normal;
    text-align: center;
    max-width: 82px;
  }

  /* 胃カメラ・大腸カメラ共通：見出しを少しだけ小さく */
  .lp-section-head h2{
    font-size: 26px;
    line-height: 1.45;
  }

  .lp-feature-block__text h3{
    font-size: 26px;
    line-height: 1.45;
  }

  .lp-early__content h2{
    font-size: 26px;
    line-height: 1.45;
  }

  .lp-choose__head h2{
    font-size: 24px;
    line-height: 1.5;
  }

  .lp-cta__content h2{
    font-size: 28px;
    line-height: 1.45;
  }
}

@media (max-width: 640px){

  /* 右上ヘッダーCTA */
  .lp-btn--small{
    font-size:10px !important;
    padding:8px 10px !important;
    line-height:1.2 !important;
    min-width:72px !important;
    white-space:normal !important;
    text-align:center !important;
  }

  /* ヒーローの青いCTA */
  .lp-hero__content .lp-btn--hero{
    display:flex !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding:12px 14px !important;
    font-size:12px !important;
    line-height:1.35 !important;
    text-align:center !important;
    white-space:normal !important;
    word-break:keep-all !important;
    box-sizing:border-box !important;
  }

  /* フッター前の2つのCTA */
  .lp-cta__buttons{
    gap:10px !important;
  }

  .lp-cta__buttons .lp-btn{
    display:flex !important;
    width:100% !important;
    max-width:100% !important;
    min-width:0 !important;
    padding:12px 14px !important;
    font-size:12px !important;
    line-height:1.35 !important;
    text-align:center !important;
    white-space:normal !important;
    word-break:keep-all !important;
    box-sizing:border-box !important;
  }

  /* 右下の固定CTA */
  .lp-floating-cta a{
    font-size:11px !important;
    padding:10px 12px !important;
    line-height:1.2 !important;
    max-width:82px !important;
    white-space:normal !important;
    text-align:center !important;
    box-sizing:border-box !important;
  }
}

/* ======================
   LP 情報ブロック
====================== */

.lp-info{
  max-width: 720px;
  margin: 80px auto;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
}

.lp-info__lead{
  font-size: 14px;
  line-height: 1.9;
  color: #4A6A7A;
  margin-bottom: 32px;
}

.lp-info__box{
  background: #fff;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  border: 1px solid #e8f3fa;
}

.lp-info__row{
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eef6fb;
}

.lp-info__row:last-child{
  border-bottom: none;
}

.lp-info__label{
  min-width: 90px;
  font-weight: 700;
  color: #3BA8D8;
  font-size: 13px;
}

.lp-info__value{
  flex: 1;
  font-size: 14px;
  line-height: 1.7;
  color: #1A2E3B;
}

/* スマホ */
@media (max-width: 640px){
  .lp-info{
    margin: 50px auto;
  }

  .lp-info__row{
    flex-direction: column;
    gap: 6px;
  }

  .lp-info__label{
    font-size: 12px;
  }

  .lp-info__value{
    font-size: 13px;
  }
}