/* ============================================================
   特集ページ専用CSS
   プレフィックス: .iw-sp-
   スコープ: body.page-special-feature
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   リセット・基本スタイル
   ※ グローバルリセット（*, html, body）は iw-renewal.css が担当
   ────────────────────────────────────────────────────────── */


/* ── CSS変数（特集ページ専用） ── */
:root{
  --color-sp: #4BBF42;
  --sp-inner:1040px;
}

/* ── 共通レイアウト ───────────────────────────────────── */
.iw-sp-inner{
  width: 100%;
  max-width:var(--sp-inner);
  margin:0 auto;
  padding:0 20px
}
.iw-sp-section p{
  font-size: var(--font-16);
}

/* ============================================================
   ヒーローセクション
   ============================================================ */
.iw-breadcrumb .iw-inner{
  width: 100%;
  max-width:var(--sp-inner);
  margin:0 auto;
  padding:0 20px
}
.iw-sp-hero{
  position: relative;
  display: flex;
  justify-content: flex-start;
  min-height: 400px;
  margin-bottom: 200px;
  background-image:
    linear-gradient(90deg, #fff6 1px, transparent 1px),
    linear-gradient(#fff6 1px, transparent 1px),
    linear-gradient(135deg, #0F9B5B 0%, var(--color-sp) 100%);
  background-size:
    40px 40px,
    40px 40px,
    100% 100%;
  background-repeat: repeat, repeat, no-repeat;
}
.iw-sp-hero__h1-wrap{
  position: absolute;
  top: 45%;
  transform: translate(0, -50%);
  width: calc(100% - 20px * 2);
}
.iw-sp-hero h1{
  display: inline;
  background: var(--color-sp);
  color: var(--color-white);
  font-size: var(--font-42);
  letter-spacing: .1em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  padding: 1px 10px 0;
  box-shadow: var(--drop-shadow);
}
.iw-sp-hero div:has(.iw-sp-hero__bg){
  position: static;
}
.iw-sp-hero__bg{
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, calc(50% - 120px) 100%);
}
.iw-sp-hero__bg img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.iw-sp-hero__bg::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: .3;
}
.iw-sp-hero .wp-block-buttons{
  position: absolute;
  bottom: calc(-120px / 2);
  left: 50%;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--sp-inner);
  margin: 0 auto;
  padding: 0 20px;
}
.iw-sp-hero .wp-block-button{
  width: calc((100% - 40px) / 2);
  max-width: none;
}
.iw-sp-hero .wp-block-button__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: none;
  min-height: 120px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: var(--font-24);
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding: 15px calc(30px + 15px + 10px);
  border: 1px solid var(--color-white);
  border-radius: 0;
  transition: .3s;
}
.iw-sp-hero .wp-block-button__link::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translate(0, -50%);
  border: 9px solid transparent;
  border-top: 10px solid var(--color-white);
  border-bottom: none;
}
.iw-sp-hero .wp-block-button__link:hover{
  background: var(--color-sp);
  color: var(--color-white);
}


/* ============================================================
   共通パーツ
   ============================================================ */
.iw-sp-title{
  position: relative;
  color: var(--color-text);
  font-size: var(--font-32);
  text-align: center;
  letter-spacing: .1em;
  z-index: 1;
  min-height: 160px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}
.iw-sp-title::before,
.iw-sp-title::after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.iw-sp-title::before{
  width: 160px;
  height: 160px;
  border: 1px solid var(--color-main);
  border-radius: 50%;
  mask-image: linear-gradient(
    to bottom,
    black 0%,
    black calc((100% - (var(--font-32) * 2 * 1.625)) / 2),
    transparent calc((100% - (var(--font-32) * 2 * 1.625)) / 2),
    transparent calc((100% / 2) + (var(--font-32) * 2 * 1.625) / 2),
    black calc((100% / 2) + (var(--font-32) * 2 * 1.625) / 2),
    black 100%
  );
  -webkit-mask-image: linear-gradient(
    to bottom,
    black calc((100% - (var(--font-32) * 2 * 1.625)) / 2),
    transparent calc((100% - (var(--font-32) * 2 * 1.625)) / 2),
    transparent calc((100% / 2) + (var(--font-32) * 2 * 1.625) / 2),
    black calc((100% / 2) + (var(--font-32) * 2 * 1.625) / 2)
  );
}
.iw-sp-title::after{
  background: #B1F3D5;
  width: 60px;
  height: 60px;
  filter: blur(10px);
}
/* 白var. */
.iw-sp-title.iw-sp-title-wh{
  color: var(--color-white);
}
.iw-sp-title.iw-sp-title-wh::before{
  border-color: var(--color-white);
}
.iw-sp-title.iw-sp-title-wh::after{
  background: #3AD48D;
}


