/* ==================================================
   Main CSS
   - スターターCSSの読み込み口
   - 実装は各ファイルに分ける
================================================== */

/* 1. Astra reset */
@import "_astra-reset.css";

/* 2. Base layout rule */
@import "_base-layout.css";

/* 3. Font system */
@import "_font-system.css";

/* 4. Header base */
@import "_header-base.css";

/* ============================================
   Page / Section CSS
   ※ 各案件でここから下に追加
============================================ */
#ast-scroll-top{
  display: none!important;
}
/* ===============================
   Footer Base
================================ */
#site-footer{
  background:#FB1515;
}

#site-footer .footer-wrapper{
  padding-top:5%;
  padding-bottom:2%;
}

#site-footer .footer-inner{
  width:100%;
  max-width:1300px;
  margin:0 auto;
}

/* ===============================
   Footer Layout
================================ */
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  column-gap:40px;
  padding-bottom: 5%;
}

.footer-col--logo{
  width:25%;
}

.footer-col--nav{
  width:75%;
}

.footer-logo img{
  width:44%;
  height:auto;
  display:block;
}

.footer-nav-row {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 24px;
    flex-direction: column;
}

/* ===============================
   Footer Navigation
================================ */
.footer-nav-list {
  display: flex;
  gap: 34px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav-list li {
  margin: 0;
  padding: 0;
  font-size:15px;
  font-weight: 500;
}

.footer-nav-list a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition:
    transform 200ms ease,
    opacity 200ms ease;
}

.footer-nav-list a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Instagram */
.footer-instagram img{
  width:25px;
  height:25px;
  display:block;
}

/* ===============================
   Footer Bottom
================================ */
.footer-bottom{
  margin-top:28px;
}

.footer-copyright{
  margin:0;
  color:#fff;
  font-size:13px;
  font-weight:500;
  text-align:center;
}

/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px) {

   #site-footer .footer-wrapper{
    padding-top: 10%;
    padding-bottom: 2%;
   }
  .footer-top{
    flex-direction:column;
    align-items:flex-start;
    row-gap:24px;
  }

  .footer-col--logo,
  .footer-col--nav{
    width:100%;
  }

  .footer-nav-row{
    width:100%;
    justify-content:space-between;
    align-items:center;
    margin-top: 30px;
  }

  .footer-nav-list {
    flex-wrap: wrap;
    row-gap: 12px;
  }

  .footer-logo img{
   width: 20%;
   margin: 0 auto;
  }

  .footer-copyright{
   text-align: center;
  }
}

/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px) {
   #site-footer .footer-wrapper{
    padding-top: 15%;
    padding-bottom: 5%;
   }

     .footer-logo img{
   width: 35%;
   margin: 0 auto;
  }
  .footer-nav-list{
   justify-content: center;
  }
}

  /* ===============================
   Page Header (Subpage Common)
================================ */
.page-header{
  width:100%;
  height:25vh;
  background:#FCFBF8;
}

.page-header__wrapper{
  height:100%;
  padding-top:0;
  padding-bottom:2%;
}

.page-header__inner{
  width:100%;
  max-width:1300px;
  margin:0 auto;
  height:100%;
  display:flex;
  align-items:flex-end;
  justify-content: center;
}

.page-header__titles{
  width:100%;
  text-align: center;
}

.page-header__en{
  margin:0 0 15px;
  font-size:20px;
  color:#FB1515;
  line-height:1.2;
  font-weight: 600;
}

.page-header__title{
  margin:0;
  font-size:40px;
  color:#2E2E2A;
  line-height:1.2;
}

/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px) {
   .page-header{
      height: 35vh;
   }
   .page-header__title{
      font-size: 35px;
   }
   .page-header__en{
      font-size: 17px;
   }
}

/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px) {
   .page-header{
      height:35vh;
   }
   .page-header__wrapper{
      padding-bottom: 5%;
   }
    .page-header__title {
     font-size: 28px;
    }
}

/* ==========================
   FRONT HERO
========================== */
.front-hero{
  width: 100%;
  height: 90vh;
  background: #FCFBF8;
}

.front-hero__wrapper{
  width: 100%;
  padding: 50px 0 0;
  position: relative;
}

.front-hero__inner{
  width: 90%;
  height: 75vh;
  margin: 0 auto;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
}

/* 画像フェード */
.front-hero__bg{
  position: absolute;
  inset: 0;
}

.front-hero__bg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
  transform: scale(1.02);
}

.front-hero__bg-img.is-active{
  opacity: 1;
}
.front-hero__inner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.25); /* ← 濃さはここ */
  z-index: 1;
}

/* 中央テキスト */
.front-hero__content{
  position: absolute;
  left: 50%;
  top: 58%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  width: 100%;
  pointer-events: none;
}

/* ▼ここを修正：スローガンが高さを持って押し下げないようにする */
.front-hero__slogans{
  position: absolute;
  left: 50%;
  top: -42px;
  transform: translateX(-50%);
  width: 100%;
  height: 34px;
  margin: 0;
  pointer-events: none;
}

.front-hero__slogan{
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: .08em;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
  white-space: nowrap;
  font-size: 70px;
}

.front-hero__slogan.is-show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ▼ここを修正：タイトルとサブの位置を固定してズレないようにする */
.front-hero__title{
  margin: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .7s ease, transform .7s ease;
  position: relative;
  z-index: 2;
}

.front-hero__title.is-show{
  opacity: 1;
  transform: translateY(0);
}

.front-hero__title-inner{
  font-size: 80px;
  font-weight: 800;
  letter-spacing: .08em;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0,0,0,.30);
}

.front-hero__sub{
  margin: 10px 0 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .7s ease, transform .7s ease;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: .06em;
  text-shadow: 0 2px 18px rgba(0,0,0,.28);
  font-size: 20px;
  position: relative;
  z-index: 2;
}

.front-hero__sub.is-show{
  opacity: 1;
  transform: translateY(0);
}


/* 指定カラー */
.col-yellow{
  color:#FCFC62;
}

/* 右：見学バナー */
.front-hero__kengaku {
    position: absolute;
    right: 50px;
    bottom: -45px;
    transform: translateY(-10%);
    display: inline-block;
    z-index: 3;
}

.front-hero__kengaku img{
  display: block;
  height: auto;
  object-fit: contain;
}

/* 左：SCROLL（指定コードは崩さず、配置だけ付与） */
.front-hero__scroll {
    position: absolute;
    left: 40px;
    bottom: 0;
    transform: translateY(-10%);
    z-index: 3;
}

/* ユーザー指定コード（そのまま） */
.container_05 {
  height: 200px;
  background-color: #000;
  position: relative;
}

.scrollbar-text_05 {
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #FB1515;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  left: 50%;
  transform: translateX(-50%);
}

.scrollbar_05 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar_05::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #FB1515;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

/* ==========================
   FRONT ABOUT
========================== */
.front-about{
  width: 100%;
  padding: 7% 5% 4%;
  background: #FCFBF8;
}

.front-about__inner{
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

/* 見出し */
.front-about__head{
  margin-bottom: 32px;
}

.front-about__en{
  font-size: 47px;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 25px;
}

.front-about__en--red{
  color: #FB1515;
}

/* h2 */
.front-about__title{
  font-size: 1.5vw;
  font-weight: 700;
  line-height: 2;
  margin: 0;
  color: #2E2E2A;
}

.pc-none{
  display: none;
}

/* テキスト */
.front-about__text p{
  font-size: 15px;
  line-height: 2em;
  font-weight: 500;
  margin: 0 0 20px;
  color: #2E2E2A;
}


/* ==========================
   FRONT SERVICE
========================== */
.front-service{
  width:100%;
  background:#FCFBF8;
  padding: 4% 5% 2%;
}

.front-service__wrapper{
  margin:0 auto;
  position:relative;
}

.front-service__content {
    padding-left: 60px;
}

/* 右上装飾 */
.front-service__decor{
      position: absolute;
    top: -80px;
    right: 40px;
    z-index: 3;
}
.front-service__decor img{
  max-width:390px;
}

/* インナー */
.front-service__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:40px;
  background:#F5F3C2C7;
  padding:80px 40px;
  height:100%;
  border-radius: 30px;
}

