@charset "utf-8";
/*********************************************************************
 *
 *  For 分譲地 一覧
 *
*********************************************************************/

/* ---------------------------------------------------- */
/* sec_search_wrap */
/* ---------------------------------------------------- */
.sec_search_wrap {
    padding-top: 70px;
    z-index: 2;
}

.sec_search_wrap .nav_search {
    margin: 0 auto;
}

.sec_search_wrap .nav_search > ul {
    display: flex;
    margin-right: -15px;
}

.sec_search_wrap .nav_search > ul > li {
    margin-right: 15px;
    width: calc(100% / 3 - 15px);
}

.sec_search_wrap .nav_search a {
    position: relative;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    align-items: center;
    height: 80px;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
    background-color: #80898e;
    border-radius: 20px 20px 0 0;
}

.sec_search_wrap .nav_search a::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 140px;
    height: 3px;
    background-color: #000;
    transform: translateX(-50%);
    opacity: 0;
    transition: 0.3s ease-in-out;
}

.sec_search_wrap .nav_search a .ico {
    display: block;
    margin-right: 15px;
    width: 26px;
    height: 26px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}

.sec_search_wrap .nav_search .all a .ico {
    background-image: url(../../common/img/ico/search_2.svg);
}

.sec_search_wrap .nav_search .map a .ico {
    background-image: url(../../common/img/ico/search_3.svg);
}

.sec_search_wrap .nav_search .search a .ico {
    background-image: url(../../common/img/ico/search_4.svg);
}

.sec_search_wrap .nav_search .tochi a .ico {
    background-image: url(../../common/img/ico/land.svg);
}

.sec_search_wrap .nav_search .current-cat a,
.sec_search_wrap .nav_search a:hover {
    color: #000;
    background-color: #f7f7f7;
}

.sec_search_wrap .nav_search .current-cat a::before,
.sec_search_wrap .nav_search a:hover::before {
    opacity: 1;
}

.sec_search_wrap .nav_search .current-cat a .ico,
.sec_search_wrap .nav_search a:hover .ico {
    filter: brightness(1) invert(0);
}

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

    .sec_search_wrap .nav_search > ul {
        margin-right: -5px;
    }

    .sec_search_wrap .nav_search > ul > li {
        margin-right: 5px;
        width: calc(100% / 3 - 5px);
    }

    .sec_search_wrap .nav_search a {
        height: 70px;
        font-size: 1.5rem;
        border-radius: 10px 10px 0 0;
    }

    .sec_search_wrap .nav_search a::before {
        width: calc(100% - 30px);
    }

    .sec_search_wrap .nav_search a .ico {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        height: 20px;
    }
}

/* ---------------------------------------------------- */
/* searchform */
/* ---------------------------------------------------- */
.searchform {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
}

.searchform .inner {
    position: relative;
    margin: 0 auto;
    padding: 200px 0 50px;
    width: 900px;
}

.searchform .btn_close {
    position: fixed;
    left: calc(50% + 480px);
    top: 120px;
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../../common/img/ico/close_1.svg);
    background-size: 70%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000;
    z-index: 2;
}

.searchform .block {
    margin-bottom: 40px;
}

.searchform .ttl {
    position: relative;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-bottom: 20px;
    color: #fff;
    line-height: 1;
    border-bottom: 2px solid#FFF;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    outline: none;
}

.searchform .ttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    display: block;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    background-repeat: no-repeat;
    transition: 0.3s ease-in-out;
}

.searchform .ttl.is_show::before {
    top: 2px;
    transform: rotate(135deg);
}

.searchform .ttl .ja {
    font-size: 1.8rem;
}

/* list_1 */
.searchform .list_1 {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 15px 5px;
    background-color: #fff;
}

.searchform .list_1 > li {
    flex: initial;
    margin-right: 20px;
    margin-bottom: 10px;
    width: auto;
}

.searchform .list_1 input[type="checkbox"] {
    display: none;
}

.searchform .list_1 .name {
    position: relative;
    padding-left: 27px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 20px;
}

.searchform .list_1 .name::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: none;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
}

.searchform .list_1 input[type="checkbox"]:checked + .name::before {
    background-color: #000;
}

.searchform .list_1 input[type="checkbox"]:checked + .name::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 6px;
    height: 12px;
    transform: rotate(40deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

/* list_2 */
.searchform .list_2 {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 15px 5px;
    margin-right: -10px;
    background-color: #fff;
}

.searchform .list_2 > li {
    margin-right: 10px;
    margin-bottom: 10px;
    width: calc(14% - 10px);
}

.searchform .list_2 input[type="checkbox"] {
    display: none;
}

.searchform .list_2 .name {
    position: relative;
    padding-left: 27px;
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 20px;
}

.searchform .list_2 .name::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: none;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 4px;
}