/* ============================================================
   リード文セクション
   ============================================================ */
#iw-sp-lead p{
  font-size: var(--font-18);
  text-align: center;
  line-height:2;
  margin-bottom: var(--font-16)
}


/* ============================================================
   商品ラインナップセクション
   ============================================================ */
#iw-sp-products{
  padding: 80px 0;
  background: linear-gradient(135deg, #0f9b5b, var(--color-sp));
}
.iw-sp-products__lead{
  color: var(--color-white);
  font-size: var(--font-24) !important;
  text-align: center;
  margin-bottom: 40px;
}
.iw-sp-products__grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
}
.iw-sp-product-card{
  grid-column: span 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  background: var(--color-white);
  width: 100%;
  padding-top: 100%;
  box-shadow: var(--drop-shadow);
}
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(1):last-child) .iw-sp-product-card{
  grid-column: 3 / span 2 !important;
}
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(2):last-child) .iw-sp-product-card:nth-child(odd),
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(4):last-child) .iw-sp-product-card:nth-child(odd){
  grid-column: 2 / span 2;
}
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(2):last-child) .iw-sp-product-card:nth-child(even),
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(4):last-child) .iw-sp-product-card:nth-child(even){
  grid-column: span 2;
}
.iw-sp-products__grid:has(.iw-sp-product-card:nth-child(5):last-child) .iw-sp-product-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.iw-sp-product-card__img{
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1;
  width: 100%;
}
.iw-sp-product-card__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-product-card__img .wp-block-image{
  margin: 0;
  height: 100%;
}
.iw-sp-product-card__img .wp-block-image img{
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
.iw-sp-product-card__body{
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 20px;
}
.iw-sp-product-card__name{
  color: var(--color-main);
  font-size: var(--font-20) !important;
  font-weight: 700;
  margin-bottom: 10px;
}
.iw-sp-product-card__desc{
  font-size: var(--font-16);
  line-height: 1.75;
  margin-bottom: 20px;
}
.iw-sp-product-card__body .wp-block-buttons{
  margin-top: auto;
}
.iw-sp-product-card__body .wp-blockbuttons .wp-block-button__link{
  max-width: none;
}

.wp-block-button.iw-sp-product-card__btn a{
  max-width: none;
  margin: auto 0 0;
}


/* ============================================================
   ソリューションセクション
   ============================================================ */
.iw-sp-solution-item{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  padding: 60px 0;
  border-bottom: 1px solid var(--color-border);
}
.iw-sp-solution-item__img{
  width: 100%;
  max-width: 400px;
}
.iw-sp-solution-item__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-solution-item__img .wp-block-image{
  margin: 0;
  height: 100%;
}
.iw-sp-solution-item__img .wp-block-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-solution-item__body{
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}
.iw-sp-solution-item__body:has(+.iw-sp-solution-item__img){
  grid-column: span 1;

}
.iw-sp-solution-item__name{
  color: var(--color-main);
  font-size: var(--font-32);
  font-weight: 700;
  margin-bottom: 40px;
}
.iw-sp-solution-item__desc{
  line-height: 2;
  margin-bottom: 40px;
}
.iw-sp-solution-item__body .wp-block-buttons{
  display: flex;
  justify-content: flex-end;
  margin-top: auto;
}


/* ============================================================
   お客様の声セクション
   ============================================================ */
#iw-sp-voice{
  padding: 40px 0 0;
}
.iw-sp-voice__title{
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
  max-width: 600px;
  background: var(--color-white);
  color: var(--color-main);
  font-size: var(--font-32);
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
  letter-spacing: .1em;
  margin: 0 auto 60px;
  padding: 20px 20px 18px;
  border: 1px solid var(--color-main);
  border-radius: 80px;
  z-index: 1;
}
.iw-sp-voice__title::before{
  content: '';
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%) rotate(45deg);
  width: 30px;
  height: 30px;
  background: var(--color-white);
  border: 1px solid var(--color-main);
  border-top: none;
  border-left: none;
  z-index: -1;
}
.iw-sp-voice__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  background: #C4EECC;
  padding: calc(40px + 60px) 40px 40px;
}
.iw-sp-voice-card{
  width: 100%;
  background: var(--color-white);
  padding: 20px;
  box-shadow: var(--drop-shadow);
}
.iw-sp-voice-card__header{
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.iw-sp-voice-card__icon{
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.iw-sp-voice-card__icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-voice-card__icon .wp-block-image{
  margin: 0;
  width: 100%;
  height: 100%;
}
.iw-sp-voice-card__icon .wp-block-image img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.iw-sp-voice-card__company{
  color: var(--color-main);
  font-size: var(--font-14) !important;
  font-weight: 700;
  margin-bottom: 5px;
}
.iw-sp-voice-card__text{
  line-height: 1.5;
}
.iw-sp-voice-card__labels{
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--color-main);
}
.iw-sp-voice-card__labels>div>div{
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
}
.iw-sp-voice-card__labels>div>div:not(:first-child){
  margin-top: 5px;
}
.iw-sp-voice-card__label{
  display: block;
  width: 60px;
  color: var(--color-white);
  font-size: var(--font-12) !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: .2em;
  line-height: 1;
  margin-top: 2px !important;
  padding: 4px 14px 3px 17px;
  border-radius: 20px;
}
.iw-sp-voice-card__label--challenge{
  background: #F35418;
}
.iw-sp-voice-card__label--products{
  background: var(--color-main);
}
.iw-sp-voice-card__label-text{
  width: calc(100% - 10px - 60px);
  font-size: var(--font-14) !important;
}


/* ============================================================
   CTAバナーセクション
   ============================================================ */
#iw-sp-cta{
  position: relative;
  background: transparent url('../images/iw-renewal/iw_sp_contact_bg.jpg') no-repeat center center / cover;
  padding: 80px 0;
  z-index: 0;
}
#iw-sp-cta::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  height: calc(100% - 40px * 2);
  background: #1B8213;
  opacity: .55;
  z-index: -1;
}
.iw-sp-cta__body{
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-white);
}
.iw-sp-cta__title{
  color: var(--color-white);
  font-size: var(--font-28);
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px #3333334D;
}
.iw-sp-cta__desc{
  margin-bottom: 40px;
}
.iw-sp-cta__buttons{
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
}
/* CTAボタン */
.iw-sp-cta__buttons .wp-block-button{
  max-width: calc((100% - 40px) / 2);
}
.iw-sp-cta__buttons .wp-block-button__link{
  max-width: 100%;
  min-height: 100px;
  border: 1px solid var(--color-white);
}
.wp-block-button.iw-sp-cta__btn--download .wp-block-button__link::after{
  width: 30px;
  height: 30px;
  background: url('../images/iw-renewal/icon_dl.svg');
  font-size: var(--font-24);
  border: none;
}
.wp-block-button.iw-sp-cta__btn--contact .wp-block-button__link{
  background: #FFA113;
}
.wp-block-button.iw-sp-cta__btn--contact .wp-block-button__link:after{
  border-width: 9px;
  border-left-width: 10px;
}
.wp-block-button.iw-sp-cta__btn--contact .wp-block-button__link:hover{
  background: #F27F0C;
}