/* 左：グリッド */
.front-service__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:24px;
}

.service-card img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 10px;
}

.service-card h3{
  font-size:15px;
  font-weight:500;
  margin:10px 0 4px;
}

.service-card p{
  font-size:18px;
  margin:0;
  font-weight:600;
}

.service-card{
  text-align: center;
}


/* 右：テキスト */
.front-service__en{
  font-size:47px;
  font-weight:700;
  margin-bottom:0px;
}
.front-service__en--red{
  color:#FB1515;
}

.front-service__label{
  font-size:1vw;
  font-weight:600;
  margin-bottom:30px;
}

.front-service__title{
  font-size:1.5vw;
  font-weight:600;
  margin-bottom:20px;
}
.front-service__title br{
  display: none;
}

.front-service__text p{
  font-size:15px;
  font-weight:500;
  line-height:2em;
  margin-bottom:12px;
}

/* ボタン */
.front-service__btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #F2C14E;
    padding: 14px 26px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    width:70%;
    justify-content: center;
    margin-top: 50px;
    border-radius: 10px;
}

.front-service__btn,
.front-service__btn:visited{
  color: #fff;
}


.front-service__btn-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #f2c14e;
    position: relative;
}

.front-service__btn-circle::before{
   content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-55%, -50%) rotate(45deg);
  border-top: 2px solid #F2C14E;
  border-right: 2px solid #F2C14E;
}

/* ==========================
   LOOP TEXT
========================== */
.loop03{
  width:100%;
  padding:0;      /* ← ここで完全に遮断 */
  margin:0;
  overflow:hidden;
  background: #FCFBF8;
  padding-bottom: 35px;
  margin-top: -20px;
}

.loop03__box{
  display:flex;
  padding-top:5px;
}
.loop03__item{
  flex:0 0 auto;
  font-size:130px;
  white-space:nowrap;
  padding:0 25px;
  color:transparent;
  -webkit-text-stroke:0.7px rgb(251 21 21);
  font-family:Arial;
  font-weight:bold;
  margin:0;
}
.loop03__item:nth-child(odd){
  animation:loop 50s -25s linear infinite;
}
.loop03__item:nth-child(even){
  animation:loop2 50s linear infinite;
}

@keyframes loop{
  0%{ transform:translateX(100%); }
  100%{ transform:translateX(-100%); }
}
@keyframes loop2{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-200%); }
}

/* ==========================
   FRONT SUMMARY（4ブロック）
========================== */
.front-summary{
  position: relative;
  width: 100%;
  background: #F1EFE4;
  padding: 10% 0;
  overflow: hidden;
}

.page-id-623 .has-side-padding{
  padding-bottom: 4%;
}



/* Shape（下部） */
.front-summary__shape{
  direction: ltr;
  left: 0;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  width: 100%;
  bottom: -1px;
}

.front-summary__shape svg{
  display: block;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
  width: calc(100% + 1.3px);
}

.front-summary__shape .elementor-shape-fill{
  fill: #fcfbf8;
  transform: rotateY(0deg);
  transform-origin: center;
}

/* wrapper */
.front-summary__wrapper{
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

/* 1400px以下のときだけ最大幅を制限 */
@media (max-width: 1400px) {
  .has-side-padding {
    max-width: 1300px;
  }
}

.front-summary__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 20px;
  
}

/* card base */
.summary-card{
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 左上：Recruit */
.summary-card--recruit{
  background: #5FAD56;
  height: auto;
  padding: 36px;
}

.summary-card__recruit-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  height: 100%;
  align-items: center;
}

.summary-card__recruit-note{
  text-align:center;
  font-size:13px;
  margin-bottom:15px;
  font-weight: 500;
}


/* 右上：Evaluation */
.summary-card--evaluation{
  background: #FCFBF8;
  border: 2px solid #5FAD56;
  padding: 50px 25px 35px;
}


p.summary-card__desc.summary-card__desc--information {
    color: #2E2E2A;
    text-align: center;
}
@media(max-width:500px){
  p.summary-card__desc.summary-card__desc--information {
    text-align: left;
}
}

/* 左下：News */
.summary-card--news{
  background: #FCFBF8;
  border: 2px solid #5FAD56;
  padding: 50px 35px 35px;
}

/* 右下：SNS */
.summary-card--sns{
  background: #5FAD56;
  padding: 50px 35px 35px;
}

/* typography */
.summary-card__en{
  font-size: 47px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: #FB1515;
}

.summary-card__ja{
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #2E2E2A;
}

/* 英語見出し（色分け） */
.summary-card--recruit .summary-card__en,
.summary-card--sns .summary-card__en{
  color: #FCFBF8;
}

.summary-card--evaluation .summary-card__en,
.summary-card--news .summary-card__en{
  color: #5FAD56;
}

/* 日本語見出し（色分け） */
.summary-card--recruit .summary-card__ja,
.summary-card--sns .summary-card__ja{
  color: #FCFBF8;
}

/* Recruit desc */
.summary-card__desc{
  font-size: 15px;
  font-weight: 500;
  line-height:1.8;
  color: #fff;
  margin-bottom: 0;
  
}

/* Recruit button */
.summary-card__btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
}

.summary-card__btn--light{
  background: #FCFBF8;
  color: #2E2E2A;
  border-radius: 10px;
  width: 100%;
}

.summary-card__recruit-contact-btn{
  display: inline-block;
  padding: 7px 15px;
  background: #FB1515;   /* footer赤に寄せるならここ */
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.summary-card__recruit-contact-btn,
.summary-card__recruit-contact-btn:hover,
.summary-card__recruit-contact-btn:focus,
.summary-card__recruit-contact-btn:active{
  color: #fff!important;
  text-decoration: none;
  background: #FB1515;
  box-shadow: none;
  outline: none;
}

.summary-card__recruit-contact-btn:hover{
  background: #FB1515;
  transform: translateY(-2px);
  opacity: 0.8;
}

/* Recruit：丸（見た目維持） */
.summary-card__btn-circle{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #5fad56;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5fad56;
  color: #fff;
  position: relative;
  font-size: 0;
  line-height: 0;
}

.summary-card__btn-circle::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-55%, -50%) rotate(45deg);
}

/* line */
.summary-card__line img{
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 15px auto 30px;
}

/* ===== Evaluation：年度＋2×2 ===== */
.summary-card__year{
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  margin: 10px 0 18px;
  color: #2E2E2A;
  text-align: left;
}

.summary-card__year-dot{
  margin-right: 10px;
}

/* Evaluation：2×2 */
.summary-card__eval-grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 8px;
}

.summary-card__eval-grid > .summary-card__post-empty{
  grid-column: 1 / -1;
  text-align: center;
  justify-self: center;
}

.summary-card__eval-link{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 2px solid #F1EFE4;
  background: transparent;
  text-decoration: none;
  color: #2E2E2A;
  font-size: 14px;
  font-weight: 600;
  text-align: left;
}

/* ===== News：● + 日付 + タイトル（中央寄せ＋左揃え） ===== */
.summary-card__news-list{
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 10px auto 0;
}

.summary-card__news-item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2E2E2A;
  font-size: 14px;
  font-weight: 600;
}

.summary-card__news-dot{
  font-size: 14px;
  line-height: 1;
}

.summary-card__news-date{
  font-weight: 600;
}

.summary-card__news-title{
  font-weight: 600;
}

/* ===== more（News / Evaluation：丸矢印） ===== */
.summary-card__more{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #2E2E2A;
}

/* 空spanでも描画できるように固定 */
.summary-card__more-arrow{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #5fad56;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5fad56;
  position: relative;
  flex: 0 0 auto;
}

