@charset "utf-8";

/* ---------------------------------------------------- */
/* 変数 */
/* ---------------------------------------------------- */
:root {
    --co_1: #000;
    --co_2: #fff;
    --co_3: #4b7d46;
    --co_4: #ebebd7;
    --co_5: #f5f5eb;
    --co_6: #dce100;
    --co_7: #dc0000;

    --ff_go_1: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_en_1: "Oswald", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_en_2: "tahoma", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
    --ff_en_3: "din-2014", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

/* ---------------------------------------------------- */
/* html body */
/* ---------------------------------------------------- */
html {
    width: 100%;
    height: 100%;
    -webkit-text-size-adjust: 100%;
    /* iPhone */
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    color: var(--co_1);
    line-height: 1.5;
    font-family: var(--ff_go_1);
    font-weight: 400;
    background-color: var(--co_2);
}

@media (min-width: 1000px) {
    body {
        min-width: 1280px;
        font-size: 16px;
    }
}

@media (max-width: 999px) {
    body {
        min-width: 320px;
        font-size: 14px;
    }
}

/* ---------------------------------------------------- */
/* img */
/* ---------------------------------------------------- */
img {
    display: block;
    width: 100%;
    height: auto;
}

/* ---------------------------------------------------- */
/* a */
/* ---------------------------------------------------- */
a {
    color: var(--co_1);
    text-decoration: none;
    outline: none;
    transition: 0.3s ease-in-out;
}

a:hover {
    text-decoration: none;
}

/* ---------------------------------------------------- */
/* body_wrap */
/* ---------------------------------------------------- */
.body_wrap {
    max-height: 999999px;
    /* android chrome フォントサイズバグ回避 */
    opacity: 0;
    overflow: hidden;
}

/* ---------------------------------------------------- */
/* contents_wrap */
/* ---------------------------------------------------- */
@media (min-width: 1000px) {
    /* .page_cp .contents_wrap {
        padding-top: 100px;
    } */
}

@media (max-width: 999px) {
    /* .page_cp .contents_wrap {
        padding-top: 50px;
    } */
}

/* ---------------------------------------------------- */
/* .header_1 */
/* ---------------------------------------------------- */

@media (min-width: 1000px) {
    .header_1 {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        min-width: 1260px;
        height: 80px;
        background-color: rgba(75, 127, 68, 0.8);
        z-index: 100;
        transition: 0.3s ease-in-out;
    }

    .header_1 .header_inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .header_1 .logo_1 {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 260px;
        transition: 0.3s ease-in-out;
    }
    .header_1 .logo_1 a {
        display: block;
    }
    .header_1 .btn_toggle_megamenu {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 15px;
        width: 120px;
        height: 120px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        background-color: var(--co_1);
        border-radius: 0 0 0 30px;
        transition: 0.3s ease-in-out;
        z-index: 110;
    }
    .header_1 .btn_toggle_megamenu.is_show {
        padding-bottom: 0;
    }

    .header_1 .btn_toggle_megamenu::after {
        content: "MENU";
        position: absolute;
        left: 0;
        bottom: 35px;
        width: 100%;
        color: var(--co_2);
        font-family: var(--ff_en_3);
        font-size: 12px;
        font-weight: 700;
        text-align: center;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }
    .header_1 .btn_toggle_megamenu.is_show::after {
        opacity: 0;
    }

    .header_1 .btn_toggle_megamenu > span {
        position: relative;
        display: block;
        width: 35px;
        height: 20px;
    }

    .header_1 .btn_toggle_megamenu > span > span,
    .header_1 .btn_toggle_megamenu > span:before,
    .header_1 .btn_toggle_megamenu > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_2);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
        transform-origin: center;
    }

    .header_1 .btn_toggle_megamenu > span:before {
        transform: translateY(-10px);
    }

    .header_1 .btn_toggle_megamenu > span:after {
        transform: translateY(10px);
    }
    .header_1 .btn_toggle_megamenu:hover > span > span {
        width: 100%;
    }
    .header_1 .btn_toggle_megamenu.is_show > span > span,
    .header_1 .btn_toggle_megamenu.is_show > span:before,
    .header_1 .btn_toggle_megamenu.is_show > span:after {
        width: 100% !important;
    }
    .header_1 .btn_toggle_megamenu.is_show > span > span {
        opacity: 0;
    }
    .header_1 .btn_toggle_megamenu.is_show > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_megamenu.is_show > span:after {
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_megamenu_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        min-width: 1260px;
        height: 100%;
        background-color: var(--co_2);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 50px;
        width: 100%;
        height: 100%;
        background-color: var(--co_4);
    }
    .header_1 .nav_1 {
        position: absolute;
        left: 320px;
        top: 50%;
        transform: translateY(-50%);
    }
    .header_1 .nav_1 > ul {
        display: flex;
        justify-content: flex-end;
    }
    .header_1 .nav_1 > ul > li + li {
        margin-left: 40px;
    }

    .header_1 .nav_1 > ul > li > a {
        display: block;
        color: var(--co_2);
        font-size: 14px;
        line-height: 1;
        font-weight: 500;
        text-decoration: none;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
    }

    .header_1 .nav_1 > ul > li > a:hover {
        color: var(--co_1) !important;
    }

    .header_1 .logo_2 {
        position: absolute;
        left: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 50px;
        width: 280px;
        height: 280px;
        background-color: var(--co_3);
        border-radius: 0 0 30px 0;
    }

    .header_1 .nav_2 {
        display: flex;
    }
    .header_1 .nav_2 > .clm_wrap {
        display: flex;
        align-content: space-between;
        flex-wrap: wrap;
        flex: initial;
        width: 280px;
    }
    .header_1 .nav_2 > .clm_wrap + .clm_wrap {
        margin-left: 150px;
    }
    .header_1 .nav_2 .item {
        flex: initial;
        width: 100%;
    }
    .header_1 .nav_2 .item + .item {
        margin-top: 50px;
    }
    .header_1 .nav_2 .ttl {
        display: block;
    }
    .header_1 .nav_2 .ttl .en {
        display: block;
        font-family: var(--ff_en_1);
        font-size: 40px;
        font-weight: 500;
        letter-spacing: 0.1em;
        line-height: 1.2;
    }

    .header_1 .nav_2 .ttl .ja {
        display: flex;
        align-items: center;
        margin-top: 15px;
        font-size: 18px;
        font-weight: 500;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .ttl:hover .ja {
        color: var(--co_3);
    }
    .header_1 .nav_2 .ttl .ja i {
        display: block;
        margin-left: 20px;
        width: 8px;
        height: 18px;
        background-image: url(../img/arrow_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .ttl:hover .ja i {
        transform: translateX(5px);
    }
    .header_1 .nav_2 .sub {
        margin-top: 20px;
    }
    .header_1 .nav_2 .sub > li {
        display: flex;
        align-items: center;
    }

    .header_1 .nav_2 .sub > li + li {
        margin-top: 15px;
    }
    .header_1 .nav_2 .sub > li > a {
        display: flex;
        align-items: center;
    }

    .header_1 .nav_2 .sub > li > a:hover {
        color: var(--co_3);
    }
    .header_1 .nav_2 .sub > li > a > i {
        display: block;
        margin-left: 20px;
        width: 8px;
        height: 18px;
        background-image: url(../img/arrow_2.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .sub > li > a:hover > i {
        transform: translateX(5px);
    }
    .header_1 .nav_2 .sub > li > a > span {
        margin-right: 10px;
        color: var(--co_3);
        font-weight: 700;
    }
    .header_1 .nav_2 .plan {
        margin-top: 20px;
    }
    .header_1 .nav_2 .plan > li {
        display: flex;
        align-items: center;
    }

    .header_1 .nav_2 .plan > li + li {
        margin-top: 15px;
    }
    .header_1 .nav_2 .plan > li > a {
        display: flex;
        padding: 5px 10px;
        padding-left: 25px;
        color: var(--co_2);
        align-items: center;
        background-color: var(--co_3);
        border-radius: 10px;
    }

    .header_1 .nav_2 .plan > li > a:hover {
        background-color: var(--co_1);
    }
    .header_1 .nav_2 .plan > li > a > i {
        display: block;
        margin-left: 20px;
        width: 8px;
        height: 18px;
        background-image: url(../img/arrow_2_b.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .plan > li > a:hover > i {
        transform: translateX(5px);
    }
    .header_1 .btn_1 {
        position: fixed;
        right: 0;
        bottom: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 380px;
        height: 90px;
        color: var(--co_2);
        font-size: 20px;
        line-height: 1;
        background-color: var(--co_3);
        border-radius: 30px 0 0 0;
        overflow: hidden;
        z-index: 200;
    }
    .header_1 .btn_1:hover {
        background-color: var(--co_1);
    }

    .header_1 .btn_1::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--co_1);
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    .sec_mv_wrap .btn_1:hover::before {
        opacity: 1;
    }
    .header_1 .btn_1 > span {
        position: relative;
    }
    .header_1 .nav_3 {
        position: fixed;
        right: 0;
        bottom: 0;
        z-index: 200;
    }
    .header_1 .nav_3 > ul {
        display: flex;
        border-radius: 30px 0 0 0;
        overflow: hidden;
    }

    .header_1 .nav_3 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 190px;
        height: 90px;
        color: var(--co_2);
        font-size: 20px;
        line-height: 1;
        background-color: var(--co_3);
        overflow: hidden;
    }
    .header_1 .nav_3 > ul > li:nth-child(1) > a {
        background-color: var(--co_3);
    }
    .header_1 .nav_3 > ul > li:nth-child(2) > a {
        background-color: #326937;
    }
    .header_1 .nav_3 a:hover {
        background-color: var(--co_1);
    }

    .header_1 .nav_3 a::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--co_1);
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_3 a:hover::before {
        opacity: 1;
    }
    .header_1 .nav_3 a > span {
        position: relative;
    }
}
@media (min-width: 1000px) and (max-width: 1410px) {
    .header_1 .nav_1 > ul > li + li {
        margin-left: 20px;
    }

    .header_1 .nav_1 > ul > li > a {
        font-size: 13px;
    }
    .header_1 .nav_2 > .clm_wrap + .clm_wrap {
        margin-left: 40px;
    }
}
@media (max-width: 999px) {
    .header_1 {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        height: 0;
        z-index: 100;
        transition: 0.3s ease-in-out;
    }

    .header_1 .header_inner {
        position: relative;
        width: 100%;
        height: 100%;
    }
    .header_1 .logo_1 {
        position: absolute;
        left: 10px;
        top: 15px;
        width: 160px;
        transition: 0.3s ease-in-out;
    }
    .header_1 .logo_1 a {
        display: block;
    }
    .header_1 .btn_toggle_megamenu {
        position: fixed;
        right: 0;
        top: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 15px;
        width: 70px;
        height: 70px;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        outline: none;
        background-color: var(--co_1);
        border-radius: 0 0 0 20px;
        transition: 0.3s ease-in-out;
        z-index: 110;
    }
    .header_1 .btn_toggle_megamenu.is_show {
        padding-bottom: 0;
    }
    .header_1 .btn_toggle_megamenu::after {
        content: "MENU";
        position: absolute;
        left: 0;
        bottom: 15px;
        width: 100%;
        color: var(--co_2);
        font-family: var(--ff_en_3);
        font-size: 11px;
        font-weight: 700;
        text-align: center;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }
    .header_1 .btn_toggle_megamenu.is_show::after {
        opacity: 0;
    }

    .header_1 .btn_toggle_megamenu > span {
        position: relative;
        display: block;
        width: 30px;
        height: 20px;
    }

    .header_1 .btn_toggle_megamenu > span > span,
    .header_1 .btn_toggle_megamenu > span:before,
    .header_1 .btn_toggle_megamenu > span:after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--co_2);
        transform-origin: center center;
        transition: 0.3s ease-in-out;
        transform-origin: center;
    }

    .header_1 .btn_toggle_megamenu > span:before {
        transform: translateY(-8px);
    }

    .header_1 .btn_toggle_megamenu > span:after {
        transform: translateY(8px);
    }

    .header_1 .btn_toggle_megamenu.is_show > span > span,
    .header_1 .btn_toggle_megamenu.is_show > span:before,
    .header_1 .btn_toggle_megamenu.is_show > span:after {
        width: 100% !important;
    }
    .header_1 .btn_toggle_megamenu.is_show > span > span {
        opacity: 0;
    }
    .header_1 .btn_toggle_megamenu.is_show > span:before {
        transform: translateY(-50%) rotate(-45deg);
    }

    .header_1 .btn_toggle_megamenu.is_show > span:after {
        transform: translateY(-50%) rotate(45deg);
    }

    .header_1 .toggle_megamenu_wrap {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: var(--co_4);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 100;
    }

    .header_1 .toggle_megamenu_wrap .toggle_inner {
        position: relative;
        padding: 110px 20px 90px;
        margin: 0 auto;
        width: 100%;
    }
    .header_1 .nav_1 {
        display: none;
    }
    .header_1 .logo_2 {
        position: absolute;
        left: 10px;
        top: 15px;
        width: 160px;
        transition: 0.3s ease-in-out;
    }

    .header_1 .logo_3 {
        position: absolute;
        left: 10px;
        top: 60px;
        width: 130px;
    }
    .header_1 .img_1 {
        display: none;
    }
    .header_1 .nav_2 {
        display: block;
        padding: 0 20px;
    }
    .header_1 .nav_2 > .clm_wrap {
        width: auto;
    }
    .header_1 .nav_2 > .clm_wrap + .clm_wrap {
        margin-left: 0;
        margin-top: 30px;
    }
    .header_1 .nav_2 .item + .item {
        margin-top: 30px;
    }
    .header_1 .nav_2 .ttl {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-right: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid var(--co_3);
    }

    .header_1 .nav_2 .ttl .en {
        display: block;
        font-family: var(--ff_en_1);
        font-size: 20px;
        font-weight: 500;
        letter-spacing: 0.1em;
        line-height: 1.2;
    }

    .header_1 .nav_2 .ttl .ja {
        display: flex;
        align-items: center;
        font-size: 13px;
        font-weight: 500;
        line-height: 1;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .ttl:hover .ja {
        color: var(--co_3);
    }
    .header_1 .nav_2 .ttl .ja i {
        position: absolute;
        right: 0;
        top: calc(50% - 19px);
        display: block;
        width: 12px;
        height: 24px;
        background-image: url(../img/arrow_1.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }

    .header_1 .nav_2 .sub {
        margin-top: 20px;
    }
    .header_1 .nav_2 .sub > li {
        display: flex;
        align-items: center;
    }

    .header_1 .nav_2 .sub > li + li {
        margin-top: 10px;
    }
    .header_1 .nav_2 .sub > li > a {
        display: flex;
        align-items: center;
        font-size: 13px;
    }

    .header_1 .nav_2 .sub > li > a > i {
        display: block;
        margin-left: 20px;
        width: 8px;
        height: 14px;
        background-image: url(../img/arrow_2.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }
    .header_1 .nav_2 .sub > li > a:hover > i {
        transform: translateX(5px);
    }
    .header_1 .nav_2 .sub > li > a > span {
        margin-right: 10px;
        color: var(--co_3);
        font-weight: 700;
    }
    .header_1 .nav_2 .plan {
        margin-top: 15px;
    }
    .header_1 .nav_2 .plan > li {
        display: flex;
        align-items: center;
    }

    .header_1 .nav_2 .plan > li + li {
        margin-top: 10px;
    }
    .header_1 .nav_2 .plan > li > a {
        display: flex;
        padding: 5px 10px;
        padding-left: 25px;
        color: var(--co_2);
        font-size: 13px;
        align-items: center;
        background-color: var(--co_3);
        border-radius: 10px;
    }

    .header_1 .nav_2 .plan > li > a > i {
        display: block;
        margin-left: 20px;
        width: 8px;
        height: 14px;
        background-image: url(../img/arrow_2_b.svg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        transition: 0.3s ease-in-out;
    }

    .header_1 .btn_1 {
        position: fixed;
        left: 50%;
        bottom: -95px;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        align-items: center;
        width: calc(100% - 30px);
        height: 60px;
        color: var(--co_2);
        font-weight: 500;
        line-height: 1;
        letter-spacing: 0.1em;
        background-color: var(--co_3);
        border-radius: 20px 20px 0 0;
        overflow: hidden;
        z-index: 200;
    }

    .is_page_scr .header_1 .btn_1,
    .is_megamenu_show .header_1 .btn_1 {
        bottom: 0;
    }

    .header_1 .btn_1::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        display: block;
        width: 100%;
        height: 100%;
        background-color: var(--co_1);
        opacity: 0;
        transition: 0.3s ease-in-out;
    }
    .sec_mv_wrap .btn_1:hover::before {
        opacity: 1;
    }
    .header_1 .btn_1 > span {
        position: relative;
    }
    .header_1 .nav_3 {
        position: fixed;
        left: 0;
        bottom: -70px;
        width: 100%;
        z-index: 200;
        transition: 0.3s ease-in-out;
    }
    .is_page_scr .header_1 .nav_3,
    .is_megamenu_show .header_1 .nav_3 {
        bottom: 0;
    }
    .header_1 .nav_3 > ul {
        display: flex;
        margin: 0 20px;
        border-radius: 20px 20px 0 0;
        overflow: hidden;
    }
    .header_1 .nav_3 > ul > li {
        width: calc(100% / 2);
    }

    .header_1 .nav_3 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60px;
        color: var(--co_2);
        font-size: 16px;
        line-height: 1;
        background-color: var(--co_3);
        overflow: hidden;
    }
    .header_1 .nav_3 > ul > li:nth-child(1) > a {
        background-color: var(--co_3);
    }
    .header_1 .nav_3 > ul > li:nth-child(2) > a {
        background-color: #326937;
    }
}

/* ---------------------------------------------------- */
/* .footer_1 */
/* ---------------------------------------------------- */
.footer_1 {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}

.footer_1 .footer_inner {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1260px;
}

.footer_1 .logo_1 {
    margin-bottom: 70px;
    width: 250px;
}
.footer_1 .nav_1 {
    position: absolute;
    right: 0;
    top: 0;
    width: 940px;
}
.footer_1 .nav_1 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -20px;
    margin-bottom: -30px;
}
.footer_1 .nav_1 > ul > li {
    margin-right: 20px;
    margin-bottom: 30px;
    width: calc(100% / 3 - 20px);
}
.footer_1 .nav_1 a {
    display: block;
    padding-bottom: 15px;
    color: var(--co_3);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    border-bottom: 1px solid var(--co_3);
}
.footer_1 .nav_2 {
    position: absolute;
    right: 0;
    top: 135px;
    width: 940px;
}
.footer_1 .nav_2 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -50px;
}
.footer_1 .nav_2 > ul > li {
    margin-right: 50px;
    width: calc(100% / 2 - 50px);
}
.footer_1 .nav_2 a {
    display: block;
    border-radius: 30px;
    overflow: hidden;
}

.footer_1 .nav_3 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 940px;
}
.footer_1 .nav_3 > ul {
    display: flex;
    flex-wrap: wrap;
    margin-right: -30px;
}
.footer_1 .nav_3 > ul > li {
    margin-right: 30px;
}