/* ============================================================
   Other Features セクション
   ============================================================ */
#iw-sp-others{
  margin-bottom: 0;
  padding: 80px 0;
}
.iw-sp-others__header{
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  border-bottom: 3px solid var(--color-main);
}
.iw-sp-others__header .font-en{
  color: var(--color-main);
  font-size: var(--font-52);
  line-height: 1;
}
.iw-sp-others__ja{
  font-size: var(--font-20);
  font-weight: 700;
  padding-bottom: 10px;
}
.iw-sp-others__grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 40px;
  margin-bottom: 40px;
}
.iw-sp-others__card,
.iw-sp-others__grid .wp-block-post{
  display: block;
  box-shadow: var(--drop-shadow);
}
.iw-sp-others__card-img{
  aspect-ratio: 16/10;
  overflow: hidden;
}
.iw-sp-others__card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-others__card-img .wp-block-image{
  margin: 0;
  height: 100%;
}
.iw-sp-others__card-img .wp-block-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-others__card-title:not(:has(a)),
.iw-sp-others__card-title a,
.iw-sp-others__grid .wp-block-post a{
  position: relative;
  display: block;
  color: var(--color-text);
  font-size: var(--font-14);
  font-weight: 700;
  line-height: 1.5;
  padding: 15px calc(20px + 9px + 20px) 15px 20px;
}
.iw-sp-others__card-title a::before,
.iw-sp-others__card-title a::after,
.iw-sp-others__grid .wp-block-post a::before,
.iw-sp-others__grid .wp-block-post a::after{
  content: '';
  position: absolute;
}
.iw-sp-others__card-title a::before,
.iw-sp-others__grid .wp-block-post a::before{
  inset: 0;
  z-index: 10;
}
.iw-sp-others__card-title a::after,
.iw-sp-others__grid .wp-block-post a::after{
  top: 50%;
  right: 20px;
  transform: translate(0, -50%);
  border: 8px solid transparent;
  border-right: none;
  border-left: 9px solid var(--color-main);
}
.iw-sp-others__btn-wrap{
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
/* Other Features：特集一覧へボタン（wp:button構造） */
.wp-block-button.iw-sp-others__btn{
  max-width: 400px;
}


/* ============================================================
   特集一覧TOP：共通ヘッダー
   ============================================================ */
.iw-sp-archive-hero{
  background: transparent url('../images/iw-renewal/header_hero_bg.jpg') no-repeat center center / cover;
}

/* ── 特集一覧：セクション見出し ─── */
.iw-sp-archive__heading{
  color: var(--color-main);
  font-size: var(--font-40);
  font-weight: 700;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--color-main);
}