.searchform .list_2 input[type="checkbox"]:checked + .name::before {
    background-color: #000;
}

.searchform .list_2 input[type="checkbox"]:checked + .name::after {
    content: "";
    display: block;
    position: absolute;
    top: 2px;
    left: 7px;
    width: 6px;
    height: 12px;
    transform: rotate(40deg);
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
}

.searchform .list_2.parents_list {
    display: block;
}

.searchform .list_2.parents_list > li {
    width: 100%;
    margin: 0;
}

.searchform .list_2.parents_list > li + li {
    margin-top: 15px;
}

.searchform .list_2.parents_list > li .parents_name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 8px;
}

.searchform .list_2.parents_list .list_2 {
    padding: 0 15px;
}

.searchform .list_2.parents_list .list_2 > li {
    width: auto;
    margin-right: 30px;
}

/* btn_submit */
.searchform .btn_submit {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 300px;
    height: 50px;
    color: #000;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    border-radius: 0;
    border: none;
    background-color: #fff;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    transition: 0.3s ease;
}

.searchform .btn_submit:hover {
    color: #fff;
    background-color: #585858;
}

@media (max-width: 767px) {
    .searchform .inner {
        position: relative;
        margin: 0 20px;
        padding: 120px 0 80px;
        width: auto;
    }

    .searchform .btn_close {
        left: auto;
        right: 10px;
        top: 70px;
    }

    .searchform .block {
        margin-bottom: 30px;
    }

    .searchform .ttl {
        padding-bottom: 15px;
    }

    /* list_1 */
    .searchform .list_1 {
        padding: 10px 10px 0;
        margin-right: 0;
    }

    .searchform .list_1 > li {
        margin-right: 10px;
    }

    .searchform .list_1 input[type="checkbox"] {
        display: none;
    }

    .searchform .list_1 .name {
        font-size: 1.4rem;
    }

    /* list_2 */
    .searchform .list_2 {
        padding: 10px 10px 0;
        margin-right: 0;
    }

    .searchform .list_2 > li {
        width: calc(33.33% - 10px);
    }

    .searchform .list_2 .name {
        font-size: 1.2rem;
    }

    /* btn_submit */
    .searchform .btn_submit {
        width: 90%;
    }
}

.post-scroll__btn_wrapper {
    padding: 60px 0;
}

.post-scroll__btn .next-link {
    display: none;
}

#infscr-loading {
    width: 300px;
    margin: 20px auto;
    text-align: center;
}

.post-scroll__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 350px;
    height: 70px;
    font-size: 1.8rem;
    font-weight: 500;
    border: 1px solid #000;
    background-color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.post-scroll__btn:hover {
    color: #fff;
    border-color: #585858;
    background-color: #585858;
}

@media (max-width: 767px) {
    .post-scroll__btn_wrapper {
        padding: 40px 0;
    }

    #infscr-loading {
        width: 100%;
        margin: 20px 0;
        text-align: center;
    }

    .post-scroll__btn {
        margin: auto;
        width: calc(90% + 10px);
        height: 70px;
        font-size: 1.6rem;
    }

    .searchform .list_2.parents_list > li .parents_name {
        font-size: 1.4rem;
        margin-bottom: 5px;
    }

    .searchform .list_2.parents_list .list_2 {
        padding: 0 10px;
    }

    .searchform .list_2.parents_list .list_2 > li {
        margin-right: 20px;
    }
}

/* ---------------------------------------------------- */
/* sec_archive_wrap */
/* ---------------------------------------------------- */
.sec_archive_wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #f1f1f1;
    background-image: url(../../common/img/bg/line_1.png);
    background-size: 21px auto;
    background-position: center;
}

.sec_archive_wrap .archive_wrap > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
    margin-bottom: -50px;
}

.sec_archive_wrap .archive_wrap > ul > li {
    margin-right: 30px;
    margin-bottom: 50px;
    width: calc(100% / 3 - 30px);
}

.sec_archive_wrap .btn_wrap_1 {
    margin-top: -30px;
}

.sec_archive_wrap .btn_search::after {
    display: none;
}

@media (max-width: 767px) {
    .sec_archive_wrap {
        margin: 0 -10px;
        padding-top: 60px;
    }

    .sec_archive_wrap .archive_wrap > ul {
        margin-right: 0;
        margin-bottom: -40px;
    }

    .sec_archive_wrap .archive_wrap > ul > li {
        margin-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }
}

