@charset "UTF-8";

/* ページ内リンクめり込み防止 */
.section-navi{
  display: block;
  padding-bottom: 40px;
}

/* 見出し・リード文 */
.main-title{
    font-size: 2rem;
}

.bousai__heading{
  border-bottom: 3px solid #397659;
  font-size: clamp(1.8rem,2vw,2.2rem);
  margin-bottom: 15px;
  text-align: left;
  }

.bousai__lead{ 
  font-size:clamp(1.3rem,1vw,1.5rem); 
  line-height:1.8; 
  margin-bottom:24px; 
}

.bousai__lead p{
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .section-navi{
    margin-top: -100px;
    padding-top:100px;
    padding-bottom: 80px;
  }
}

/* ========================================
   ページ内ナビゲーション
======================================== */

.bousai__nav {
    width: 100%;
}

.bousai__inner {
    display: flex;
    align-items: stretch;
    gap: 16px;

    width: 100%;
    padding: 20px;
    box-sizing: border-box;

    background: #fff;
    border: 1px solid #d8e3dc;
    border-radius: 14px;
    box-shadow: 0 4px 14px rgba(31, 72, 54, 0.08);
}

/* ========================================
   通常ナビ
======================================== */

.bousai__nav-list {
    display: flex;
    flex: 1;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bousai__nav-list li {
    min-width: 0;
    margin: 0;
}

.bousai__nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    min-height: 74px;
    padding: 12px 10px;
    box-sizing: border-box;

    color: #244d3b;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 9px;

    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.bousai__nav-btn:hover {
    color: #1e6044;
    background: #f1f7f3;
    border-color: #cfe0d5;
    box-shadow: 0 4px 10px rgba(31, 72, 54, 0.08);
    transform: translateY(-2px);
}

/* 現在地・ホバー時の想定 */
.bousai__nav-btn.is-current,
.bousai__nav-btn[aria-current="true"] {
    color: #1f6547;
    background: #eef6f1;
    border-color: #c9ddd1;
    box-shadow: 0 3px 8px rgba(31, 72, 54, 0.08);
}

.bousai__nav-label {
    display: block;
    min-width: 0;
}

/* ========================================
   アイコン
======================================== */

.bousai__nav-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    content: "";
    background-size: contain;
    background-repeat: round;
}

.bousai__nav-list li:nth-child(1) .bousai__nav-icon{
    background-image: url(/html/user_data/assets/img/item/bousai/icon_bousai-navi_01.webp);
}
.bousai__nav-list li:nth-child(2) .bousai__nav-icon{
    background-image: url(/html/user_data/assets/img/item/bousai/icon_bousai-navi_02.webp);
}
.bousai__nav-list li:nth-child(3) .bousai__nav-icon{
    background-image: url(/html/user_data/assets/img/item/bousai/icon_bousai-navi_03.webp);
}
.bousai__nav-list li:nth-child(4) .bousai__nav-icon{
    background-image: url(/html/user_data/assets/img/item/bousai/icon_bousai-navi_04.webp);
}

/* ========================================
   お問い合わせCTA
======================================== */

.bousai__nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 0 0 200px;
    min-height: 74px;
    padding: 14px 18px;
    box-sizing: border-box;
    color: #fff;
    background: #397659;
    border: 1px solid #397659;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.45;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 5px 12px rgba(31, 72, 54, 0.2);
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.bousai__nav-cta:hover {
    color: #fff;
    background: #285f45;
    border-color: #285f45;
    box-shadow: 0 7px 16px rgba(31, 72, 54, 0.28);
    transform: translateY(-2px);
}

.bousai__nav-cta .bousai__nav-icon {
    color: #fff;
}

.bousai__nav-cta .bousai__nav-icon::before {
    content: "✉";
    font-size: 32px;
    line-height: 1;
}

/* キーボード操作 */
.bousai__nav-btn:focus-visible,
.bousai__nav-cta:focus-visible {
    outline: 3px solid rgba(57, 118, 89, 0.3);
    outline-offset: 3px;
}

/* ========================================
   タブレット
======================================== */

@media (max-width: 900px) {
    .bousai__inner {
        flex-direction: column;
    }

    .bousai__nav-cta {
        flex-basis: auto;
        width: 100%;
        min-height: 62px;
    }
}

/* ========================================
   スマートフォン
======================================== */

