@charset "utf-8";

/*********************************************************************
*
*  For ALL
*
*********************************************************************/

/* ---------------------------------------------------- */
/* web font */
/* ---------------------------------------------------- */
/* Google font */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;700&display=swap');

/* ---------------------------------------------------- */
/* cs_ff */
/* ---------------------------------------------------- */
.cs_ff_en1 {
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.cs_ff_go {
    font-family: 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.cs_ff_min {
    font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* ---------------------------------------------------- */
/* cs_fc */
/* ---------------------------------------------------- */
.cs_fc_1,
.cs_fc_1 a,
a.cs_fc_1 {
    color: #ffffff;
}

.cs_fc_2,
.cs_fc_2 a,
a.cs_fc_2 {
    color: #000000;
}

.cs_fc_3,
.cs_fc_3 a,
a.cs_fc_3 {
    color: #004c6e;
}

/* ---------------------------------------------------- */
/* cs_fd */
/* ---------------------------------------------------- */
.cs_fd_bold {
    font-weight: bold;
}

.cs_fd_underline {
    text-decoration: underline;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
.cs_link_1 {
    text-decoration: underline;
}

.cs_link_none {
    pointer-events: none;
}

/* ---------------------------------------------------- */
/* cs_ta */
/* ---------------------------------------------------- */
.cs_ta_l {
    text-align: left !important;
}

.cs_ta_r {
    text-align: right !important;
}

.cs_ta_c {
    text-align: center !important;
}


/* ---------------------------------------------------- */
/* cs_e */
/* ---------------------------------------------------- */
.cs_e_zm {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.cs_e_zm>span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%) scale(1.005);
    transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
    .cs_e_op {
        transition: opacity 0.3s ease-in-out;
    }

    .cs_e_op:hover,
    a:hover .cs_e_op {
        opacity: 0.6;
    }

    .cs_e_bn {
        transition: filter 0.3s ease-in-out;
    }

    .cs_e_bn:hover,
    a:hover .cs_e_bn {
        filter: brightness(50%);
    }

    a:hover .cs_e_zm>span {
        transform: translate(-50%, -50%) scale(1.08);
        filter: brightness(50%);
    }
}

/* ---------------------------------------------------- */
/* pc/sp */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_none_pc {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .cs_none_sp {
        display: none !important;
    }
}

/* ---------------------------------------------------- */
/* cs_w_full */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_w_full_pc {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        overflow: hidden;
    }
}

/* max-widthをbodymin-widthに */
@media (min-width: 768px) and (max-width: 1200px) {
    .cs_w_full_pc {
        /* marginを（bodymin-width - cs_sec_inner / 2） */
        margin-left: -25px;
        margin-right: -25px
    }
}

@media (max-width: 767px) {
    .cs_w_full_sp {
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        overflow: hidden;
    }
}


/* ---------------------------------------------------- */
/* cs_sec */
/* ---------------------------------------------------- */
.cs_sec_wrap {
    position: relative;
}

.cs_sec_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cs_sec_inner {
        width: 1150px;
    }

    .cs_sec_inner_full_pc {
        width: 100%;
    }

    .cs_sec_inner_w1_pc {
        width: 1000px;
    }
}

@media (max-width: 767px) {
    .cs_sec_inner {
        width: calc(100% - 40px);
    }

    .cs_sec_inner_full_sp {
        width: 100%;
    }
}

/* ---------------------------------------------------- */
/* cs_desc */
/* ---------------------------------------------------- */
.cs_desc_1 {
    text-align: justify;
    line-height: 1.8;
}

.cs_desc_1>*+* {
    margin-top: 1.5em;
}

@media (max-width: 767px) {
    .cs_desc_1>*+* {
        margin-top: 1.5em;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_1 */
/* ---------------------------------------------------- */
.cs_ttl_1 {
    line-height: 1.2;
    font-weight: 500;
    text-align: center;
}

.cs_ttl_1>span {
    display: block;
}

.cs_ttl_1 .en {
    font-size: 5.0rem;
    letter-spacing: 0.1em;
}

.cs_ttl_1 .ja {
    margin-top: 25px;
    font-size: 1.8rem;
    letter-spacing: 0.2em;
}

@media (max-width: 767px) {
    .cs_ttl_1 .en {
        font-size: 3.0rem;
    }

    .cs_ttl_1 .ja {
        margin-top: 15px;
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------- */
/* cs_ttl_2 */
/* ---------------------------------------------------- */
.cs_ttl_2 {
    font-size: 3.0rem;
    line-height: 1.2;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* ---------------------------------------------------- */
/* cs_ttl_3 */
/* ---------------------------------------------------- */
.cs_ttl_3 {
    font-size: 3.0rem;
    line-height: 1.2;
    letter-spacing: 0.1em;
    font-weight: 500;
    text-align: center;
}

.cs_ttl_3::after {
    content: "";
    display: block;
    margin: 15px auto 0;
    width: 70px;
    height: 2px;
    background-color: #80898E;
}

@media (max-width: 767px) {
    .cs_ttl_3 {
        font-size: 2.4rem;
    }

    .cs_ttl_3::after {
        width: 45px;
    }
}



/* ---------------------------------------------------- */
/* cs_btn_wrap_1 */
/* ---------------------------------------------------- */
.cs_btn_wrap_1 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: -20px;
    margin-bottom: -20px;
}

.cs_btn_wrap_1>* {
    margin-left: 20px;
    margin-bottom: 20px;
}

@media (max-width: 767px) {
    .cs_btn_wrap_1 {
        margin-left: -10px;
        margin-bottom: -10px;
    }

    .cs_btn_wrap_1>* {
        margin-left: 10px;
        margin-bottom: 10px;
    }
}


/* ---------------------------------------------------- */
/* cs_btn_1 */
/* ---------------------------------------------------- */
.cs_btn_1 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 40px;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: center;
    border: 1px solid #000;
}

.cs_btn_1:hover {
    color: #FFF;
    border-color: #585858;
    background-color: #585858;
}

.cs_btn_1::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

.cs_btn_1:hover::after {
    border-color: #FFF;
}

.cs_btn_1 i {
    display: block;
    margin-top: 1px;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
}

.cs_btn_1 i+span {
    margin-left: 5px;
}

.cs_btn_1 span+i {
    margin-left: 5px;
}

.cs_btn_co_1:hover i {
    filter: invert(100%);
}

/* cs_btn_si */
.cs_btn_si_1 {
    min-width: 350px;
    height: 70px;
}

.cs_btn_si_2 {
    min-width: 550px;
    height: 100px;
}

/* cs_btn_co */
.cs_btn_co_1 {
    color: #000;
    background-color: #FFF;
    border-color: #000;
}

.cs_btn_co_1::after {
    border-color: #000;
}

.cs_btn_co_2 {
    color: #FFF;
    background-color: #000;
    border-color: #000;
}

.cs_btn_co_2::after {
    border-color: #FFF;
}

.cs_btn_co_3 {
    color: #FFF;
    background-color: #6E6E6E;
    border-color: #6E6E6E;
}

.cs_btn_co_3:hover {
    color: #6E6E6E;
    background-color: #FFF;
}


.cs_btn_co_3::after {
    border-color: #FFF;
}

.cs_btn_co_3:hover::after {
    border-color: #6E6E6E;
}

.cs_btn_co_4 {
    color: #EC6C26;
    background-color: #FFF;
    border-color: #EC6C26;
}

.cs_btn_co_4:hover {
    background-color: #EC6C26;
    border-color: #EC6C26;
}

.cs_btn_co_4::after {
    border-color: #EC6C26;
}

.cs_btn_co_5 {
    color: #0089D2;
    background-color: #FFF;
    border-color: #0089D2;
}

.cs_btn_co_5:hover {
    background-color: #0089D2;
    border-color: #0089D2;
}

.cs_btn_co_5::after {
    border-color: #0089D2;
}

.cs_btn_co_6 {
    color: #8CB808;
    background-color: #FFF;
    border-color: #8CB808;
}

.cs_btn_co_6:hover {
    background-color: #8CB808;
    border-color: #8CB808;
}

.cs_btn_co_6::after {
    border-color: #8CB808;
}

.cs_btn_co_7 {
    background: #FFEF24;
    border-color: #FFEF24;
    color: #000;
}

.cs_btn_co_7::after {
    border-color: #000;
}

.cs_btn_co_7:hover {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.cs_btn_co_7:hover::after {
    border-color: #fff;
}

.cs_btn_co_7:hover i {
    filter: invert(1);
}

@media (max-width: 767px) {
    .cs_btn_1 {
        padding: 5px 35px;
        min-width: 90% !important;
        font-size: 1.6rem;
    }

    .cs_btn_1::after {
        right: 15px;
    }

}

/* ---------------------------------------------------- */
/* cs_sec_mv_wrap_1 */
/* ---------------------------------------------------- */
.cs_sec_mv_wrap_1 {
    padding-top: 80px;
}

@media (max-width: 767px) {
    .cs_sec_mv_wrap_1 {
        padding-top: 40px;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_works_item_1 */
/* ---------------------------------------------------- */
.cs_archive_works_item_1 {
    height: 100%;
}

.cs_archive_works_item_1 a {
    position: relative;
    display: block;
    padding: 8px 8px 75px;
    height: 100%;
    background-color: #F1F1F1;
    overflow: hidden;
}

.cs_archive_works_item_1 a:hover {
    background-color: #B5B5B5;
}

.cs_archive_works_item_1 a::before,
.cs_archive_works_item_1 a::after {
    position: absolute;
    display: block;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.cs_archive_works_item_1 a::before {
    content: "PICKUP";
    left: 0;
    top: 30px;
    transform: translate(-36px, -5px) rotate(-45deg);
    width: 150px;
    font-size: 2.0rem;
    line-height: 24px;
    background-color: #FFEF24;
}

.cs_archive_works_item_1 a::after {
    content: "MORE";
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    padding-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1;
    border-bottom: 2px solid #000;
}

.cs_archive_works_item_1 .thumb {
    margin-bottom: 30px;
}

.cs_archive_works_item_1 .thumb>span {
    display: block;
    padding-top: 58%;
    background-position: center;
    background-size: cover;
}

.cs_archive_works_item_1 .cat_1 {
    display: table;
    margin: 0 auto 20px;
    padding: 5px 10px;
    min-width: 100px;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    border: 2px solid #000;
}

.cs_archive_works_item_1 .cat_2 {
    display: none;
}

.cs_archive_works_item_1 .ttl {
    padding: 0 20px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
}

@media (max-width: 767px) {
    .cs_archive_works_item_1 .thumb {
        margin-bottom: 20px;
    }

    .cs_archive_works_item_1 .cat {
        position: absolute;
        right: 8px;
        top: 8px;
        margin: 0;
        color: #FFF;
        background-color: #000;
        border: none;
    }

    .cs_archive_works_item_1 .ttl {
        padding: 0 5px;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_works_item_2 */
/* ---------------------------------------------------- */
.cs_archive_works_item_2 {
    height: 100%;
}

.cs_archive_works_item_2 a {
    position: relative;
    display: block;
    padding: 8px 8px 75px;
    height: 100%;
    background-color: #FFF;
    overflow: hidden;
}

.cs_archive_works_item_2 a:hover {
    background-color: #B5B5B5;
}

.cs_archive_works_item_2 a::before,
.cs_archive_works_item_2 a::after {
    position: absolute;
    display: block;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.cs_archive_works_item_2 a::after {
    content: "MORE";
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    padding-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1;
    border-bottom: 2px solid #000;
}

.cs_archive_works_item_2 .thumb {
    margin-bottom: 20px;
}

.cs_archive_works_item_2 .thumb>span {
    display: block;
    padding-top: 58%;
    background-position: center;
    background-size: cover;
}

.cs_archive_works_item_2 .cat_1 {
    position: absolute;
    right: 8px;
    top: 8px;
    display: table;
    padding: 5px 10px;
    min-width: 100px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    background-color: #000;
}

.cs_archive_works_item_2 .cat_2 {
    display: none;
}

.cs_archive_works_item_2 .ttl {
    padding: 0 20px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 表示したい行数を指定する */
    overflow: hidden;
}

@media (min-width: 768px) {
    .cs_archive_works_item_2 {
        height: 100%;
    }

    .cs_archive_works_item_2 a {
        padding: 0;
    }

    .cs_archive_works_item_2 a:hover {
        background-color: #B5B5B5;
    }

    .cs_archive_works_item_2 a::before,
    .cs_archive_works_item_2 a::after {
        position: absolute;
        display: none;
    }

    .cs_archive_works_item_2 .thumb {
        margin-bottom: 0;
    }

    .cs_archive_works_item_2 .meta_wrap {
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        opacity: 0;
        z-index: 2;
        transition: 0.3s ease-in-out;
    }

    .cs_archive_works_item_2 .meta_wrap::after {
        content: "MORE";
        display: block;
        padding-bottom: 5px;
        color: #FFF;
        font-size: 1.5rem;
        font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-align: center;
        line-height: 1;
        border-bottom: 2px solid #FFF;
    }

    .cs_archive_works_item_2 a:hover .meta_wrap {
        opacity: 1;
    }

    .cs_archive_works_item_2 .cat_1 {
        right: 0;
        top: 0;
    }

    .cs_archive_works_item_2 .cat_2 {
        display: table;
        margin: 0 auto 20px;
        padding: 5px 10px;
        min-width: 100px;
        color: #FFF;
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.2em;
        line-height: 1;
        text-align: center;
        border: 2px solid #FFF;
    }

    .cs_archive_works_item_2 .ttl {
        padding: 0 20px;
        margin-bottom: 20px;
        width: 100%;
        color: #FFF;
    }

}

/* ---------------------------------------------------- */
/* cs_archive_voice_item_1 */
/* ---------------------------------------------------- */
.cs_archive_voice_item_1 a {
    position: relative;
    display: block;
}

.cs_archive_voice_item_1 .thumb {
    width: 914px;
}

.cs_archive_voice_item_1 .thumb>span {
    display: block;
    padding-top: 43%;
    background-position: center;
    background-size: cover;
}

.cs_archive_voice_item_1 .meta_wrap {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 35px;
    width: 270px;
    height: 270px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: 0.3s ease-in-out;
}

.cs_archive_voice_item_1 a:hover .meta_wrap {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.9)
}

.cs_archive_voice_item_1 .meta_wrap::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 1px solid #000;
    transition: 0.3s ease-in-out;
}

.cs_archive_voice_item_1 a:hover .meta_wrap::before {
    border-color: #FFF;
}

.cs_archive_voice_item_1 .meta_wrap::after {
    content: "MORE";
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    display: block;
    padding-bottom: 5px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    line-height: 1;
    border-bottom: 2px solid #000;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
    transition: border-color 0.3s ease-in-out;
}

.cs_archive_voice_item_1 a:hover .meta_wrap::after {
    border-color: #FFF;
}

.cs_archive_voice_item_1 .meta_wrap .ttl {
    margin-bottom: 10px;
}

.cs_archive_voice_item_1 .meta_wrap .ttl span {
    display: block;
    font-weight: 500;
    text-align: center;
}

.cs_archive_voice_item_1 .meta_wrap .ttl .num {
    margin-bottom: 8px;
    font-size: 3.0rem;
    letter-spacing: 0.2em;
    line-height: 1;
}

.cs_archive_voice_item_1 .meta_wrap .desc {
    font-size: 1.4rem;
    line-height: 2;
    text-align: justify;
}

@media (min-width: 768px) {
    .archive_wrap>ul>li:nth-child(odd) .cs_archive_voice_item_1 {
        transform: translateX(-125px);
    }

    .archive_wrap>ul>li:nth-child(even) .cs_archive_voice_item_1 {
        transform: translateX(125px);
    }

    .archive_wrap>ul>li:nth-child(odd) .cs_archive_voice_item_1 .thumb {
        margin-left: 0;
        margin-right: auto;
    }

    .archive_wrap>ul>li:nth-child(even) .cs_archive_voice_item_1 .thumb {
        margin-left: auto;
        margin-right: 0;
    }

    .archive_wrap>ul>li:nth-child(odd) .cs_archive_voice_item_1 .meta_wrap {
        right: 40px;
    }

    .archive_wrap>ul>li:nth-child(even) .cs_archive_voice_item_1 .meta_wrap {
        left: 40px;
    }
}

@media (max-width: 767px) {
    .cs_archive_voice_item_1 .thumb {
        width: auto;
    }

    .cs_archive_voice_item_1 .meta_wrap {
        position: relative;
        top: auto;
        transform: translateY(0%);
        margin: -35px 10px 0;
        padding: 35px 20px 75px;
        width: auto;
        height: auto;
    }

    .cs_archive_voice_item_1 .meta_wrap .ttl {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 10px;
    }

    .cs_archive_voice_item_1 .meta_wrap .ttl span {
        display: block;
        font-weight: 500;
        text-align: center;
    }

    .cs_archive_voice_item_1 .meta_wrap .ttl .num {
        margin-bottom: 0;
        margin-right: 10px;
    }

    .cs_archive_voice_item_1 .meta_wrap .desc {
        line-height: 1.8;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_voice_item_2 */
/* ---------------------------------------------------- */
.cs_archive_voice_item_2 {
    height: 100%;
}

.cs_archive_voice_item_2 a {
    position: relative;
    display: block;
    padding: 8px 8px 75px;
    height: 100%;
    background-color: #FFF;
    overflow: hidden;
}

.cs_archive_voice_item_2 a:hover {
    background-color: #B5B5B5;
}

.cs_archive_voice_item_2 a::before,
.cs_archive_voice_item_2 a::after {
    position: absolute;
    display: block;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.cs_archive_voice_item_2 a::after {
    content: "MORE";
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    padding-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1;
    border-bottom: 2px solid #000;
}

.cs_archive_voice_item_2 .thumb {
    margin-bottom: 20px;
}

.cs_archive_voice_item_2 .thumb>span {
    display: block;
    padding-top: 58%;
    background-position: center;
    background-size: cover;
}

.cs_archive_voice_item_2 .cat_1 {
    position: absolute;
    right: 8px;
    top: 8px;
    display: table;
    padding: 5px 10px;
    min-width: 100px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    background-color: #000;
}

.cs_archive_voice_item_2 .cat_2 {
    display: none;
}

.cs_archive_voice_item_2 .ttl {
    padding: 0 20px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 表示したい行数を指定する */
    overflow: hidden;
}

@media (min-width: 768px) {
    .cs_archive_voice_item_2 {
        height: 100%;
    }

    .cs_archive_voice_item_2 a {
        padding: 0;
    }

    .cs_archive_voice_item_2 a:hover {
        background-color: #B5B5B5;
    }

    .cs_archive_voice_item_2 a::before,
    .cs_archive_voice_item_2 a::after {
        position: absolute;
        display: none;
    }

    .cs_archive_voice_item_2 .thumb {
        margin-bottom: 0;
    }

    .cs_archive_voice_item_2 .meta_wrap {
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        opacity: 0;
        z-index: 2;
        transition: 0.3s ease-in-out;
    }

    .cs_archive_voice_item_2 .meta_wrap::after {
        content: "MORE";
        display: block;
        padding-bottom: 5px;
        color: #FFF;
        font-size: 1.5rem;
        font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-align: center;
        line-height: 1;
        border-bottom: 2px solid #FFF;
    }

    .cs_archive_voice_item_2 a:hover .meta_wrap {
        opacity: 1;
    }

    .cs_archive_voice_item_2 .cat_1 {
        right: 0;
        top: 0;
    }

    .cs_archive_voice_item_2 .cat_2 {
        display: table;
        margin: 0 auto 20px;
        padding: 5px 10px;
        min-width: 100px;
        color: #FFF;
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        line-height: 1;
        text-align: center;
        border: 2px solid #FFF;
    }

    .cs_archive_voice_item_2 .ttl {
        padding: 0 20px;
        margin-bottom: 20px;
        width: 100%;
        color: #FFF;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_property_item_1 */
/* ---------------------------------------------------- */
.cs_archive_property_item_1 {
    position: relative;
    height: 100%;
}

.cs_archive_property_item_1.new::before {
    content: "NEW";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: #FFEF24;
    z-index: 1;
}

.cs_archive_property_item_1.stats_s2::before {
    content: "予告広告";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 40px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
    background-color: #000;
    z-index: 1;
}

.cs_archive_property_item_1 .clms_wrap {
    position: relative;
    padding-bottom: 50px;
    height: 100%;
    background-color: #FFF;
}

.cs_archive_property_item_1 .clms_wrap>.clm_wrap:nth-of-type(1) {
    position: relative;
}

.cs_archive_property_item_1 .clms_wrap>.clm_wrap:nth-of-type(2) {
    padding: 0 15px 15px;
}

.cs_archive_property_item_1 .img {
    display: block;
    position: relative;
    background-color: #000;
}

.cs_archive_property_item_1 .img.noneLink,
.cs_archive_property_item_2 .img.noneLink,
.cs_archive_property_item_3 .img.noneLink {
    pointer-events: none;
}

.cs_archive_property_item_1.limited .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url(../img/ico/limited_1.svg);
    background-size: 100px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.logged-in .cs_archive_property_item_1.limited .img::before {
    display: none;
}

.cs_archive_property_item_1 .img>span {
    display: block;
    padding-top: 70%;
    background-position: center;
    background-size: cover;
    transition: 0.3s ease-in-out;
}

.cs_archive_property_item_1 .img:hover>span {
    opacity: 0.6;
}

.cs_archive_property_item_1 .mh {
    position: absolute;
    left: 0;
    bottom: 0;
    /* display: flex; */
    display: none;
}

.cs_archive_property_item_1 .mh>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 26px;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFEF24;
    border-top-right-radius: 5px;
}

.cs_archive_property_item_1 .ttl_wrap {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #707070;
}

.cs_archive_property_item_1 .ttl_wrap .area>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: max-content;
    height: 26px;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #000;
    border: 1px solid #000;
}

.cs_archive_property_item_1 .ttl_wrap .cat {
    margin:0 -15px 10px;
    width: calc(100% + 30px);
}

.cs_archive_property_item_1 .ttl_wrap .cat>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 26px;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFF;
}

.cs_archive_property_item_1.catproperty_tochi_1 .ttl_wrap .cat>span {
    background-color: #0089D2;
}

.cs_archive_property_item_1.catproperty_tochi_2 .ttl_wrap .cat>span {
    background-color: #EC6C26;
}

.cs_archive_property_item_1.catproperty_kodate_1 .ttl_wrap .cat>span {
    background-color: #6E6E6E;
}

.cs_archive_property_item_1.catproperty_kodate_3 .ttl_wrap .cat>span {
    background-color: #E03B57;
}

.cs_archive_property_item_1.catproperty_kodate_2 .ttl_wrap .cat>span {
    background-color: #746FAF;
}

.cs_archive_property_item_1.catproperty_mansion_2 .ttl_wrap .cat>span {
    background-color: #8CB808;
}

.cs_archive_property_item_1 .post_ttl {
    margin-left: 10px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
}

.cs_archive_property_item_1 .post_copy {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.4;
}

.cs_archive_property_item_1 .overview {
    margin-top: 20px;
    line-height: 1.4;
}

.cs_archive_property_item_1 .overview>ul>li {
    display: flex;
    align-items: flex-start;
}

.cs_archive_property_item_1 .overview>ul>li+li {
    margin-top: 10px;
}

.cs_archive_property_item_1 .overview .ttl {
    flex: none;
    margin-right: 10px;
    width: 80px;
    text-align: center;
    border-right: 1px solid #000;
}

.cs_archive_property_item_1 .overview .desc .price {
    font-size: 2.0rem;
    line-height: 1;
}

.cs_archive_property_item_1 .btn_wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.cs_archive_property_item_1 .btn_wrap a {
    width: calc(50% - 2px);
    height: 50px;
    font-size: 1.4rem;
}

.cs_archive_property_item_1 .btn_wrap a.width_max,
.cs_archive_property_item_2 .btn_wrap a.width_max {
    width: 100%;
}

@media (max-width: 767px) {
    .cs_archive_property_item_1 .clms_wrap {
        display: block;
        position: static;
        padding: 0;
    }

    .cs_archive_property_item_1 .clms_wrap>.clm_wrap {
        position: static;
        flex: none;
    }

    .cs_archive_property_item_1 .clms_wrap>.clm_wrap:nth-of-type(2) {
        padding: 0 15px 65px;
        width: auto;
    }

    .cs_archive_property_item_1 .ttl_wrap {
        margin-bottom: 15px;
    }

    .cs_archive_property_item_1 .ttl_wrap .cat {

    }

    .cs_archive_property_item_1 .ttl_wrap .cat>span,
    .cs_archive_property_item_1 .ttl_wrap .area>span {
        padding: 0 10px;
        height: 24px;
    }

    .cs_archive_property_item_1 .ttl_wrap .area>span {
        margin-left: 0;
    }

    .cs_archive_property_item_1 .post_ttl {
        font-size: 1.5rem;
    }

    .cs_archive_property_item_1 .overview {
        margin-top: 15px;
        font-size: 1.3rem;
    }

    .cs_archive_property_item_1 .overview>ul>li+li {
        margin-top: 5px;
    }

    .cs_archive_property_item_1 .overview .ttl {
        margin-right: 5px;
        width: 65px;
    }

    .cs_archive_property_item_1 .overview .desc .price {
        font-size: 1.6rem;
    }

    .cs_archive_property_item_1 .btn_wrap {}

    .cs_archive_property_item_1 .btn_wrap a {
        min-width: auto !important;
        font-size: 1.2rem;
        height: 50px;
    }
}

/* ---------------------------------------------------- */
/* 成約済み */
/* ---------------------------------------------------- */
.cs_archive_property_item_1.stats_s1 {
    pointer-events: none;
}

.cs_archive_property_item_1.stats_s1 .msg_soldout {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 58, 57, 0.6);
    z-index: 1;
}

.cs_archive_property_item_1.stats_s1 .msg_soldout>span {
    position: relative;
    display: block;
    height: 100%;
    color: #FFF;
    font-size: 16px;
    text-align: center;
}

.cs_archive_property_item_1.stats_s1 .msg_soldout>span>span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .cs_archive_lineup_item_1 .msg_soldout>span {
        font-size: 13px;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_property_item_2 */
/* ---------------------------------------------------- */
.cs_archive_property_item_2 {
    position: relative;
    padding-top: 10px;
    height: 100%;
}

.cs_archive_property_item_2.new::before {
    content: "NEW";
    position: absolute;
    left: -10px;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: #FFEF24;
    z-index: 2;
}

.cs_archive_property_item_2 .clms_wrap {
    position: relative;
    display: block;
    padding-bottom: 60px;
    height: 100%;
    background-color: #FFF;
}

.cs_archive_property_item_2 .clms_wrap>.clm_wrap:nth-of-type(1) {
    position: relative;
}

.cs_archive_property_item_2 .clms_wrap>.clm_wrap:nth-of-type(2) {
    padding: 0 20px 10px;
}

.cs_archive_property_item_2 .img {
    display: block;
    position: relative;
    background-color: #000;
}

.cs_archive_property_item_2.limited .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(../img/ico/limited_1.svg);
    background-size: 100px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.logged-in .cs_archive_property_item_2.limited .img::before {
    display: none;
}

.cs_archive_property_item_2 .img>span {
    display: block;
    padding-top: 70%;
    background-position: center;
    background-size: cover;
    transition: 0.3s ease-in-out;
}

.cs_archive_property_item_2 .img:hover>span {
    opacity: 0.6;
}

.cs_archive_property_item_2 .mh {
    position: absolute;
    left: 0;
    bottom: 0;
    /* display: flex; */
    display: none;
}

.cs_archive_property_item_2 .mh>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 26px;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFEF24;
    border-top-right-radius: 5px;
}

.cs_archive_property_item_2 .ttl_wrap {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #707070;
}

.cs_archive_property_item_2 .ttl_wrap .area>span {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding: 0 10px;
    height: 24px;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #000;
    border: 1px solid #000;
}

.cs_archive_property_item_2 .ttl_wrap .cat {
    margin: 0 -20px 10px;
    width: calc(100% + 40px);
}

.cs_archive_property_item_2 .ttl_wrap .cat>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 24px;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFF;
}


.cs_archive_property_item_2.catproperty_tochi_1 .ttl_wrap .cat>span {
    background-color: #0089D2;
}

.cs_archive_property_item_2.catproperty_tochi_2 .ttl_wrap .cat>span {
    background-color: #EC6C26;
}

.cs_archive_property_item_2.catproperty_kodate_1 .ttl_wrap .cat>span {
    background-color: #6E6E6E;
}

.cs_archive_property_item_2.catproperty_kodate_3 .ttl_wrap .cat>span {
    background-color: #E03B57;
}

.cs_archive_property_item_2.catproperty_kodate_2 .ttl_wrap .cat>span {
    background-color: #746FAF;
}

.cs_archive_property_item_2.catproperty_mansion_2 .ttl_wrap .cat>span {
    background-color: #8CB808;
}

.cs_archive_property_item_2 .post_ttl {
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.cs_archive_property_item_2 .post_copy {
    font-size: 2.0rem;
    font-weight: 700;
    line-height: 1.4;
}

.cs_archive_property_item_2 .overview {
    margin-top: 15px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.cs_archive_property_item_2 .overview>ul>li {
    display: flex;
    align-items: flex-start;
}

.cs_archive_property_item_2 .overview>ul>li+li {
    margin-top: 5px;
}

.cs_archive_property_item_2 .overview .ttl {
    flex: none;
    margin-right: 5px;
    width: 65px;
    text-align: center;
    border-right: 1px solid #000;
}

.cs_archive_property_item_2 .overview .desc .price {
    font-size: 1.6rem;
    line-height: 1;
}

.cs_archive_property_item_2 .btn_wrap {
    position: absolute;
    left: 0;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    margin: 15px 10px 0;
    width: calc(100% - 20px);
}

.cs_archive_property_item_2 .btn_wrap a {
    width: calc(50% - 2px);
    height: 50px;
    font-size: 1.2rem;
}

@media (max-width: 767px) {}

/* ---------------------------------------------------- */
/* cs_archive_property_item_3 */
/* ---------------------------------------------------- */
.cs_archive_property_item_3 {
    position: relative;
    padding: 5px;
}

.cs_archive_property_item_3.new::before {
    content: "NEW";
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 24px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: #FFEF24;
    z-index: 2;
}

.cs_archive_property_item_3 .clms_wrap {
    position: relative;
    display: flex;
    min-height: 110px;
    background-color: #FFF;
}

.cs_archive_property_item_3 .clms_wrap>.clm_wrap {
    flex: none;
    width: 50%;
}

.cs_archive_property_item_3 .clms_wrap>.clm_wrap {
    flex: none;
    width: 50%;
}

.cs_archive_property_item_3 .clms_wrap>.clm_wrap.noneLink {
    display: flex;
    flex-wrap: wrap;
}

.cs_archive_property_item_3 .img {
    display: block;
    height: 100%;
    position: relative;
    background-color: #000;
}

.cs_archive_property_item_3.limited .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    background-image: url(../img/ico/limited_1.svg);
    background-size: 50px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.logged-in .cs_archive_property_item_3.limited .img::before {
    display: none;
}

.cs_archive_property_item_3 .img>span {
    display: block;
    height: 100%;
    background-position: center;
    background-size: cover;
    transition: 0.3s ease-in-out;
}

.cs_archive_property_item_3 .mh {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    display: none;
}

.cs_archive_property_item_3 .mh>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3px;
    height: 24px;
    font-size: 1.0rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFEF24;
    border-top-right-radius: 5px;
}

.cs_archive_property_item_3 .ttl_wrap {
    display: flex;
    width: 100%;
}

.cs_archive_property_item_3 .ttl_wrap .cat {
    width: 60%;
}

.cs_archive_property_item_3 .ttl_wrap .cat>span,
.cs_archive_property_item_3 .ttl_wrap .area>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 3px;
    height: 24px;
    color: #FFF;
    font-size: 1.0rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFF;
    /* border: 1px solid #000; */
}

.cs_archive_property_item_3 .ttl_wrap .area {
    width: 40%;
}

.cs_archive_property_item_3 .ttl_wrap .area>span {
    margin-left: 0;
    color: #FFF;
    background-color: #000;
}

.cs_archive_property_item_3.catproperty_tochi_1 .ttl_wrap .cat>span {
    background-color: #0089D2;
}

.cs_archive_property_item_3.catproperty_tochi_2 .ttl_wrap .cat>span {
    background-color: #EC6C26;
}

.cs_archive_property_item_3.catproperty_kodate_1 .ttl_wrap .cat>span {
    background-color: #6E6E6E;
}

.cs_archive_property_item_3.catproperty_kodate_3 .ttl_wrap .cat>span {
    background-color: #E03B57;
}

.cs_archive_property_item_3.catproperty_kodate_2 .ttl_wrap .cat>span {
    background-color: #746FAF;
}

.cs_archive_property_item_3.catproperty_mansion_2 .ttl_wrap .cat>span {
    background-color: #8CB808;
}

.cs_archive_property_item_3 .post_ttl {
    display: none;
}

.cs_archive_property_item_3 .post_copy {
    display: none;
}

.cs_archive_property_item_3 .overview {
    padding: 10px;
    font-size: 1.3rem;
    width: 100%;
}

.cs_archive_property_item_3 .overview>ul>li {
    display: none;
}

.cs_archive_property_item_3 .overview>ul>li:nth-child(1),
.cs_archive_property_item_3 .overview>ul>li:nth-child(2) {
    display: block;
}

.cs_archive_property_item_3 .overview .ttl {
    display: none;
}

.cs_archive_property_item_3 .btn_wrap {
    display: none;
    width: 100%;
}

.cs_archive_property_item_3 .btn_wrap.noLink {
    display: flex;
}

.cs_archive_property_item_3 .btn_wrap .cs_btn_1 {
    width: 50%;
    font-size: 1.2rem;
    padding: 10px 15px 10px 0;
    min-width: 50% !important;
}

.cs_archive_property_item_3 .btn_wrap .cs_btn_1::after {
    width: 8px;
    height: 8px;
    right: 8px;
}

@media (max-width: 767px) {
    .cs_archive_property_item_3 .sp_link1 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        /* display: none; */
    }

    .cs_archive_property_item_3 .ttl_wrap {
        flex-flow: wrap;
    }

    .cs_archive_property_item_3 .ttl_wrap .cat {
        width: 100%;
    }

    .cs_archive_property_item_3 .ttl_wrap .area {
        width: 100%;
    }

    .cs_archive_property_item_3 .clms_wrap>.clm_wrap {
        width: 44%;
    }

    .cs_archive_property_item_3 .clms_wrap>.clm_wrap+.clm_wrap {
        width: 56%;
    }

    .cs_archive_property_item_3 .overview {
        padding-top: 5px;
        font-size: 1.1rem;
    }
}


/* ---------------------------------------------------- */
/* cs_archive_property_item_5 */
/* ---------------------------------------------------- */
.cs_archive_property_item_5 {
    position: relative;
    height: 100%;
}

/* .cs_archive_property_item_5.new::before {
    content: "NEW";
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 40px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
    background-color: #FFEF24;
    z-index: 1;
} */

.cs_archive_property_item_5 .clms_wrap {
    position: relative;
    height: 100%;
    background-color: #FFF;
}

.cs_archive_property_item_5 .clms_wrap>.clm_wrap:nth-of-type(1) {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding: 15px 15px 0;
}

.cs_archive_property_item_5 .clms_wrap>.clm_wrap:nth-of-type(2) {
    padding: 10px 15px 50px;
}


.cs_archive_property_item_5 .clms_wrap>.clm_wrap:nth-of-type(1) .meta_wrap {
    flex: auto;
    width: auto;
}

.cs_archive_property_item_5 .img {
    flex: none;
    display: block;
    position: relative;
    background-color: #000;
    margin-right: 10px;
    width: 125px;
}

.cs_archive_property_item_5 .img.noneLink,
.cs_archive_property_item_2 .img.noneLink,
.cs_archive_property_item_3 .img.noneLink {
    pointer-events: none;
}

.cs_archive_property_item_5.limited .img::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    background-image: url(../img/ico/limited_1.svg);
    background-size: 100px auto;
    background-repeat: no-repeat;
    background-position: center;
}

.logged-in .cs_archive_property_item_5.limited .img::before {
    display: none;
}

.cs_archive_property_item_5 .img>span {
    display: block;
    padding-top: 70%;
    background-position: center;
    background-size: cover;
    transition: 0.3s ease-in-out;
}

.cs_archive_property_item_5 .img:hover>span {
    opacity: 0.6;
}

.cs_archive_property_item_5 .mh {
    margin-top: 10px;
    display: flex;
}

.cs_archive_property_item_5 .mh>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 26px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFEF24;
    border-top-right-radius: 5px;
}

.cs_archive_property_item_5 .mh2 {
    margin-top: 10px;
    display: flex;
}

.cs_archive_property_item_5 .mh2>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    height: 26px;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    color: #fff;
    background-color: #000;
    border-top-right-radius: 5px;
}

.cs_archive_property_item_5 .ttl_wrap {
    display: flex;
    margin-bottom: 10px;
}

.cs_archive_property_item_5 .cat>span,
.cs_archive_property_item_5 .area>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    width: max-content;
    height: 26px;
    color: #FFF;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background-color: #FFF;
    /* border: 1px solid #000; */
}

.cs_archive_property_item_5 .area>span {
    color: #FFF;
    background-color: #000;
}

.cs_archive_property_item_5.catproperty_tochi_1 .cat>span {
    background-color: #0089D2;
}

.cs_archive_property_item_5.catproperty_tochi_2 .cat>span {
    background-color: #EC6C26;
}

.cs_archive_property_item_5.catproperty_kodate_1 .cat>span {
    background-color: #6E6E6E;
}

.cs_archive_property_item_5.catproperty_kodate_3 .cat>span {
    background-color: #E03B57;
}

.cs_archive_property_item_5.catproperty_kodate_2 .cat>span {
    background-color: #746FAF;
}

.cs_archive_property_item_5.catproperty_mansion_2 .cat>span {
    background-color: #8CB808;
}

.cs_archive_property_item_5 .post_ttl {
    padding-top: 2px;
    margin-left: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4;
}

.cs_archive_property_item_5 .post_copy {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
}

.cs_archive_property_item_5 .overview {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.4;
}

.cs_archive_property_item_5 .overview>ul>li {
    display: flex;
    align-items: flex-start;
}

.cs_archive_property_item_5 .overview>ul>li+li {
    margin-top: 10px;
}

.cs_archive_property_item_5 .overview .ttl {
    flex: none;
    margin-right: 10px;
    width: 80px;
    text-align: center;
    border-right: 1px solid #000;
}

.cs_archive_property_item_5 .overview .desc .price {
    font-size: 1.6rem;
    line-height: 1;
}

.cs_archive_property_item_5 .btn_wrap {
    position: absolute;
    left: 10px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 20px);
}

.cs_archive_property_item_5 .btn_wrap a {
    width: calc(50% - 2px);
    height: 30px;
    font-size: 1.3rem;
}

.cs_archive_property_item_5 .msg_soldout {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 58, 57, 0.6);
    z-index: 2;
}

.cs_archive_property_item_5 .msg_soldout>span {
    position: relative;
    display: block;
    height: 100%;
    color: #FFF;
    font-size: 16px;
    text-align: center;
}

.cs_archive_property_item_5 .msg_soldout>span>span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    width: 100%;
}

@media (max-width: 767px) {
    .cs_archive_property_item_5 .clms_wrap {
        display: block;
    }

    .cs_archive_property_item_5 .clms_wrap>.clm_wrap:nth-of-type(1) {
        padding: 10px 10px 0;
    }

    .cs_archive_property_item_5 .clms_wrap>.clm_wrap:nth-of-type(2) {
        padding: 10px 10px 50px;
    }

    .cs_archive_property_item_5 .mh>span {
        height: 24px;
        font-size: 1.1rem;
    }

    .cs_archive_property_item_5 .mh2>span {
        height: 24px;
        font-size: 1.1rem;
    }

    .cs_archive_property_item_5 .cat>span,
    .cs_archive_property_item_5 .area>span {
        height: 24px;
        font-size: 1.1rem;
    }

    .cs_archive_property_item_5 .cat {
        font-size: 1.0rem;
    }

    .cs_archive_property_item_5 .post_ttl {
        font-size: 1.5rem;
    }

    .cs_archive_property_item_5 .overview {
        font-size: 1.3rem;
    }

    .cs_archive_property_item_5 .overview>ul>li+li {
        margin-top: 5px;
    }

    .cs_archive_property_item_5 .overview .ttl {
        margin-right: 5px;
        width: 65px;
    }

    .cs_archive_property_item_5 .btn_wrap a {
        min-width: auto !important;
        font-size: 1.2rem;
    }

    .cs_archive_property_item_5 .msg_soldout>span {
        font-size: 13px;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_modelhouse_item_1 */
/* ---------------------------------------------------- */
.cs_archive_modelhouse_item_1 {
    position: relative;
    padding: 20px 20px 70px;
    height: 100%;
    background-color: #FFF;
}

.cs_archive_modelhouse_item_1.catmodelhouse_open::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 0;
    display: block;
    width: 140px;
    height: 80px;
    background-image: url(../../common/img/ico/kengaku_1.svg);
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    z-index: 2;
}

.cs_archive_modelhouse_item_1 .img {
    display: block;
    position: relative;
    background-color: #000;
}

.cs_archive_modelhouse_item_1 .img>span {
    display: block;
    padding-top: 70%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
}

.cs_archive_modelhouse_item_1 .img:hover>span {
    opacity: 0.6;
}

.cs_archive_modelhouse_item_1 .ttl_wrap {
    display: flex;
    padding: 10px;
    margin-bottom: 15px;
    background-color: #000;
}

.cs_archive_modelhouse_item_1 .ttl_wrap .area>span {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 26px;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    background-color: #FFF;
}

.cs_archive_modelhouse_item_1 .post_ttl {
    margin-left: 10px;
    color: #FFF;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.4;
}

.cs_archive_modelhouse_item_1 .post_copy {
    margin-bottom: 15px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.4;
}

.cs_archive_modelhouse_item_1 .btn_wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cs_archive_modelhouse_item_1 .btn_wrap>a {
    width: calc(50% - 2px);
    height: 50px;
    min-width: auto !important;
    font-size: 1.4rem;
}

.cs_archive_modelhouse_item_1 .btn_wrap>a+a {
    margin-left: 4px;
}

@media (max-width: 767px) {
    .cs_archive_modelhouse_item_1 {
        padding: 0 10px 10px;
        height: auto;
    }

    .cs_archive_modelhouse_item_1.catmodelhouse_open::before {
        left: 15px;
        width: 88px;
        height: 50px;
    }

    .cs_archive_modelhouse_item_1 .img {
        margin: 0 -10px;
    }

    .cs_archive_modelhouse_item_1 .ttl_wrap {
        margin: 0 -10px 10px;
        padding: 10px;
    }

    .cs_archive_modelhouse_item_1 .ttl_wrap .area>span {
        padding: 0 10px;
        height: 24px;
    }

    .cs_archive_modelhouse_item_1 .post_ttl {
        margin-left: 10px;
        color: #FFF;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.4;
    }

    .cs_archive_modelhouse_item_1 .post_copy {
        margin-bottom: 15px;
        font-size: 2.0rem;
    }

    .cs_archive_modelhouse_item_1 .btn_wrap {
        position: static;
        padding: 0;
    }

    .cs_archive_modelhouse_item_1 .btn_wrap>a {
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_modelhouse_item_2 */
/* ---------------------------------------------------- */
.cs_archive_modelhouse_item_2 {
    height: 100%;
}

.cs_archive_modelhouse_item_2 a {
    position: relative;
    display: block;
    padding: 8px 8px 75px;
    height: 100%;
    background-color: #FFF;
    overflow: hidden;
}

.cs_archive_modelhouse_item_2 a:hover {
    background-color: #B5B5B5;
}

.cs_archive_modelhouse_item_2 a::before,
.cs_archive_modelhouse_item_2 a::after {
    position: absolute;
    display: block;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-align: center;
}

.cs_archive_modelhouse_item_2 a::after {
    content: "MORE";
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    padding-bottom: 5px;
    font-size: 1.5rem;
    line-height: 1;
    border-bottom: 2px solid #000;
}

.cs_archive_modelhouse_item_2 .thumb {
    margin-bottom: 20px;
}

.cs_archive_modelhouse_item_2 .thumb>span {
    display: block;
    padding-top: 70%;
    background-position: center;
    background-size: cover;
}

.cs_archive_modelhouse_item_2 .cat_1 {
    position: absolute;
    right: 8px;
    top: 8px;
    display: table;
    padding: 5px 10px;
    min-width: 100px;
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    background-color: #000;
}

.cs_archive_modelhouse_item_2 .cat_2 {
    display: none;
}

.cs_archive_modelhouse_item_2 .ttl {
    padding: 0 20px;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 表示したい行数を指定する */
    overflow: hidden;
}

@media (min-width: 768px) {
    .cs_archive_modelhouse_item_2 {
        height: 100%;
    }

    .cs_archive_modelhouse_item_2 a {
        padding: 0;
    }

    .cs_archive_modelhouse_item_2 a:hover {
        background-color: #B5B5B5;
    }

    .cs_archive_modelhouse_item_2 a::before,
    .cs_archive_modelhouse_item_2 a::after {
        position: absolute;
        display: none;
    }

    .cs_archive_modelhouse_item_2 .thumb {
        margin-bottom: 0;
    }

    .cs_archive_modelhouse_item_2 .meta_wrap {
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-content: center;
        flex-wrap: wrap;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        opacity: 0;
        z-index: 2;
        transition: 0.3s ease-in-out;
    }

    .cs_archive_modelhouse_item_2 .meta_wrap::after {
        content: "MORE";
        display: block;
        padding-bottom: 5px;
        color: #FFF;
        font-size: 1.5rem;
        font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
        font-weight: 500;
        letter-spacing: 0.1em;
        text-align: center;
        line-height: 1;
        border-bottom: 2px solid #FFF;
    }

    .cs_archive_modelhouse_item_2 a:hover .meta_wrap {
        opacity: 1;
    }

    .cs_archive_modelhouse_item_2 .cat_1 {
        right: 0;
        top: 0;
    }

    .cs_archive_modelhouse_item_2 .cat_2 {
        display: table;
        margin: 0 auto 20px;
        padding: 5px 10px;
        min-width: 100px;
        color: #FFF;
        font-size: 1.6rem;
        font-weight: 500;
        letter-spacing: 0.1em;
        line-height: 1;
        text-align: center;
        border: 2px solid #FFF;
    }

    .cs_archive_modelhouse_item_2 .ttl {
        padding: 0 20px;
        margin-bottom: 20px;
        width: 100%;
        color: #FFF;
    }
}

/* ---------------------------------------------------- */
/* cs_archive_blog_item_1 */
/* ---------------------------------------------------- */
.cs_archive_blog_item_1 {
    height: 100%;
}

.cs_archive_blog_item_1 a {
    position: relative;
    display: block;
    padding: 20px 20px 30px;
    height: 100%;
    background-color: #FFF;
}

.cs_archive_blog_item_1 a:hover {
    background-color: #D8D8D8;
}

.cs_archive_blog_item_1 a::before {
    content: "more";
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
}

.cs_archive_blog_item_1 a::after {
    content: "";
    position: absolute;
    right: 60px;
    bottom: 25px;
    width: 35px;
    height: 1px;
    background-color: #000;
}

.cs_archive_blog_item_1 .cat>span {
    display: block;
    margin-bottom: 10px;
    padding: 5px;
    color: #E03B57;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    border: 1px solid #E03B57;
    border-radius: 20px;
    background-color: #FFF;
}

.cs_archive_blog_item_1.catblog_movie .cat>span {
    color: #0089D2;
    border-color: #0089D2;
}

.cs_archive_blog_item_1.catblog_event .cat>span {
    color: #8CB808;
    border-color: #8CB808;
}

.cs_archive_blog_item_1 .img {
    position: relative;
    margin-bottom: 15px;
    background-color: #000;
}

.cs_archive_blog_item_1 .img>span {
    display: block;
    padding-top: 67%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../img/thumb/blank_1.svg);
}

.cs_archive_blog_item_1 .post_ttl {
    margin-bottom: 5px;
    font-size: 1.6rem;
    font-weight: 700;
}

.cs_archive_blog_item_1 .date {
    color: #80898E;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ---------------------------------------------------- */
/* cs_archive_blog_item_2 */
/* ---------------------------------------------------- */
.cs_archive_blog_item_2 {
    height: 100%;
}

.cs_archive_blog_item_2 a {
    position: relative;
    display: block;
    padding: 20px 20px 25px;
    height: 100%;
    background-color: #F1F1F1;
}

.cs_archive_blog_item_2 a:hover {
    background-color: #B5B5B5;
}

.cs_archive_blog_item_2 .cat {
    display: none;
}

.cs_archive_blog_item_2 .img {
    position: relative;
    margin-bottom: 15px;
    background-color: #000;
}

.cs_archive_blog_item_2 .img>span {
    display: block;
    padding-top: 67%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cs_archive_blog_item_2 .post_ttl {
    font-size: 2.4rem;
    font-weight: 700;
}

.cs_archive_blog_item_2 .date {
    display: none;
}

@media (max-width: 767px) {
    .cs_archive_blog_item_2 a {
        padding: 15px 15px 20px;
    }

    .cs_archive_blog_item_2 .post_ttl {
        font-size: 1.6rem;
    }
}


/* ---------------------------------------------------- */
/* cs_slick_1 */
/* ---------------------------------------------------- */
.cs_slick_1 .slick-next,
.cs_slick_1 .slick-prev {
    position: absolute;
    top: 50%;
    display: block;
    width: 20px;
    height: 60px;
    border: none;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    padding: 0;
    outline: 0;
    z-index: 10;
    cursor: pointer;
    background-color: #6E6E6E;
    transition: 0.3s ease-in-out;
}

.cs_slick_1 .slick-prev {
    left: -10px;
    transform: translateY(-50%) scale(-1, -1);
}

.cs_slick_1 .slick-next {
    right: -10px;
    transform: translateY(-50%);
}

.cs_slick_1 .slick-prev:before,
.cs_slick_1 .slick-next:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
    transform: translate(-80%, -50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

.cs_slick_1 .slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    list-style: none;
    text-align: center;
}

.cs_slick_1 .slick-dots li {
    position: relative;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.cs_slick_1 .slick-dots button {
    font-size: 0;
    line-height: 0;
    display: block;
    padding: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
    transition: 0.3s ease-in-out;
}

.cs_slick_1 .slick-dots button:hover {
    opacity: 0.6;
}

.cs_slick_1 .slick-dots button:hover,
.cs_slick_1 .slick-dots button:focus {
    outline: none;
}

.cs_slick_1 .slick-dots button:hover:before,
.cs_slick_1 .slick-dots button:focus:before {
    opacity: 1;
}

.cs_slick_1 .slick-dots button:before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #BEBEBE;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.cs_slick_1 .slick-dots .slick-active button:before {
    background-color: #000 !important;
}

/* ---------------------------------------------------- */
/* cs_archive_staff_item_1 */
/* ---------------------------------------------------- */
.cs_archive_staff_item_1 a {
    display: block;
    padding: 7px;
    height: 100%;
    background-color: #808080;
}

.cs_archive_staff_item_1 .thumb {
    transition: 0.3s ease-in-out;
}

.cs_archive_staff_item_1 a:hover .thumb {
    opacity: 0.6;
}



/* ---------------------------------------------------- */
/* #pagination.archive */
/* ---------------------------------------------------- */
#pagination.archive {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 80px;
}

#pagination.archive .page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    width: 40px;
    height: 40px;
    color: #000;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
    background-color: #F1F1F1;
    border-radius: 50%;
    transition: 0.3s ease;
}

#pagination.archive a:hover {
    background-color: #B5B5B5;
}

#pagination.archive .current {
    color: #FFF;
    background-color: #6E6E6E !important;
    cursor: default;
}

#pagination.archive .dots {
    cursor: default;
}