/* ---------------------------------------------------- */
/* pagination */
/* ---------------------------------------------------- */
#pagination.archive {
    padding-bottom: 60px;
    background-color: #f1f1f1;
    background-image: url(../../common/img/bg/line_1.png);
    background-size: 21px auto;
    background-position: center;
}

#pagination.archive .page-numbers {
    background-color: #fff;
}

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

/* ---------------------------------------------------- */
/* sec_registration_wrap */
/* ---------------------------------------------------- */
.sec_registration_wrap {
    padding-bottom: 60px;
    background-color: #f1f1f1;
    background-image: url(../../common/img/bg/line_1.png);
    background-size: 21px auto;
    background-position: center;
}

.sec_registration_wrap .block_1 {
    padding: 30px;
    margin: 0 auto;
    width: 860px;
    background-color: #fff;
}

.sec_registration_wrap .sec_ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

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

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

    .sec_registration_wrap .block_1 {
        padding: 30px 20px;
        margin: 0 -20px;
        width: auto;
    }

    .sec_registration_wrap .sec_ttl {
        display: block;
        margin-bottom: 20px;
        font-size: 1.7rem;
    }

    .sec_registration_wrap .sec_ttl::before {
        margin: 0 auto 5px;
    }
}

/* ---------------------------------------------------- */
/* sec_mh_wrap */
/* ---------------------------------------------------- */
.sec_mh_wrap {
    padding-top: 100px;
}

.sec_mh_wrap .bnr_mh {
    position: relative;
    display: block;
    margin: 0 auto;
    width: 860px;
    height: 200px;
    background-image: url(../img/mh_img_1.jpg);
    background-size: cover;
    background-position: center;
}

.sec_mh_wrap .bnr_mh > span {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    height: 100%;
    color: #fff;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    transition: 0.3s ease-in-out;
}

.sec_mh_wrap .bnr_mh:hover > span {
    background-color: rgba(0, 0, 0, 0.75);
}

.sec_mh_wrap .bnr_mh > span::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 40px;
    height: 40px;
    background-image: url(../../common/img/ico/mh_2.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sec_mh_wrap .bnr_mh > span::after {
    content: "MORE";
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    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;
}

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

    .sec_mh_wrap .bnr_mh {
        margin: 0 -20px;
        width: auto;
        height: 180px;
    }

    .sec_mh_wrap .bnr_mh > span {
        font-size: 2.4rem;
    }

    .sec_mh_wrap .bnr_mh > span::before {
        content: "";
        display: block;
        margin-right: 0;
        width: 100%;
        height: 40px;
        background-image: url(../../common/img/ico/mh_2.svg);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

    .sec_mh_wrap .bnr_mh > span::after {
        content: "MORE";
        position: static;
        transform: translateX(0);
        display: block;
        margin: 10px 40% 0;
        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;
    }
}

/* ---------------------------------------------------- */
/* sec_map_wrap */
/* ---------------------------------------------------- */
.sec_map_wrap {
    padding-top: 20px;
    padding-bottom: 60px;
    background-color: #f1f1f1;
    background-image: url(../../common/img/bg/line_1.png);
    background-size: 21px auto;
    background-position: center;
}

.sec_map_wrap .nav_1 {
    margin: 0 auto 20px;
}

.sec_map_wrap .nav_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -15px;
}

.sec_map_wrap .nav_1 > ul > li {
    margin-right: 20px;
    margin-bottom: 15px;
    width: calc(100% / 5 - 20px);
}

.sec_map_wrap .nav_1 a {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
    height: 90px;
    color: #000;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    background-color: #fff;
    border: 2px solid #000;
    border-radius: 10px;
}
.sec_map_wrap .nav_1 .is_current a {
    color: #fff;
    background-color: #000;
}
.sec_map_wrap .nav_1 a span {
    width: 100%;
    font-size: 1.5rem;
}

.sec_map_wrap .nav_2 {
    margin: 0 auto 20px;
}

.sec_map_wrap .nav_2 .form_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px 10px 30px;
    background-color: #fff;
    border-radius: 20px;
}

.sec_map_wrap .nav_2 .list_1 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
}

.sec_map_wrap .nav_2 .list_1 > li {
    margin-right: 20px;
}

.sec_map_wrap .nav_2 .list_1 .kodate_2,
.sec_map_wrap .nav_2 .list_1 .mansion_2,
.sec_map_wrap .nav_2 .list_1 .tochi_2 {
    display: none;
}

.sec_map_wrap .nav_2 .list_1 label {
    cursor: pointer;
    transition: 0.3s ease-in-out;
}