@media (max-width: 600px) {

    .bousai__inner {
        gap: 10px;
        padding: 14px;
        border-radius: 12px;
    }

    .bousai__nav-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
    }

    .bousai__nav-btn {
        flex-direction: column;
        gap: 6px;

        min-height: 72px;
        padding: 10px 5px;

        border-color: #dce5df;
        border-radius: 8px;

        font-size: 13px;
        line-height: 1.35;
    }

    .bousai__nav-icon {
        width: 20px;
        height: 20px;
    }

    .bousai__nav-list li:nth-child(1) .bousai__nav-icon::before,
    .bousai__nav-list li:nth-child(2) .bousai__nav-icon::before,
    .bousai__nav-list li:nth-child(3) .bousai__nav-icon::before {
        font-size: 19px;
    }

    .bousai__nav-list li:nth-child(4) .bousai__nav-icon::before {
        width: 16px;
        height: 16px;
        font-size: 11px;
    }

    .bousai__nav-label {
        overflow-wrap: anywhere;
    }

    .bousai__nav-cta {
        min-height: 58px;
        padding: 12px 14px;
        border-radius: 9px;
        font-size: 15px;
    }

    .bousai__nav-btn:hover,
    .bousai__nav-cta:hover {
        transform: none;
    }
}

/* CTA大ボタン */
.bousai__products-cta{
    margin: 40px 0;
}

.bousai__products-cta a{
    width: 500px;
    max-width: 100%;
    margin: auto;
}

.bousai__products-cta a span{
    font-size: clamp(1.6rem,2vw,2rem);
}


/* ============ 商品セクション ============ */
.bousai__panel-title{

font-size: clamp(2rem,2vw,2.2rem);

color: #397659;

margin-bottom: 8px;

text-align: center;
}
.bousai__panel-lead{

font-size: clamp(1.2rem,1vw,1.4rem);

margin-bottom: 16px;

text-align: center;
}
/*=========================
  タブ
=========================*/
.bousai__tabs{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:0 0 30px;
    justify-content:center;
}

.bousai__tab{
    appearance:none;
    border:none;
    cursor:pointer;
    padding: 12px 32px;
    border-radius:999px;
    background: #f2f2f2;
    color:#4d5b69;
    font-size:15px;
    font-weight:700;
    transition:
        background .25s,
        color .25s,
        transform .18s,
        box-shadow .25s;
}

/* hover */
.bousai__tab:hover{
    background: #dcede3;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(0,0,0,.12);
}

/* 押した瞬間 */
.bousai__tab:active{
    transform:translateY(1px);
}

/* 選択中 */
.bousai__tab.is-active{
    background: #397659;
    color:#fff;
    box-shadow: 0 10px 20px rgb(89 169 124 / 28%);
}

.bousai__tab{
    position:relative;
}

.bousai__tab.is-active::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-10px;
    transform:translateX(-50%);
    width:0;
    height:0;
    border-left:8px solid transparent;
    border-right:8px solid transparent;
    border-top: 10px solid #397659;
}


/*=========================
  パネル
=========================*/
.bousai__panel{
    display:none;

    background:#fff;
    border-radius:18px;
    padding: clamp(24px, 2vw, 36px);

    border:1px solid #e6edf3;

    box-shadow:
        0 10px 25px rgba(0,0,0,.06);

    animation:fadePanel .35s ease;
}

.bousai__panel.is-active{
    display:block;
}