.summary-card__more-arrow::before{
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* SNS */
.summary-card__sns-desc{
  font-size: 15px;
  font-weight: 500;
  line-height: 2em;
  margin: 0 0 18px;
  color: #FCFBF8;
}

.summary-card__sns-feed{
  width: 100%;
  min-height: 220px;
}



.summary-card__recruit-list{
  list-style:none;
  padding:0;
  margin:0;
}

.summary-card__recruit-list li{
  margin-bottom:5px;
  font-size:15px;
  font-weight: 500;
}

.summary-card__recruit-box {
    border: 3px solid #fde7ab;
    padding: 30px 12px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    background:#F7F6EF;
}

.summary-card__recruit-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:15px;
}

.summary-card__recruit-list{
  list-style:none;
  padding:0;
  margin: 0 0 15px;
}



.summary-card__recruit-visual img{
  width:80%;
  height:auto;
  display:block;
  margin: 0 auto;
  object-fit: contain;
}
@media(max-width:500px){
  .summary-card__recruit-title{
    font-size: 20px;
    margin-bottom: 10px;
  }

  .summary-card__recruit-box{
    padding: 20px 15px;
  }
}
/* ==========================
   FRONT ACCESS
========================== */
.front-access{
  width: 100%;
  background: #FCFBF8;
  padding: 3% 5% 13%;
}

.front-access__wrapper{
  margin: 0 auto;
}

.front-access__inner{
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: self-start;
}

.front-access__left{
  padding: 40px;
  background: #FCFBF8; /* 念のため。すでにあれば不要 */
  border-radius: 5px;

  box-shadow:
    0 12px 30px rgba(0,0,0,.04),
    0 4px 10px rgba(0,0,0,.06);
}


/* title */
.front-access__title{
  font-size: 23px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #2E2E2A;
}

/* line */
.front-access__line img{
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 30px;
}

/* items */
.front-access__items{
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 13px;
}

.front-access__item{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
}

.front-access__dot{
  font-size: 14px;
  line-height: 1;
  margin-top: 4px;
}

.front-access__label{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.front-access__text{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

/* tel */
.front-access__tel{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.front-access__tel-icon{
  width: 26px;
  height: 35px;
  display: block;
}
img.access-tel__icon{
  height: 40px;
}

.front-access__tel-number{
  font-size: 25px;
  font-weight: 700;
  color: #2E2E2A;
}

/* contact button image */
.front-access__contact{
  display: inline-block;
  margin-top: 20px;
}

.front-access__contact img{
  max-width: 420px;
  height: auto;
  display: block;
}

/* address */
.front-access__addr{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.front-access__addr-icon{
  width: 34px;
  height: auto;
  display: block;
}

.front-access__addr-text{
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
}

/* map */
.front-access__map{
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(95,173,86,.35);
  background: #fff;
}

.front-access__map-placeholder{
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: rgba(46,46,42,.6);
}

.front-access__map iframe{
  width: 100%;
  height: 350px;
  border-radius: 15px;
  display: block;
}


/* about button */
.front-access__about{
  display: inline-flex;
  margin-top: 22px;
  text-decoration: none;
  color: #2E2E2A;
  width: 100%;
}

.front-access__about-inner{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 13px 22px;
  border: 3px solid #5FAD56;
  border-radius: 20px;
  width: 100%;
}

.front-access__about-icon{
  width:70px;
  height: auto;
  display: block;
}

.front-access__about-text{
  font-size: 20px;
  font-weight: 700;
}

/* arrow circle */
.front-access__about-arrow{
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #5fad56;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #5fad56;
  position: relative;
  flex: 0 0 auto;
}

.front-access__about-arrow::before{
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* ===============================
   TOP Responsive（1000px以下）
================================ */
@media (max-width: 1000px) {
  .front-about__en,
  .front-service__en,
  .summary-card__en{
    font-size: 40px;
  }

  .summary-card{
    padding: 20px;
  }
  .front-service__inner{
    padding: 60px 25px;
  }
  .front-service__content {
    padding-left: 20px;
}

.front-service__btn{
  width: 80%;
  margin-top: 30px;
}
.service-card h3{
  font-size: 14px;
}
.service-card p{
  font-size: 17px;
}
.service-card {
    text-align: left;
}
.front-service__decor img {
    max-width: 320px;
}
.loop03__item{
  font-size: 95px;
}
.front-hero__kengaku img{
  width: 80%;
}
.front-hero__kengaku {
  right: 20px;
}
.front-hero__scroll{
  left: 25px;
}

.front-hero__title-inner{
  font-size: 70px;
}
.front-hero__slogan{
  font-size: 60px;
}
.summary-card__line img{
  margin: 0 auto 20px;
}
}


/* ===============================
   TOP Responsive（500px以下）
================================ */
@media (max-width: 500px) {
  .front-hero{
    height: 95vh;
  }
  .front-hero__inner{
    height: 75vh;
  }

  .front-hero__wrapper {
    padding: 130px 15px 0;
    position: relative;
}

.front-hero__scroll {
    left: 20px;
}
.scrollbar-text_05{
  font-size: 12px;
}
.front-hero__title-inner{
  font-size: 52px;
}
.front-hero__slogan{
  font-size: 42px;
}
.front-hero__slogans{
  top: 0;
}
.front-hero__sub{
  font-size: 18px;
}
.front-hero__content{
  top: 50%;
}
.front-hero__kengaku img {
  width: 93%;
  margin-right: -21px;
}
.front-hero__kengaku {
  right: 0px;
}
.front-about__title{
  font-size: 23px;
  text-align: center;
  line-height: 1.8;
}
.pc-none{
  display: unset;
}

.front-about__text p{
  text-align: left;
}
.front-about__text p:nth-of-type(2) br {
    display: none;
}
.front-about{
  padding: 15% 5% 20%;
}
.front-service__decor img {
   max-width: 250px;
 }
.front-service__decor{
  top: -60px;
  right: 15px;
}
.front-service__inner {
  grid-template-columns: 1fr;
  padding: 40px 20px 52px !important;
}
.front-service__content{
  padding-left: 0;
  text-align: center;
}
.front-service__label{
  font-size: 18px;
}

.front-service__title{
  font-size: 23px;
  line-height: 1.8;
}
.front-service__title br{
  display: unset;
}
.front-service__text p{
  margin-bottom: 5px;
  text-align: left;
}

.front-service__text p br {
    display: none;
}
.front-service__btn{
  width: 100%;
}
.front-service__grid{
  gap: 15px;
}
.loop03__item {
  font-size: 75px;
}
section.loop03 {
    margin-top: 0;
    padding-bottom: 10px;
}
.front-summary{
  padding: 15% 0 20%;
}
.front-summary__grid{
  grid-template-columns: 1fr;
}
.summary-card--recruit .summary-card__recruit-grid{
  grid-template-columns: 1fr;
}
.summary-card__eval-grid{
  grid-template-columns: 1fr;
  gap: 25px;
}

.front-summary__grid{
    grid-template-columns: 1fr;
    grid-auto-rows: auto;   
  }

  .summary-card{
    height: auto; 
    padding: 40px 20px;
  }

  /* Recruitだけ1カラム */
  .summary-card--recruit .summary-card__recruit-grid{
    grid-template-columns: 1fr;
  }
.summary-card--recruit .summary-card__ja, 
.summary-card--sns .summary-card__ja,
.summary-card--recruit .summary-card__en, 
.summary-card--sns .summary-card__en{
  text-align: center;
}  
.front-access{
  padding: 12% 5% 20%;
}
.front-access__inner{
  grid-template-columns: 1fr;
}

.front-access__left {
    width: 100%;
    padding: 40px 20px;
}

.front-access__contact img {
    width: 100%;
    height: auto;
}
.front-access__items{
  gap: 5px;
  margin-bottom: 10px;
}
.front-access__contact{
  margin-top: 10px;
}
.front-access__about-icon{
  width: 56px;
}
.front-access__about-text{
  font-size: 18px;
}


}



/* ===============================
   contact　page
================================ */
.page-id-13 .subpage-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.page-id-13 .has-text-align-center{
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 20px;
}

.fluentform.ff-default.fluentform_wrapper_3.ffs_custom_wrap {
    padding: 80px 60px;
    border: 3px solid #6FBFA1;
    border-radius: 20px;
    margin-top: 20px;
}
textarea#ff_3_description {
    line-height: 1.8;
}

/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px) {
.fluentform.ff-default.fluentform_wrapper_3.ffs_custom_wrap {
    padding: 60px 40px; 
}
}
/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px) {
   .fluentform.ff-default.fluentform_wrapper_3.ffs_custom_wrap {
    padding: 60px 20px; 
}

section.subpage-content{
   padding-bottom: 15%;
}
}

/* ===============================
   プライバシーポリシー
================================ */
.page-id-3 .subpage-inner {
    max-width: 700px;
    margin: 0 auto;
}

/* プライバシーポリシー用 */
.privacy-policy p {
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.page-id-3 section.subpage-content{
  padding: 5% 5% 10%;
}

.privacy-policy p + p strong {
  display: inline-block;
  margin-top: 32px;
}

/* ===============================
   サンクスページ
================================ */

.page-id-48 .subpage-inner{
   padding:  5%;
   text-align: center;
   font-size: 15px;
   font-weight: 500;
}

.thanks-line {
    margin: 10px 0 30px;
}

body.page-id-48 .is-layout-flex {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: #fff6df;
    background-image: url(https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/school.png);
    background-repeat: no-repeat;
    background-position: right 9px bottom 0px;
    background-size: 203px auto;
}

/*  Thanks page buttons */

.thanks-buttons{
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 70px;
}

.thanks-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 500;
  
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease;
}

/* トップページへ戻る（初期：塗りつぶし） */
.thanks-button--primary{
  background: #5FAD56;
  color: #FCFBF8!important;
  border-color: #5FAD56;
}

.thanks-button--primary:hover{
  background: #FCFBF8;
  color: #5FAD56!important;
}

/* 放課後等デイサービスとは（初期：塗りつぶし） */
.thanks-button--secondary{
  background: #F2C14E;
  color: #FCFBF8!important;
  border-color: #F2C14E;
}

.thanks-button--secondary:hover{
  background: #FCFBF8;
  color: #F2C14E!important;
}

/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px) {
.page-id-48 .subpage-inner{
  padding: 15% 0; 
}
}
/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px) {
  .page-id-48 .subpage-inner{
  padding: 30% 0 15%; 
}

.page-id-48 .subpage-inner p{
   text-align: left;
   line-height: 1.8;
}

.page-id-48 .subpage-inner br{
   display: none;
}
.thanks-buttons{
   flex-direction: column;
}

.page-id-48 h3.wp-block-heading{
   font-size: 23px;
}

body .is-layout-flex{
   padding: 30px 20px 50px;
}
.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow p{
   text-align: center;
}
.wp-block-column.is-layout-flow.wp-block-column-is-layout-flow br {
    display: unset;

}
}

