@charset "utf-8";
/* CSS Document */


/* 基本設定 */

.padding20 {
    padding-top: 20px;
}


/* PCSP出し分け設定 */

@media print, screen and (min-width: 641px) {
    .sp_only {
        display: none !important;
    }
}
@media screen and (max-width: 640px){
    .pc_only {
        display: none !important;
    }
}

.recommend:first-of-type {
    margin-top: -20px;
}

/* 記事設定 */

.blog_title h4 {
    line-height: 1.4 !important;
} 

.title {
    margin-top: 48px;
    font-size: 16px;
    font-weight: bold;
}

@media screen and (max-width: 640px){
    .title {
        margin-top: 40px;
        font-size: 14px;
    }
}
.title_sub {
    font-size: 14px;
    font-weight: bold;
}
@media screen and (max-width: 640px){
    .title_sub {
        font-size: 13px;
    }
}
.ph_big {
    margin-bottom: 24px;
}

.btn {
    margin-top: 30px;
}
@media screen and (max-width: 640px) {
    .btn {
        margin-top: 24px;
    }
}
.btn a {
    width: 280px;
    height: 48px;
    margin: 0 auto;
    background-color: #E1DCD2;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    color: #323232;
    font-size: 14px;
    border-radius: 50px;
}
@media screen and (max-width: 640px) {
    .btn a {
        width: 250px;
        font-size: 12px;
    }
}
@media print, screen and (min-width: 641px) {
    .btn a:hover {
        opacity: 0.7;
    }
}

.flex_phleft {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}
@media screen and (max-width: 640px) {
    .flex_phleft {
    flex-direction: column;
    }
}
.flex_phleft .ph {
    width: 45%;
}
@media screen and (max-width: 640px) {
    .flex_phleft .ph {
        width: 100%;
    }
}
.flex_phleft .box {
    width: 50%;
}
@media screen and (max-width: 640px) {
    .flex_phleft .box {
        width: 100%;
    }
}

/* 裏フェア */
.flex_2column_fair {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 640px) {
    .flex_2column_fair {
        flex-direction: column;
        gap: 8px;
    }
}
.flex_2column_fair:nth-child(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 640px) {
    .flex_2column_fair:nth-child(n+2) {
        margin-top: 8px;
    }
}
.flex_2column_fair .box_fair {
    width: 48%;
}
@media screen and (max-width: 640px) {
    .flex_2column_fair .box_fair {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}
.flex_2column_fair .box_fair .ph_fair {
    width: 100%;
    aspect-ratio: 1;
}
@media screen and (max-width: 640px) {
    .flex_2column_fair .box_fair .ph_fair {
        width: 38%;
        margin-bottom: 0 !important;
    }
}
@media screen and (max-width: 640px) {
    .flex_2column_fair .box_fair .p1_fair {
        width: 58%;
    }
}
.flex_2column_fair .box_fair img {
    display: block;
    object-fit: cover;
    height: 100% !important;
}


/* 固定トピックス */
.flex_2column {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 640px) {
    .flex_2column {
    /* flex-direction: column; */
    /* gap: 20px; */
    gap: 10px;
    }
}

.flex_2column:nth-child(n+2) {
    margin-top: 30px;
}
@media screen and (max-width: 640px) {
    .flex_2column:nth-child(n+2) {
        margin-top: 20px;
    }
}
.flex_2column .box {
    width: 48%;
}
@media screen and (max-width: 640px) {
    .flex_2column .box {
        width: 100%;
    }
}
.flex_2column .box .ph {
    width: 100%;
    aspect-ratio: 3 / 2;
}
.flex_2column .box img {
    display: block;
    object-fit: cover;
    height: 100% !important;
}
@media screen and (max-width: 640px) {
    .flex_2column .box .p1 {
        font-size: 11px;
    }
}