@keyframes fadePanel{
    from{
        opacity:0;
        transform:translateY(12px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.bousai__panel .block-productlist__item .product-list__desc {
    display: none;
}

.bousai__panels .title{
    font-size:clamp(1.6rem,1.5vw,1.8rem);
    border-bottom: 1px solid #d3202a;
}

.bousai__relation-btn{
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 40px 0;
}
.bousai__relation-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 16px 48px 16px 32px;
    border:2px solid #397659;
    border-radius: 8px;
    color: #397659;
    font-size: clamp(1.6rem,2vw,1.8rem);
    font-weight: bold;
    transition: all 0.2s;
}
.bousai__relation-btn a:after{
    content: "";
    position: absolute;
    top: 46%;
    right: 16px;
    width: 8px;
    height: 8px;
    transform: rotate(-45deg) translate(0, -50%);
    border-bottom: 2px solid;
    border-right: 2px solid;
    border-color: #397659;
}
.bousai__relation-btn a:hover{
    background: #397659;
    color:#fff;
}
.bousai__relation-btn a:hover:after{
    border-color:#fff;
}

.bousai__panels .block-productlist{
    padding-bottom: 0;
}

.bousai__tab{
    cursor:pointer;
}

.bousai__tab:hover{
    letter-spacing:.02em;
}

/* ============ レスポンシブ ============ */
@media (max-width:900px){ .bousai__grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:600px){
  .bousai__h2{ font-size:20px; }
  .bousai__panel-title{ font-size:15px; }
  .bousai__tab{ min-width:80px; font-size:13px; padding:10px 6px; }
  .bousai__grid{ grid-template-columns:repeat(2, 1fr); gap:10px; }
  .bousai__card-name{ min-height:34px; font-size:12px; }
  .bousai__products-cta-btn{width:100%;padding:14px;font-size:15px;}

  
    .bousai__relation-btn{
        flex-direction: column;
    }
}


@media (max-width:768px){

    .bousai__tabs{
        flex-wrap:nowrap;
        overflow-x:auto;
        justify-content:flex-start;
        padding-bottom:8px;
        gap:8px;

        -webkit-overflow-scrolling:touch;
    }

    .bousai__tabs::-webkit-scrollbar{
        height:6px;
    }

    .bousai__tabs::-webkit-scrollbar-thumb{
        background:#cfd8df;
        border-radius:99px;
    }

    .bousai__tab{
        flex:0 0 auto;
        white-space:nowrap;
        padding:12px 18px;
    }
}

/* ========================================
   防災グッズ 活用シーン
======================================== */

.bousai-scene-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.bousai-scene-grid article {
    min-width: 0;
}

.bousai-scene-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(31, 72, 54, 0.08);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}


/* 画像部分 */
.bousai-scene-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    background: #f7f7f7;
}

.bousai-scene-card__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 65%,
        rgba(20, 55, 40, 0.12)
    );
    pointer-events: none;
}

.bousai-scene-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

/* テキスト部分 */
.bousai-scene-card__body {
    position: relative;
    flex: 1;
    padding: 22px 24px 24px;
}

.bousai-scene-card__body h3 {
    margin: 0 0 12px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.02em;
}

.bousai-scene-card__body p {
    margin: 0;
    color: #4d5651;
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.02em;
}

/* ========================================
   タブレット
======================================== */

@media (max-width: 768px) {
    .bousai-scene-grid {
        gap: 18px;
    }

    .bousai-scene-card__body {
        padding: 20px;
    }

    .bousai-scene-card__body::before {
        left: 20px;
    }

    .bousai-scene-card__body h3 {
        font-size: 17px;
    }
}

/* ========================================
   スマートフォン
======================================== */

@media (max-width: 600px) {
    .bousai-scene-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin: 28px 0;
    }

    .bousai-scene-card {
        border-radius: 10px;
    }

    .bousai-scene-card:hover {
        transform: none;
    }

    .bousai-scene-card__image {
        aspect-ratio: 16 / 8;
    }

    .bousai-scene-card__body {
        padding: 19px 18px 20px;
    }

    .bousai-scene-card__body::before {
        left: 18px;
        width: 40px;
    }

    .bousai-scene-card__body h3 {
        margin-bottom: 9px;
        font-size: 17px;
    }

    .bousai-scene-card__body p {
        font-size: 14px;
        line-height: 1.8;
    }
}


/* ========================================
   防災グッズの選び方ガイド
======================================== */

/* アンカーリンク一覧 */
.bousai-guide-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 32px 0 40px;
    padding: 20px;
    list-style: none;
    background: #f3f7f4;
    border: 1px solid #d9e5dc;
    border-radius: 14px;
    box-sizing: border-box;
}

.bousai-guide-list li {
    min-width: 0;
    margin: 0;
}

.bousai-guide-list a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 68px;
    padding: 14px 42px 14px 16px;
    color: #234c39;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
    text-decoration: none;
    background: #fff;
    border: 1px solid #d4e0d8;
    border-radius: 9px;
    box-sizing: border-box;
    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

/* 右側の矢印 */
.bousai-guide-list a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #397659;
    border-bottom: 2px solid #397659;
    transform: translateY(-65%) rotate(45deg);
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

.bousai-guide-list a:hover {
    color: #fff;
    background: #397659;
    border-color: #397659;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(35, 76, 57, 0.14);
}

.bousai-guide-list a:hover::after {
    border-color: #fff;
    transform: translateY(-45%) rotate(45deg);
}

.bousai-guide-list a:focus-visible {
    outline: 3px solid rgba(57, 118, 89, 0.3);
    outline-offset: 2px;
}

/* ========================================
   各ガイドカード
======================================== */

.bousai-guide-card {
    position: relative;
    margin: 0 0 28px;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dce4df;
    border-radius: 14px;
    box-shadow: 0 5px 18px rgba(31, 72, 54, 0.07);

    /* アンカー移動時に固定ヘッダーと重ならないように調整 */
    scroll-margin-top: 100px;
}