/* ==========================
  お知らせ一覧
========================== */
/* inner（テキスト+記事一覧カードが入る） */
.page-news__block--news .page-news__inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px 60px 80px;
  background: #FCFCFC;
  border-radius: 20px;
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.10),
    0 1px 3px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* ==========================
   head（NEWS + line + illust）
   ※NEWS直下にline、line右端にillust（画像参考の2枚目寄せ）
========================== */
.page-news__block--news .page-news__head{
  position: relative;
  margin-bottom: 40px;
  text-align: center;
}

/* title（NEWS文字） */
.page-news__block--news .page-news__title{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .08em;
  margin: 0;
  position: relative;
  display: inline-block;  /* line配置の基準 */
  padding-bottom: 50px;   /* lineぶんの余白 */
  z-index: 3;
}

/* line（line.png）：NEWS直下で中央寄せ */
.page-news__block--news .page-news__title::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 560px;             /* 必要なら調整 */
  height: 18px;             /* 画像の実寸に合わせて調整 */
  background: url("https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/line.png") no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

/* newsイラスト（news.png）：lineの右端に重ねる */
.page-news__block--news .page-news__head::after {
    content: "";
    position: absolute;
    left: 46%;
    top: -60px;
    transform: translateX(195px) translateY(-70px);
    height: 212px;
    width: 170px;
    background: url(https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/news.png) no-repeat center center;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
}
/* cards grid */
.page-news__block--news .news-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

/* ==========================
   card（loopitem-news.php側のクラスに合わせる）
========================== */
.page-news__block--news .news-card{
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news__block--news .news-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0,0,0,.12);
}

.page-news__block--news .news-card__link{
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* thumb */
.page-news__block--news .news-card__thumb{
  height: 250px;
  overflow: hidden;
}

.page-news__block--news .news-card__thumb-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* body */
.page-news__block--news .news-card__body{
  height: 110px;
  padding: 10px 15px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.page-news__block--news .news-card__date{
  font-size: 14px;
  color: inherit;
  margin: 0 0 6px;
  font-weight: 500;
}

.page-news__block--news .news-card__title{
  font-size: 17px;
  line-height: 1.5;
  font-weight: 600;
  margin: 0;
}


.page-news__block--news .news-more{
  margin-top: 30px;
  text-align: center;
}

.page-news__block--news .news-more__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #2E2E2A;
  font-weight: 700;
  margin-top: 40px;
}

.page-news__block--news .news-more__btn:hover{
   color:#F2D675 ;
}


/* ==========================
   情報公開 section wrapper
========================== */
.page-news__block--disclosure{
  padding: 10% 0 7%;
}

/* inner */
.page-news__block--disclosure .page-news__inner{
  max-width: 1300px;
  margin: 0 auto;
  padding: 60px;
  border: 3px solid #5FAD56;
  border-radius: 20px;
  background: transparent;
  position: relative;
}

/* ==========================
   head（情報公開 + line）
   ※line3.png は擬似要素で表示（幅53%）
========================== */
.page-news__block--disclosure .page-news__head{
  position: relative;
  text-align: center;
  margin-bottom: 40px;
}

/* title */
.page-news__block--disclosure .page-news__title{
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  position: relative;
  display: block;
  padding-bottom: 35px; /* line分 */
}

/* line3 */
.page-news__block--disclosure .page-news__title::after{
  content:"";
  position:absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 53%;
  height: 14px; /* 画像の実寸に合わせて調整 */
  background: url("https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/line3.png") no-repeat center bottom;
  background-size: contain;
}

/* ==========================
   公開一覧
========================== */
.page-news__block--disclosure .disclosure-list{
  max-width: 760px;
  margin: 0 auto 50px;
}

.page-news__block--disclosure .disclosure-item{
  padding: 16px 0;
  border-bottom: 1px solid rgba(95,173,86,.35);
}

.page-news__block--disclosure .disclosure-item__link{
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
p.page-news__empty {
    text-align: center;
}

.page-news__block--disclosure .disclosure-item__title{
  font-size: 16px;
  font-weight: 600;
}

/* 「（PDF）」表示：テキスト版（アイコンにする場合はここを差し替え） */
.page-news__block--disclosure .disclosure-item__title::after{
  content: "（PDF）";
  font-size: 13px;
  font-weight: 600;
  opacity: .75;
  margin-left: 6px;
}

/* ==========================
   利用者向けバナー（鍵付き誘導）
========================== */
.page-news__block--disclosure .disclosure-locked{
  display: block;
}

.disclosure-locked__title-en {
    display: block;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #f2d675;
    padding-bottom: 5px;
}

.page-news__block--disclosure .disclosure-locked__box{
  max-width: 760px;
  margin: 0 auto;
  background: #5FAD56;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
}

.page-news__block--disclosure .disclosure-locked__title{
  color: #FCFCFC;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}

.page-news__block--disclosure .disclosure-locked__text{
  color: #FCFCFC;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 22px;
}

/* button（aタグ） */
.page-news__block--disclosure .disclosure-locked__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #F2D675;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: #2E2E2A;
  transition: transform .25s ease, box-shadow .25s ease;
}

.page-news__block--disclosure .disclosure-locked__btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,.12);
}

