@charset "utf-8";

body.Index {
    background: #fff;
}



.idx_bg_gray {
    background: #f5f5f5;
}

/* サイドナビ */
.side_btn {
    font-size: 16px;
    background: #fff;
}

.side_btn a {
    display: block;
    line-height: 1;
}

.side_btn a:hover {
    opacity: 0.85;
}

.side_btn a span {
    flex: initial;
}

a.side_btn_01,
a.side_btn_02 {
    writing-mode: vertical-rl;
}

.side_btn_inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.side_btn_01 .side_btn_free {
    display: inline-block;
    width: auto;
    background: #fff;
    color: #08B671;
    font-size: 12px;
    padding: 10px 7px;
    margin: 10px 0;
    border-radius: 30px;
}

@media screen and (max-width: 767px) {
    a.fixed_footer_btn_02::after {
        background-image: url(../img/global/side_btn_icon.png);
        top: 5px;
        background-size: contain;
        background-repeat: no-repeat;
        width: 35px;
        height: 35px;
    }
}


/* セクションナビ */
.sec_nav {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 7px;
    overflow: hidden;
    border: 1px rgba(0, 0, 0, 0.1) solid;
    list-style: none;
    margin: 0;
}

.sec_nav_item {
    position: relative;
    text-align: center;
    flex: auto;
    cursor: pointer;
    margin: 0;
}