.bousai-guide-card:last-child {
    margin-bottom: 0;
}

.bousai-guide-card h3 {
    position: relative;
    margin: 0;
    padding: 20px 24px 20px 58px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.55;
    letter-spacing: 0.02em;
    background: #397659;
    box-sizing: border-box;
}

/* 見出し左側のガイドアイコン */
.bousai-guide-card h3::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 24px;
    width: 20px;
    height: 20px;
    background:
        linear-gradient(
            135deg,
            transparent 0 45%,
            #fff 45% 55%,
            transparent 55% 100%
        );
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    transform: translateY(-50%);
    box-sizing: border-box;
}

.bousai-guide-card_text {
    padding: 24px 28px 28px;
}

.bousai-guide-card_text p {
    margin: 0 0 16px;
    color: #414944;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.02em;
}

.bousai-guide-card_text p:last-child {
    margin-bottom: 0;
}

/* 強調部分 */
.bousai-guide-card_text b {
    color: #225d42;
    font-weight: 700;
    background: linear-gradient(
        transparent 65%,
        #dceee3 65%
    );
}

/* 本文内リンク */
.bousai-guide-card_text a {
    color: #26704d;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.bousai-guide-card_text a:hover {
    color: #ca1c36;
    background: #fff2f4;
}

/* 段落ごとの視認性を少し上げる */
.bousai-guide-card_text p + p {
    padding-top: 2px;
}

/* ========================================
   タブレット
======================================== */

@media (max-width: 768px) {
    .bousai-guide-list {
        padding: 16px;
        gap: 10px;
    }

    .bousai-guide-list a {
        min-height: 72px;
        padding: 13px 36px 13px 14px;
        font-size: 13px;
    }

    .bousai-guide-list a::after {
        right: 14px;
    }

    .bousai-guide-card h3 {
        padding: 18px 20px 18px 52px;
        font-size: 18px;
    }

    .bousai-guide-card h3::before {
        left: 20px;
    }

    .bousai-guide-card_text {
        padding: 22px;
    }
}


/* ========================================
   スマートフォン
======================================== */

@media (max-width: 600px) {
    .bousai-guide-list {
        grid-template-columns: 1fr;
        gap: 9px;
        margin: 24px 0 30px;
        padding: 12px;
        border-radius: 10px;
    }

    .bousai-guide-list a {
        min-height: auto;
        padding: 13px 38px 13px 14px;
        font-size: 13px;
        line-height: 1.55;
        border-radius: 7px;
    }

    .bousai-guide-list a:hover {
        transform: none;
    }

    .bousai-guide-card {
        margin-bottom: 20px;
        border-radius: 10px;
        scroll-margin-top: 72px;
    }

    .bousai-guide-card h3 {
        padding: 16px 16px 16px 45px;
        font-size: 17px;
        line-height: 1.55;
    }

    .bousai-guide-card h3::before {
        left: 16px;
        width: 17px;
        height: 17px;
    }

    .bousai-guide-card_text {
        padding: 18px 16px 20px;
    }

    .bousai-guide-card_text p {
        margin-bottom: 14px;
        font-size: 14px;
        line-height: 1.85;
    }
}



/* ========================================
   導入実績
======================================== */

.bousai-work-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin: 32px 0 0;
}

.bousai-work-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 100%;
    background: #fff;
    border: 1px solid #dce5df;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(31,72,54,.08);
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.bousai-work-card:hover {
    transform: translateY(-5px);
    border-color: #7aa98d;
    box-shadow: 0 10px 24px rgba(31,72,54,.14);
}

/* 写真 */

.bousai-work-card__image {
    overflow: hidden;
    aspect-ratio: 4 / 4;
    background: #edf3ef;
}

.bousai-work-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.bousai-work-card:hover .bousai-work-card__image img {
    transform: scale(1.04);
}

/* 本文 */

.bousai-work-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.bousai-work-card__body h4 {
    margin: 0 0 10px;
    color: #234c39;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
}

.bousai-work-card__body p {
    margin: auto 0 0;
    color: #555;
    font-size: 14px;
    line-height: 1.8;
}

/* ========================================
   タブレット
======================================== */