#pagination.archive .prev,
#pagination.archive .next {
    display: none;
}

@media (max-width: 767px) {
    #pagination.archive {
        padding-top: 40px;
    }
}

/* ---------------------------------------------------- */
/* cs_pagination_single_1 */
/* ---------------------------------------------------- */
.cs_pagination_single_1 {
    display: flex;
    justify-content: space-between;
}

.cs_pagination_single_1 a {
    position: relative;
    display: block;
    font-size: 1.6rem;
    line-height: 1;
}

.cs_pagination_single_1 a:hover {
    opacity: 0.6;
}

.cs_pagination_single_1 .prev {
    padding-left: 20px;
}

.cs_pagination_single_1 .next {
    padding-right: 20px;
}

.cs_pagination_single_1 a::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transition: 0.3s ease-in-out;
}

.cs_pagination_single_1 .prev::after {
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
}

.cs_pagination_single_1 .next::after {
    right: 0;
    transform: translateY(-50%) rotate(45deg);
}

/* ---------------------------------------------------- */
/* cs_nav_side_1 */
/* ---------------------------------------------------- */
.cs_nav_side_1>*+* {
    margin-top: 30px;
}

.cs_nav_side_1 .btn_all {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #F1F1F1;
}

.cs_nav_side_1 .btn_all:hover {
    background-color: #B5B5B5;
}

