@charset "utf-8";

/* ========================================
   Base
======================================== */

:root {
  --green: #005b1a;
  --green2: #00752a;
  --orange: #f08300;
  --red: #e60012;
  --cream: #fff8d9;
  --line: #006326;
  --text: #1d1d1d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.5;
}

.sup-support-lp {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  font-weight: 700;
}

.sup-support-lp img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* ========================================
   Hero
======================================== */

.sup-hero {
  position: relative;
  background: #fff;
}

.sup-hero__top {
  padding: 6px 16px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-align: right;
}

.sup-hero__topimg{
  display:block;
  width:100%;
  height:auto;
}

.sup-hero__body{
  position: relative;
}

.sup-hero__lead {
  margin: 0;
  color: var(--green);
  font-size: 56px;
  line-height: 1.05;
  text-shadow: 2px 2px 0 #fff;
}

.sup-hero h1 {
  margin: 5px 0 10px;
  color: var(--orange);
  font-size: 84px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 3px 3px 0 #fff, 0 0 0 #965000;
  -webkit-text-stroke: 2px #fff;
}

.sup-hero__badge {
  position: relative;
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 20px;
  background: var(--green);
  color: #fff;
  font-size: 25px;
}

.sup-hero__badge::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  border-top: 18px solid #7c7c7c;
  border-left: 22px solid transparent;
}

.sup-hero__text {
  max-width: 530px;
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  text-align: center;
}

.sup-hero__photo {
  position: absolute;
  top: 50px;
  right: 0;
  width: 430px;
  height: 260px;
  border-radius: 0 0 0 80px;
  background: linear-gradient(135deg, #fff7ef, #e9f5ed);
  opacity: 0.95;
}

.sup-hero__photo::after {
  content: "ご家族とスタッフの写真エリア";
  position: absolute;
  inset: 45% 20px auto;
  color: #777;
  font-weight: 500;
  text-align: center;
}

.sup-hero__icon{
  position: absolute;
  right: 20px;
  bottom: -10px;      /* 少し下にはみ出す */
  width: 170px;       /* 大きさ調整 */
  height: auto;
  z-index: 10;
}

/* ========================================
   Common panel
======================================== */

.sup-panel {
  margin: 22px 20px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.sup-panel h2,
.sup-flow h2,
.sup-reason h2,
.sup-voice h2 {
  margin: 0;
  padding: 10px 16px;
  background: var(--green);
  color: #fff;
  font-size: 32px;
  line-height: 1.25;
  text-align: center;
}

/* ==========================
   ご利用の流れ
========================== */

.flow-box{
  margin:24px 20px;
  border:none;
  background:transparent;
  overflow:visible;
}

.flow-box h2{
  position:relative;
  display:inline-block;
  margin:0 0 -2px;
  padding:15px 36px;
  border-radius:12px 12px 0 0;
  background:var(--green);
  color:#fff;
  font-size:34px;
  font-weight:900;
  line-height:1.2;
  text-align:left;
  z-index:2;
}

.flow-box__inner{
  padding:26px 20px 18px;
  border:2px solid var(--green);
  border-radius:0 12px 12px 12px;
  background:#fff;
}

.flow-box .flow-list{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  margin:0;
  padding:0;
  list-style:none;
}

.flow-box .flow-item{
  position:relative;
  padding:20px 22px 18px;
  color:var(--green);
  text-align:center;
  line-height:1.15;
}

.flow-box .flow-item:not(:last-child){
  border-right:2px dashed #9bc3aa;
}

.flow-title{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-height:112px;
  margin-bottom:18px;
  text-align:center;
}

.flow-title span{
  display:flex;
  align-items:center;
  justify-content:center;
  width:58px;
  height:58px;
  margin:0;
  border-radius:50%;
  background:var(--green);
  color:#fff;
  font-size:34px;
  font-weight:900;
  line-height:1;
}

.flow-title strong{
  display:block;
  color:var(--green);
  font-size:21px;
  font-weight:900;
  line-height:1.2;
}

.flow-box .flow-image{
  height:120px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
}

.flow-box .flow-image img{
  width:auto;
  height:auto;
  max-width:150px;
  max-height:110px;
  object-fit:contain;
}

.flow-box .flow-arrow{
  position:absolute;
  top:58%;
  right:-22px;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  background:var(--green);
  clip-path:polygon(0 25%,65% 25%,65% 0,100% 50%,65% 100%,65% 75%,0 75%);
  z-index:5;
}

.flow-box .flow-item:last-child .flow-arrow{
  display:none;
}

/* ========================================
   Trouble list
======================================== */

.sup-trouble{
  margin-bottom: 8px;
}

.sup-trouble__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 36px;
  padding: 20px 26px;
}

.sup-trouble__grid p {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid #c9d8cc;
  font-size: 22px;
}

.sup-trouble__grid span {
  width: 42px;
  font-size: 34px;
  text-align: center;
}

/* ========================================
   Consultation title
======================================== */

.sup-consult {
  display:grid;
  grid-template-columns: 260px 1fr 160px;
  align-items:end;
  gap:14px;
  margin:-6px 28px -6px;
}

.sup-consult__lead{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 140px;
  margin: 0;
  padding: 0 18px;      
  color: var(--green);
  font-size: 16px;      
  line-height: 1.15;
  text-align: center;
  white-space: nowrap;  
}

.sup-consult__lead strong{
  display:block;
  margin-top:12px;
  color: var(--orange);   /* ← オレンジを明示 */
  font-size:24px;
  font-weight:900;
  line-height:1.15;
  white-space:normal;
}

.sup-consult__lead::before,
.sup-consult__lead::after{
  content:"";
  position:absolute;
  top:50%;
  width:1px;
  height:72px;
  background:var(--green);
}

.sup-consult__lead::before{
  left:8px;
  transform:translateY(-50%) rotate(-14deg);
}

.sup-consult__lead::after{
  right:8px;
  transform:translateY(-50%) rotate(14deg);
}

.sup-consult h2 {
  margin: 0 0 30px;
  color: var(--green);
  font-size: 54px;
  font-weight: 900;      /* 太く */
  line-height: 1.15;     /* 行間を少し広げる */
  letter-spacing: 0.02em;
  text-align: center;
}

.sup-consult h2 span{
  color: var(--orange);
  font-weight: 900;
}

.sup-consult__person-img{
  width:165px;
  height:auto;
  display:block;
  align-self:end;
  margin-bottom:6px;
}

/* ========================================
   Support menu
======================================== */

.sup-menu{
  margin-top: 0;
}

.sup-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  padding: 12px 20px 6px;
}

