.image-gallery {
    display: flex;
    flex-direction: column; /* 縦方向に並べる */
    align-items: center;
    gap: 16px; /* 各要素の間隔 */
}

.image-gallery .top-row,
.image-gallery .bottom-row {
    display: flex;
    gap: 8px; /* 画像間の間隔 */
    justify-content: center;
}

.image-gallery img {
    width: 64px;
    height: auto;
    flex: none;
}

.image-gallery .special-text {
    font-weight: bold;
    margin: 8px 0;
    white-space: nowrap;
}

@media screen and (max-width: 768px) {
    .image-gallery {
        gap: 12px;
    }

    .image-gallery img {
        width: 48px;
    }

    .image-gallery .special-text {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .image-gallery {
        gap: 8px;
    }

    .image-gallery img {
        width: 32px;
    }

    .image-gallery .special-text {
        font-size: 12px;
    }
}

/*選べる特典*/
.special-box {
    padding: 10px 15px;
    border: 1.5px solid #000; /* 黒い細い枠 */
    border-radius: 20px; /* 角の丸みを調整 */
    display: inline-block;
    text-align: center;
    position: relative;
    max-width: 100%;
    margin-top: 15px;
}

/* 「＋選べる特典」のデザイン調整 */
.special-text {
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    color: #000;
    position: absolute;
    top: -20px;
    left: 15px;
    padding: 0 5px;
}

/* 画像を横並びに配置 */
.bottom-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* 画像間の余白 */
    padding-top: 10px;
}

/* 画像サイズ調整 */
.bottom-row img {
    width: 80px; /* 画像サイズ調整 */
    height: auto;
    max-width: 100%;
}

.special-text_pro{
    font-weight: bold;
    font-size: 16px;
    margin: 0;
    color: #000;
    position: absolute;
    top: -20px;
    left: 15px;
    background: #eff; 
    padding: 0 5px;
    background: #eff;
}

.special-text_standard{
    background: #efe; 
}

.special-text_ex{
    background: #eef; 
}

/*
 <p class="text_link next_link"><a href="https://rs-support-doc.atlassian.net/wiki/spaces/HELP/pages/1678671878" target="_blank">ゴールドサポートの活用事例を知る</a><i class="ico_other_link"></i></p>
*/
.next_link a{position: relative; margin-left: 16px;}
.next_link a:before{content: ""; background: #063269; display: inline-block; position: absolute; left: -18px; top:2px;
  height: calc(tan(60deg) * 16px / 2);
  width: 12px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);}


/* 外部へのリンクアイコン  */
.ico_other_link {
    position: relative; 
    display: inline-block;
    width: 10px;
    height: 10px;
    border: 2px solid #2790b0;
    border-radius: 2px;
    margin-left:10px;
    margin-right:4px;
    top:2px;
}
.ico_other_link:before {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    display: block;
    height: 0;
    width: 0;
    border: 4px solid #FFF;
    border-top-color: #2790b0;
    border-right-color: #2790b0;
    box-shadow: 0 0 0 1px #fff, 0 0 0 1px #fff;
}
.ico_other_link:after {
    content: "";
    position: absolute;
    top: -1px;
    right: 3px;
    display: block;
    height: 9px;
    width: 2px;
    background-color: #2790b0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.Android i {display:inline-block;} /*base.css で定義*/