.sec_nav_item+.sec_nav_item {
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.sec_nav_item a {
    display: block;
    padding: 1em 2.5em;
    color: #000;
    text-decoration: none;
}

.sec_nav_item a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #03C87B;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}

.sec_nav_item.active a::after,
.sec_nav_item a:hover::after {
    transform: scale(1, 1);
}

@media screen and (max-width: 767px) {
    .sec_nav {
        flex-wrap: wrap;
        white-space: nowrap;
    }

    .sec_nav_item {
        flex: 1;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}


/* 特集スライド */


/* box */
.idxVisual_sub {
    background: transparent;
}

.idxVisual_sub_Content {
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: none;
    margin-top: 0;
}

.sub_Content_layer {
    position: static;
    display: flex;
    align-items: center;
    padding: 20px 80px 20px 20px;
    height: auto;
}

.idxVisual_sub .slick-slide img {
    display: none;
}

.idx_bg_right_gray {
    margin-top: 0;
}


.sub_Content_header {
    width: auto;
    margin-bottom: 0;
}

.sub_Content_header_label span {
    color: #fff;
    background: #03C87B;
    padding: 0.5em 1em;
    font-weight: bold;
    border: none;
}

.idxVisual_sub_Content .slick-dots {
    width: auto;
    top: 50px;
}

.sub_Content_box a {
    display: block;
    padding-left: 20px;
}

.sub_Content_box a p {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .sub_Content_layer {
        display: block;
        padding: 20px;
    }

    .sub_Content_box a {
        padding-left: 0;
    }

    .sub_Content_header_label span {
        font-size: 16px;
    }

    .sub_Content_header_number {
        font-size: 32px;
    }

    .sub_Content_layer h3 {
        margin: 10px 0;
    }

    .idxVisual_sub_Content {
        height: auto;
    }

    .idxVisual_sub_Content .slick-dots {
        top: 15px;
    }

    .sub_Content_box {
        padding: 0;
    }
}


/* EVENT */
.idx_event {
    overflow: hidden;
}

.idx_event_ttl {
    color: #1ec77e;
    display: flex;
    align-items: center;
}

.idx_event_ttl span {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    padding: 10px 5px;
    color: #000;
    border-top: 3px solid #1ec77e;
    border-bottom: 3px solid #1ec77e;
    margin-right: 20px;
}

.idx_event_list {
    display: flex;
    margin-left: calc((100% - 1000px) / 2);
    padding-right: 60px;
}

.idx_event_list .slick-list {
    width: 100%;
    overflow: visible;
}

.idx_event_list .slick-track {
    display: flex;
}

.idx_event_list .entry_box {
    width: 35%;
    height: auto;
    margin-right: 25px;
    margin-bottom: 0;
}

.idx_event_list .entry_box a {
    display: block;
    border-radius: 10px;
    z-index: 1;

}

.idx_event_list .entry_box_thumb {
    width: 100%;
    aspect-ratio: 3/2;
}

.idx_event_list .entry_box_txt {
    padding: 20px;
    text-align: left;
}

.idx_event_list .ev_schedule {
    color: #1ec77e;
    display: block;
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: bold;
}

.idx_event_list .ev_sub_txt {
    font-size: 14px;
    display: block;
    opacity: 0.5;
    margin-top: 1em;
}

.idx_event_list .ev_place {
    color: #1ec77e;
}

@media screen and (max-width: 767px) {
    .idx_event_list .entry_box {
        margin-right: 20px;
    }

    .idx_event_ttl {
        flex-direction: column;
        align-items: flex-start;
    }

    .idx_event_ttl span {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .idx_event_list {
        margin: 40px 16px 0;
        padding-right: 0;
    }

    .idx_event_list .ev_schedule {
        font-size: 14px;
    }

    .idx_event_list .ev_place {
        font-size: 14px;
    }
}

/*イベント*/

.page_event_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    /* padding-right: 60px;*/
}

.page_event_list .slick-track {
    display: flex;
}

.page_event_list .entry_box {
    width: 32%;
    height: auto;
    margin-right: 2%;
    margin-bottom: 2%;
}

.page_event_list .entry_box:nth-child(3n) {
    margin-right: 0;
    ;
}

.page_event_list .entry_box a {
    display: block;
    border-radius: 10px;
    z-index: 1;

}

.page_event_list .entry_box_thumb {
    width: 100%;
    aspect-ratio: 3/2;
}

.page_event_list .entry_box_txt {
    padding: 20px;
    text-align: left;
}

.page_event_list .ev_schedule {
    color: #1ec77e;
    display: block;
    margin-bottom: 0.5em;
    line-height: 1.3;
    font-weight: bold;
}

.page_event_list .ev_sub_txt {
    font-size: 14px;
    display: block;
    opacity: 0.5;
    margin-top: 1em;
}

.page_event_list .ev_place {
    color: #1ec77e;
}

@media screen and (max-width: 767px) {

    .page_event_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between
            /* padding-right: 60px;*/
    }

    .page_event_list .entry_box {
        margin-right: 0px;
        margin-bottom: 2%;
        width: 49%;
    }

    .idx_event_ttl {
        flex-direction: column;
        align-items: flex-start;
    }

    .idx_event_ttl span {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .page_event_list {
        margin: 0px 16px 0;
        padding-right: 0;
    }

    .page_event_list .ev_schedule {
        font-size: 14px;
    }

    .page_event_list .ev_place {
        font-size: 14px;
    }
}


/* 市町からのお知らせ */
.news_shimachi {
    background: #F5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 30px;
    display: flex;
    margin-top: 60px;
}

.news_shimachi_list {
    list-style: none;
    margin: 0;
    flex-grow: 1;
}

.news_shimachi_list li {
    margin: 0;
    padding: 15px 0;
    display: flex;
}


.news_shimachi_list li+li {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.news_shimachi h2 {
    color: #03C87B;
    font-size: 18px;
    margin-right: 2em;
    margin-bottom: 0;
    flex-shrink: 0;
    padding-top: 15px;
}

.news_shimachi_date {
    width: 10em;
    flex-shrink: 0;
}

.news_shimachi_ttl {
    font-size: 16px;
    font-weight: normal;
    margin: 0;
}

.news_shimachi_ttl a {
    color: #000;
}

@media screen and (max-width: 767px) {
    .news_shimachi {
        display: block;
        margin: 40px 16px 0;
    }
}


/* コンセプト */
.idx_concept {
    display: flex;
    justify-content: space-between;
}

.idx_concept_thumb {
    width: 52%;
    aspect-ratio: 3/2;
    margin: 0;
}

.idx_concept_thumb img {
    height: 100%;
    object-fit: cover;
}

.idx_concept_txt {
    width: 40%;
    border: none;
    margin: 0;
    padding: 0;
}

.idx_concept_txt h3 {
    line-height: 1.4;
}

.idx_concept_txt p {
    font-size: 18px;
    margin: 15px 0 40px;
}

a.idx_concept_btn {
    display: block;
    width: 100%;
    color: #000;
    text-decoration: none;
    border: rgba(0, 0, 0, 0.1) 1px solid;
    border-radius: 7px;
    padding: 1em;
    /* text-align: left; */
    position: relative;
}

a.idx_concept_btn::after {
    content: "";
    display: inline-block;
    width: 8px;
    aspect-ratio: 1/1;
    border-top: 2px #000 solid;
    border-right: 2px #000 solid;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 767px) {
    .idx_concept {
        display: block;
        margin: 0 16px;
    }

    .idx_concept_thumb {
        width: 100%;
    }

    .idx_concept_txt {
        width: 100%;
    }
}


/* バナー */
.idx_center_banner_single img,
.idx_center_banner a img {
    border-radius: 10px;
    margin: 0;
    height: 100%;
    object-fit: cover;
}

.idx_center_banner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.idx_center_banner a {
    width: auto;
}

.idx_memmber_merit_banner {
    margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
    .idx_center_banner {
        gap: 15px;
    }

    .idx_center_banner_single,
    .idx_center_banner {
        margin: 20px 16px;
    }
}

/* 移住者インタビュー */
.list_box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


/* 全て見るボタン */
.sub_goto_index {
    margin: 40px 0 0 auto;
}

.sub_goto_index a.shadow-btn {
    color: #fff;
    background: #000;
    padding: 1em;
}

.sub_goto_index a.shadow-btn:after {
    border-color: #fff;
    right: 1em;
}

.sub_goto_index a.shadow-btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .sub_goto_index {
        width: 70%;
        margin: 40px 16px 16px auto;
    }

    a.shadow-btn {
        line-height: 1.5;
    }
}


/* イベント・トピックス */
.idx_topics::after {
    content: "";
    display: block;
    width: 80%;
    height: 55%;
    background: #F5f5f5;
    border-radius: 30px 0 0 30px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.idx_topics .local_Container_inner {
    position: relative;
    z-index: 1;
}

.idx_topics .col2_index {
    margin-top: 30px;
}

.idx_topics .col2_index .entry_box_thumb {
    border-right: 3px solid #1EC77E;
}

.idx_topics .col2_index .entry_box {
    margin-bottom: 30px;
}

.entry_box_txt h3 {
    margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
    .idx_topics .col2_index .entry_box {
        margin-bottom: 15px;
    }
}


/* banner */
.idx_lp_banner_group {
    padding: 0;
    margin-top: 60px;
}

@media screen and (max-width: 767px) {
    .idx_lp_banner_group {
        margin: 60px 0 0;
    }

    .lp_banner_box {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ひろしま移住キーワード */
.search_tag {
    margin-bottom: 0.8em;
    line-height: 1;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    z-index: 1;
}

.search_tag a {
    display: block;
    padding: 0.8em 1.5em;
    transition: 0.1s;
}

.search_tag a:hover {
    color: #fff;
    background: #000;
}

@media screen and (max-width: 767px) {
    .search_tag {
        font-size: 14px;
        margin-right: 0.8em;
    }
}