.sup-menu__grid dl {
  display:grid;
  grid-template-columns:minmax(0,1fr) 145px;
  gap:12px;
  align-items:center;
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid #b8c8bd;
}

.sup-menu dt {
  font-size: 18px;
  line-height: 1.25;
}

.sup-menu dt em {
  display: inline-block;
  margin-right: 4px;
  padding: 2px 5px;
  border-radius: 16px;
  background: #ffea00;
  color: #e60012;
  font-size: 15px;
  font-style: normal;
  transform: rotate(-10deg);
}

.sup-menu dd {
  justify-self:end;
  transform:translateX(5px);
  margin: 0;
  color: var(--red);
  font-size: 28px;
  white-space: nowrap;
  text-align: right;
}

.menu-one-line{
  white-space: nowrap;
  font-size: 17px;
}

.sup-menu small {
  font-size: 14px;
  line-height: 1.4;
}

.sup-menu .sup-point {
  color: var(--green);
  font-size: 28px;
  line-height: 1;
}

.sup-menu .sup-point span {
  font-size: 20px;
}

.sup-note {
  margin: 0 20px 12px;
  color: var(--red);
  font-size: 14px;
  text-align: right;
}

.menu-first{
    white-space: nowrap !important;
    font-size: 13px;
    letter-spacing: -0.04em;
}

/* ========================================
   Price box
======================================== */

.price-box{
  margin:24px 20px;
  padding:0;
  border:none;
  background:transparent;
  overflow:visible;
}

.price-box h2{
  position:relative;
  display:inline-block;
  margin:0 0 -2px;
  padding:15px 36px;
  border-radius:12px 12px 0 0;
  background:var(--green);
  color:#fff;
  font-size:34px;
  font-weight:900;
  line-height:1.2;
  text-align:left;
  z-index:2;
}