.sec_map_wrap .nav_2 .list_1 label:hover {
    opacity: 0.6;
}

.sec_map_wrap .nav_2 .list_1 input[type="checkbox"] {
    display: none;
}

.sec_map_wrap .nav_2 .list_1 .name {
    position: relative;
    padding-left: 50px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 40px;
}

.sec_map_wrap .nav_2 .list_1 .name::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: none;
    background-color: #fff;
    border: 3px solid #000;
    border-radius: 100%;
}

.sec_map_wrap .nav_2 .list_1 input[type="checkbox"]:checked + .name::after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 14px;
    width: 10px;
    height: 22px;
    transform: rotate(40deg);
    border-bottom: 5px solid #000;
    border-right: 5px solid #000;
}

.sec_map_wrap .nav_2 .list_1 .kodate_3 .name::before,
.sec_map_wrap .nav_2 .list_1 .kodate_3 input[type="checkbox"]:checked + .name::after {
    border-color: #e03b57;
}

.sec_map_wrap .nav_2 .list_1 .kodate_1 .name::before,
.sec_map_wrap .nav_2 .list_1 .kodate_1 input[type="checkbox"]:checked + .name::after {
    border-color: #6e6e6e;
}

.sec_map_wrap .nav_2 .list_1 .tochi_1 .name::before,
.sec_map_wrap .nav_2 .list_1 .tochi_1 input[type="checkbox"]:checked + .name::after {
    border-color: #0089d2;
}

.sec_map_wrap .nav_2 .btn_submit {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 80px;
    background-color: #000;
    border-radius: 10px;
}

.sec_map_wrap .nav_2 .btn_submit::before {
    content: "";
    margin-right: 10px;
    width: 24px;
    height: 24px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../../common/img/ico/search_2.svg);
    filter: brightness(0) invert(1);
    pointer-events: none;
}

.sec_map_wrap .nav_2 .btn_submit::after {
    content: "選択した種別で検索する";
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.4;
    white-space: pre;
    pointer-events: none;
}

.sec_map_wrap .nav_2 .btn_submit input {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
}

.sec_map_wrap .gmap {
    height: 900px;
}

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

    .sec_map_wrap .nav_1 {
        margin: 0 -15px 20px;
        width: auto;
    }

    .sec_map_wrap .nav_1 > ul {
        margin-right: -3px;
    }

    .sec_map_wrap .nav_1 > ul > li {
        margin-right: 3px;
        width: calc(100% / 5 - 3px);
    }

    .sec_map_wrap .nav_1 a {
        height: 50px;
        font-size: 1.6rem;
        border-width: 1px;
        border-radius: 5px;
    }

    .sec_map_wrap .nav_1 a span {
        font-size: 0.9rem;
    }

    .sec_map_wrap .nav_2 {
        margin: 0 -15px 20px;
    }

    .sec_map_wrap .nav_2 .form_wrap {
        display: block;
        padding: 10px 10px 10px 10px;
        border-radius: 10px;
    }

    .sec_map_wrap .nav_2 .list_1 {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .sec_map_wrap .nav_2 .list_1 > li {
        margin-right: 0;
        width: calc(100% / 3);
        border-right: 1px dashed #6e6e6e;
    }

    .sec_map_wrap .nav_2 .list_1 > li:last-child {
        border-right: none;
    }

    .sec_map_wrap .nav_2 .list_1 .name {
        padding-left: 0;
        padding-top: 30px;
        display: block;
        font-size: 1.2rem;
        line-height: 1.4;
        text-align: center;
    }

    .sec_map_wrap .nav_2 .list_1 .name::before {
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        width: 24px;
        height: 24px;
        border-width: 2px;
    }

    .sec_map_wrap .nav_2 .list_1 input[type="checkbox"]:checked + .name::after {
        left: 50%;
        top: 5px;
        transform: translateX(-50%) rotate(40deg);
        width: 6px;
        height: 12px;
        border-bottom-width: 3px;
        border-right-width: 3px;
    }

    .sec_map_wrap .nav_2 .list_1 .name span {
        font-size: 1rem;
    }

    .sec_map_wrap .nav_2 .btn_submit {
        width: 100%;
        height: 40px;
        border-radius: 5px;
    }

    .sec_map_wrap .nav_2 .btn_submit::before {
        width: 16px;
        height: 16px;
    }

    .sec_map_wrap .nav_2 .btn_submit::after {
        font-size: 1.4rem;
    }

    .sec_map_wrap .gmap {
        height: 500px;
    }
}

