

#support{
  .support-media {
    /* max-width: 840px; */
    margin: 0 auto;
  }
  .ptb80{
    padding: 80px 0;
  }
  .imgcenter{
    text-align: center;
  }
  .txtleft{
    text-align: left;
  }
  .tit-mid{
    margin: 36px 0 36px;

  }
  @media (max-width: 767px){
      .ptb80{
    padding: 40px 0;
  }
  }

  .Heading {
  background: url(../images/support/heading_bg.jpg) no-repeat center / cover;
  margin-bottom: 0;
  }
  .Lead {
    background: url(../images/reform/lead_bg_pc.jpg) no-repeat center / cover;
  }
  .lead {
    text-align: center;
    line-height: 2;
    margin-bottom: 60px;
}
  .Lead .txt {
    font-weight: 700;
    font-size: 20px;
    text-align: center;
}
/* ===== layout ===== */
.support-cards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

@media (max-width: 767px) {
  .support-cards__grid {
    grid-template-columns: 1fr;
  }
}

/* ===== card ===== */
.support-card {
  position: relative;
  border-radius: 16px;
  background: #fff;
}
.support-card.support-card--green {
    border: 3px solid #23464a;
}
.support-card.support-card--blue {
    border: 3px solid #1f3442;
}

.support-card__head {
  padding: 24px;
  color: #fff;
  border-radius: 12px 12px 0 0;
  text-align: center;
}

.support-card--green .support-card__head {
  background: #23464a;
}
.support-card--blue .support-card__head {
  background: #1f3442;
}
.support-card--green .support-card__lead {
  color: #23464a;
}
.support-card--blue .support-card__lead {
  color: #1f3442;
}
.support-card__title{
  text-align: center;
}
/* badge */
.support-card__badge {
  position: absolute;
  top: -58px;
  left: 24px;
  text-align: center;
  font-weight: 700;
  line-height: 1.1;
  padding-top: 18px;
}

.support-card__badge span {
  display: block;
  font-size: 14px;
}

.support-card__badge strong {
  font-size: 28px;
}

/* body */
.support-card__body {
  padding: 32px 24px 32px;
}

.support-card__icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
}

.support-card__lead {
  text-align: center;
  font-weight: 700;
  margin-bottom: 16px;
}

.support-card__text {
  line-height: 1.8;
  margin-bottom: 24px;
}

.support-card--green .support-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 12px 24px;
  border: 2px solid #23464a;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #23464a;
  box-shadow: 3px 3px 0 #23464a;
}
.support-card--blue .support-card__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 0 auto;
  padding: 12px 24px;
  border: 2px solid #1f3442;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #1f3442;
  box-shadow: 3px 3px 0 #1f3442;
}


/* ===== panel style (reuse support-card) ===== */
.support-card--panel {
  border: 3px solid #23464a;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.support-card--panel .support-card__head {
  background: #23464a;
  padding: 34px 24px;
}

.support-card--panel .support-card__titleText {
  margin: 0;
  color: #fff;
  text-align: center;
  letter-spacing: .02em;
}

.support-card--panel .support-card__body {
  padding: 36px 32px;
}


/* left content */
.support-panel__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 28px;
}

.support-panel__icon {
  background: #f3f5f6;
  border-radius: 6px;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
}

.support-panel__icon img {
  width: 72px;
  height: auto;
  display: block;
}

.support-panel__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  color: #1f3442;
}