/* ============================================================
   特集一覧TOP リストレイアウト
   ============================================================ */
.iw-sp-list-row__items{
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.iw-sp-list-row__card{
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 0;
  min-height: 140px;
  box-shadow: var(--drop-shadow);
}
.iw-sp-list-row__card-img{
  width: 30%;
  aspect-ratio: 15/8;
  overflow: hidden;
}
.iw-sp-list-row__card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.iw-sp-list-row__card-body{
  position: relative;
  width: 70%;
  padding: 30px calc(40px + 25px + 40px) 30px 40px;
}
.iw-sp-list-row__card-body::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--color-main);
  transition: .5s;
}
.iw-sp-list-row__card-body::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translate(0, -50%);
  border: 22px solid transparent;
  border-right: none;
  border-left: 25px solid var(--color-main);
  transition: .5s;
}
.iw-sp-list-row__card p{
  transition: .5s;
}
.iw-sp-list-row__card-title{
  color: var(--color-main);
  font-size: var(--font-20);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.iw-sp-list-row__card-text{
  color: var(--color-text);
  font-size: var(--font-16);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
/* ホバー時 */
.iw-sp-list-row__card:hover .iw-sp-list-row__card-body::before{
  width: 100%;
}
.iw-sp-list-row__card:hover .iw-sp-list-row__card-body::after{
  border-left-color: var(--color-white);
}
.iw-sp-list-row__card:hover p{
  color: var(--color-white);
}


@media (max-width:1280px){
  .iw-sp-solution-item__name{
    font-size: clamp(16px, calc((24 / 1280) * 100vw), 24px);
  }
}
/* ============================================================
   レスポンシブ: タブレット (max-width: 900px)
   ============================================================ */
@media (max-width:900px){
  /* ヒーロー */
  .iw-sp-hero{
    min-height: 320px;
    margin-bottom: 160px;
  }
  .iw-sp-hero .wp-block-buttons{
    gap: 20px;
  }
  .iw-sp-hero .wp-block-button{
    width: calc((100% - 20px) / 2);
  }
  .iw-sp-hero .wp-block-button__link{
    font-size: var(--font-20);
    padding: 10px calc(15px + 10px + 8px);
  }
  .iw-sp-hero .wp-block-button__link::after{
    right: 15px;
    border-width: 7px;
    border-top-width: 8px;
  }

  /* 共通パーツ */
  .iw-sp-title{
    --font-32: var(--font-24);
  }

  /* 商品ラインナップ */
  .iw-sp-products__grid{
    grid-template-columns: repeat(4, 1fr);
  }
  .iw-sp-product-card{
    grid-column: span 2 !important;
  }
  .wp-block-buttons .wp-block-button__link{
    max-width: none;
  }

  /* ソリューション */
  .iw-sp-solutions__list{
    grid-template-columns: 1fr;
  }
  .iw-sp-solution-item{
    grid-template-columns: 1fr 1fr;
  }
  .iw-sp-solution-item__name{
    font-size: var(--font-24);
  }

  /* お客様の声 */
  .iw-sp-voice__title{
    top: -35px;
    max-width: 500px;
    font-size: var(--font-24);
  }
  .iw-sp-voice__grid{
    grid-template-columns: repeat(1, 1fr);
  }
  .iw-sp-voice-card__header,
  .iw-sp-voice-card__labels>div>div{
    gap: 20px;
  }
  .iw-sp-voice-card__label-text{
    width: calc(100% - 20px - 60px);
  }

  /* Other Features */
  .iw-sp-others__header{
    gap: 10px;
  }
  .iw-sp-others__grid{
    grid-template-columns: repeat(2, 1fr);
  }

  /* 特集一覧TOP */
  .iw-sp-list-row__items{
    gap: 20px;
  }
  .iw-sp-list-row__card-text{
    -webkit-line-clamp: 3;
  }
}


/* ============================================================
   レスポンシブ: スマートフォン (max-width: 600px)
   ============================================================ */
@media (max-width:600px){

  /* ヒーロー */
  .iw-sp-hero{
    min-height: 500px;
    margin-bottom: 120px;
  }
  .iw-sp-hero__h1-wrap{
    position: relative;
    top: 0;
    transform: none;
    padding: calc(20px + 60px + 20px) 0 calc(100px + 20px);
  }
  .iw-sp-hero .wp-block-buttons{
    bottom: calc(-80px / 2);
    flex-direction: column;
  }
  .iw-sp-hero .wp-block-button{
    width: 100%;
  }
  .iw-sp-hero .wp-block-button__link{
    min-height: 80px;
  }

  /* リード */

  /* 商品ラインナップ */
  .iw-sp-products{
    padding: 48px 0;
  }
  .iw-sp-products__grid{
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .iw-sp-products__header{
    font-size: var(--font-20) !important;
    padding: 16px 20px;
  }

  /* ソリューション */
  .iw-sp-solutions{
    padding: 48px 0;
  }
  .iw-sp-solutions__title{
    font-size: var(--font-20) !important;
    text-align: left;
  }
  .iw-sp-solution-item{
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
  .iw-sp-solution-item__body{
    order: 2;
  }
  .iw-sp-solution-item__img{
    order: 2;
    max-width: 320px;
    margin: 0 auto;
  }

  /* お客様の声 */
  .iw-sp-voice__title{
    max-width: max-content;
  }
  .iw-sp-voice__title::before{
    bottom: -11px;
    width: 20px;
    height: 20px;
  }
  .iw-sp-voice{
    padding: 48px 0;
  }
  .iw-sp-voice__grid{
    grid-template-columns: 1fr;
    gap: 16px;
    padding: calc(35px + 40px) 20px 20px;
  }
  .iw-sp-voice-card__header,
  .iw-sp-voice-card__labels>div>div{
    gap: 10px;
  }
  .iw-sp-voice-card__label-text{
    width: calc(100% - 10px - 60px);
  }
  .iw-sp-voice-card__icon{
    width: 50px;
    height: 50px;
  }

  /* CTA */
  .iw-sp-cta{
    padding: 48px 0;
  }
  .iw-sp-cta__title{
    font-size: var(--font-20);
  }
  .iw-sp-cta__buttons{
    flex-direction: column;
    align-items: center;
  }
  .iw-sp-cta__buttons .wp-block-button{
    max-width: 100%;
  }
  .iw-sp-cta__buttons .wp-block-button__link{
    min-height: 80px;
  }

  /* Other Features */
  #iw-sp-others{
    padding: 40px 0;
  }
  .iw-sp-others__grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* アーカイブヒーロー */
  .iw-sp-archive-hero{
    padding: 32px 0;
  }
  .iw-sp-archive-hero__title{
    font-size: var(--font-32) !important;
  }

  /* 特集一覧TOP */
  .iw-sp-list-row__card{
    min-height: unset;
  }
  .iw-sp-list-row__card-body{
    padding: 15px calc(10px + 10px + 10px) 15px 15px;
  }
  .iw-sp-list-row__card-body::after{
    right: 10px;
    border-width: 8px;
    border-left-width: 10px;
  }
  .iw-sp-list-row__card-title{
    font-size: var(--font-16);
    margin-bottom: 5px;
  }
  .iw-sp-list-row__card-text{
    font-size: var(--font-14);
  }
}