.price-box__inner{
  padding:28px 20px 20px;
  border:2px solid var(--green);
  border-radius:0 12px 12px 12px;
  background:#fff;
}

.price-box__top{
  display:grid;
  grid-template-columns:210px 1fr 250px;
  align-items:center;
  gap:26px;
  margin-bottom:22px;
}

/* 左：10km吹き出し */
.price-box__area{
  position:relative;
  width:190px;
  padding:14px 14px;
  border-radius:14px;
  background:var(--green);
  color:#fff;
  font-weight:900;
  line-height:1.05;
}

.price-box__area::after{
  content:"";
  position:absolute;
  top:50%;
  right:-18px;
  transform:translateY(-50%);
  width:20px;
  height:40px;
  background:var(--green);
  clip-path:polygon(0 0,100% 50%,0 100%);
}

.price-box__area span{
  display:block;
  font-size:20px;
}

.price-box__area strong{
  display:block;
  font-size:58px;
  font-weight:900;
  line-height:.9;
  letter-spacing:-0.04em;
}

.price-box__area em{
  display:block;
  text-align:right;
  font-size:20px;
  font-style:normal;
}

/* 中央：5,500円 */
.price-box__main{
  transform:translateX(-20px);
  text-align:left;
  color:var(--red);
  min-width:0;
}

.price-box__main p{
  margin:0 0 4px;
  color:var(--red);
  font-size:22px;
  font-weight:900;
  line-height:1.2;
  white-space:nowrap;
}

.price-box__price{
  display:flex;
  justify-content:flex-start;
  align-items:flex-end;
  gap:0;
  color:var(--red);
  line-height:1;
  white-space:nowrap;
}

.price-box__price strong{
  font-size:96px;
  font-weight:900;
  line-height:.9;
  letter-spacing:-0.05em;
}

.price-yen{
  font-size:56px;
  font-weight:900;
  line-height:1;
  margin-left:0;
}

.price-tax{
  font-size:38px;
  font-weight:900;
  line-height:1;
  margin-left:-12px;
  margin-bottom:4px;
}

/* 右：家・車 */
.price-box__home{
  text-align:center;
  color:var(--green);
}

.price-box__home p{
  position:relative;
  display:inline-block;
  margin:0 0 8px;
  color:var(--green);
  font-size:27px;
  font-weight:900;
  line-height:1.2;
}

.price-box__home p::before,
.price-box__home p::after{
  content:"";
  position:absolute;
  top:6px;
  width:1px;
  height:50px;
  background:var(--green);
}

.price-box__home p::before{
  left:-28px;
  transform:rotate(-14deg);
}

.price-box__home p::after{
  right:-28px;
  transform:rotate(14deg);
}

.price-box__home img{
  display:block;
  width:235px;
  max-width:100%;
  height:auto;
  margin:0 auto;
}

/* 下：5km料金 */
.price-box__bottom{
    width:76%;
    margin:0 auto;
    padding:16px 24px;
    border:2px solid var(--green);
    border-radius:16px;
    background:var(--cream);
    text-align:center;
}

.price-box__bottom-main{
    display:flex;
    justify-content:center;
    align-items:flex-end;
    gap:14px;
    margin:0;
    white-space:nowrap;
}

.price-box__bottom-main span{
    color:var(--green);
    font-size:31px;
    font-weight:900;
    line-height:1.1;
}

.price-box__bottom-main strong{
    color:var(--red);
    font-size:68px;
    font-weight:900;
    line-height:.9;
    letter-spacing:-0.04em;
    transform:none;
}

.price-box__bottom-main strong em{
    font-size:40px;
    font-style:normal;
}

.price-box__bottom-main small{
    color:var(--red);
    font-size:24px;
    font-weight:900;
    line-height:1;
    margin:0 0 6px;
    transform:none;
}

.price-box__bottom p{
    margin:12px 0 0;
    color:var(--green);
    font-size:20px;
    font-weight:900;
    line-height:1.2;
}

.price-box__bottom-main small{
    color:var(--red);
    font-size:24px;
    font-weight:900;
    line-height:1;
    margin-bottom:0;
    margin-left:0;
}

/* ========================================
   Ribbon heading
======================================== */

.ribbon{
  position: relative;
  display: table;
  margin: 0 auto -10px;
  text-align: center;
  z-index: 5;
}