/* checks */
.support-panel__checks {
  margin: 22px 0 0;
  font-size: 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.support-panel__checks li {
  position: relative;
  font-size: 16px;
  font-weight: 900;
  color: #1f3442;
  line-height: 1.5;
}

.support-panel__checks li::before {
  content: "";
  background-image: url(https://www.shima-j.co.jp/wp-content/uploads/2025/12/icn_check.png);
  position: absolute;
  left: 0;
  top: 2px;
  width: 36px;
  height: 36px;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 22px;
  font-weight: 900;
}

/* right image */
.support-card__media {
  border-radius: 12px;
  overflow: hidden;
}

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


/* ===== responsive ===== */
@media (max-width: 767px) {

  .support-card--panel .support-card__body {
    padding: 22px 18px;
  }
  .support-card__badge{
    left: -14px;
  }

  .support-panel__row {
    grid-template-columns: 88px 1fr;
    gap: 14px;
  }

  .support-panel__icon {
    width: 88px;
    height: 88px;
  }

  .support-panel__icon img {
    width: 54px;
  }

  .support-panel__text {
    font-size: 18px;
  }

  .support-panel__checks li {
    font-size: 16px;
  }
}
/* buttons */
.link-buttons{
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 48px;
}

.link-btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 28px;
  background: #1c2b4f;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 6px 6px 6px rgba(0,0,0,0.16) ;
}

/* 左右を同じ幅にする */
.link-btn__spacer,
.link-btn__icon{
  width: 24px; /* アイコンと同幅 */
  flex-shrink: 0;
}

/* 中央テキスト */
.link-btn__text{
  flex: 1;
  text-align: center;
}

.link-btn__icon img{
  display: block;
}


/* SP */
@media (max-width: 767px){
  .link-buttons{
    flex-direction: column;
    gap: 16px;
  }

  .link-btn{
    width: 100%;
  }
}

/*------------------  support_plan01  --------------*/
/* ===== wrapper ===== */

/* ===== Plan head (reusable) ===== */
.plan-head {
  margin: 0 0 40px;
}

/* band */
.plan-head__band {
  padding: 24px 0;
}

.plan-head__plan {
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
}

/* body */
.plan-head__body {
  padding: 64px 0 0;
}

/* title */
.plan-head__ttl {
  margin: 0 0 18px;
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.plan-head__ttlMain {
  font-weight: 900;
  line-height: 1.15;
}

.plan-head__ttlSub {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

/* note */
.plan-head__note {
  margin: 0 0 56px;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
}

/* text blocks */
.plan-head__lead {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.plan-head__desc {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

/* ===== color modifiers ===== */
.plan-head--blue .plan-head__band {
  background: #1f3442;
}
.plan-head--blue .plan-head__ttlMain,
.plan-head--blue .plan-head__ttlSub {
  color: #1f3442;
}

.plan-head--green .plan-head__band {
  background: #23464a;
}
.plan-head--green .plan-head__ttlMain,
.plan-head--green .plan-head__ttlSub {
  color: #23464a;
}

/* ===== responsive ===== */
@media (max-width: 767px) {
  .plan-head__plan {
    font-size: 32px;
  }

  .plan-head__body {
    padding-top: 36px;
  }

  .plan-head__ttlMain {
    font-size: 30px;
  }

  .plan-head__ttlSub {
    font-size: 20px;
  }

  .plan-head__note {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .plan-head__lead,
  .plan-head__desc {
    font-size: 16px;
  }
}

/* ===== base ===== */
.plan-box {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid;
  background: #fff;
  margin-bottom: 48px;
}

/* left */
.plan-box__side {
  padding: 36px 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.plan-box__name {
  margin: 0;
  text-align: center;
}

.plan-box__tag {
  background: #fff;
  border-radius: 6px;
  padding: 16px;
  font-size: 20px;
  font-weight: 900;
  width: 100%;
}
.plan-box.is-blue .plan-box__tag{
  text-align: center;
}

/* right */

.plan-box__term {
  text-align: center;
  font-weight: 900;
  background: #fff;
}
.plan-box__term img{
  padding: 18px 0 18px;
}

.plan-box__items {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
  background: #F6F6F6;
}

.plan-box__item img {
  width: 200px;
  max-width: 100%;
  margin-bottom: 12px;
}

.plan-box__item p {
  font-size: 36px;
  font-weight: 900;
  margin: 0;
}

/* ===== color variations ===== */
.plan-box.is-green {
  border-color: #23464a;
}
.plan-box.is-green .plan-box__side {
  background: #23464a;
}
.plan-box.is-green .plan-box__tag,
.plan-box.is-green .plan-box__term,
.plan-box.is-green .plan-box__item p {
  color: #23464a;
}

.plan-box.is-blue {
  border-color: #1f3442;
}
.plan-box.is-blue .plan-box__side {
  background: #1f3442;
}
.plan-box.is-blue .plan-box__tag,
.plan-box.is-blue .plan-box__term,
.plan-box.is-blue .plan-box__item p {
  color: #1f3442;
}
.support-card--panel.support-card--blue .support-card__head {
  background: #1f3442;
}
.warranty{
  background-image: url(https://www.shima-j.co.jp/wp-content/uploads/2025/12/bg_grid.jpg);
}
.warranty h3{
  margin-bottom: 36px;
}
.yellow_border_box{
  border-radius: 8px;
  border: solid 1px #F1BF1A;
  background: #F6F6F6;
  padding: 20px;
  margin: 44px 0;
}


.about-insurance{
  background-color: #fff;
  padding: 24px;
}
.about-insurance-tit{
  color: #19254A;
  font-size: 27px;
}
.about-insurance-caption{
    font-size: 22px;
}


.flow-ttl {
  border: 2px solid #1f3442;
  padding: 16px;
  text-align: center;
  margin-bottom: 64px;
}

.flow-item {
  display: flex;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
  justify-content: center;
}

.flow-img {
  position: relative;
}

.flow-step {
  position: absolute;
  top: -12px;
  left: -12px;
}

.flow-body {
  width: 100%;
  max-width: 640px;
}

.flow-head {
  margin-bottom: 16px;
}
.flow-head img{
  display: block;
  max-width: 100%;
  height: auto;
}

.flow-text {
  font-size: 16px;
  line-height: 1.8;
}
.support-plan .tit-mid{
  margin: 72px 0 0;
}

/* SP */
@media (max-width: 767px) {
  .flow-item {
    flex-direction: column;
    gap: 24px;
  }

  .flow-step {
    left: 0;
    top: -8px;
  }

  .flow-body {
    max-width: none;
  }
}

.support-message{
  background: #19254A;
}
.support-message p{
  color: #fff;
    padding: 68px 0 68px;
}

}
/* ===== responsive ===== */
@media (max-width: 767px){
  .support-flow__heading{
    margin-bottom: 40px;
  }
  .support-flow__list{
    gap: 46px;
  }
  .support-step{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .support-step__left{
    width: 100%;
  }

  .support-step__badge{
    width: 96px;
    height: 96px;
    left: 0;
    top: -8px;
  }

  .support-step__photo{
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .support-step__text{
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  #support .plan-box {
    grid-template-columns: 100%;
    display: block;
  }

  .plan-box__items {
    grid-template-rows: 1fr;
  }
  .plan-box__tag{
    text-align: center;
  }

  .plan-box__term {
    font-size: 28px;
  }
}





@media (max-width: 768px) {
    #support .Heading {
        background-image: url(../images/reform/heading_bg_sp.jpg);
    }
}