.cs_nav_side_1 .list .ttl {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    height: 50px;
    font-size: 1.6rem;
    font-weight: 500;
    background-color: #F1F1F1;
    transition: 0.3s ease-in-out;
}

.cs_nav_side_1 .list.toggle .ttl {
    cursor: pointer;
}

.cs_nav_side_1 .list.toggle .ttl:hover {
    background-color: #B5B5B5;
}

.cs_nav_side_1 .list.toggle .ttl::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(135deg);
    transition: 0.3s ease-in-out;
}

.cs_nav_side_1 .list.toggle.is_show .ttl::after {
    transform: translateY(-50%) rotate(-45deg);
}

.cs_nav_side_1 .list.toggle ul {
    display: none;
}

.cs_nav_side_1 .list ul li+li {
    margin-top: 10px;
}

.cs_nav_side_1 .list ul a {
    position: relative;
    padding-left: 20px;
}

.cs_nav_side_1 .list ul a::after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s ease-in-out;
}

.cs_nav_side_1 .list ul a:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {
    .cs_nav_side_1>*+* {
        margin-top: 20px;
    }

    .cs_nav_side_1 .list .ttl {
        margin-bottom: 15px;
    }
}

/* ---------------------------------------------------- */
/* cs_msgblank_1 */
/* ---------------------------------------------------- */
.cs_msgblank_1 {
    padding: 100px 0;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.6;
    text-align: center;
}