.ribbon h2{
  position: relative;
  z-index: 3;
  margin: 0;
  padding: 14px 70px;
  background: var(--green);
  color: #fff;
  font-size: 42px;
  line-height: 1.25;
}

.ribbon__tail{
  position: absolute;
  bottom: -18px;
  width: 110px;
  height: 56px;
  background: #3f7f35;
  z-index: 1;
}

.ribbon__tail--left{
  right: 100%;
  margin-right: -35px;
  clip-path: polygon(0 0,100% 0,100% 100%,0 100%,12% 50%);
}

.ribbon__tail--right{
  left: 100%;
  margin-left: -35px;
  clip-path: polygon(0 0,100% 0,88% 50%,100% 100%,0 100%);
}

.ribbon h2::before,
.ribbon h2::after{
  content: "";
  position: absolute;
  bottom: -18px;
  width: 34px;
  height: 18px;
  background: #003d12;
  z-index: -1;
}

.ribbon h2::before{
  left: 0;
  clip-path: polygon(0 0,100% 0,100% 100%);
}

.ribbon h2::after{
  right: 0;
  clip-path: polygon(0 0,100% 0,0 100%);
}

/* ========================================
   Reason / Voice
======================================== */

.sup-reason,
.sup-voice{
  margin: 34px 20px 0;
}

/* 理由 */
.sup-reason__grid{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:0;
  padding:34px 12px 24px;
  border:2px solid var(--line);
  border-radius:8px;
}

.sup-reason article{
  padding:0 10px;
  text-align:center;
}

.sup-reason article + article{
  border-left:1px dashed #9bc3aa;
}

.reason-icon{
  height:120px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:12px;
}

.reason-icon img{
  display:block;
  width:auto;
  height:110px;
  max-width:140px;
  object-fit:contain;
}

.sup-reason article h3{
  margin:8px 0 12px;
  color:var(--green);
  font-size:21px;
  font-weight:900;
  line-height:1.15;
}

.sup-reason p{
  margin:0;
  font-size:14px;
  font-weight:500;
  line-height:1.55;
}

/* お客様の声 */
.sup-voice__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.sup-voice article{
    position:relative;
    min-height:210px;
    padding:22px 135px 18px 18px;
    border:2px solid var(--line);
    border-radius:8px;
    background:#fff;
}

.sup-voice p{
    margin:0 0 14px;
    font-size:14px;
    font-weight:900;
    line-height:1.7;
}

.sup-voice strong{
    display:block;
    font-size:14px;
    font-weight:900;
}

.voice-person{
    position:absolute;
    right:12px;
    bottom:0;
    width:120px;
}

.voice-person img{
    display:block;
    width:100%;
    height:auto;
}

.sup-voice article:nth-child(2) .voice-person{
    width:145px;
}

/* ========================================
   CTA
======================================== */

/* CTA全体 */
.sup-cta{
    display:grid;
    grid-template-columns:1fr 300px;   /* 380→300 */
    align-items:center;
    gap:18px;

    margin:24px 20px;
    padding:16px 18px;

    background:var(--green);
}

.sup-cta__left{
    display:flex;
    align-items:center;
    gap:18px;
}

/* 黄色丸 */

.sup-cta__circle{
    width:90px;
    height:90px;

    border-radius:50%;
    background:#fff000;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--green);
    font-size:16px;
    font-weight:900;
    line-height:1.3;
    text-align:center;

    flex-shrink:0;
}

/* タイトル */

.sup-cta__text{
    flex:1;
}

.sup-cta__text h2{
    margin:0 0 10px;
    color:#fff000;
    font-size:32px;   
    font-weight:900;
    line-height:1.1;
}

/* 白ボックス */

.sup-cta__point{
    display:flex;
    flex-wrap:wrap;
    gap:6px;

    margin:0;
    padding:0;
    list-style:none;
}

.sup-cta__point li{

    background:#fff;
    color:var(--green);

    padding:5px 9px;      

    font-size:15px;     
    font-weight:900;
    line-height:1.2;
}

.sup-cta__point span{
    font-size:11px;
}

/* 店舗検索画像 */

.sup-cta__shop{
    display:block;
}

.sup-cta__shop img{
    display:block;
    width:100%;
    height:auto;
}

