/* JSYS-972：SEO対策 活用法ページの修正 @since 2025.07.17 @author ione.miyasaka start */
    .data_communication_amount {
        max-width: 850px;
        margin: 0 auto;
    }
  .data_communication_amount_item_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    margin: 12px 0;
  }
  .data_communication_amount_item {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .data_communication_amount_item .sns-icon {
    width: 45px;
    margin-bottom: 8px;
  }
  .data_communication_amount_item_text {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .data_communication_amount_item_description_box {
    width: 100%;
  }


  .amount_box, .gb_box {
    margin-top: 4px;
    margin-bottom: 4px;
  }
  .amount_box .amount_batch, .gb_box .gb_batch {
    font-size: 9px;
    font-weight: 600;
    text-align: center;
    background-color: #F27C29;
    color: #fff;
    height: 16px;
    border-radius: 20px;
    line-height: 17.3px;
    display: flex;
    gap: 4px;
    justify-content: center;
    align-items: center;
  }
  .amount_box .amount_batch img, .gb_box .gb_batch img {
    width: 12px;
    height: 12px;
  }
  .amount_box .amount_text, .gb_box .gb_text {
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    min-height: 40px;
  }
  .amount_box .amount_text .number, .gb_box .gb_text .number {
    font-size: 14px;
    font-weight: 700;
  }
/* スマートフォン専用表示制御 */
.sp-only {
    display: none;
}

.sp-hidden {
    display: flex;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
}

.sp-hidden.animating-close {
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
}

.sp-hidden.animating-open {
    opacity: 1;
}

/* もっと見るボタン */
.more-button-container {
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.more-button {
    background: none;
    border: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.more-button:hover {
    color: #333;
}

.more-button:focus {
    outline: none;
    color: #333;
}

.more-button:active {
    color: #333;
}

.arrow-down {
    color: #8BC34A;
    font-size: 14px;
    transition: transform 0.3s ease;
    transform: rotate(90deg);
    display: inline-block;
}

.more-button.expanded .arrow-down {
    transform: rotate(-90deg);
}
.caption_text {
    text-align: center;
}
.caption_text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.caption_text p {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.caption_text img {
    width: 600px;
    margin: 24px auto;
}
p.caption_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 25px;
    background-color: #ffdd00;
    color: #333;
    font-weight: bold;
    font-size: 16px;
    padding-top: 0.3em;
    margin-right: 4px;
    clip-path: path('M15 2 C14 2, 13 3, 12 4 L2 22 C1 24, 2 25, 4 25 L26 25 C28 25, 29 24, 28 22 L18 4 C17 3, 16 2, 15 2 Z');
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
    
    .sp-hidden {
        display: none;
    }
    
    .sp-hidden.animating-close,
    .sp-hidden.animating-open {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .data_communication_amount_item_wrap {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 15px;
    }
    
    .data_communication_amount_item {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 3px;
    }
    .data_communication_amount_item_description_box {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 4px;
        width: 100%;
    }
    .data_communication_amount_item_text {
        white-space: nowrap;
        min-width: 100px;
        max-width: 100px;
        text-align: left;
        min-height: 32px;
    }
    .amount_box, .gb_box {
        min-width: 100px;
    }
    .data_communication_amount_item .sns-icon {
        width: 30px;
        margin-bottom: 0;
    }
    .data_communication_amount {
        gap: 0;
    }
    .caption_text span {
        display: block;
    }
    .caption_text p, .caption_text span {
        text-align: left;
    }
    .caption_text img {
        width: 90%;
        margin: 24px auto!important;
        max-width: 300px;
    }
    .amount_box .amount_text, .gb_box .gb_text {
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        line-height: 1.4;
        min-height: 16px;
      }
    .data_communication_amount {
        max-width: 100%;
    }
}
/* JSYS-972：SEO対策 活用法ページの修正 @since 2025.07.17 @author ione.miyasaka end */