@charset "UTF-8";
/* CSS Document */
@font-face {
    font-family: "GenJyuuGothicLP";
    src: url("/assets/font/GenJyuuGothicL-P-Medium.woff") format("woff"), url("/assets/font/GenJyuuGothicL-P-Bold.woff") format("woff");
}
html {
    font-size: 62.5%;
    line-height: 1.45;
}

body {
    font-size: 1.6rem;
    color: #333;
    -webkit-font-feature-settings: "palt";
    font-feature-settings: "palt";
    font-family: "Noto Sans JP", "游ゴシック", "YuGothic", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

main {
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.6em;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 15px;
}

@media only screen and (min-width: 768px) {
    .sp {
        display: none !important;
    }
}
@media only screen and (max-width: 767px) {
    .pc {
        display: none !important;
    }
    header .burger-btn {
        display: block;
        width: 16px;
        height: 16px;
        background-color: red;
        position: relative;
        cursor: pointer;
    }
    header .burger-btn span {
        position: absolute;
        width: 16px;
        height: 1px;
        background-color: black;
        display: block;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    header .burger-btn span:nth-of-type(1) {
        top: 0px;
    }
    header .burger-btn span:nth-of-type(2) {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
    header .burger-btn span:nth-of-type(3) {
        bottom: 0px;
    }
    header .burger-btn.active span {
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    header .burger-btn.active span:nth-of-type(1) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 7px;
    }
    header .burger-btn.active span:nth-of-type(2) {
        opacity: 0;
    }
    header .burger-btn.active span:nth-of-type(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 8px;
    }
}
.btn img {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.3));
}
@media screen and (max-width: 767px) {
    .btn img {
        -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
        filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
    }
}
.btn:hover img {
    -webkit-transform: translate(1px, 1px);
    transform: translate(1px, 1px);
    -webkit-filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
    filter: drop-shadow(3px 3px 2px rgba(0, 0, 0, 0.3));
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media screen and (max-width: 767px) {
    .btn:hover img {
        -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
        filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    }
}

.sec-contact-mv {
    padding: 70px 15px 0 15px;
    max-width: 1020px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .sec-contact-mv {
        padding: 0;
    }
}
.sec-contact-mv .list-btn {
    background-color: #e8f9f8;
    padding: 65px 90px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .sec-contact-mv .list-btn {
        padding: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        gap: 10px;
    }
}
.sec-contact-mv .list-btn li {
    width: 48.3%;
}
@media screen and (max-width: 767px) {
    .sec-contact-mv .list-btn li {
        width: 100%;
    }
}

.sec-contact {
    position: relative;
}
.sec-contact .list-btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 20%;
    width: 56.2%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .sec-contact .list-btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        bottom: 13%;
        padding: 0 20px;
    }
}
.sec-contact .list-btn li {
    width: 48.3%;
}
@media screen and (max-width: 767px) {
    .sec-contact .list-btn li {
        width: 100%;
    }
}

.sec-contact02 {
    position: relative;
}
@media screen and (max-width: 767px) {
    .sec-contact02 {
        margin-top: -6%;
    }
}
.sec-contact02 .list-btn {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 9%;
    width: 56.2%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .sec-contact02 .list-btn {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 100%;
        bottom: 5.5%;
        gap: 10px;
        padding: 0 20px;
    }
}
.sec-contact02 .list-btn li {
    width: 48.3%;
}
@media screen and (max-width: 767px) {
    .sec-contact02 .list-btn li {
        width: 100%;
    }
}