/*=======================================
  ご利用の流れ 下部メッセージ（PC）
=======================================*/

.sup-flow__message{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin:24px 0 0;
    padding:18px 28px;

    border:2px solid var(--green);
    border-radius:18px;

    background:linear-gradient(#f7fbf2,#eef7e8);
}

.sup-flow__message-text{
    flex:1;
    text-align:center;
}

.sup-flow__message-text strong{
    display:block;
    color:var(--green);
    font-size:34px;
    font-weight:900;
    line-height:1.2;
}

.sup-flow__message-text small{
    display:block;
    margin-top:10px;
    font-size:21px;
    font-weight:900;
    color:#111;
    line-height:1.4;
}

.sup-flow__message-img{
    flex:0 0 210px;
    text-align:right;
}

.sup-flow__message-img img{
    width:210px;
    height:auto;
    display:block;
}

/* PCでは改行しない */
.sp-br{
    display:none;
}

/* ========================================
   Responsive
======================================== */

@media (max-width: 768px) {

  /* ==========================
     Base / common
  ========================== */

  .sup-support-lp{
    max-width:100%;
  }

  .sup-panel{
    margin:16px 14px;
  }

  .sup-panel h2,
  .sup-flow h2,
  .sup-reason h2,
  .sup-voice h2{
    padding:10px 16px;
    font-size:23px;
    line-height:1.3;
  }

  .sp-br{
    display:block;
  }

  /* ==========================
     Hero
  ========================== */

  .sup-hero__top{
    font-size:13px;
  }

  .sup-hero__body{
    position:relative;
    min-height:auto;
    padding-bottom:20px;
  }

  .sup-hero__lead{
    font-size:36px;
  }

  .sup-hero h1{
    font-size:55px;
  }

  .sup-hero__badge{
    font-size:17px;
  }

  .sup-hero__text{
    font-size:15px;
    text-align:left;
  }

  .sup-hero__photo{
    top:auto;
    right:0;
    bottom:0;
    width:55%;
    height:150px;
  }

  .sup-hero__circle{
    right:14px;
    bottom:18px;
    width:100px;
    height:100px;
    font-size:15px;
  }

  .sup-hero__icon{
    position:absolute;
    right:10px;
    bottom:10px;
    width:110px;
    z-index:10;
  }

  /* ==========================
     Trouble
  ========================== */

  .sup-trouble{
    margin-top:10px;
  }

  .sup-trouble__grid{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
    padding:12px 16px;
  }

  .sup-trouble__grid p{
    font-size:16px;
  }

  /* ==========================
     ご相談受付
  ========================== */

  .sup-consult{
    grid-template-columns:1fr;
    justify-items:center;
    gap:12px;
    margin:20px 20px 0;
  }

  .sup-consult__lead{
    height:auto;
    margin-bottom:8px;
    padding:0 18px;
  }

  .sup-consult__lead strong{
    margin-top:8px;
  }

  .sup-consult h2{
    margin:0;
    font-size:40px;
    line-height:1.08;
  }

  .sup-consult__person-img{
    display:block;
    width:150px;
    margin:-8px auto 0;
  }

  /* ==========================
   サポートメニュー（スマホ）
========================== */

.sup-menu h2{
  font-size:21px;
  line-height:1.35;
}

.sup-menu__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:0;
  padding:12px 16px;
}

.sup-menu__grid dl{
  display:grid;
  grid-template-columns:minmax(0,1fr) 112px;
  gap:8px;
  align-items:center;
  margin:0;
  padding:12px 0;
  border-bottom:1px solid #b8c8bd;
}

.sup-menu dt{
  min-width:0;
  font-size:16px;
  line-height:1.3;
}

.sup-menu dt em{
  display:inline-block;
  margin-left:-4px;
  margin-right:8px;
  padding:1px 5px;
  border-radius:16px;
  background:#ffea00;
  color:#e60012;
  font-size:13px;
  font-style:normal;
  transform:rotate(-10deg);
}

.sup-menu dd{
  justify-self:end;
  margin:0;
  color:var(--red);
  font-size:22px;
  white-space:nowrap;
  text-align:right;
  transform:none;
}

.menu-one-line{
  white-space:normal;
  font-size:14px;
  line-height:1.25;
  letter-spacing:-0.03em;
}

/* 1件目だけ調整 */
.menu-first{
    white-space:normal !important;
    font-size:14px;
    line-height:1.25;
    letter-spacing:0;     /* または -0.01em */
}

.sup-menu__grid dl:first-child dd{
  font-size:20px;
}

/* 注釈 */
.sup-menu small{
  font-size:12px;
  line-height:1.4;
}

/* 100PT */
.sup-menu .sup-point{
  color:var(--green);
  font-size:28px;
  line-height:1.2;
  text-align:right;
  white-space:nowrap;
}

.sup-menu .sup-point span{
  display:block;
  font-size:16px;
  line-height:1.2;
}

/* 並び順 */
.sup-menu__grid dl:nth-child(1){order:1;}
.sup-menu__grid dl:nth-child(3){order:2;}
.sup-menu__grid dl:nth-child(5){order:3;}
.sup-menu__grid dl:nth-child(7){order:4;}
.sup-menu__grid dl:nth-child(9){order:5;}

.sup-menu__grid dl:nth-child(2){order:6;}
.sup-menu__grid dl:nth-child(4){order:7;}
.sup-menu__grid dl:nth-child(6){order:8;}
.sup-menu__grid dl:nth-child(8){order:9;}
.sup-menu__grid dl:nth-child(10){order:10;}

	/* ==========================
     出張サポート料金
  ========================== */

  .price-box{
    margin:16px 14px;
  }

  .price-box h2{
    padding:10px 16px;
    font-size:20px;
  }

  .price-box__inner{
    padding:18px 12px 14px;
  }

  .price-box__top{
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:16px;
  }

  .price-box__area{
    width:100%;
    padding:28px 14px;
    text-align:center;
  }

  .price-box__area::after{
    display:none;
  }

  .price-box__area span{
    font-size:25px;
  }

  .price-box__area strong{
    display:block;
    margin:10px 0;
    font-size:62px;
  }

  .price-box__area em{
    font-size:25px;
    text-align:center;
  }

  .price-box__main{
    transform:none;
    text-align:center;
  }

  .price-box__main p{
    font-size:21px;
    white-space:normal;
  }

  .price-box__price{
    justify-content:center;
    padding-bottom:18px;
  }

  .price-box__price strong{
    font-size:70px;
  }

  .price-yen{
    font-size:38px;
  }

  .price-tax{
    font-size:18px;
    margin-left:-6px;
    margin-bottom:3px;
  }

  .price-box__home p{
    font-size:24px;
  }

  .price-box__home img{
    width:220px;
  }

  .price-box__bottom{
    width:100%;
    padding:18px 14px;
  }

  .price-box__bottom-main{
    display:block;
    white-space:normal;
  }

  .price-box__bottom-main span{
    display:block;
    font-size:22px;
  }

  .price-box__bottom-main strong{
    display:inline-block;
    font-size:52px;
  }

  .price-box__bottom-main strong em{
    font-size:30px;
  }

  .price-box__bottom-main small{
    font-size:16px;
  }

  .price-box__bottom p{
    font-size:16px;
  }

  /* ==========================
     ご利用の流れ
  ========================== */

  .flow-box{
    margin:16px 14px;
    overflow:visible;
  }

  .flow-box h2{
    display:inline-block;
    width:auto;
    max-width:88%;
    padding:10px 28px 10px 18px;
    font-size:19px;
    line-height:1.2;
    text-align:left;
    border-radius:10px 10px 0 0;
  }

  .flow-box__inner{
    padding:18px 14px;
    overflow:hidden;
    border:2px solid var(--green);
    border-radius:0 10px 10px 10px;
  }

  .flow-box .flow-list{
    display:block !important;
    grid-template-columns:none !important;
    width:100%;
  }

  .flow-box .flow-item{
    width:100%;
    padding:34px 0;
    border-right:none !important;
    text-align:center;
  }

  .flow-box .flow-item:not(:last-child){
    border-bottom:2px dashed #9bc3aa;
  }

  .flow-box .flow-item:last-child{
    border-bottom:none;
  }

  .flow-title{
    min-height:0;
    gap:10px;
    margin-bottom:16px;
  }

  .flow-title span{
    width:54px;
    height:54px;
    font-size:30px;
  }

  .flow-title strong{
    font-size:24px;
    line-height:1.25;
  }

  .flow-box .flow-image{
    height:auto;
    justify-content:center;
    align-items:center;
  }

  .flow-box .flow-image img{
    width:auto;
    height:auto;
    max-width:170px;
    max-height:none;
  }

  .flow-box .flow-arrow{
    left:50%;
    right:auto;
    top:auto;
    bottom:-18px;
    transform:translateX(-50%) rotate(90deg);
    width:36px;
    height:36px;
  }

  .flow-box .flow-item:last-child .flow-arrow{
    display:none;
  }

  .sup-flow__message{
    display:block !important;
    margin:22px 0 0;
    padding:20px 16px;
    text-align:center;
  }

  .sup-flow__message-text{
    text-align:center;
  }

  .sup-flow__message-text strong{
    font-size:28px;
    line-height:1.25;
  }

  .sup-flow__message-text small{
    font-size:17px;
    line-height:1.55;
  }

  .sup-flow__message-img{
    display:flex;
    justify-content:center;
    margin-top:14px;
  }

  .sup-flow__message-img img{
    width:220px;
    max-width:100%;
    height:auto;
  }

  /* ==========================
     リボン見出し
  ========================== */

  .ribbon{
    margin:0 auto -10px;
    margin:0 auto -10px;
  }

  .ribbon h2{
    padding:10px 18px;
    font-size:21px;
    line-height:1.3;
  }

  .ribbon__tail{
    width:60px;
    height:36px;
    bottom:-20px;
  }

  .ribbon__tail--left{
    margin-right:-28px;
    clip-path:polygon(0 0,100% 0,100% 100%,0 100%,18% 50%);
  }

  .ribbon__tail--right{
    margin-left:-28px;
    clip-path:polygon(0 0,100% 0,82% 50%,100% 100%,0 100%);
  }

  .ribbon h2::before,
  .ribbon h2::after{
    bottom:-12px;
    width:28px;
    height:12px;
  }

  .ribbon--reason h2{
    padding:5px 50px;
    font-size:21px;
    line-height:1.25;
  }

  .ribbon--reason .ribbon__tail,
  .sup-voice .ribbon__tail{
    height:50px;
    bottom:-20px;
}

  /* ==========================
     選ばれる理由 / お客様の声
  ========================== */

  .sup-reason,
  .sup-voice{
    margin:24px 14px 0;
}

  .sup-reason__grid,
  .sup-voice__grid{
    grid-template-columns:1fr;
    width:100%;
  }

  .sup-reason__grid{
    padding-top:24px;
  }

  .sup-reason h2,
  .sup-voice h2{
    width:auto;
    max-width:none;
    margin:0 auto -8px;
    padding:10px 16px;
  }

  .sup-reason > h2::before,
  .sup-reason > h2::after,
  .sup-voice > h2::before,
  .sup-voice > h2::after{
    display:none;
  }

  .sup-reason article{
    padding:16px 20px;
    border-left:none !important;
    border-bottom:1px dashed #9bc3aa;
  }
	
/* スマホ：最後の項目だけ下線を消す */
  .sup-reason article:last-child{
    border-bottom:none;
  }	

  .sup-voice__grid{
    margin-top:12px;
  }

  .sup-voice article{
    min-height:0;
    padding:18px 22px 0;
  }

  .voice-person{
    position:static;
    width:120px;
    margin:10px auto 0;
  }

  .sup-voice p{
    font-size:16px;
    line-height:1.7;
  }

  .sup-voice strong{
    display:block;
    margin-bottom:16px;
    font-size:17px;
  }

  /* ==========================
     CTA
  ========================== */

  .sup-cta{
    grid-template-columns:1fr;
    gap:14px;
    margin:24px 14px;
    padding:16px;
  }

  .sup-cta__left{
    display:block;
    text-align:center;
  }

  .sup-cta__circle{
    margin:0 auto 12px;
  }

  .sup-cta__text h2{
    font-size:28px;
  }

  .sup-cta__point{
    justify-content:center;
  }

  .sup-cta__point li{
    padding:5px 8px;
    font-size:14px;
  }

  .sup-cta__shop{
    width:100%;
    max-width:300px;
    margin:0 auto;
  }
	
  .sp-br{
        display:block;
    }	

}