.page-news__block--disclosure .disclosure-locked__btn::after{
  content: "›";
  font-size: 18px;
  line-height: 1;
padding-bottom: 4px;
}


/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px){
   .page-news__block--news .news-cards{
      gap:15px;
   }

   .page-news__block--news .page-news__inner {
      padding: 60px 40px 80px;
   }

   .page-news__block--news .page-news__head::after{
      height: 170px;
      top:-15px;
   }

   .page-news__block--news .news-card__thumb{
      height: 180px;
   }

}
/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px){
   .page-news__block--news .page-news__inner{
         padding: 40px 20px 60px;

   }

   .page-news__block--news .news-card__thumb{
      height: 120px;
   }

   .page-news__block--news .news-card__date{
      font-size: 12px;

   }
   .page-news__block--news .page-news__title::after {
      width: 75%;
   }

   .page-news__block--news .page-news__head::after {
      height: 150px;
      top: -11px;
      left: 7px;
   }

   .page-news__block--news .page-news__title{
      display: block;
      padding-bottom: 30px;
   }
   .page-news__block--news .news-card__title{
      font-size: 14px;
   }

   .page-news__block--news .news-card__body {
      height: 100px;
      padding:15px ;
   }

   .page-news__block--news .news-cards{
      grid-template-columns: repeat(2, 1fr);
   }

   .page-news__block--disclosure .page-news__inner {
      padding: 30px 20px;
   }

   .page-news__block--disclosure .disclosure-item__link{
      justify-content: flex-start;
   }
   .page-news__block--disclosure .page-news__title::after{
    width: 80%;
    height: 100%;
   }
}



/* =========================================================
   NEWS 詳細ページ
========================================================= */
.single section.subpage-content {
    padding:7% 5% 10%;
}

.news-single{
  max-width: 900px;
  margin: 0 auto;
}

.news-single__head{
  margin:0 auto 50px;
  padding-bottom: 18px;
  position: relative;
  text-align: center;
  max-width: 700px;
}

.news-single__head::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 100%;
    height: 2px;
    background: #5FAD56;
}

.news-single__date{
  font-size: 18px;
  color: #fb1515;;
  margin-bottom: 15px;
  font-weight: 500;
}

.news-single__title{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
}

.news-single__content {
    line-height: 2.5;
    font-size: 15px;
    font-weight: 500;
}

.news-single__footer{
  margin-top: 60px;
  text-align: center;
}

.news-single__back{
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  color: #2E2E2A;
}

.news-single__back:hover{
  color: #5FAD56;
}
.news-single__nav{
  display: flex;
  justify-content: space-between;
  max-width: 700px;
  margin: 50px auto 20px;
}

.news-single__nav a{
  text-decoration: none;
  color: #333;
}

.news-single__nav a:hover{
  opacity: 0.7;
}

/* ===============================
   Responsive（1000px以下）
================================ */
@media (max-width: 1000px){
   .single .subpage-inner{
      padding: 15% 0 5%;
}
}

/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px){
   .single .subpage-inner{
      padding: 25% 0 10%;
}
}

/* ==========================
   Business Plans (Shortcode)
   .business-plans
========================== */
.page-id-815 section.subpage-content{
   padding: 2% 5% 5%;;
}
.business-plans{
    margin: 100px auto;
    max-width: 700px;
}

/* 年度ブロック */
.business-plans__year-block{
  padding: 22px 0 26px;
  border-bottom: 1px solid rgba(46,46,42,.18);
}

.business-plans__year-block:first-child{
  padding-top: 0;
}

/* 年度見出し */
.business-plans__year{
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .04em;
  margin: 0 0 12px;
  color: #2E2E2A;
}

/* 資料リスト */
.business-plans__list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 1行 */
.business-plans__item{
  margin: 0;
  padding: 0;
}

/* リンク */
.business-plans__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #2E2E2A;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(46,46,42,.10);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

/* PDFっぽいタグ（擬似要素） */
.business-plans__link::before{
  content: "PDF";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  padding: 6px 8px;
  border-radius: 8px;
  color: #2E2E2A;
  background: #F2D675;
}

/* hover */
.business-plans__link:hover{
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  background: #fff;
}

/* 準備中 */
.business-plans__empty{
  margin: 0;
  font-size: 14px;
  color: rgba(46,46,42,.7);
}

/* ===============================
   Responsive（500px以下）
================================ */
@media (max-width: 500px){
 .business-plans{
   margin: 50px auto;
 }
 
 .business-plans__year{
   font-size: 20px;
 }
}

/* ==========================
   Therapy Support : Hero
========================== */
.page-id-9 .subpage-content{
  padding: 0;
}
.therapy-hero{
  width: 100%;
  padding: 2% 5% 5%;
  background: #FCFBF8;
}

.therapy-hero__inner{
  width: 100%;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 700px;
  border-radius: 20px;
}

@media(max-width:1450px){
  .therapy-hero__inner{
    height: 565px;
  }
}


/* ==========================
   Therapy Support : Our Support
========================== */

/* セクション */
.therapy-support-our-support{
  width: 100%;
  padding: 5% 0 10%;
  background: #FCFBF8;
}

/* inner */
.therapy-support-our-support__inner{
  width: 100%;
}

/* 上：見出し群 */
.therapy-support-our-support__top{
  text-align: center;
}

.therapy-support-our-support__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  color: #FB1515;
  line-height: 1.2;
}

.therapy-support-our-support__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-our-support__catch{
  margin: 28px 0 0;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-our-support__catch br{
  display: none;
}

.therapy-support-our-support__lead{
  margin: 20px auto 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
  max-width: 820px;
}

/* 下：枠囲み */
.therapy-support-our-support__box{
  position: relative;
  margin: 60px auto 0;
  border: 2px solid #F2D675;
  border-radius: 20px;
  padding: 44px 44px 54px;
  max-width: 1100px;
  background: transparent;
  text-align: center;
}

.therapy-support-our-support__box-en{
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  color: #FB1515;
  line-height: 1.4;
}

.therapy-support-our-support__box-ja{
  margin: 10px 0 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.6;
}

/* テキストコンテンツ */
.therapy-support-our-support__content{
  margin: 26px auto 0;
  background: #F5F3C259;
  padding: 40px;
  border-radius: 20px;
  text-align: left;
}

.therapy-support-our-support__content p{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.0;
}

.therapy-support-our-support__content p:last-child{
  margin-bottom: 0;
}

/* 右下の学校画像 */
.therapy-support-our-support__school{
  position: absolute;
  right: 22px;
  bottom: -2px;
  line-height: 0;
}

.therapy-support-our-support__school img{
  display: block;
  width: 330px;
  height: auto;
}

.therapy-support__service{
  margin: 40px 0 30px;
  padding-left: 20px;
  border-left: 4px solid #5FAD56;
}

.therapy-support__service-title{
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #2E2E2A;
}


/* ==========================
   Therapy Support : Support Policy
========================== */

.therapy-support-policy{
  width: 100%;
  padding: 5% 0;
  background: #F1EFE4;
}

.therapy-support-policy__inner{
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

/* 左 */
.therapy-support-policy__left{
  width: 48%;
}

.therapy-support-policy__left img{
  display: block;
  width: 100%;
  height: auto;
}

/* 右 */
.therapy-support-policy__right{
  width: 50%;
  text-align: center;
}

.therapy-support-policy__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  color: #FB1515;
  line-height: 1.2;
}

.therapy-support-policy__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-policy__catch{
  margin: 26px 0 0;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-policy__text{
  margin: 22px 0 0;
}

.therapy-support-policy__text p{
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.0;
}

.therapy-support-policy__text p:last-child{
  margin-bottom: 0;
}



/* ==========================
   Therapy Support : Message
========================== */

.therapy-support-message{
  width: 100%;
  padding: 7% 0 0;
  background: #FCFBF8;
}

.therapy-support-message__inner{
  width: 100%;
  text-align: center;
}

/* 見出し */
.therapy-support-message__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  color: #FB1515;
  line-height: 1.2;
}

.therapy-support-message__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-message__catch{
  margin: 28px 0 0;
  font-size: 1.5vw;
  font-weight: 600;
  line-height: 1.6;
}

.therapy-support-message__catch br{
  display: none;
}

@media(max-width:500px){
  .therapy-support-message__catch br{
    display: unset;
  }
}

/* 本文 */
.therapy-support-message__text{
  margin: 40px auto 0;
  max-width: 900px;
  text-align: center;
}

.therapy-support-message__text p{
  margin: 0 0 22px;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.1;
}

.therapy-support-message__text p:last-child{
  margin-bottom: 0;
}

/* 署名 */
.therapy-support-message__sign{
  margin-top: 36px;
  text-align: center;
  font-weight: 600;
}

/* 下線画像 */
.therapy-support-message__line{
  margin: 100px auto ;
  line-height: 0;
}

.therapy-support-message__line img {
    width: 70%;
    display: block;
    margin: 0 auto;
    height: 15px;
}

/* ==========================
   Therapy Support : Support Approach
========================== */

.therapy-support-approach{
  width: 100%;
  padding: 0 0 5%;
  background: #FCFBF8;
}

.therapy-support-approach__inner{
  width: 100%;
}

/* 見出し */
.therapy-support-approach__top{
  text-align: center;
}

.therapy-support-approach__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  color: #FB1515;
  line-height: 1.2;
}