.sec-brand {
    padding: 86px 15px 30px 15px;
}
@media screen and (max-width: 767px) {
    .sec-brand {
        position: relative;
        z-index: 9;
        padding: 50px 20px 0 20px;
    }
}
.sec-brand .ttl-brand {
    max-width: 776px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .sec-brand .ttl-brand {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
}
.sec-brand .list-brand {
    margin: 50px auto 0;
    max-width: 991px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand {
        margin-top: -17%;
    }
}
.sec-brand .list-brand > li {
    border: 1px solid;
    border-radius: 28px;
    padding: 52px 60px 60px;
    position: relative;
    background-color: #fff;
}
@media screen and (max-width: 999px) {
    .sec-brand .list-brand > li {
        padding: 34px 15px 26px;
    }
}
.sec-brand .list-brand > li:not(:last-of-type) {
    margin-bottom: 43px;
}
.sec-brand .list-brand > li .ttl-num {
    position: absolute;
    font-family: "Questrial", sans-serif;
    letter-spacing: 0.04em;
    font-size: 17px;
    padding: 5px 10px 2px 10px;
    border: 1px solid;
    position: absolute;
    top: -18px;
    left: 60px;
    background-color: #fff;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .ttl-num {
        left: 26px;
        font-size: 14px;
        padding: 3px 8px 1px 8px;
    }
}
.sec-brand .list-brand > li .logo-wrap {
    margin: 0 auto;
}
.sec-brand .list-brand > li .list-point {
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .list-point {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        gap: 0;
        margin-top: 12px;
    }
}
.sec-brand .list-brand > li .list-point li {
    padding: 10px 14px;
    text-align: center;
    color: #fff;
    border-radius: 15px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .list-point li {
        padding: 10px 12px;
        font-size: 13px;
        margin-right: 5px;
        margin-bottom: 5px;
    }
}
@media screen and (min-width: 768px) {
    .sec-brand .list-brand > li .list-point li.spacer {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .list-point li.spacer {
        width: 100%;
        padding: 0;
        background: none;
        margin: 0;
    }
}
.sec-brand .list-brand > li .flex-wrap {
    margin-top: 35px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
@media screen and (max-width: 999px) {
    .sec-brand .list-brand > li .flex-wrap {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-top: 28px;
    }
}
.sec-brand .list-brand > li .flex-wrap .ttl-wrap {
    width: 37%;
}
@media screen and (max-width: 999px) {
    .sec-brand .list-brand > li .flex-wrap .ttl-wrap {
        width: 100%;
    }
}
.sec-brand .list-brand > li .flex-wrap .ttl-wrap .ttl img {
    display: block;
    height: 22px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .ttl-wrap .ttl img {
        margin: 0 auto;
        height: 18px;
    }
}
.sec-brand .list-brand > li .flex-wrap .ttl-wrap .txt-catchcopy {
    font-weight: bold;
    letter-spacing: 0.1em;
    font-size: 19px;
    line-height: 1.84;
    margin-top: 25px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .ttl-wrap .txt-catchcopy {
        text-align: center;
        font-size: 17px;
        line-height: 1.7;
        margin-top: 18px;
    }
}
.sec-brand .list-brand > li .flex-wrap .ttl-wrap .txt {
    margin-top: 25px;
    font-size: 15px;
    letter-spacing: 0.1em;
    line-height: 2;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .ttl-wrap .txt {
        margin-top: 18px;
        line-height: 2.14;
        font-size: 14px;
    }
}
.sec-brand .list-brand > li .flex-wrap .ttl-wrap .txt span {
    color: #ff8095;
    font-weight: bold;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap {
    width: 60.2%;
    padding: 40px;
}
@media screen and (max-width: 999px) {
    .sec-brand .list-brand > li .flex-wrap .feature-wrap {
        width: 100%;
        margin-top: 20px;
        padding: 20px 15px;
    }
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars {
    padding-bottom: 6px;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px dotted #b3b3b3;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 6px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li:not(:last-of-type) {
    margin-bottom: 13px;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li .icon {
    margin-right: 13px;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li .icon img {
    display: block;
    height: auto;
    width: 186px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li .icon img {
        height: 17px;
    }
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li p {
    font-size: 12px;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .feature-wrap .list-stars li p {
        font-size: 14px;
        margin-top: 6px;
    }
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-tags {
    margin-top: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li .flex-wrap .feature-wrap .list-tags {
        margin-top: 15px;
        gap: 5px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-tags li {
    background-color: #fff;
    border-radius: 15px;
    padding: 10px 15px 10px 44px;
    letter-spacing: 0.2em;
    font-size: 15px;
    position: relative;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-tags li span {
    color: #ff8095;
}
.sec-brand .list-brand > li .flex-wrap .feature-wrap .list-tags li::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: 15px;
    height: 14px;
    background: url(../img/icon_checkbox.png) no-repeat center/contain;
}
.sec-brand .list-brand > li.crystal,
.sec-brand .list-brand > li.virtual {
    border-color: #5cd5cf;
}
.sec-brand .list-brand > li.crystal .ttl-num,
.sec-brand .list-brand > li.virtual .ttl-num {
    color: #5cd5cf;
    border-color: #5cd5cf;
}
.sec-brand .list-brand > li.crystal .logo-wrap,
.sec-brand .list-brand > li.virtual .logo-wrap {
    width: 240px;
}
@media screen and (max-width: 767px) {
    .sec-brand .list-brand > li.crystal .logo-wrap,
    .sec-brand .list-brand > li.virtual .logo-wrap {
        width: 200px;
    }
}
.sec-brand .list-brand > li.crystal .list-point li,
.sec-brand .list-brand > li.virtual .list-point li {
    background-color: #5cd5cf;
}
.sec-brand .list-brand > li.crystal .flex-wrap .ttl-wrap .txt-catchcopy,
.sec-brand .list-brand > li.virtual .flex-wrap .ttl-wrap .txt-catchcopy {
    color: #5cd5cf;
}
.sec-brand .list-brand > li.crystal .flex-wrap .feature-wrap,
.sec-brand .list-brand > li.virtual .flex-wrap .feature-wrap {
    background-color: #d6f4f3;
}
.sec-brand .list-brand > li.yuruada {
    border-color: #ff8095;
}
.sec-brand .list-brand > li.yuruada .ttl-num {
    color: #ff8095;
    border-color: #ff8095;
}
.sec-brand .list-brand > li.yuruada .logo-wrap {
    width: 174px;
}
.sec-brand .list-brand > li.yuruada .list-point li {
    background-color: #ff8095;
}
.sec-brand .list-brand > li.yuruada .flex-wrap .ttl-wrap .txt-catchcopy {
    color: #5cd5cf;
}
.sec-brand .list-brand > li.yuruada .flex-wrap .feature-wrap {
    background-color: #ffedf0;
}

.sec-support {
    padding: 0 15px 50px;
}
@media screen and (max-width: 767px) {
    .sec-support {
        padding: 0 20px 30px;
    }
}
.sec-support .ttl-support {
    max-width: 864px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .sec-support .ttl-support {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
}
.sec-support .tab-box {
    max-width: 990px;
    margin: 90px auto 0;
    position: relative;
}
@media screen and (max-width: 767px) {
    .sec-support .tab-box {
        margin-top: 24px;
    }
}
.sec-support .list-tab {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.sec-support .list-tab li {
    width: 164px;
}
@media screen and (max-width: 767px) {
    .sec-support .list-tab li {
        width: 50%;
    }
}
.sec-support .list-tab li a {
    display: block;
    opacity: 0.65;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.sec-support .list-tab li.active a {
    background-color: #fff;
    opacity: 1;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}
.sec-support .area-box {
    z-index: 999;
    width: 100%;
    opacity: 0;
    padding: 70px;
    overflow: hidden;
    display: none;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box {
        padding: 18px 18px 28px;
    }
}
.sec-support .area-box.is-active {
    -webkit-animation-name: displayAnime;
    animation-name: displayAnime; /*ふわっと表示させるためのアニメーション*/
    -webkit-animation-duration: 0.4s;
    animation-duration: 0.4s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    display: block;
}
@-webkit-keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes displayAnime {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.sec-support .area-box:nth-of-type(1) {
    background-color: #d6f4f3;
}
.sec-support .area-box:nth-of-type(1) .wrap02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(1) .wrap02 {
        margin-top: 32px;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.sec-support .area-box:nth-of-type(1) .wrap02 .img-wrap {
    width: 35.4%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(1) .wrap02 .img-wrap {
        width: 100%;
    }
}
.sec-support .area-box:nth-of-type(1) .wrap02 .txt-wrap {
    width: 60.7%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(1) .wrap02 .txt-wrap {
        width: 100%;
    }
}
.sec-support .area-box:nth-of-type(1) .wrap02 .txt-wrap .ttl-producer {
    width: 248px;
}
.sec-support .area-box:nth-of-type(1) .wrap02 .txt-wrap .txt {
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.08em;
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(1) .wrap02 .txt-wrap .txt {
        margin-top: 14px;
        font-size: 14px;
        letter-spacing: 0.04em;
        line-height: 2.14;
    }
}
.sec-support .area-box:nth-of-type(2) {
    background-color: #ffedf0;
    padding: 0;
    padding-bottom: 70px;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) {
        padding-bottom: 28px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap01 {
    padding: 70px 70px 0;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) .wrap01 {
        padding: 18px 18px 0;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 {
    margin-top: 50px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 {
        margin-top: 34px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 .ttl-officegallery {
    width: 244px;
    margin-left: 70px;
    margin-right: 70px;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 .ttl-officegallery {
        margin-left: 18px;
        margin-right: 18px;
        margin: 0 auto;
        width: 248px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 .slider {
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 .slider {
        margin-top: 24px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 .slider .slick-slide {
    margin: 0 5px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 .slider .slick-slide {
        margin: 0 2.5px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 .slider .slick-list {
    width: 87%;
    margin: 0 auto;
    overflow: visible;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 .slider .slick-list {
        width: 80%;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap02 .txt {
    font-size: 16px;
    letter-spacing: 0.08em;
    line-height: 1.875;
    margin-top: 30px;
    margin-left: 70px;
    margin-right: 70px;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) .wrap02 .txt {
        margin-left: 18px;
        margin-right: 18px;
        font-size: 14px;
        line-height: 2.14;
        letter-spacing: 0.04em;
        margin-top: 22px;
        text-align: center;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 {
    padding-bottom: 20px;
    margin-left: 70px;
    margin-right: 70px;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 {
        margin-left: 18px;
        margin-right: 18px;
        padding: 24px 22px 9px 22px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .txt-wrap {
    width: 100%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .txt-wrap {
        padding-right: 0;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .ttl-shop {
    width: 90px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .ttl-shop {
        width: 70px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .list-shop {
    margin-top: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    max-width: 75%;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .list-shop {
        max-width: 100%;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    width: 25%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li {
        width: 50%;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li:nth-of-type(1) {
    width: 100%;
}
.sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li .icon {
    width: 54px;
    margin-right: 12px;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li .icon {
        width: 42px;
        margin-right: 8px;
    }
}
.sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li .txt {
    font-size: 16px;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box:nth-of-type(2) .wrap03 .list-shop li .txt {
        font-size: 13px;
        line-height: 1;
        margin-top: 0;
    }
}
.sec-support .area-box .wrap01 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box .wrap01 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.sec-support .area-box .wrap01 .img-wrap {
    width: 23.3%;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box .wrap01 .img-wrap {
        width: 100%;
    }
}
@media screen and (max-width: 999px) {
    .sec-support .area-box .wrap01 .img-wrap img {
        margin: 0 auto;
        display: block;
        max-width: 295px;
    }
}
.sec-support .area-box .wrap01 .list-point {
    width: 73.1%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 999px) {
    .sec-support .area-box .wrap01 .list-point {
        width: 100%;
        margin-top: 20px;
    }
}
.sec-support .area-box .wrap01 .list-point li {
    width: 48.3%;
    background-color: #fff;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.12em;
    line-height: 1.54;
    padding: 10px 0 10px 54px;
    margin-bottom: 7px;
    position: relative;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap01 .list-point li {
        width: 100%;
        font-size: 14px;
        line-height: 1.5;
        padding: 8px 0 8px 46px;
    }
}
.sec-support .area-box .wrap01 .list-point li::before {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 20px;
    width: 17px;
    height: 16px;
    background: url(../img/icon_checkbox.png) no-repeat center/contain;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap01 .list-point li::before {
        width: 15px;
        height: 14px;
    }
}
.sec-support .area-box .wrap03 {
    padding: 37px 35px 40px;
    margin-top: 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #fff;
    border: 1px solid #4fb7b9;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap03 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 0 20px 18px;
        margin-top: 18px;
    }
}
.sec-support .area-box .wrap03 .img-wrap {
    width: 44%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap03 .img-wrap {
        width: 100%;
    }
}
.sec-support .area-box .wrap03 .txt-wrap {
    width: 47.4%;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap03 .txt-wrap {
        width: 100%;
        padding-right: 18px;
    }
}
.sec-support .area-box .wrap03 .txt-wrap .txt {
    font-size: 16px;
    line-height: 1.875;
    letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
    .sec-support .area-box .wrap03 .txt-wrap .txt {
        font-size: 14px;
        letter-spacing: 0.04em;
        margin-top: 8px;
        line-height: 2.14;
    }
}

.sec-review {
    padding: 70px 15px 50px;
}
@media screen and (max-width: 767px) {
    .sec-review {
        padding: 44px 15px 22px;
    }
}
.sec-review .ttl-review {
    max-width: 711px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .sec-review .ttl-review {
        margin: 0 calc(50% - 50vw);
        width: 100vw;
    }
}
.sec-review .list-review {
    margin: 85px auto 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 920px;
}
@media screen and (max-width: 950px) {
    .sec-review .list-review {
        max-width: 442px;
        margin: 85px auto 0;
    }
}
@media screen and (max-width: 767px) {
    .sec-review .list-review {
        margin-top: 40px;
        max-width: 340px;
    }
}
.sec-review .list-review li {
    width: 48%;
    height: 544px;
    margin-bottom: 60px;
    padding: 70px 26px 0;
    position: relative;
}
@media screen and (max-width: 950px) {
    .sec-review .list-review li {
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li {
        height: 422px;
        margin-bottom: 18px;
        padding: 50px 19px 36px;
    }
}
@media screen and (min-width: 768px) {
    .sec-review .list-review li:nth-of-type(1),
    .sec-review .list-review li:nth-of-type(4),
    .sec-review .list-review li:nth-of-type(5) {
        background: url(../img/bg_memo_bl.png) no-repeat center/contain;
    }
}
@media screen and (min-width: 768px) {
    .sec-review .list-review li:nth-of-type(2),
    .sec-review .list-review li:nth-of-type(3),
    .sec-review .list-review li:nth-of-type(6) {
        background: url(../img/bg_memo_yl.png) no-repeat center/contain;
    }
}
@media screen and (max-width: 950px) {
    .sec-review .list-review li:nth-of-type(odd) {
        background: url(../img/bg_memo_bl.png) no-repeat center/contain;
    }
}
@media screen and (max-width: 950px) {
    .sec-review .list-review li:nth-of-type(even) {
        background: url(../img/bg_memo_yl.png) no-repeat center/contain;
    }
}
@media screen and (min-width: 768px) {
    .sec-review .list-review li:nth-last-of-type(1),
    .sec-review .list-review li:nth-last-of-type(2) {
        margin-bottom: 0;
    }
}
.sec-review .list-review li .label {
    position: absolute;
    left: -16px;
    top: 27px;
    width: 100px;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .label {
        width: 77px;
        top: 22px;
    }
}
.sec-review .list-review li .flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.sec-review .list-review li .flex-wrap .icon {
    width: 33.4%;
}
.sec-review .list-review li .flex-wrap .txt-wrap {
    width: 57.5%;
}
.sec-review .list-review li .flex-wrap .txt-wrap .name img {
    display: block;
    height: 25px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .flex-wrap .txt-wrap .name img {
        height: 22px;
    }
}
.sec-review .list-review li .flex-wrap .txt-wrap .profile {
    font-size: 18px;
    font-family: "GenJyuuGothicLP", sans-serif;
    color: #4fb7b9;
    letter-spacing: 0.13em;
    line-height: 1.5;
    margin-top: 7px;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .flex-wrap .txt-wrap .profile {
        font-size: 14px;
    }
}
.sec-review .list-review li .flex-wrap .txt-wrap .salary {
    margin-top: 14px;
    line-height: 1.5;
    font-size: 18px;
    font-family: "GenJyuuGothicLP", sans-serif;
    letter-spacing: 0.15em;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .flex-wrap .txt-wrap .salary {
        font-size: 14px;
        margin-top: 10px;
    }
}
.sec-review .list-review li .img-review {
    margin-top: 14px;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .img-review {
        margin-top: 9px;
    }
}
.sec-review .list-review li .img-time {
    margin-top: 13px;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .img-time {
        margin-top: 7px;
    }
}
.sec-review .list-review li .txt {
    font-size: 18px;
    letter-spacing: 0.12em;
    line-height: 2;
    margin-top: 16px;
}
@media screen and (max-width: 767px) {
    .sec-review .list-review li .txt {
        font-size: 14px;
        letter-spacing: 0.1em;
        margin-top: 10px;
    }
}

.sec-step {
    position: relative;
}
.sec-step .btn-wrap {
    width: 22.5%;
    position: absolute;
    bottom: 35.8%;
    left: 54.6%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .sec-step .btn-wrap {
        width: 78.1%;
        left: 50%;
        bottom: 44.4%;
    }
}

.sec-faq {
    padding: 70px 15px 50px;
}
@media screen and (max-width: 767px) {
    .sec-faq {
        padding: 50px 0 30px;
    }
}
.sec-faq .ttl-faq {
    margin: 0 auto;
    max-width: 357px;
}
@media screen and (max-width: 767px) {
    .sec-faq .ttl-faq {
        max-width: 254px;
    }
}
.sec-faq .list-faq {
    max-width: 993px;
    margin: 30px auto 0;
}
.sec-faq .list-faq .question {
    position: relative;
    padding: 44px 86px 37px 30px;
    cursor: pointer;
    border-bottom: 1px solid #d6f4f3;
}
@media screen and (max-width: 767px) {
    .sec-faq .list-faq .question {
        padding: 26px 57px 26px 20px;
    }
}
.sec-faq .list-faq .question .flex-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.sec-faq .list-faq .question .flex-wrap .icon {
    width: 54px;
    margin-right: 30px;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}
@media screen and (max-width: 767px) {
    .sec-faq .list-faq .question .flex-wrap .icon {
        width: 38px;
        margin-right: 20px;
    }
}
.sec-faq .list-faq .question .flex-wrap .txt {
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.68;
}
@media screen and (max-width: 767px) {
    .sec-faq .list-faq .question .flex-wrap .txt {
        font-size: 16px;
        line-height: 1.5;
    }
}
.sec-faq .list-faq .question::after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 30px;
    background: url(../img/icon_open.png) no-repeat center/contain;
    width: 23px;
    height: 23px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
@media screen and (max-width: 767px) {
    .sec-faq .list-faq .question::after {
        width: 17px;
        height: 17px;
        top: 30px;
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}
.sec-faq .list-faq .question.opened::after {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: url(../img/icon_close.png) no-repeat center/contain;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}
.sec-faq .list-faq .answer {
    display: none;
    font-size: 22px;
    letter-spacing: 0.1em;
    line-height: 1.68;
    background-color: rgba(232, 249, 248, 0.5);
    padding: 33px 43px 27px 43px;
}
@media screen and (max-width: 767px) {
    .sec-faq .list-faq .answer {
        font-size: 16px;
        line-height: 1.5;
        padding: 30px 57px 30px 30px;
    }
}

.sec-form {
    padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
    .sec-form {
        padding-bottom: 30px;
    }
}
.sec-form .contact-form {
    max-width: 775px;
    margin: 30px auto 0;
    padding: 0 15px;
}
@media screen and (max-width: 767px) {
    .sec-form .contact-form {
        margin-top: 24px;
    }
}
.sec-form .contact-form table {
    width: 100%;
}
.sec-form .contact-form table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 16px;
}
.sec-form .contact-form table tr.input-mail td .text-field:first-of-type {
    margin-bottom: 10px;
}
.sec-form .contact-form table th {
    text-align: left;
}
.sec-form .contact-form table th label {
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 1.875;
    display: inline-block;
    margin-right: 8px;
}
.sec-form .contact-form table th span {
    color: #e67886;
}
.sec-form .contact-form table td {
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 1.875;
    display: inline-block;
}
.sec-form .contact-form table td .text-field {
    width: 545px;
    height: 50px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #535353;
    padding: 16px;
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 1.875;
}
@media screen and (max-width: 767px) {
    .sec-form .contact-form table td .text-field {
        width: 100%;
    }
}
.sec-form .contact-form table td .text-field::-webkit-input-placeholder {
    color: #ccc;
}
.sec-form .contact-form table td .text-field::-moz-placeholder {
    color: #ccc;
}
.sec-form .contact-form table td .text-field:-ms-input-placeholder {
    color: #ccc;
}
.sec-form .contact-form table td .text-field::-ms-input-placeholder {
    color: #ccc;
}
.sec-form .contact-form table td .text-field::placeholder {
    color: #ccc;
}
.sec-form .contact-form table td .select-wrap {
    position: relative;
}
.sec-form .contact-form table td .select-wrap::after {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 16px;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 12px;
    background: url(../img/ic_select.png) no-repeat center/contain;
}
.sec-form .contact-form table td .select-field {
    height: 50px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #535353;
    width: 90px;
    font-size: 16px;
    letter-spacing: 0.16em;
    padding: 0 16px;
    line-height: 1.875;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background: transparent;
    color: #333;
}
@media screen and (max-width: 767px) {
    .sec-form .contact-form table td .select-field {
        width: 60px;
    }
}
.sec-form .contact-form table td .select-field.year {
    width: 213px;
}
@media screen and (max-width: 767px) {
    .sec-form .contact-form table td .select-field.year {
        width: 113px;
    }
}
.sec-form .contact-form table td .unit {
    display: inline-block;
    margin: 0 8px;
}
@media screen and (max-width: 767px) {
    .sec-form .contact-form table td .unit {
        margin: 0 4px;
    }
}
.sec-form .contact-form table td .textarea {
    margin-top: 10px;
    width: 100%;
    height: 208px;
    border-radius: 6px;
    outline: none;
    border: 1px solid #535353;
    padding: 16px;
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 1.45;
}
.sec-form .contact-form .note {
    font-size: 16px;
    letter-spacing: 0.16em;
    line-height: 1.875;
}
.sec-form .submit-wrapper {
    margin-top: 20px;
}
.sec-form .submit-wrapper .btn {
    width: 335px;
    display: block;
    outline: none;
    background: none;
    border: none;
    margin: 0 auto;
    cursor: pointer;
}
.sec-form .submit-wrapper .btn.btn-back {
    margin-top: 30px;
}
.sec-form.confirm {
    padding-left: 15px;
    padding-right: 15px;
}
.sec-form.confirm .txt {
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.12em;
    line-height: 1.75;
    margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
    .sec-form.confirm .txt {
        font-size: 14px;
        margin-bottom: 20px;
    }
}
.sec-form.confirm .contact-form {
    padding-left: 0;
    padding-right: 0;
}
@media screen and (min-width: 768px) {
    .sec-form.confirm .contact-form table tr {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.sec-form.confirm .contact-form table th {
    font-weight: bold;
    letter-spacing: 0.12em;
    line-height: 1.75;
}
@media screen and (min-width: 768px) {
    .sec-form.confirm .contact-form table th {
        width: 28%;
    }
}
@media screen and (min-width: 768px) {
    .sec-form.confirm .contact-form table td {
        width: 72%;
    }
}

footer .footer-nav {
    background-color: #e4eeef;
    padding: 30px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
footer .footer-nav li a {
    font-size: 14px;
    color: #333;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: inline-block;
}
footer .footer-nav li a:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
footer .footer-nav li:not(:last-of-type) {
    margin-right: 40px;
    position: relative;
}
footer .footer-nav li:not(:last-of-type)::after {
    width: 1px;
    height: 15px;
    background-color: #333;
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -20px;
}
footer .copyright {
    display: block;
    text-align: center;
    padding: 15px 0;
    font-size: 14px;
    letter-spacing: 0.16em;
}

.page header {
    height: 60px;
    background-color: #5cd5cf;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .page header {
        height: 30px;
    }
}
.page .sec-page {
    padding: 126px 15px 86px 15px;
    max-width: 870px;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .page .sec-page {
        padding: 60px 15px 40px 15px;
    }
}
.page .sec-page.confirm {
    padding-bottom: 0;
}
.page .sec-page .page-ttl {
    margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
    .page .sec-page .page-ttl {
        margin-bottom: 40px;
    }
}
.page .sec-page .page-ttl img {
    margin: 0 auto;
    display: block;
    height: 73px;
    width: auto;
}
@media screen and (max-width: 767px) {
    .page .sec-page .page-ttl img {
        height: 40px;
    }
}
@media screen and (max-width: 767px) {
    .page .sec-page .page-ttl.privacy img {
        height: 50px;
    }
}
@media screen and (max-width: 767px) {
    .page .sec-page .page-ttl.confirm img {
        height: 50px;
    }
}
.page .sec-page .page-ttl.terms {
    text-align: center;
    font-size: 30px;
    color: #ff8095;
    font-family: "GenJyuuGothicLP", sans-serif;
    letter-spacing: 0.12em;
}
@media screen and (max-width: 767px) {
    .page .sec-page .page-ttl.terms {
        font-size: 22px;
    }
}
.page .sec-page h3 {
    font-size: 17px;
    letter-spacing: 0.13em;
    line-height: 1.53;
    margin-bottom: 13px;
}
@media screen and (max-width: 767px) {
    .page .sec-page h3 {
        font-size: 15px;
        margin-bottom: 9px;
    }
}
.page .sec-page.terms h3 {
    font-weight: 500;
}
.page .sec-page .txt {
    font-size: 15px;
    letter-spacing: 0.13em;
    line-height: 1.7333;
}
@media screen and (max-width: 767px) {
    .page .sec-page .txt {
        font-size: 14px;
    }
}
.page .sec-page .txt:not(:last-of-type) {
    margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
    .page .sec-page .txt:not(:last-of-type) {
        margin-bottom: 40px;
    }
}
.page .sec-page .txt a {
    color: #4fb7b9;
    text-decoration: underline;
}
.page .sec-page .txt.thanks {
    text-align: center;
}
.page .sec-page .btn-wrap {
    width: 330px;
    margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
    .page .sec-page .btn-wrap {
        max-width: 300px;
        margin-top: 40px;
    }
}
/* .page footer .footer-nav li:first-of-type {
  margin-right: 0;
}
.page footer .footer-nav li::after {
  display: none;
} */

/*# sourceMappingURL=style.css.map */