.footer_1 .nav_3 a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 13px;
}
.footer_1 .nav_3 a::before {
    content: "";
    display: block;
    margin-right: 10px;
    width: 20px;
    height: 18px;
    background-image: url(../img/ico_blank_1.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.footer_1 .copyright_1 {
    font-size: 12px;
    line-height: 1;
}
@media (min-width: 1000px) {
    .footer_1 .nav_1 a:hover {
        color: var(--co_1);
    }
    .footer_1 .nav_2 a:hover {
        opacity: 0.6;
    }
    .footer_1 .nav_3 a:hover {
        color: var(--co_3);
    }
    .footer_1 .map_1 .btn:hover {
        background-color: var(--co_1);
    }
}
@media (max-width: 999px) {
    .footer_1 {
        padding-top: 50px;
        padding-bottom: 100px;
    }
    .footer_1 .footer_inner {
        width: calc(100% - 30px);
    }

    .footer_1 .logo_1 {
        margin: 0 auto 50px;
        width: 180px;
    }
    .footer_1 .nav_2 {
        margin-bottom: 50px;
        position: static;
        width: auto;
    }
    .footer_1 .nav_2 > ul {
        display: flex;
        margin-right: 0;
        margin-bottom: -20px;
    }
    .footer_1 .nav_2 > ul > li {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    .footer_1 .nav_2 a {
        border-radius: 20px;
    }

    .footer_1 .nav_3 {
        margin-bottom: 50px;
        position: static;
        width: auto;
    }
    .footer_1 .nav_3 > ul {
        margin-right: 0;
        margin-bottom: -20px;
    }
    .footer_1 .nav_3 > ul > li {
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }

    .footer_1 .nav_3 a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 13px;
    }

    .footer_1 .copyright_1 {
        font-size: 11px;
        text-align: center;
    }
}