@media (max-width:900px){

    .bousai-work-list{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

}

/* ========================================
   スマホ
======================================== */

@media (max-width:600px){

    .bousai-work-list{
        grid-template-columns:1fr;
        gap:18px;
        margin-top:24px;
    }

    .bousai-work-card{
        border-radius:10px;
    }

    .bousai-work-card:hover{
        transform:none;
    }

    .bousai-work-card__body{
        padding:18px;
    }

    .bousai-work-card__body h4{
        font-size:17px;
    }

    .bousai-work-card__body p{
        font-size:14px;
    }

}

/* ========================================
   カード全体をリンク化
======================================== */

.bousai-work-card > a {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.bousai-work-card > a:hover,
.bousai-work-card > a:focus {
    color: inherit;
    text-decoration: none;
}

.bousai-work-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px;
}

.bousai-work-card__body h4 {
    margin: 0 0 10px;
    color: #234c39;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 700;
    transition: color .25s ease;
}

.bousai-work-card:hover .bousai-work-card__body h4 {
    color: #397659;
}

/* キーボード操作時 */

.bousai-work-card > a:focus-visible {
    outline: 3px solid rgba(57,118,89,.3);
    outline-offset: -3px;
}

.bousai-work-card__body::after {
    content: "詳しく見る →";
    margin-top: 18px;
    color: #397659;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease;
}

.bousai-work-card:hover .bousai-work-card__body::after {
    transform: translateX(4px);
}



/* ========================================
   FAQ
======================================== */

.bousai-faq-list {
    display: grid;
    gap: 18px;
    margin: 32px 0 0;
}

.bousai-faq-item {
    overflow: hidden;
    margin: 0;
    background: #fff;
    border: 1px solid #d8e3dc;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(31, 72, 54, 0.06);
}

/* ========================================
   質問
======================================== */

.bousai-faq-item h3 {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: center;
    column-gap: 14px;

    margin: 0;
    padding: 17px 22px;

    color: #174d3b;
    background: #f3f7f4;
    border-bottom: 1px solid #d8e3dc;

    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.bousai-faq-item h3 > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    box-sizing: border-box;
    flex-shrink: 0;

    color: #fff;
    background: #397d61;
    border-radius: 50%;

    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/* ========================================
   回答
======================================== */

/*
 p自体をflexにはしない。
 Aマークだけを左列、残りの文章全体を右列として扱う。
*/
.bousai-faq-item > p {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    align-items: start;
    column-gap: 14px;

    margin: 0;
    padding: 22px;

    color: #4b514e;
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.01em;

    overflow-wrap: anywhere;
    word-break: normal;
}

/*
 span以外のテキストノードをGrid右列に流すため、
 pに疑似要素などは使わず、spanのみ1列目へ固定。
*/
.bousai-faq-item > p > span:first-child {
    grid-column: 1;
    grid-row: 1 / span 50;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;
    box-sizing: border-box;

    color: #fff;
    background: #d91f3a;
    border-radius: 50%;

    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

/* span以降のテキストとリンクをすべて右列へ */
.bousai-faq-item > p {
    grid-auto-flow: row;
}

/*
 テキストノードにはgrid-columnを直接指定できないため、
 HTMLを変更しない場合は、pをblockに戻して
 Aマークをfloatさせる方法が最も安定します。
*/
.bousai-faq-item > p {
    display: block;
    min-height: 82px;
    padding: 22px 22px 22px 74px;
    position: relative;
}

.bousai-faq-item > p > span:first-child {
    position: absolute;
    top: 22px;
    left: 22px;
}

/* ========================================
   本文リンク
======================================== */

.bousai-faq-item a {
    color: #087347;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    overflow-wrap: normal;
    word-break: normal;
}

.bousai-faq-item a:hover {
    color: #ca1c36;
}

/* ========================================
   スマートフォン
======================================== */

@media (max-width: 600px) {
    .bousai-faq-list {
        gap: 14px;
        margin-top: 24px;
    }

    .bousai-faq-item {
        border-radius: 10px;
    }

    .bousai-faq-item h3 {
        grid-template-columns: 32px minmax(0, 1fr);
        column-gap: 10px;
        padding: 14px 15px;

        font-size: 16px;
        line-height: 1.55;
    }

    .bousai-faq-item h3 > span {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }

    .bousai-faq-item > p {
        min-height: 72px;
        padding: 17px 15px 18px 58px;

        font-size: 14px;
        line-height: 1.85;
    }

    .bousai-faq-item > p > span:first-child {
        top: 17px;
        left: 15px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}


/* 関連リンク */

.feature_list .name{
  margin-top: 8px;
  font-size:clamp(1.6rem,1.5vw,1.8rem);
}

/* ランキング */
.ranking-list_inr .product-list__desc.desc-frame {
    background: #ffffd7;
    border: 1px solid #eae05c;
    border-radius: 4px;
    display: block;
    padding: 8px;
}