/* ---------------------------------------------------- */
/* gm-style */
/* ---------------------------------------------------- */
.gm-style .gm-style-iw-c {
    border-radius: 0;
    padding: 0;
    width: 380px;
    max-width: 400px !important;
    border-radius: 10px;
}

.gm-style .gm-style-iw-d {
    max-height: none !important;
    overflow: auto !important;
    border-radius: 10px;
}

.gm-style-iw-d > div > a {
    display: block;
}

.gm-style-iw-d > div > a > h6 {
    display: none;
}

.gm-style .gm-style-iw-t::after {
    background: linear-gradient(45deg, rgba(0, 75, 55, 1) 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
    top: -1px;
}

/* close btn */
.gm-style-iw {
    overflow: visible !important;
}

.gm-style-iw > button {
    background-color: #000 !important;
    border-radius: 50%;
    width: 30px !important;
    height: 30px !important;
    opacity: 1 !important;
    border: 1px solid #fff;
    z-index: 2;
}

.gm-style-iw > button > span {
    filter: invert();
    margin: 5px !important;
    width: 20px !important;
    height: 20px !important;
}

@media (max-width: 767px) {
    .gm-style .gm-style-iw-c {
        width: 360px;
        max-width: 360px !important;
    }
}


/* comingsoon archive */
/* --------------------------------------------------------------------------- */
.sec_comingsoon_wrap {
    padding: 60px 0;
}

.comingsoon_list {
	display: flex;
	flex-wrap: wrap;
}

.comingsoon_list li {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
	width: calc(100% / 3);
    padding: 26px 26px 30px;
    position: relative;
}

.comingsoon_list li::before,
.comingsoon_list li::after {
    content: '';
    position: absolute;
    background: #D0DAE0;
}

.comingsoon_list li::before {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: calc(100% - 16px);
}

.comingsoon_list li::after {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% - 16px);
    height: 1px;
}

.comingsoon_list li dl {
	display: flex;
    align-items: flex-start;
}

.comingsoon_list li dl + dl {
    margin-top: 4px;
}

.comingsoon_list li dl dt,
.comingsoon_list li dl dd {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 22px;
}

.comingsoon_list li dl dt {
    width: 103px;
    padding-right: 11px;
    text-align-last: justify;
    position: relative;
}

.comingsoon_list li dl dt::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 13px;
    background: #000;
}

.comingsoon_list li dl dd {
    width: calc(100% - 103px);
    padding-left: 11px;
}

.comingsoon_list li .list_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 32px;
    font-size: 13px;
    letter-spacing: 0;
    font-weight: 500;
    background: #FFEF44;
    margin-top: 10px;
    position: relative;
}

.comingsoon_list li .list_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) rotate(-45deg);
    width: 12px;
    height: 12px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
}

@media (min-width: 768px) {
    .comingsoon_list li:nth-child(3n)::before {
        content: none;
    }
    
    .comingsoon_list li:last-child::after,
    .comingsoon_list li:nth-last-of-type(2)::after,
    .comingsoon_list li:nth-last-of-type(3)::after {
        content: none;
    }

    .comingsoon_list li .list_btn::before {
        transition: right 0.3s,border-color 0.3s;
    }

    .comingsoon_list li .list_btn:hover {
        color: #fff;
        background: #000;
    }

    .comingsoon_list li .list_btn:hover::before {
        right: 5px;
        border-color: #fff;
    }
}

@media (max-width: 767px) {
    .sec_comingsoon_wrap {
        padding: 45px 0 60px;
    }

    .sec_comingsoon_wrap .cs_sec_inner {
        width: 100%;
    }
    
    .comingsoon_list {
        display: block;
    }
    
    .comingsoon_list li {
        display: block;
        width: 100%;
        padding: 20px 8px;
    }

    .comingsoon_list li:nth-child(odd) {
        background: #F5F5F5;
    }
    
    .comingsoon_list li::before,
    .comingsoon_list li::after {
        content: none;
    }

    .comingsoon_list li .list_text_box {
        padding: 0 15px;
    }
    
    .comingsoon_list li dl + dl {
        margin-top: 2px;
    }
    
    .comingsoon_list li dl dt,
    .comingsoon_list li dl dd {
        font-size: 13px;
        line-height: 1.54;
    }
    
    .comingsoon_list li dl dt {
        width: 88px;
        padding-right: 8px;
    }
    
    .comingsoon_list li dl dd {
        width: calc(100% - 88px);
        padding-left: 8px;
    }
    
    .comingsoon_list li .list_btn {
        margin-top: 15px;
    }
    
    .comingsoon_list li .list_btn::before {
        width: 10px;
        height: 10px;
    }
}