/*===========================================================================*/
/*  すい臓キャンペーン クーポンのご利用方法（2026/8/20〜10/31）  */
/*===========================================================================*/
.p-coupon {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #F6F6F6;
}

.p-coupon__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-coupon .u-en {
  font-family: "Barlow", sans-serif;
}

.p-coupon__heading {
  text-align: center;
  margin-bottom: 50px;
}

.p-coupon__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.448;
  font-feature-settings: "palt" on;
}

.p-coupon__subtitle-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.p-coupon__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.448;
}

.p-coupon__steps {
  position: relative;
}

.p-coupon__steps::before {
  content: "";
  position: absolute;
  left: 60px;
  top: 100px;
  width: 49px;
  bottom: 100px;
  background: #FFA700;
  z-index: 0;
}

.p-coupon__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 32px;
  background: #fff;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

.p-coupon__step:last-child {
  margin-bottom: 0;
}

.p-coupon__step-body {
  grid-column: 1;
  grid-row: 1;
  padding: 0 0 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.p-coupon__step-image {
  grid-column: 2;
  grid-row: 1/-1;
  padding: 40px 60px 40px 0;
}

.p-coupon__step-image img {
  max-width: 100%;
  height: auto;
}

.p-coupon__step-text {
  grid-column: 1;
  grid-row: 2;
  padding: 0 0 40px 60px;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 1.6;
}

.p-coupon__step-text mark {
  background: linear-gradient(transparent 70%, #EDFF2D 70%);
  color: inherit;
  font-weight: 700;
}

.p-coupon__step-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.p-coupon__step-dot {
  display: block;
  width: 9px;
  height: 9px;
  background: #FFA700;
  border-radius: 1px;
}

.p-coupon__step-num {
  font-size: 18px;
  font-weight: 700;
  color: #FFA700;
  text-transform: uppercase;
  line-height: 1.333;
}

.p-coupon__step-name {
  font-size: 32px;
  font-weight: 900;
  color: #FFA700;
  line-height: 1.448;
  margin-bottom: 16px;
}

/*===========================================================================*/
/*  注意事項  */
/*===========================================================================*/
.p-caution {
  padding-top: 60px;
  padding-bottom: 120px;
  background: #F6F6F6;
}

.p-caution__inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-caution__heading {
  text-align: center;
  margin-bottom: 32px;
}

.p-caution__subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #FFA700;
  letter-spacing: 0.05em;
  line-height: 1.333;
  text-transform: uppercase;
  font-family: "Barlow", sans-serif;
}

.p-caution__title {
  font-size: 44px;
  font-weight: 700;
  color: #333;
  line-height: 1.448;
}

.p-caution__card {
  background: #fff;
  border-radius: 4px;
  padding: 60px;
}

.p-caution__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-caution__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #333;
  margin-bottom: 26px;
}

.p-caution__item:last-child {
  margin-bottom: 0;
}

.p-caution__icon {
  width: 25px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 5px;
}

.p-caution__text {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}

.p-caution__text .--red {
  font-weight: 900;
  color: #C7161D;
}

@media (max-width: 900px) {
  .p-coupon {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .p-coupon__heading {
    margin-bottom: 24px;
  }
  .p-coupon__subtitle {
    font-size: 20px;
    gap: 6px;
  }
  .p-coupon__subtitle-icon {
    width: 20px;
    height: 20px;
  }
  .p-coupon__title {
    font-size: 28px;
    font-weight: 800;
  }
  .p-coupon__steps::before {
    left: 20px;
    width: 32px;
    top: 60px;
    bottom: 60px;
  }
  .p-coupon__step {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }
  .p-coupon__step-body {
    padding: 24px 20px 0;
  }
  .p-coupon__step-image {
    width: 100%;
    padding: 16px 20px 0;
  }
  .p-coupon__step-label {
    gap: 6px;
    margin-bottom: 8px;
  }
  .p-coupon__step-dot {
    width: 6px;
    height: 6px;
  }
  .p-coupon__step-num {
    font-size: 15px;
  }
  .p-coupon__step-name {
    font-size: 22px;
    margin-bottom: 0;
  }
  .p-coupon__step-text {
    font-size: 16px;
    padding: 18px 20px 24px;
  }
  .p-caution {
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .p-caution__heading {
    margin-bottom: 20px;
  }
  .p-caution__subtitle {
    font-size: 16px;
    letter-spacing: 0.05em;
  }
  .p-caution__title {
    font-size: 28px;
    font-weight: 800;
  }
  .p-caution__card {
    padding: 24px 20px;
  }
  .p-caution__item {
    gap: 8px;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }
  .p-caution__icon {
    width: 19px;
    height: 16px;
    margin-top: 4px;
  }
  .p-caution__text {
    font-size: 16px;
  }
}
