.--gallery2-container {
    display: flex;
    justify-content: space-between;     /* 両端に寄せて均等配置 */
    gap: 3rem;     /* 写真同士の間隔（お好みで調整してください） */
    width: 100%;
    box-sizing: border-box;
}

.--gallery2-item {
    flex: 1;     /* 2つの要素が同じ幅で伸縮するように設定 */
    min-width: 0;     /* flex内の画像のはみ出しを防ぐための魔法のコード */
}

.--gallery2-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;     /* 万が一画像の比率が違っても崩れないように保護 */
}

h2.--h2feature2 {
    background: #00b0bc;
    padding: 2rem 2rem 1rem;
    color: #fff;
    position: static;
}

@media screen and (min-width: 960px) {
    h2.--h2feature2::before {
        width: 0;
        height: 0;
        border: none;
        top: 0
    }
}

h2.--h2feature2::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    left: 0;
    bottom: 0;
    background-color: none
}

.p-post-index ol.p-post-index__list li.p-post-index-list__item::before {
    /* counter-increment: item; */
    counter-increment: none;
    /* content: counter(item) "."; */
    content: none;
    text-align: right;
    display: inline-block;
    padding-right: 1em;
    font-family: "EB Garamond", serif;
    font-size: 1.6rem;
    color: #8A7403
}

.p-dl-default .p-dl-default__item {
    border-bottom: 1px solid #DCD6D0;
    border: none;
    font-weight: 500;
    padding: 1.25em 0;
}

@media screen and (max-width: 640px) {
    .p-dl-default .p-dl-default__item {
        padding: 0.5em 0;
    }
}

.p-dl-default .p-dl-default__item:first-of-type {
    /* border-top: 1px solid #DCD6D0; */
    border-top: none !important;
}

@media screen and (min-width: 640px),
print {
    .feature .feature__main-content .feature-spot .feature-spot__content .p-dl-default .p-dl-default__item {
        padding: 0.25em 0 !important;
    }
}

.feature .feature__main-content .feature-spot {
    /* border-top: 1px solid #DCD6D0; */
    border-top: none !important;
    padding: 2.4rem 0 0;
    /* margin: 2.5rem 0 6rem; */
    margin: 0rem 0 6rem !important;
}

.feature .feature__main-content .--featuredetailbtn {
    margin-top: 0;
    padding-top: 0;
}

.feature .feature__main-content .--featuredetail {     /* margin-bottom: 0 !important;
    padding-bottom: 0; */
    margin-top: 0;
    padding-top: 0;
}

.feature .feature__main-content .feature-spot .feature-spot__ttl {
    font-weight: bold;
    font-size: 1.75rem;
}

.feature .feature__main-content .feature-spot .feature-spot__ttl::before {
    /* content: ''; */
    content: none;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 16px;
    height: 18px;
    background: url(../images/common/ico_place.svg) no-repeat center center;
    background-size: contain;
    margin-top: .3125em;
    margin-right: .3125em
}

.feature-spot-content {
    margin-bottom: 1.5rem;
}

@media screen and (min-width: 640px),
print {
    .p-dl-default .p-dl-default__item .p-dl-default__term {
        width: 7.5rem;
        -ms-flex-negative: 0;
        flex-shrink: 0
    }
}

@media screen and (min-width: 640px),
print {
    .feature .feature__main-content .feature-spot .feature-spot__content .feature-spot-img {
        width: 48%;
        -ms-flex-negative: 0;
        flex-shrink: 0;
        margin-bottom: 1.5rem;
    }
}

.feature .feature__main-content .feature-spot .feature-spot__content .feature-spot-img::before { 
        /* content:''; */
    content: none;
    display: block;
    /* padding-top: 66.667%; */
    padding-top: 0;
}

.feature .feature__main-content .feature-spot .feature-spot__content .feature-spot-img img {
    display: block;
    /* position: absolute; */
    position: inherit;
    z-index: 1;
    top: 0;
    /* left: 50%; */
    left: 0;
    /* -webkit-transform: translate(-50%, 0); */
    -webkit-transform: none;
    /* transform: translate(-50%, 0); */
    transform: none;
    max-width: none;
    width: 100%;
    min-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    margin: 0
}