.therapy-support-approach__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
}

/* カード */
.therapy-support-approach__cards{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 3%;
}

.therapy-support-approach__card{
  width: 100%;
}

.therapy-support-approach__card-image{
  width: 100%;
  line-height: 0;
  border-radius: 20px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.therapy-support-approach__card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.therapy-support-approach__card-title{
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  text-align: center;
}

.therapy-support-approach__card-text{
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.0;
}


/* ==========================
   Therapy : Mountain Divider
========================== */

.therapy-mountain-divider{
  position: relative;
  width: 100%;
  line-height: 0;
  background: transparent;
  background:#5FAD56;
}

/* 山 */
.therapy-mountain-divider__shape{
  width: 100%;
  overflow: hidden;
  
}

.therapy-mountain-divider__shape svg{
  display: block;
  width: 100%;
  height: auto; 
  transform: rotate(180deg);
}

.therapy-mountain-divider__fill{
  fill: #5FAD56;
}

/* 中央画像 */
.therapy-mountain-divider__image{
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  line-height: 0;
}

.therapy-mountain-divider__image img{
  display: block;
  height: 150px; /* サイズ調整 */
  width: auto;
}

/* ==========================
   Therapy Support : Daily Flow
========================== */

.therapy-daily-flow{
  width: 100%;
  padding: 0 5% 7%;
  background: #5FAD56;
  color: #FCFCFC;
}

.therapy-daily-flow__wrapper{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.therapy-daily-flow__inner{
  width: 100%;
}

/* 見出し */
.therapy-daily-flow__top{
  padding-top: 0;
  text-align: center;
}

.therapy-daily-flow__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  line-height: 1.2;
  color: #FCFCFC;
}

.therapy-daily-flow__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
  color: #FCFCFC;
}

.therapy-daily-flow__line{
  margin-top: 18px;
  line-height: 0;
}

.therapy-daily-flow__line img{
  display: block;
  margin: 40px auto 60px;
  height: 11px;
  width: 84%;
  object-fit: cover;
}





/* ===== wrapper ===== */
.therapy-timeline{
  margin-top: 40px;
}
.therapy-timeline__inner{
  max-width: 1200px;
  margin: 0 auto;
}

/* PC: 2カラム / SP: 1カラム */
.therapy-timeline__grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 900px){
  .therapy-timeline__grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ==========================
   囲み（共通）
========================== */
.therapy-timeline__col{
  padding: 32px 28px 28px;
  border-radius: 16px;
  background: #f1efe4;
  border: 2px solid transparent;
  position: relative;
}

/* 放課後 */
.therapy-timeline__col--after{
  border-color: #FB1515;
}

/* 児童発達 */
.therapy-timeline__col--child{
  border-color: #fdd668;
}

/* ==========================
   見出し（●付き）
========================== */
.therapy-timeline__label{
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 700;
  color: #2E2E2A;
  position: relative;
}

.therapy-timeline__label::before{
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  margin-right: 10px;
  vertical-align: middle;
}

.therapy-timeline__col--after .therapy-timeline__label::before{
  background: #FB1515;
}

.therapy-timeline__col--child .therapy-timeline__label::before{
  background: #fdd668;
}

/* ==========================
   フロー本体
========================== */
.therapy-timeline__flow{
  display: grid;
  grid-template-columns: 150px 1fr;
  column-gap: 25px;
  align-items: stretch;
}

/* ==========================
   左レーン
========================== */
.therapy-timeline__rail{
  position: relative;
  min-height: 100%;
}

.therapy-timeline__badge{
  width: 126px;
  min-height: 32px;
  padding: 6px 12px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #ffffff;
  background: #5fad56;
  border-radius: 999px;
  line-height: 1.2;
  text-align: center;
  position: absolute;
  left: 12px;
  z-index: 2;
}

.therapy-timeline__badge--start{
  top: 0;
}

.therapy-timeline__badge--end{
  bottom: 0;
}

.therapy-timeline__rail-line{
  position: absolute;
  left: 74px;   /* バッヂ中央 */
  top: 32px;
  bottom: 32px;
  width: 2px;
  background-image: repeating-linear-gradient(
    to bottom,
    #5fad56 0px,
    #5fad56 6px,
    transparent 6px,
    transparent 12px
  );
}

/* ==========================
   右側リスト
========================== */
.therapy-timeline__items{
  list-style: none;
  margin: 0;
}

.therapy-timeline__row{
  position: relative;
  padding: 0 0 26px 0;
  min-height: 32px;
}

.therapy-timeline__row:last-child{
  padding-bottom: 0;
}

/* ドットを左レーンの線上に固定 */
.therapy-timeline__row::before {
    content: "";
    position: absolute;
    left: -100px;
    top: 8px;
    width: 15px;
    height: 15px;
    border-radius: 999px;
    background: #5fad56;
    transform: translateX(-50%);
    z-index: 3;
}

.therapy-timeline__row-body{
  min-width: 0;
}

.therapy-timeline__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #2E2E2A;
  line-height: 1.6;
}

.therapy-timeline__text{
  margin: 6px 0 0;
  font-size: 15px;
  font-weight: 600;
  color: #2E2E2A;
  line-height: 1.7;
}

/* 注釈 */
.therapy-timeline__note{
margin: 28px 0 0;
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    text-align: center;
}

/* 1番上のドット消す */
.therapy-timeline__row:first-child::before{
  display:none;
}

/* 一番下のドット消す */
.therapy-timeline__row:last-child::before{
  display:none;
}

/* ==========================
   SP
========================== */
@media(max-width:500px){
  .therapy-timeline__col{
    padding: 28px 20px 24px;
  }

  .therapy-timeline__label{
    margin: 0 0 20px;
    font-size: 18px;
  }
  .therapy-support-our-support__content p br,
  .therapy-support-policy__text br {
    display: none;
}

  .therapy-timeline__flow{
    grid-template-columns: 108px 1fr;
    column-gap: 30px;
  }

  .therapy-timeline__badge{
    width: 92px;
    min-height: 28px;
    padding: 5px 10px;
    font-size: 12px;
    left: 8px;
  }

  .therapy-timeline__rail-line{
    left: 54px;
    top: 28px;
    bottom: 28px;
  }

  .therapy-timeline__row{
    padding: 0 0 22px 0;
    min-height: 28px;
  }

  .therapy-timeline__row::before{
    left: -84px;   /* SP時の左レーン中央に合わせる */
    top: 7px;
    width: 16px;
    height: 16px;
  }

  .therapy-timeline__title{
    font-size: 16px;
  }

  .therapy-timeline__text{
    font-size: 13px;
  }

  .therapy-timeline__note{
    font-size: 14px;
  }
}