@media (max-width: 767px) {
    .cs_msgblank_1 {
        padding: 60px 0;
        font-size: 1.3rem;
    }
}

/* ---------------------------------------------------- */
/* cs_fixed_btn_registration_1 */
/* ---------------------------------------------------- */
@media (min-width: 768px) {
    .cs_fixed_btn_registration_1 {
        position: fixed;
        right: 0;
        top: 110px;
        display: block;
        padding: 20px;
        color: #FFF;
        font-size: 1.8rem;
        line-height: 20px;
        background-color: #EC6C26;
        border-radius: 10px 0 0 10px;
        z-index: 10;
    }

    .cs_fixed_btn_registration_1:hover {
        background-color: #585858;
    }

    .cs_fixed_btn_registration_1::before {
        content: "";
        display: block;
        margin-bottom: 10px;
        width: 20px;
        height: 20px;
        background-image: url(../../common/img/ico/user_1.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    .cs_fixed_btn_registration_1 span {
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
    }

}

@media (max-width: 767px) {
    .cs_fixed_btn_registration_1 {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        padding: 20px;
        color: #FFF;
        font-size: 1.8rem;
        line-height: 1;
        background-color: #EC6C26;
    }

    .cs_fixed_btn_registration_1::before {
        content: "";
        display: block;
        margin-right: 10px;
        width: 20px;
        height: 20px;
        background-image: url(../../common/img/ico/user_1.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

}

/* ---------------------------------------------------- */
/* sec_othercontent_wrap */
/* ---------------------------------------------------- */
.sec_othercontent_wrap {
    padding-top: 120px;
}

.sec_othercontent_wrap .list_1>ul {
    display: flex;
}

.sec_othercontent_wrap .list_1>ul>li {
    width: 33.33%;
}

.sec_othercontent_wrap .list_1 a {
    position: relative;
    display: block;
}

.sec_othercontent_wrap .list_1 a::after {
    content: "MORE";
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 120px;
    height: 30px;
    color: #FFF;
    font-family: 'Oswald', 'Noto Sans JP', "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    border-width: 1px 1px 0 1px;
    border-style: solid;
    border-color: #FFF;
    transition: 0.3s ease-in-out;
}

.sec_othercontent_wrap .list_1 .img {
    background-color: #000;
}

.sec_othercontent_wrap .list_1 .img span {
    display: block;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    transition: 0.3s ease-in-out;
}

.sec_othercontent_wrap .list_1 a:hover .img span {
    opacity: 0.3;
}

.sec_othercontent_wrap .list_1 .ttl {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding-bottom: 20px;
    color: #FFF;
    font-weight: 500;
    letter-spacing: 0.2em;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
}

.sec_othercontent_wrap .list_1 .ttl .en {
    display: block;
    font-size: 3.2rem;
}

.sec_othercontent_wrap .list_1 .ttl .ja {
    display: block;
    margin-top: 10px;
    font-size: 1.6rem;
}

@media (max-width: 767px) {
    .sec_othercontent_wrap {
        padding-top: 60px;
    }

    .sec_othercontent_wrap .list_1>ul {
        display: block;
    }

    .sec_othercontent_wrap .list_1>ul>li {
        width: auto;
    }

    .sec_othercontent_wrap .list_1 a::after {
        bottom: 20px;
        width: 96px;
        height: 24px;
        font-size: 1.2rem;
    }

    .sec_othercontent_wrap .list_1 .img span {
        height: 0;
        padding-top: 42%;
    }

    .sec_othercontent_wrap .list_1 .ttl {
        padding-bottom: 20px;
    }

    .sec_othercontent_wrap .list_1 .ttl .en {
        font-size: 2.4rem;
    }

    .sec_othercontent_wrap .list_1 .ttl .ja {
        font-size: 1.4rem;
    }
}


/* ---------------------------------------------------- */
/* breadcrumbs */
/* ---------------------------------------------------- */
.breadcrumbs {
    padding: 10px 0;
    border-bottom: 1px solid #EBEBEB;
}

.breadcrumbs span a {
    text-decoration: underline;
}

.breadcrumbs span a:hover {
    opacity: 0.6;
}

@media (max-width: 767px) {}