/* ========== Base ========== */
:root{
  --accent: #ee86ab;          /* 看護：ピンク */
  --bg: #ffffff;
  --bg-soft: #fff6f8;         /* 淡いピンク面 */
}

*{ box-sizing:border-box; }
html,body{ 
  height:100%; 
}
body{
  margin:0;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  color: #333;
  background: var(--bg-soft);
  letter-spacing: 0.1em;
  line-height: 2;
  font-size: 15px;
}
.pc_none{
  display: block;
}
.sp_none{
  display: none;
}
@media (min-width: 768px){
  body{
    font-size: 17px;
  }
  .pc_none{
    display: none;
  }
  .sp_none{
    display: block;
  }
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; }
a:hover{
    opacity: 0.7 !important;
    transition-duration: .8s;
}

.wrap{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media (min-width: 768px){
  .wrap{
    padding-left: 0;
    padding-right: 0;
  }
}

.center{ text-align:center; }

/* ========== Header ========== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: auto;
  background: transparent;
}
.site-header .wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand__logo{
  height: 26px;
  width: auto;
}
.menu-btn{
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.menu-btn:focus-visible{
  outline: 3px solid rgba(231,161,179,.4);
  outline-offset: 3px;
}
.menu-btn__icon{
  width: 35px;
  height: 12px;
  position: relative;
}
.menu-btn__icon::before,
.menu-btn__icon::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:#fff;
  border-radius: 2px;
  transition: transform .18s ease, top .18s ease, opacity .18s ease;
}
.menu-btn__icon::before{ top:0; }
.menu-btn__icon::after{ top:10px; }
.menu-btn__icon{
  background:#fff;
  height:2px;
  border-radius:2px;
}
.menu-btn__icon{ top:-5px; }
.menu-btn.is-open .menu-btn__icon{
  background: transparent;
}
.menu-btn.is-open .menu-btn__icon::before{
  top:5px;
  transform: rotate(45deg);
}
.menu-btn.is-open .menu-btn__icon::after{
  top:5px;
  transform: rotate(-45deg);
}
@media (min-width: 768px){
  .menu-btn{
    width: 80px;
    height: 80px;
  }
}

/* Overlay menu */
.menu-overlay{
  position: fixed;
  inset: 0;
  z-index: 30;
}

/* Menu open/close animation (slow) */
.menu-overlay{
  height: 100dvh;
  min-height: 100vh;
  opacity: 0;
  pointer-events: none;
  transition: opacity .9s ease;
}
.menu-overlay.is-open{
  opacity: 1;
  pointer-events: auto;
}
.menu-overlay__backdrop{ height: 100vh; }
.menu-overlay__panel{
  transform: translateY(14px);
  opacity: 0;
  transition: transform .9s ease, opacity .9s ease;}
.menu-overlay.is-open .menu-overlay__panel{
  transform: none;
  opacity: 1;
}
.menu-overlay__backdrop{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 245, 248, .82);
}
.menu-overlay__panel{
  position: relative;
  margin: 18px auto 0;
  width: min(520px, calc(100% - 32px));
  background: rgba(255,255,255,.92);
  border-radius: 26px;
  box-shadow:  0 10px 24px rgba(0,0,0,.08);
  padding: 16px 16px 18px;
  backdrop-filter: blur(10px);
}
.menu-overlay__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 4px 4px 12px;
}
.brand--overlay .brand__logo{ height:24px; }
.menu-btn--close{
  background: var(--accent);
}
.menu-nav{
  display:grid;
  gap: 10px;
  padding: 6px 6px 2px;
}
.menu-nav__link{
  display:flex;
  align-items:center;
  justify-content:center;
  height: 60px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(231,161,179,.35);
  color: rgba(30,30,30,.88);
  letter-spacing: .04em;
}
.menu-nav__link:hover{ filter: brightness(.98); }
.menu-nav__link--cta{
  background: var(--accent);
  color:#fff;
  border-color: transparent;
}
/* ========== Sections ========== */
.preparatory-notes{
  background: #fff;
  border-radius: 10px;
  max-width: 1100px;
  margin: 50px 20px 0;
  padding: 15px;
  text-align: center;
  border: 1px solid #f2b3cd;
}
@media (min-width: 768px){
  .preparatory-notes{
    margin: 100px auto 0;
  }
}
.intro{
  padding: 96px 0 96px;
}
.intro__grid{
  display:block;
}
@media (min-width: 768px){
  .intro__grid{
    max-width: 1000px;
    margin: 0 auto;
    display:flex;
    align-items:center;
    padding: 0 20px;
  }
}
.teaser{
  background: #f2b3cd;
  border-radius: 20px;
  margin-top: 100px;
  padding-bottom: 50px;
}
.teaser__photo{
  margin-top: -100px;
}
@media (min-width: 900px){
  .teaser__photo{
    margin-top: -50px;
  }
}
.teaser__card{
  display: inline-block;
  padding: 0 20px;
}
@media (min-width: 900px){
  .teaser__card{
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.teaser__card img{
  width: 100%;
}
@media (min-width: 900px){
  .teaser__card img{
    width: 400px;
}
}
.teaser__content{
  text-align: center;
  color: #fff;
  margin: 30px 0;
}
@media (min-width: 900px){
  .teaser__content{
    max-width: 535px;
    margin: 100px 0;
}
}
.teaser__content .btn{
  background: #FFF;
  color: #f2b3cd;
  margin-top: 20px;
}
.teaser__title{
  font-size: 30px;
  font-weight: normal;
}
.teaser__text{
  line-height: 1.8;
}
.section-center{
  margin: 150px 0;
  text-align: center;
}
.section-center__title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
}
.section-center__text{
  line-height: 1.8;
  margin-bottom: 40px;
}
.wide-image img{
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 15px;
}
@media (min-width: 768px){
  .wide-image img{
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}
.yoga-link{
  margin-bottom: 150px;
  background: linear-gradient(to right, #a993b9 50%, #fff6f8 50%);
  box-shadow: -1000px 20px 0px 0 #fff4cd;
}
.yoga-link__card{
  position: relative;
  color: #fff;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
}
.yoga-link__card_inner{
  border-radius: 0 20px 20px 0;
  background-color: #a993b9;
  box-shadow: 20px 20px 0px 0 #fff4cd;
  padding: 80px 20px 300px;
  width: 85%;
}
.yoga-link__title{
  font-size: 22px;
  font-weight: normal;
  margin: 0;
}
.yoga-link__media{
  position: absolute;
  right: 2px;
  z-index: 5;
  width: 365px;
  top: 480px;
}
.yoga-link .btn{
  background: #fff4cd;
  color: #a993b9;
  margin-top: 10px;
}
@media (min-width: 768px){
  .yoga-link__title{
    font-size: 30px;
  }
  .yoga-link{
    margin-bottom: 300px;
    background: linear-gradient(to right, #a993b9 50%, #fff6f8 50%);
    box-shadow: -1000px 20px 0px 0 #fff4cd;
  }
  .yoga-link__card{
    position: relative;
    color: #fff;
    margin: 0 auto;
    display: flex;
    padding: 0 20px;
  }
  .yoga-link__card_inner{
    border-radius: 0 20px 20px 0;
    background-color: #a993b9;
    box-shadow: 20px 20px 0px 0 #fff4cd;
    padding: 120px 0;
    width: 65%;
  }
  .yoga-link__media{
    position: absolute;
    right: 0px;
    z-index: 5;
    width: 520px;
    top: 180px;
  }
}
.eyebrow{
  margin: 0;
  color: rgba(231,161,179,.9);
  font-weight: 600;
  letter-spacing: .08em;
}
.headline{
  margin: 10px 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: .06em;
}
.lead{
  margin: 0;
  line-height: 2.0;
  color: rgba(30,30,30,.78);
}

.intro__diagram{
  position: relative;
  width: min(280px, 100%);
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.bubble{
  position:absolute;
  display:grid;
  place-items:center;
  text-align:center;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(231,161,179,.4);
  color: rgba(231,161,179,.95);
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
}
.bubble--center{
  inset: 25% 25%;
  font-size: 14px;
}
.bubble--a{ width: 96px; height: 96px; left: 4%; top: 50%; transform: translateY(-50%); }
.bubble--b{ width: 112px; height: 112px; right: 0; top: 58%; transform: translateY(-50%); }
.bubble--c{ width: 96px; height: 96px; right: 6%; top: 14%; }

.thumbs{
  margin-top: 48px;
  display:grid;
  gap: 12px;
  align-items:end;
}
.thumbs_sp{
  display: block;
}
.thumbs_pc{
  display: none;
}
@media (min-width: 768px){
  .thumbs{
    margin-top: 96px;
  }
  .thumbs_sp{
    display: none;
  }
  .thumbs_pc{
    display: block;
  }
}
.thumbs__item img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 18px rgba(0,0,0,.06);
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* nurse highlight */
.nurse-highlight{
  padding: 48px 0;
  background: var(--bg-soft);
}
.nurse-card{
  background: rgba(231,161,179,.25);
  border-radius: 28px;
  padding: clamp(18px, 2.4vw, 34px);
  display:grid;
  gap: 18px;
  align-items:center;
  box-shadow: 0 12px 26px rgba(0,0,0,.08);
}
@media (min-width: 768px){
  .nurse-card{
    grid-template-columns: 320px 1fr;
    gap: 28px;
  }
}
.nurse-card__photo img{
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  aspect-ratio: 4/3;
}
.section-title{
  margin: 0 0 10px;
  color: rgba(231,161,179,.95);
  letter-spacing: .08em;
  font-size: 18px;
  font-weight: 700;
}
.section-title--center{ text-align:center; }
.nurse-card__text{
  margin: 0 0 16px;
  line-height: 2.0;
  color: rgba(30,30,30,.76);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 50px;
  width: 250px;
  padding: 0 22px;
  border-radius: 999px;
  background: -webkit-gradient(45deg, #d29ec6 35%, #edc5d8);
  background: linear-gradient(45deg, #d29ec6 35%, #edc5d8);

  color: #fff;
  letter-spacing: .08em;
}
.btn:hover{ filter: brightness(.98); }
.btn--ghost{
  background: #fff;
  color: rgba(231,161,179,.95);
}
.btn--light{
  background: #fff;
  color: rgba(231,161,179,.95);
  border-color: rgba(255,255,255,.7);
}
.btn--small{
  height: 40px;
  padding: 0 18px;
  font-size: 13px;
}

/* simple cta */
.simple-cta{
  padding: 64px 0;
  background: var(--bg-soft);
}
.simple-cta .muted{ margin: 0 0 18px; }

/* photo band */
.photo-band{ padding: 48px 0; background: var(--bg-soft); }
.photo-band__img img{
  width: 100%;
  border-radius: 28px;
  box-shadow:  0 10px 24px rgba(0,0,0,.08);
  object-fit: cover;
  aspect-ratio: 16/7;
}

/* FAQ teaser */
.faq-teaser{
  padding: 64px 0;
  background: var(--bg-soft);
}
.faq-teaser__grid{
  display:grid;
  gap: 32px;
  align-items:start;
}
@media (min-width: 768px){
  .faq-teaser__grid{
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }
}

/* FAQ */
.faq-page{
  max-width: 1100px;
  margin: 120px auto;
  padding: 0 20px;
}
@media (min-width: 768px){
    .faq-page{
    max-width: 1100px;
    margin: 150px auto;
    padding: 0 20px;
  }
}
.page-title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.faq{
  display:grid;
  gap: 12px;
}
.faq-item{
  overflow:hidden;
  box-shadow: 0 10px 18px rgba(0,0,0,.08);
}
.faq-btn{
  width: 100%;
  border: none;
  background: #fff;
  color: rgba(20,20,20,.92);
  display:grid;
  grid-template-columns: 34px 1fr 22px;
  align-items:center;
  gap: 12px;
  padding: 18px 18px;
  cursor:pointer;
}
.faq-q__icon{
  width: 28px;
  height: 28px;
  display:grid;
  place-items:center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.75);
  font-weight: 800;
  font-size: 14px;
}
.faq-q__text{
  text-align:left;
  font-weight: 700;
  letter-spacing: .04em;
}
.faq-q__toggle{
  width: 18px;
  height: 18px;
  position: relative;
  justify-self:end;
}
.faq-q__toggle::before,
.faq-q__toggle::after{
  content:"";
  position:absolute;
  inset: 50% 0 auto 0;
  height: 2px;
  background: rgba(20,20,20,.75);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: transform .18s ease, opacity .18s ease;
}
.faq-q__toggle::after{
  transform: translateY(-50%) rotate(90deg);
}
.faq-item.is-open .faq-q__toggle::after{ opacity: 0; }
.faq-a{
  background: #fff; 
}
.faq-a__inner{
  padding: 26px 22px 28px;
  line-height: 2.0;
  color: rgba(30,30,30,.78);
  border-top: 1px solid rgba(231,161,179,.18);
}

/* contact */
.contact{
  padding: 90px 0;
  background: #edabc9;
  color: #fff;
  text-align:center;
}
.contact .btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 100%;
  padding: 0 22px;
  border-radius: 10px;
  background: #fff;
  color: #ee86ab;
  letter-spacing: .08em;
}

.contact__title{
  margin: 0 0 8px;
  letter-spacing: .18em;
  font-weight: 500;
  font-size: 28px;
}
.contact__lead{ margin: 0 0 28px; opacity: .9; }
.contact__actions{
  display:grid;
  gap: 12px;
  width: min(400px, 100%);
  margin: 0 auto 26px;
}
.contact__meta{
  width: min(520px, 100%);
  margin: 0 auto;
  position: relative;
}
.contact__meta::after {
  content: '';
  width: 110px;
  height: 1px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 55px)
}
.contact__note{ 
  font-size: 14px;
  margin-top: 60px;
}

@media (min-width: 768px){
  .contact__note{
    font-size: 16px;
  }
}
/* footer */
.site-footer{
  background: #edabc9;
  color: rgba(255,255,255,.9);
  padding: 20px 20px 26px;
}
.site-footer__inner{
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.site-footer__inner a{
  width: 180px;
}
.site-footer__copy{
  margin-top: 20px;
}
.footer__brand img{ height: 22px; width:auto; }

@media (min-width: 768px){
  .site-footer__copy{
    margin-top: 40px;
  }
  .site-footer__inner a{
    width: 240px;
  }
}

/* Body lock when menu open */
body.is-menu-open{
  overflow: hidden;
}

/* Fullscreen menu overlay */
.menu-overlay__panel{
  position: fixed;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  padding: 96px 24px 48px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.menu-nav{
  width: min(600px, 100%);
  text-align: center;
}

/* Keep menu button position identical before/after open */
.menu-btn{
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 60;
}

/* (Removed) Scroll reveal */

/* Hero (single image, full-bleed) */
.hero__media{
  position: relative;
  overflow: visible;
}
.hero__image{
  display: block;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(280px, 46vw, 620px);
  border-radius: 28px;
  overflow: hidden;
  box-shadow:  0 10px 24px rgba(0,0,0,.08);
  object-fit: cover;
}
@media (max-width: 767px){
  .hero__image{
    height: clamp(220px, 66vw, 380px);
    border-radius: 22px;
  }
}

/* Ensure overlay above everything */
.menu-overlay{ z-index: 50; }
.menu-overlay__backdrop{ z-index: 0; }
.menu-overlay__panel{ z-index: 1; }

/* FAQ component (shared) */
.faq__list{ display: grid; gap: 14px; }
.faq-item{
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
  background: transparent;
}
.faq-item__q{
  width: 100%;
  border: 0;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 18px;
  cursor: pointer;
}
.is-open .faq-item__q{
  background: #f2b3cd;
  color: #fff;
}
.faq-title{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.faq-item__qleft{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}
.faq-item__qmark{
  width: 26px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #ee86ab;
}
.is-open .faq-item__qmark{
  background: #f2b3cd;
  color: #fff;
}
.faq-item__qtext{
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px){
  .faq-item__qtext{ 
    white-space: normal; 
    text-align: left;
  }
}
.faq-item__icon{
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 auto;
}
.faq-item__icon::before,
.faq-item__icon::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  margin-top: -1px;
  background: #333;
  border-radius: 2px;
}
.faq-item__icon::after{
  transform: rotate(90deg);
  transition: opacity .18s ease;
}
.faq-item.is-open .faq-item__icon::after{ opacity: 0; } /* plus -> minus */
.faq-item__a{
  background: #fff;
}
.faq-item__a p{
  padding: 18px 45px;
  margin: 0;
}
.faq-item__abox{
  padding: 22px 18px 26px;
  color: #222;
  line-height: 1.9;
}
.is-open .faq-item__icon::before,
.is-open .faq-item__icon::after{
  background: #fff;
}


/* Page hero (nurse/faq/price) - full-bleed like design */
.page-hero{
  margin-top: 100px;
}
.page-hero .wrap{ position: relative; }
.page-hero__media{
  margin-top: 100px;
  width: 100%;
}
.page-hero__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 767px){
  .page-hero{
    margin-top: 115px;
  }
  .page-hero__media{
    margin-top: 115px;
  }
}
.page-hero__title{
  margin: 32px 0 0;
  text-align: center;
  color: rgba(92, 60, 85, .86);
  letter-spacing: .08em;
  font-size: clamp(22px, 2.8vw, 34px);
}

/* ========== Nurse page ========== */
.page-intro{
  max-width: 1100px;
  margin: 150px auto;
  padding: 0;
  display: block;
}
.page-intro__grid{
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  padding: 0 20px 50px;
}
.page-intro__title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.page-intro__text{
  line-height: 2;
  letter-spacing: normal;
}
.page-intro__photos{
  position: static;
  width: 100%;
}
.page-intro__photos img{
  position: static;
}
@media (min-width: 767px){
  .page-intro{
    padding: 0 20px;
    display: flex;
  }
  .page-intro__grid{
    text-align: center;
    width: 650px;
    margin: 0 auto;
    padding: 0 20px ;
  }
  .page-intro__photos{
    position: relative;
    width: 430px;
  }
  .page-intro__photos img{
    position: absolute;
    right: -50px;
    top: 100px;
  }
}
.strengths_wrap{
  padding: 100px 0 150px;
  background: #fff;
}
.strengths{
  max-width: 1100px;
  padding: 0;
  display: block;
  margin: 0 auto;
}
.section-title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.strengths__grid{
  text-align: center;
  display: block;
}
.strength{
  margin: 50px 0;
}
.pill{ 
  display: inline-block;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 46px;
  padding: 8px 18px;
  border-radius: 999px;
  background: #edabc9;
  color: #fff;
}
.strength__icon{
  width: 60px;
  margin: 20px auto 0;
}
.strength__icon img{
  width: 100%;
}
@media (min-width: 767px){
  .strengths__grid{
    max-width: 1100px;
    margin: 0px auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
  }
  .strength{
    width: 360px;
    margin: 50px 0;
  }
  .strength__icon{
    width: 80px;
    margin: 40px auto 40px;
  }
  .pill{ 
    height: 50px;
    padding: 8px 18px;
  }
}
.profile-band{
    background: #fcf0f8;
    border-radius: 20px;
    padding-bottom: 50px;
    margin-top: -15px;
    border-radius: 15px;
    padding: 20px 20px 40px;
}
.profile{
  display: flex;
  flex-wrap: wrap; 
}
.profile__text{
  text-align: center;
  color: #9b1f58;
  margin: 30px 0;
}
.profile__eyebrow{
  font-size: 30px;
  font-weight: normal;
}
.profile__bio{
  color: #333;
}
.profile__photo{
  margin-top: -100px;
  order: -1;
}
.profile__photo img{
  width: 100%;
}
@media (min-width: 767px){
  .profile-band{
    background: #fcf0f8;
    border-radius: 20px;
    padding-bottom: 50px;
    border-radius: 15px;
    padding: 150px 20px;
  }
  .profile{
    display: flex;
    flex-wrap: wrap; 
    align-items: center;
    width: 1100px;
    margin: 0 auto;
  }
  .profile__photo{
    width: 350px;
    margin-top: 0px;
    order: 1;
  }
}
.doc-check{
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}
.doc-check__note{
  margin: 30px 0;
}
.doc-check__photo{
  max-width: 1100px;
  margin: 0 auto;
}
.doc-check__photo img{
  width: 100%;
}
@media (min-width: 767px){
  .doc-check{
    margin: 150px auto;
  }
  .doc-check__photo{
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
    gap: 40px;
  }
  .doc-check__photo_wrap{
    max-height: 515px;
  }
}
.recruit-title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.recruit_section01{
  background: #f2b3cd;
  border-radius: 15px;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
.recruit_section01_title{
  font-size: 20px;
}
.recruit_section01_subtitle{
  color: #ee86ab;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  margin: 20px 0;
}
.recruit_section01 p{
}
.recruit_section02{
  background: #fcf0f8;
  margin-top: -20px;
  border-radius: 15px;
  padding: 100px 20px;
  text-align: center;
}
.recruit_section02 .pill{
  margin-bottom: 20px;
}
.recruit_section02_title{
  color: #ee86ab;
  background-image: radial-gradient(circle, #ee86ab 1.5px, transparent 1.5px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 13px 3px;
  text-align: left;
  display: table;
  padding: 20px 0 5px;
}
.recruit_section02 p{
  text-align: left;
}
.recruit_section03{
  padding: 50px 0 100px;
  text-align: center;
}
.recruit_section03 .table_wrap{
  padding: 0 20px;
  display: block;
}
.recruit_section03 .btn{
  margin-top: 30px;
}
@media (min-width: 767px){
  .recruit_section03 .table_wrap{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
  }
}

/* ========== Price page ========== */
.grada_back{
  background-image:
    radial-gradient(at 0% 0%, #fff6f8, transparent),
    radial-gradient(at 3% 100%, #fff, transparent);
}
.service__title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.service__body{
  text-align: center;
  margin-bottom: 30px;
}
.check{
  padding: 20px 20px 100px;
}
.check__band{
  background: #fcf0f8;
  border-radius: 20px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 60px 20px 40px;
}
.check__band .pill{
  position: absolute;
  top: -25px;
  right: 0;
  left: 0;
  margin: auto;
}
.check__item{
  margin-bottom: 15px;
}
.checkmark{
	padding-left:30px;
	position:relative;
  text-align: left;
  line-height: 1.6;
}
.checkmark span {
  background:linear-gradient(transparent 60%, #fcfbd6 60%);
}
.checkmark:before,
.checkmark:after{
	content:"";
	display:block;
	position:absolute;
}
.checkmark:before{
	width:16px;
	height:16px;
  border:1px solid #333;
	left:0;top:2px;
}
.checkmark:after{
	border-left:1px solid #9b1f58;
	border-bottom:1px solid #9b1f58;
	width:15px;
	height:7px;
	-webkit-transform:rotate(-45deg);
	transform:rotate(-45deg);
	left:5px;
	top:3px;
}
.service{
  background: -webkit-gradient(135deg, #d29ec6 35%, #edc5d8);
  background: linear-gradient(135deg, #d29ec6 35%, #edc5d8);
  border-radius: 20px;
  margin: 0 auto;
  padding: 100px 30px;
  margin: 0 0 100px;
  color: #fff;
  text-align: center;
}
.service__grid01{
  border-bottom: 1px solid #fff;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.service__grid02{
  border-bottom: 1px solid #fff;
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.service__subtaitle{
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 250px;
  padding: 0 22px;
  border-radius: 999px;
  letter-spacing: .08em;
  color: #ee86ab;
  margin-bottom: 20px;
}
.service__txt2{
  font-size: 13px;
  margin: 20px 0 30px;
}
.service__txt3{
  font-size: 12px;
  margin: 20px 0 30px;
  padding: 10px;
  border: 1px solid #fff;
  letter-spacing: 0;
}
.service__photo{
  width: 100%;
}
.flow__title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.stepbar {
  margin: 0 auto;
  width: 80%;
  position: relative;
}
.stepbar .stepbarwrap {
  margin: 10px 0 20px;
  position: relative;
}
.stepbar .stepbarwrap .steptitle {
  display: inline-flex;
  align-items: center;
}
.stepbar .stepbarwrap .steptitle .stepcircle {
  display: inline-block;
  width: 15px;
  height: 15px;
  content: "";
  border-radius: 50%;
  background-color: #9b1f58;
  border: 1px solid #9b1f58;
}
.stepbar .stepbarwrap .steptitle .stepnum {
  padding-left: 15px;
  font-size: 18px;
  color: #9b1f58;
}
.stepbar .stepbarwrap .steptxt {
  padding: 0 0 50px 30px;
}
.stepbar .stepbarwrap .pb {
  padding: 0 0 0 30px;
}
.stepbar .stepbarwrap .steptxt .steptxt-title {
  margin: 10px 0;
  font-size: 18px;
}
.stepbar .stepline {
  width: 1px;
  height: calc(100% + 1em);
  background-color: none;
  position: absolute;
  top: 15px;
  left: 7px;
  z-index: -1;
}
@media (min-width: 767px){
  .stepbar .stepline {
    left: 8.6px;
  }
}
.stepbar .stepline__progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #9b1f58;
  transition: height 3s ease-out;
}
.band-photo{
  width: 100%;
}
.price_table{
  max-width: 1100px;
  margin: 100px auto;
  padding: 0 20px;
}
.price-title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
  text-align: center;
}
.price_section{
  text-align: center;
}
@media screen and (max-width: 960px) {
  .stepbar {
    width: 90%;
  }
}
.flow__media{
  margin: 100px 0;
}
@media (min-width: 767px){
  .check{
    padding: 20px 20px 150px;
  }
  .check__band{
    width: 710px;
    margin: 0 auto;
    padding: 60px 40px 40px;
  }
  .check__band .pill{
    width: 300px;
    height: 55px;
    font-size: 20px;
  }
  .service__grid{
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    gap: 25px;
  }
  .service__subtaitle{
    width: 300px;
    font-size: 20px;
  }
  .service__grid01{
    width: 32%;
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .service__grid02{
    width: 32%;
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .service__grid03{
    width: 32%;
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  .service__photo{
    max-width: 300px;
    margin: 0 auto;
  }
  .flow__grid{
    display: flex;
    max-width: 1100px;
    margin: 0 auto 100px;
  }
  .flow__media {
    margin: 50px 0;
  }
  .stepbar .stepbarwrap .steptitle .stepcircle {
    display: inline-block;
    width: 18px;
    height: 18px;
  }
  .stepbar .stepbarwrap .steptitle .stepnum {
    font-size: 22px;
  }
  .stepbar .stepbarwrap .steptxt .steptxt-title {
    font-size: 22px;
  }
  .price_table .table_wrap{
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 100px;
  }
}

/* ========== Table style ========== */
.table_wrap .site_table:last-child{
  border-top: 1px solid #CCC;
}
.site_table{
  width: 100%;
  border-collapse:collapse;
}
.site_table tr{
  border-bottom: 1px solid #CCC;
}
.site_table tr:last-child{
  border-bottom: none;
}
.site_table th{
  font-weight: normal;
  vertical-align: top;
  text-align: left;
  width: 35%;
  padding: 20px 0;
}
.site_table td{
  vertical-align: top;
  text-align: left;
  padding: 20px 0;
}
.site_table p{
  margin: 0;
  padding: 0;
}
.line_txt_wrap{
  margin-top: 20px;
}
.site_table .line_txt{
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}
.line_txt_wrap .line_txt{
  font-size: 13px;
}
.site_table .line_txt::before {
  content: '';
  display: block;
  position: absolute;
  top: 18%;
  left: 0; 
  height:60%; 
  width: 3px; 
  background-color: #9b1f58; 
}
.site_table .annotation{
  font-size: 13px;
  margin-top: 30px;
}
.site_table .label_txt{
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 3px 0;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
.site_table .label_inner{
  margin-bottom: 15px;
}
.last_table{
  border-top: 1px solid #CCC;
}
@media (min-width: 767px){
  .last_table{
    margin-top: 50px;
    border-top: 1px solid #CCC;
  }
  .site_table th{
    width: 168px;
  }
  .line_txt_wrap .line_txt{
    font-size: 18px;
    display: inline-block;
    margin-right: 20px;
  }
  .table_wrap .site_table:last-child{
    border-top: none;
  }
  .table_wrap .last_table{
    border-top: 1px solid #CCC !important;
  }
}

/* Home header: overlay on slideshow (no top padding, no left logo) */
.site-header--hero{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  pointer-events: none;
}
.site-header--hero .site-header__inner{
  position: relative;
  height: 0;
}

.site-header .site-header__inner{
  position: relative;
  height: 0;
  background: #fff;
  height: 100px;
}
.site-header .brand{
  position: absolute;
  top: 18px;
  left: 18px;
  pointer-events: auto;
  margin-top: 10px;
}
.site-header .brand img{
  height: 48px;
}
.site-header .menu-btn{
  position: absolute;
  top: 18px;
  right: 18px;
  pointer-events: auto;
}
.site-header--hero{ pointer-events: none; }
.site-header--hero .menu-btn{ pointer-events: auto; }
.site-header--hero .brand--fixed{ pointer-events: auto; }
.site-header--hero .menu-btn{
  position: absolute;
  top: 18px;
  right: 18px;
  pointer-events: auto;
}

.hero--home{ padding-top: 0; }
.hero--home .wrap{ padding: 0; }
.hero--home .hero__media{
  width: 100%;
  position: relative;
}

@media (min-width: 767px){
  .site-header .site-header__inner{
    height: 115px;
  }
  .site-header .brand{
    margin-top: 0;
  }
  .site-header .brand img{
    height: 65px;
  }
  .site-header .brand{
    position: absolute;
    top: 18px;
    left: 18px;
    pointer-events: auto;
    margin-top: 8px;
  }
}

/* Separate slideshows for PC / SP */
.hero__slideshow--pc{
  display: none;
}
.hero__slideshow--sp{
  display: block;
}
@media (min-width: 767px){
  .hero__slideshow--pc{
    display: block;
  }
  .hero__slideshow--sp{
    display: none;
  }
}
.hero__slideshow{
  position: relative;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.slideshow {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: slideshow 24s linear infinite;
  transform: scale(1);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

/* スライドごとのディレイ設定 */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }
.slide:nth-child(4) { animation-delay: 18s; }

/* オーバーレイ効果 */
.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* アニメーションの定義 */
@keyframes slideshow {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  4% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  29% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

/* スライドショー内のロゴ */
.hero__logo{
  position: absolute;
  left: 30px;
  bottom: 30px;
  height: 48px;
  width: auto;
  z-index: 2;
}

@media (min-width: 767px){
  .hero__logo{
    height: 65px;
  }
}


/* Intro bubbles (restore position) */
.intro__grid{
  position: relative;
}
.intro__title{
  background: linear-gradient(90deg, #c95ca6 0%, #f5b5c7 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 32px;
}
.intro__subtitle{
  display: block;
  border: 1px solid #333;
  padding: 10px;
  text-align: center;
  border-radius: 15px;
  font-size: 22px;
  max-width: 350px;
  margin: 50px auto 0;
}
@media (min-width: 768px){
  .intro__title{
    font-size: 35px;
  }
  .intro__subtitle{
    display: none;
  }
}
.intro__body{
  text-align: center;
  line-height: 1.8;
  padding-top: 20px;
}
.intro__bubbles{
  position: relative;
  width: min(325px, 100%);
  height: 260px;
  margin: 0 auto;
}
.intro__bubbles{
  margin-bottom: 100px;
}
@media (min-width: 768px){
  .intro__bubbles{
    width: 320px;
    margin-bottom: 30px;
  }
}
.intro-bubble{
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 18px rgba(188,63,128,.20);
  color: #bf1d76;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: .02em;
  opacity:0.7;
  font-size: 20px;
}
.intro-bubble--1{ width:170px; height: 170px; right: 144px; top: 124px; }
.intro-bubble--2{ width: 170px; height: 170px; right: 0; top: 124px; }
.intro-bubble--3{ width: 170px; height: 170px; right: 77px; top: 1px; }
@media (max-width: 767px){
  .intro__bubbles{ height: 220px; }
}

/* Nurse highlight (home) – align photo/text/button like design */
.nurse-card{
  background: rgba(231,161,179,.22);
}
.nurse-card__photo img{
  border-radius: 22px;
}
.nurse-card__body{
  display: grid;
  gap: 14px;
}
.nurse-card__cta{
  justify-self: end;
}

/* Home FAQ teaser – three speech bubbles layout */
.faq-teaser__grid{
  display: block;
  margin: 100px auto;
  text-align: center;
  padding: 0 20px;
}
.faq-teaser__left{
}
.faq-teaser__title{
  font-size: 30px;
  font-weight: normal;
  color: #9b1f58;
}
.faq-teaser__text{
  line-height: 1.8;
  margin-bottom: 40px;
}
.faq-teaser__bubbles{
  position: relative;
  max-width: 720px;
  display: inline-block;
}
.faq-teaser__bubbles_inner01{
  position: absolute;
  top: 0;
  left: -30px;
  z-index: 11;
}
.faq-teaser__bubbles_inner02{
  position: absolute;
  top: -9px;
  left: 33px;
  z-index: 10;
}
.faq-teaser__bubbles_inner03{
  position: absolute;
  top: -18px;
  left: -5px;
}
.speech01 {
  position: relative;
  margin-bottom: 20px;
  padding: 30px 0;
  border-radius: 15px;
  background-color: #ffd9ec;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  width: 300px;
  text-align: center;
}
.speech01::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 78%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #ffd9ec transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}
.speech02 {
  position: relative;
  margin-bottom: 20px;
  padding: 30px 0;
  border-radius: 15px;
  background-color: #f9e8f2;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  width: 300px;
  text-align: center;
}

.speech02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 25%;
  border-style: solid;
  border-width: 20px 0 0 20px;
  border-color: #f9e8f2 transparent transparent;
  translate: calc(-50% + 0.4px) 100%;
}
.speech03 {
  position: relative;
  margin-bottom: 20px;
  padding: 30px 0;
  border-radius: 15px;
  background-color: #fff;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  width: 300px;
  text-align: center;
}
.speech03::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 78%;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #fff transparent transparent;
  translate: calc(-50% - 0.4px) 100%;
}
@media (min-width: 768px){
  .faq-teaser__grid{ 
    display: flex;
    max-width: 1100px;
    margin: 100px auto 60px;
  }
  .faq-teaser__bubbles{
    position: relative;
    margin-top: 0px;
  }
  .faq-teaser__bubbles_inner01{
    position: absolute;
    top: 0;
    left: 138px;
  }
  .faq-teaser__bubbles_inner02{
    position: absolute;
    top: -41px;
    left: -72px;
    z-index: 12;
  }
  .faq-teaser__bubbles_inner03{
    position: absolute;
    top: -75px;
    left: 155px;
  }
  .speech01 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 40px 0;
    border-radius: 15px;
    background-color: #ffd9ec;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    width: 360px;
    text-align: center;
  }
  .speech02 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 40px 0;
    border-radius: 15px;
    background-color: #f9e8f2;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    width: 360px;
    text-align: center;
  }
  .speech03 {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding: 40px 0;
    border-radius: 15px;
    background-color: #fff;
    text-align: left;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #333333;
    width: 360px;
    text-align: center;
  }
}


/* Menu: keep icon position stable (no layout jump) */
.menu-btn{ position: relative; }
.menu-btn__icon{ display:block; }


/* Index: show fixed logo after scroll */
.site--nursing.is-scrolled .site-header--hero .brand--fixed{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header--hero .brand--fixed{
  position: absolute;
  top: 18px;
  left: 18px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .25s ease, transform .25s ease;
}

.faq-item.is-open .faq-btn{
  background: var(--accent);
  color: rgba(255,255,255,.95);
}
.faq-item.is-open .faq-q{
  color: rgba(255,255,255,.95);
}
.faq-item.is-open .faq-q__toggle::before,
.faq-item.is-open .faq-q__toggle::after{
  background: rgba(255,255,255,.95);
}

/* scroll fadeIn */
.inview.fadeup {
	opacity: 0;
	transition-duration: .8s;
	transform: translateY(15px);
}
.inview.fadeup.active {
	opacity: 1;
	transform: translateY(0px);
}