/* 囲みコンテナ */
.therapy-daily-flow__box{
  margin: 90px auto 0;
  max-width: 1200px;
  width: 100%;
  background: #f1efe4;
  padding: 25px 50px;
  color: #2E2E2A;
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 0;
  align-items: center;
}

.therapy-daily-flow__box-images{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.therapy-daily-flow__box-images img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}


.therapy-daily-flow__box-row{
  display: grid;
  grid-template-columns: 140px 220px; /* 幅を固定 */
  justify-content: center;            /* 全体を中央へ */
  align-items: center;
  margin-bottom: 20px;
}


.therapy-daily-flow__box-head{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.6;
  white-space: nowrap;
  width: 110px;
  flex-shrink: 0;
  text-align: left;
}

.therapy-daily-flow__box-time{
  font-weight: 500;
  font-size: 15px;
  line-height: 1.6;
  text-align: left;
  flex: 1;
}
.therapy-daily-flow__box-left{
  display: flex;
  flex-direction: column;
  justify-content: center;  /* 縦中央 */
  align-items: flex-start;     /* 横中央 */
  text-align: center;       /* テキスト中央 */
}

@media (max-width: 500px){

  .therapy-daily-flow__box{
    grid-template-columns: 1fr;
    padding: 40px 20px;
    row-gap: 30px;
  }

  .therapy-daily-flow__box-left{
    align-items: flex-start;
    text-align: left;
  }

  .therapy-daily-flow__box-row{
    grid-template-columns: 120px 1fr;
    justify-content: start;
  }

  .therapy-daily-flow__box-images{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .therapy-daily-flow__box-images img{
    border-radius: 10px;
  }

}





/* ==========================
   Therapy Support : Break
========================== */

.therapy-break{
  width: 100%;
  padding: 10% 5%;
  background: #FCFBF8;
}

.therapy-break__wrapper{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.therapy-break__inner{
  width: 100%;
  position: relative;
  text-align: center;
}

/* Title */
.col-red{
  color: #FB1515;
}

.guide-breath__title {
    margin: 0;
    font-size: 80px;
    line-height: 1.1;
    font-weight: 700;
    display: inline-block;
    margin-right: 50px;
}

.word-ikou{
  color: #2E2E2A;
}

.word-rasiku span{
  display: inline-block;
}

/* 角度は微差だけ */
.word-rasiku span:nth-child(1){
  transform: rotate(337deg);
  margin-right: 5px;
}
.word-rasiku span:nth-child(2){
  transform: rotate(0deg);
}
.word-rasiku span:nth-child(3){
  transform: rotate(4deg);
}

/* line */
.therapy-break__line{
  margin-top: 18px;
  line-height: 0;
}

.therapy-break__line img {
    display: block;
    width: 70%;
    height: 13px;
    margin: 30px auto 0;
}

/* 右下：ラインの上に乗せる */
.therapy-break__kengaku{
  position: absolute;
  right: 5px;
  bottom: 0px;
  line-height: 0;
}

.therapy-break__kengaku img {
    display: block;
    width: 68%;
}

/* ==========================
   Therapy Support : Guide
========================== */

.therapy-guide{
  width: 100%;
  padding: 7% 5% 13%;
  background: #F7F6EF;
}

.therapy-guide__wrapper{
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
}

.therapy-guide__inner{
  width: 100%;
}

/* top */
.therapy-guide__top{
  text-align: center;
}

.therapy-guide__title-en{
  margin: 0;
  font-size: 47px;
  font-weight: 600;
  line-height: 1.2;
  color: #FB1515;
}

.therapy-guide__title-ja{
  margin: 8px 0 0;
  font-size: 1vw;
  font-weight: 600;
  line-height: 1.6;
  color: #2E2E2A;
}

.therapy-guide__lead{
  margin: 22px 0 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.0;
  color: #2E2E2A;
}

/* outer box */
.therapy-guide__box{
  margin-top: 50px;
  background: #FCFBF8;
  border: 3px solid #5FAD56;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
}

/* blocks */
.col-green{
  color: #5FAD56;
  margin-right: 10px;
}

.therapy-guide__block-title{
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  color: #2E2E2A;
}

.therapy-guide__text{
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.0;
  color: #2E2E2A;
}

.therapy-guide__text + .therapy-guide__text{
  margin-top: 18px;
}

.therapy-guide__divider{
  width: 100%;
  height: 1px;
  background: #D1D5DB;
  margin: 32px 0;
}

/* note box (inside) */
.therapy-guide__note-box{
  margin-top: 40px;
}

.therapy-guide__note-inner{
  width: 85%;
  margin: 0 auto;
  background: #F5F3C259;
  padding: 40px;
  position: relative;
}

.therapy-guide__note-title{
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.2;
  color: #2E2E2A;
}

.therapy-guide__note-line{
  margin-top: 12px;
  line-height: 0;
}

.therapy-guide__note-line img {
    display: block;
    height: 10px;
    width: 60%;
    margin: 20px auto;
}

.therapy-guide__note-text{
  margin: 18px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 2.0;
  color: #2E2E2A;
}

/* illustration */
.therapy-guide__note-illust{
  position: absolute;
  right: 40px;
  bottom: 5px;
  line-height: 0;
}

.therapy-guide__note-illust img{
  display: block;
  height: auto;
  width: 230px;
}

/* CTA */
.therapy-guide__cta{
  margin-top: 40px;
  text-align: center;
  line-height: 0;
}

.therapy-guide__cta-link{
  display: inline-block;
  line-height: 0;
}

.therapy-guide__cta-link img {
    display: block;
    height: auto;
    width: 70%;
    margin: 60px auto 20px;
}


/* ==========================
   GUIDE FLOW VERTICAL
========================== */
.guide-flow-vertical__inner{
  max-width:880px;
  margin:50px auto;
  
}

.guide-flow-vertical__item{
  display:grid;
  grid-template-columns: 220px 1fr;
  column-gap:40px;
  align-items:center;
  padding-bottom:48px;
  position:relative;
}

.guide-flow-vertical__item:not(:last-child)::after{
  content:"";
  position:absolute;
  left:110px;               
  top:220px;
  width:1px;
  height:40px;
  background:#ddd;
}

.guide-flow-vertical__circle{
  width:220px;
  height:220px;
  border-radius:50%;
  background:#F2D675;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:8px;
}

.guide-flow-vertical__circle .step{
  font-family:var(--font-en);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  color:#2A2418;
}

.guide-flow-vertical__circle .title{
  font-family:var(--font-ja);
  font-size:18px;
  font-weight:700;
  letter-spacing:.04em;
  color:#2A2418;
}

.guide-flow-vertical__content p{
  margin:0;
  font-size:15px;
  line-height:1.9;
  color:#2E2E2A;
  font-weight: 500;
  text-align: left;
}


/* ===============================
   デイサービス　Responsive（1000px以下）
================================ */
@media (max-width: 1000px){
      .therapy-hero__inner {
        height: 400px;
    }

    .therapy-support-our-support__title-en,
    .therapy-support-policy__title-en,
    .therapy-support-message__title-en,
    .therapy-support-approach__title-en,
    .therapy-daily-flow__title-en,
    .therapy-daily-flow__title-en{
      font-size: 35px;
    }

    .therapy-support-our-support__title-ja,
    .therapy-support-policy__title-ja,
    .therapy-support-message__title-ja,
    .therapy-support-approach__title-ja,
    .therapy-daily-flow__title-ja,
    .therapy-daily-flow__title-ja,
    .therapy-guide__title-ja{
      font-size: 19px;
    }

    .therapy-support-our-support__catch,
    .therapy-support-policy__catch,
    .therapy-support-message__catch{
      font-size: 23px
    }

    .therapy-support-our-support__box-ja{
      font-size: 20px;
    }
    .therapy-support-policy__text p,
    .therapy-support-policy__catch,
    .therapy-support-policy__title-ja,
    .therapy-support-policy__title-en
    {
      text-align: left;
    }
    .therapy-support-approach__card-title{
      font-size: 20px;
      text-align: left;
    }
    .therapy-support-approach__cards{
      gap: 15px;
    }
    .therapy-support-approach__card-title{
      min-height: 3.2em;   /* 2行分を確保（必要なら微調整） */
      line-height: 1.6;
    }

    .therapy-support-approach__card-image{
      height: 260px;
    }
    .therapy-mountain-divider__image img{
      height: 125px;
    }
    .therapy-mountain-divider__image{
      top: 25px;
    }
    .therapy-daily-flow__box{
      width: 100%;
    }
    .guide-breath__title{
      font-size: 60px;
    }
    .therapy-break{
      padding: 13% 5%;
    }
    .therapy-guide__text{
      font-size: 15px;
      text-align: left;
    }

    .therapy-guide__text br{
      display: none;
    }

    .guide-flow-vertical__content p{
      text-align: left;
    }
    .therapy-guide__note-title{
      font-size: 23px;
    }
    .therapy-guide__note-illust{
      right: -35px;
    }
    .therapy-guide__note-illust img{
      height: 170px;
      object-fit: contain;
    }
}

/* ===============================
   デイサービス　Responsive（500px以下）
================================ */
@media (max-width: 500px){
  .therapy-hero__inner{
    height: 280px;
  }

  .therapy-support-our-support__catch br{
    display: unset;
  }
  .therapy-support-our-support__lead br,
  .therapy-support-message__text p br{
    display: none;
  }
  .therapy-support-our-support__lead,
  .therapy-support-message__text p{
    text-align: left;
    line-height: 2;
    padding: 0 20px;
  }
  .therapy-support-our-support__box{
    margin-top: 40px;
    padding: 40px 20px 60px;
  }
  .therapy-support-our-support__content{
    padding: 40px 20px;
  }
  .therapy-support-our-support__school img{
    width: 290px;
  }
  .therapy-support-policy{
    padding: 15% 0;
  }
  .therapy-support-policy__inner{
    flex-direction: column-reverse;
  }
  .therapy-support-policy__right{
    width: 100%;
  }
  .therapy-support-policy__left {
    width: 100%;
    margin-top: 30px;
}

  .therapy-support-policy__title-en,
  .therapy-support-policy__title-ja,
  .therapy-support-policy__catch{
    text-align: center;
  }

  .therapy-support-policy__text p br{
    display: none;
  }

  
.therapy-support-policy__text{
  padding: 0 20px;
}
  p.therapy-support-message__sign {
    text-align: right;
    margin-right: 20px;
}
.therapy-support-message__line img{
  width: 100%;
  height: 10px;
}
.therapy-support-message__line{
  margin: 40px auto;
}
.therapy-support-approach__cards{
  grid-template-columns: 1fr;
}
.therapy-support-approach__card-image {
        height: 240px;
}
.therapy-support-approach__card-title{
  min-height: 0;
}
.therapy-support-approach__card-title{
  text-align: center;
}
.therapy-support-approach__cards {
        gap: 35px;
    }
.therapy-support-approach{
  padding: 0 0 13%;
}
.therapy-mountain-divider{
  height: 165px;
}
.therapy-mountain-divider__image{
  left: 43%;
}
.therapy-mountain-divider__image img{
    width: 120%;
    height: auto;
    max-width: none;
    display: block;
    margin: 0 auto;
  }
.therapy-daily-flow{
  padding: 7% 5% 10%;
}
.therapy-daily-flow__flow-image{
  margin-top: 70px;
}
    .therapy-daily-flow__box {
        width: 100%;
        margin-top: 50px;
        gap:15px;
    }

    .guide-breath__title {
        font-size: 40px;
    }
    .therapy-break__kengaku{
      right: -170px;
    }
    .therapy-break__line img{
      width: 100%;
    }
    .therapy-break__kengaku img{
      width: 45%;
    }
        .guide-breath__title {
        font-size: 35px;
        margin-right: 90px;
    }
        .therapy-break {
        padding: 20% 5%;
    }

    .therapy-guide__box{
      padding: 50px 20px;
    }


      .guide-flow-vertical__inner {
        width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

  .guide-flow-vertical__item{
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 0;
    align-items: start;
    padding: 18px;
    padding-bottom: 18px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
  }
  .therapy-daily-flow__box-head{
    width: 95px;
  }

  .guide-flow-vertical__item:not(:last-child)::after{
    content: none;
  }

   .guide-flow-vertical__circle {
      width: 70%;
      height: 120px;
      margin: 0 auto;
      border-radius: 60px; /* ←完全な楕円に固定 */
      padding: 0 20px;
  }

  .guide-flow-vertical__circle .title{
    font-size: 16px;
    line-height: 1.4;
  }

  .guide-flow-vertical__content p{
    font-size: 14px;
    line-height: 1.95;
  }
.guide-flow-vertical__circle .step{
      font-size: 13px;
      letter-spacing: .06em;
  }

  .guide-flow-vertical__circle .title{
      font-size: 18px;
      line-height: 1.4;
      text-align: center;
  }
.therapy-guide__note-inner{
  width: 100%;
  padding: 40px 20px 100px;
}
.therapy-guide__note-box{
  margin-top: 0;
}
.therapy-guide__note-text{
  text-align: left;
  margin-bottom: 0;
}
.therapy-guide__note-text br{
  display: none;
}
.therapy-guide__note-illust img {
        height: auto;
        width: 210px;
}
    .therapy-guide__note-illust {
        bottom: -26px;
        right: 40px;
    }
.therapy-guide__cta-link img{
  width: 100%;
  margin: 15px auto 0;
} 
.therapy-guide{
  padding: 13% 5%;
}

}

/* ==========================
   Thanks
========================== */
.thanks__inner{
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 20px;
  background: #fff6df;
  background-image: url(https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/school.png);
  background-repeat: no-repeat;
  background-position: right 9px bottom 0px;
  background-size: 203px auto;
}

.thanks__title{
  margin: 0;
}

.thanks__line{
  margin:30px auto ;
  width: 100%;
  height: 10px;
  background-image: url(https://staging.sai-irodori.design/dlop-dev/wp-content/uploads/2026/02/line.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 721px 10px;
}

.thanks__body{
  margin-top: 24px;
  font-weight: 500;
}

.thanks__text{
  margin: 0 0 16px;
}

.thanks__spacer{
  height: 15px;
}

.thanks__info{
  margin-top: 8px;
}

.thanks__info-title{
  margin: 0 0 12px;
}

.thanks__info-text{
  margin: 0 0 12px;
}

.thanks__note{
  margin: 0;
}

.thanks__buttons{
  margin-top: 28px;
  display: flex;
  justify-content: center;   /* 中央寄せ */
  gap: 20px;
}

.thanks__button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 18px 24px;
  border-radius: 999px;
  line-height: 1;
  width: 240px;              /* 同じ幅 */
}

/* トップ */
.thanks__button.is-primary{
  background: #5FAD56;
  color: #fff;
}

/* 放課後 */
.thanks__button.is-secondary{
  background: #f2c14e;
  color: #ffffff;
  border: none;
}

.thanks__info {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    background: #fff6df;
    background-repeat: no-repeat;
    background-position: right 9px bottom 0px;
    background-size: 203px auto;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.thanks__info-line{
  display: block;
}


@media(max-width:500px){
  .thanks__title{
    font-size: 23px;
  }
  .thanks__info{
    padding: 40px 40px 60px;
  }
  .thanks__buttons{
    flex-direction: column;
    margin-top: 40px;
  }
  .thanks__button{
    width: 100%;
  }
 

}

