@charset "UTF-8";

/* font import */
@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');


body {
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "Osaka", "sans-serif";
}

/* 表示出し分け */
.pc_only {
    display: none !important;
}

.sp_only {
    display: block !important;
}

@media screen and (min-width: 768px) {
    .pc_only {
        display: block !important;
    }

    .sp_only {
        display: none !important;
    }

}

/* ttl */
.h1--ttl {
    color: #FFF;
    text-align: center;
    display: flex;
    padding: 0 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2px;
    padding-top: 32px;
}

.h1--ttl .main {
    font-size: calc(100vw * (52 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 72.8px */
    letter-spacing: 1.04px;
}

.h1--ttl .sub {
    font-size: calc(100vw * (28 / 375));
}

@media screen and (min-width: 768px) {
    .h1--ttl .main {
        font-size: 52px;
    }

    .h1--ttl .sub {
        font-size: 28px;
    }
}

.content__head {
    flex-grow: 1;
    width: 100%;
    text-align: center;
}

.h2--ttl {
    color: #0A8664;
    text-align: center;
    font-size: calc(100vw * (48 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 0.96px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.h2--ttl::before,
.h2--ttl::after {
    content: '';
    flex: 1 0 8px;
    height: 1px;
    background-color: #0A8664;
    height: 4px;
}

.h2--ttl::before {}

.h2--ttl::after {}

@media screen and (min-width: 768px) {
    .h2--ttl {
        font-size: 56px;
        letter-spacing: 1.12px;
    }

    .h2--ttl::before,
    .h2--ttl::after {
        flex: 1 0 12px;
    }

    .h2--ttl::before {}

    .h2--ttl::after {}
}

.h3--ttl {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.h3--ttl .sub-txt {
    color: #FA8200;
    text-align: center;
    font-size: calc(100vw * (18 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 0.36px;
}

.h3--ttl .main-txt {
    color: #333;
    text-align: center;
    font-size: calc(100vw * (32 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 44.8px */
    letter-spacing: 1.28px;
}

@media screen and (min-width: 768px) {
    .h3--ttl .sub-txt {
        font-size: 24px;
        letter-spacing: 0.48px;
    }

    .h3--ttl .main-txt {
        font-size: 44px;
        letter-spacing: 1.76px;
    }
}

.h4--ttl {
    color: #0A8664;
    text-align: center;
    font-size: calc(100vw * (28 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 39.2px */
    letter-spacing: 0.56px;
}

@media screen and (min-width: 768px) {
    .h4--ttl {
        font-size: 32px;
        letter-spacing: 0.64px;
    }
}

.h5--ttl {
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 0.4px;
    padding-left: calc(100vw * (11 / 375));
    color: #333;
    border-left: 3px solid #0A8664;
    margin-bottom: calc(100vw * (12 / 375));
}

@media screen and (min-width: 768px) {
    .h5--ttl {
        font-size: 24px;
        padding-left: 11px;
        margin-bottom: 12px;
    }
}

.h6--ttl {
    color: #333;
    text-align: center;
    font-size: calc(100vw * (18 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    letter-spacing: 0.36px;
}

@media screen and (min-width: 768px) {
    .h6--ttl {
        font-size: 20px;
        letter-spacing: 0.4px;
    }
}

/* text */
.content--txt {
    color: #333;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.content--txt.size-s {
    font-size: calc(100vw * (14 / 375));
}

@media screen and (min-width: 768px) {
    .content--txt {
        font-size: 16px;
    }

    .content--txt.size-s {
        font-size: 14px;
    }

    .top-anchor__txt--link.content--txt {
        font-size: calc(100vw * (14 / 1440));
    }
}



/* link */
.link__item {
    font-size: calc(100vw * (16 / 375));
    color: #999;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    letter-spacing: 0.48px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: flex;
    align-items: center;
    gap: 4px;
}

.size-s .link__item {
    font-size: calc(100vw * (12 / 375));
}

.link__item.fc-green {
    color: #0A8664;
}

.ic-blank {
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
    -webkit-mask-image: url('/camp/00079/img/NL-guide_ic_blank.svg');
    mask-image: url('/camp/00079/img/NL-guide_ic_blank.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #999;
    display: inline-block;
}

.size-s .ic-blank {
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
}

.fc-green .ic-blank {
    background-color: #0A8664;
}

@media screen and (min-width: 768px) {
    .link__item {
        font-size: 16px;
    }

    .size-s .link__item {
        font-size: 14px;
    }

    .ic-blank {
        width: 12px;
        height: 12px;
    }

    .size-s .ic-blank {
        width: 13px;
        height: 13px;
    }
}

/* btn */


.content--btn {
    width: calc(100vw * (295 / 375));
    padding: 14px 24px;
    text-align: center;
    border-radius: 40px;
    display: block;
    background: #0A8664;
    position: relative;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 130%;
    letter-spacing: 0.56px;
    color: #FFF;
    text-decoration: none;
    margin: 0 auto;
}

.beginner__content .content--btn {
    background: #FA8200;
}

.ic-btn {
    position: absolute;
    content: "";
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
    -webkit-mask-image: url('/camp/00079/img/NL-guide_ic_blank.svg');
    mask-image: url('/camp/00079/img/NL-guide_ic_blank.svg');
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: #FFF;
    display: inline-block;
    right: calc(100vw * (15 / 375));
    top: 35%;
}

.btn--box {
    text-align: center;
}

.btn--lead {
    position: relative;
    color: #FA8200;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 0.56px;
}

.btn--lead::before,
.btn--lead::after {
    bottom: 0;
    content: "";
    width: 1px;
    background: #FA8200;
    position: absolute;
    height: calc(100vw * (18 / 375));
}

.btn--lead::before {
    left: calc(100vw * (-8 / 375));
    transform: rotate(-40deg);

}

.btn--lead::after {
    right: calc(100vw * (-8 / 375));
    transform: rotate(40deg);
}

@media screen and (min-width: 768px) {
    .content--btn {
        width: 295px;
        padding: 14px 24px;
        border-radius: 40px;
        font-size: 14px;
    }

    .ic-btn {
        width: 12px;
        height: 12px;
        right: 15px;
        top: 35%;
    }

    .btn--lead {
        font-size: 14px;
    }

    .btn--lead::before,
    .btn--lead::after {
        width: 1px;
        height: 18px;
    }

    .btn--lead::before {
        left: -8px;

    }

    .btn--lead::after {
        right: -8px;
    }
}

/* lists */

.lists__item li:not(:first-child) {
    margin-top: 4px;
}

.lists__item--note {
    color: #999;
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.48px;
    position: relative;
    padding-left: calc(100vw * (16 / 375));
}

.lists__item--note::before {
    content: "※";
    position: absolute;
    left: 0;
}

@media screen and (min-width: 768px) {
    .lists__item--note {
        font-size: 12px;
        padding-left: 16px;
    }

    .lists__item--note .link__item {
        font-size: 12px;
    }
}


.lists__item--note.-num {
    counter-increment: number;
    padding-left: calc(100vw * (24 / 375));
}

@media screen and (min-width: 768px) {
    .lists__item--note.-num {
        font-size: 12px;
        padding-left: 24px;
    }
}

.lists__item--note.-num::before {
    content: "※" counter(number);
}

.lists__item--note .list--link {
    color: #999;
}

/* accordion */
.accordion__head {
    color: #0A8664;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    cursor: pointer;
    border-bottom: 1px solid #0A8664;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 8px 8px;
}

.accordion__content {
    display: none;
    padding: 24px 16px;
    background: #EDF8F5;
    cursor: pointer;
}

.accordion__item {
    width: 100%;
    margin-top: 24px;
}

.accordion__item.is-open .accordion__content {
    display: block;
}

.ic-accordion {
    position: relative;
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
}

.ic-accordion::before {
    content: "";
    position: absolute;
    width: calc(100vw * (12 / 375));
    height: 2px;
    background: #0A8664;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.ic-accordion::after {
    content: "";
    position: absolute;
    width: 2px;
    height: calc(100vw * (12 / 375));
    background: #0A8664;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.3s;
}

.accordion__item.is-open .ic-accordion::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.nav-toggle-btn.is-open .ic-accordion::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

@media screen and (min-width: 768px) {
    .accordion__head {
        font-size: 16px;
    }

    .accordion__content {
        padding: 24px 16px;
    }

    .accordion__item {
        margin-top: 24px;
    }

    .ic-accordion {
        width: 12px;
        height: 12px;
    }

    .ic-accordion::before {
        width: 12px;
        height: 2px;
    }

    .ic-accordion::after {
        width: 2px;
        height: 12px;
    }

}

/* tab */
.tab__contents {
    display: none;
    margin-top: 12px;
}

.tab__contents.show {
    display: block;
}

.tab__contents--body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.tab__btns {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    border-bottom: 2px solid #0A8664;
}

.tab--btn {
    padding: 6px 0;
    text-align: center;
    border-radius: 4px 4px 0 0;
    border: 2px solid #0A8664;
    border-bottom: none;
    background: #0A8664;
    color: #0A8664;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 0.56px;
    background: #FFF;
    flex: 1 0 0;
    cursor: pointer;
}

.tab--btn.show {
    background: #0A8664;
    color: #FFF;
}

.tab__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.tab__item--ttl {
    font-size: calc(100vw * (18 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: 0.36px;
    color: #0A8664;
    display: flex;
    gap: 8px;
    align-items: center;
}

.ic-tab {
    width: calc(100vw * (36 / 375));
    height: calc(100vw * (36 / 375));
}

.ic-tab.service-01 {
    content: url(/camp/00079/img/NL-guide_service_icon_01.png);
}

.ic-tab.service-02 {
    content: url(/camp/00079/img/NL-guide_service_icon_02.png);
}

.ic-tab.service-03 {
    content: url(/camp/00079/img/NL-guide_service_icon_03.png);
}

.ic-tab.service-04 {
    content: url(/camp/00079/img/NL-guide_service_icon_04.png);
}

.ic-tab.service-05 {
    content: url(/camp/00079/img/NL-guide_service_icon_05.png);
}

.ic-tab.service-06 {
    content: url(/camp/00079/img/NL-guide_service_icon_06.png);
}

.ic-tab.service-07 {
    content: url(/camp/00079/img/NL-guide_service_icon_07.png);
}

.ic-tab.service-08 {
    content: url(/camp/00079/img/NL-guide_service_icon_08.png);
}

.ic-tab.service-09 {
    content: url(/camp/00079/img/NL-guide_service_icon_09.png);
}

.ic-tab.service-10 {
    content: url(/camp/00079/img/NL-guide_service_icon_10.png);
}

@media screen and (min-width: 768px) {
    .tab__contents {
        margin-top: 12px;
    }

    .tab--btn {
        padding: 6px 0;
        font-size: 14px;
    }

    .tab__item--ttl {
        font-size: 18px;
    }

    .ic-tab {
        width: 36px;
        height: 36px;
    }
}

/* header */
.header {
    display: flex;
    width: 100%;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
}

.header img {
    width: calc(100vw * (140 / 375));
}

@media screen and (min-width: 768px) {
    .header img {
        width: 140px
    }
}

/* kv */
.kv {
    background: linear-gradient(180deg, #014831 0%, #0A8664 45%, #FFF 70%, #FFF 100%);
    position: relative;
    width: 100%;
    z-index: -1;
}

.kv__bg {
    position: relative;

}

.kv::before {
    position: absolute;
    content: "";
    background-image: url(/camp/00079/img/NL-guide_kv-bg_sp_01.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    z-index: -1;
}

.kv__lead {
    margin-top: 8px;
}

.kv__lead--txt {
    color: #FFF;
    text-align: center;
    font-size: calc(100vw * (18 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
    /* 27px */
    letter-spacing: 0.72px;
}

.kv__card {
    display: flex;
    padding: 0 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 24px;
}

.kv__card--item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    align-self: stretch;
}

.card__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1 0 0;
}

.card__item img {
    width: calc(100vw * (128 / 375));
    border-radius: 5px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.20);
}

.card__item--txt {
    color: #333;
    text-align: center;
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 15px */
    letter-spacing: -0.2px;
    align-self: stretch;
}

.ic-arrow {
    padding: 20px 0;
    text-align: center;
}

.ic-arrow img {
    width: calc(100vw * (22 / 375));
    height: calc(100vw * (22 / 375));
}

@media screen and (min-width: 768px) {
    .kv::before {
        background-image: url(/camp/00079/img/NL-guide_kv-bg_pc_01.png);
    }

    .kv__lead {
        margin-top: 8px;
    }

    .kv__lead--txt {
        font-size: 18px;
    }

    .kv__card {
        padding: 0 32px;
        gap: 24px;
        margin-top: 24px;
        flex-direction: row;
        justify-content: center;
    }

    .kv__card--item {
        gap: 24px;
    }

    .card__item {
        gap: 4px;
        flex: 1 0 0;
        width: calc(100vw * (200 / 1440));
    }

    .card__item img {
        width: calc(100vw * (168 / 1440));
        border-radius: 5px;
    }

    .card__item--txt {
        font-size: 14px;
        letter-spacing: -0.28px;
    }

    .ic-arrow {
        padding: 20px 0;
    }

    .ic-arrow img {
        width: 22px;
        height: 22px;
    }
}

.top-anchor {
    padding: 0 24px 60px 24px;
}

.top-anchor__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.top-anchor__content--card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.top-anchor__item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.top-anchor--txt {
    color: #333;
    text-align: center;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}

.top-anchor--link img {
    width: calc(100vw * (345 / 375));
}

.top-anchor__txt--link {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100vw * (327 / 375));
    padding: 0 8px 4px 8px;
    border-bottom: 1px solid #333;
    text-decoration: none;
}

.top-anchor__txt--link .content-flex {
    gap: 8px;
    align-items: center;
}

.ic-anchor {
    content: url(/camp/00079/img/NL-guide_anchor_icon_05.png);
    width: calc(100vw * (36 / 375));
    height: calc(100vw * (36 / 375));
    flex-shrink: 0;
}

.ic-link-anchor {
    content: url(/camp/00079/img/NL-guide_ic_link_arrow.svg);
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
    flex-shrink: 0;
}

@media screen and (min-width: 768px) {
    .top-anchor__content {
        max-width: 929px;
        margin: 0 auto;
    }

    .top-anchor__content--card {
        flex-wrap: wrap;
        justify-content: center;
        flex-direction: row;
    }

    .top-anchor--txt {
        font-size: calc(100vw * (14 / 1440));
    }

    .top-anchor--link img {
        width: calc(100vw * (299 / 1440));
        max-width: 299px;
    }

    .top-anchor__txt--link {
        width: calc(100vw * (299 / 1440));
        max-width: 299px;
        padding: 0 8px 4px 8px;
    }

    .ic-anchor {
        width: calc(100vw * (36 / 1440));
        height: calc(100vw * (36 / 1440));
        max-width: 36px;
        max-height: 36px;
    }

    .ic-link-anchor {
        width: 12px;
        height: 12px;
    }
}

@media screen and (min-width: 1440px) {
    .top-anchor--txt {
        font-size: 14px;
    }

    .top-anchor__txt--link.content--txt {
        font-size: 16px;
    }
}

/* content */
.content-flex {
    display: flex;
}

.content {
    display: flex;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    background: #F5F5F5;

}

#advanced.content {
    padding-bottom: 60px;
}

.content__body {
    padding: 0 16px;

}

.content__item {
    display: flex;
    border-radius: 4px;
    background: #FFF;
    padding: 36px 16px;
    flex-direction: column;
    gap: 16px;
    align-self: stretch;
    width: calc(100vw * (343 / 375));
}

.content__item--box {
    margin-bottom: 24px;
}

.content__box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
}

.content--img {
    width: 100%;
}

.content__item--box .h6--ttl {
    margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
    .content-flex {
        display: flex;
    }

    .content {
        padding-top: 60px;
        gap: 32px;

    }

    .content__body {
        max-width: 800px;
        margin: 0 auto;
        width: 100%;

    }

    .content__item {
        padding: 36px;
        gap: 16px;
        width: 100%;
    }

    .content__item--box {
        margin-bottom: 24px;
    }

    .content__box {
        flex-direction: row;
        gap: 16px;
    }

    .content--img {
        width: 100%;
        width: calc(100vw * (365 / 1440));
        max-width: 365px;
    }

    .content__item--box .h6--ttl {
        margin-bottom: 16px;
    }
}

.step__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

.step--ttl {
    color: #0A8664;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 150%
}

.step__content--box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    align-self: stretch;
}

.step__content--box .step__item {
    gap: 16px;
}

.step__content--box .content--img {
    margin: 0 auto;
    display: block;
}

.step__link {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    flex-direction: column;
}

.step__link .link__item {
    color: #999;
    font-size: calc(100vw * (12 / 375));
}

.step__link .link__item::before {
    background: #999;
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
}

.step__link--box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

@media screen and (min-width: 768px) {
    .step__item {
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }

    .step--ttl {
        font-size: 16px;
    }

    .step__item .content__box {
        flex-direction: column;
        max-width: 234.5px;
        width: 100%;
    }

    .step__item .content--img {
        max-width: 234.5px;
        width: 100%;
    }

    .step__link {
        gap: 24px;
        flex-direction: row;
    }

    .step__link--box {
        gap: 4px;
    }

    .step__link .link__item {
        font-size: 12px;
    }

    .step__link .link__item::before {
        width: 13px;
        height: 13px;
    }
}

.alert__content {
    display: flex;
    padding: 16px;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    align-self: stretch;
    border-radius: 8px;
    border: 2px solid #FB5656;
    margin-bottom: 24px;
}

.ic-alert {
    content: url(/camp/00079/img/NL-guide_alert_icon_01.svg);
    width: 36px;
    height: 32px;
}

.alert--ttl {
    color: #FB5656;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
}

.check-content {
    padding: 24px 0 16px 0;
    border: 3px solid #0A8664;
    position: relative;
    margin-top: 12px;
    min-width: calc(100vw * (343 / 375));
    width: 100%;

}

.check-content__head {
    position: absolute;
    top: -15px;
    display: flex;
    left: 0;
    right: 0;
    justify-content: center;
}

.check--ttl {
    color: #0A8664;
    text-align: center;
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 28px */
    letter-spacing: 0.4px;
    background: #F5F5F5;
}

.check__lists {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 32px;
    gap: 6px;
}

.lists__item--check {
    color: #333;
    font-size: calc(100vw * (16 / 375));
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    padding-left: calc(100vw * (26 / 375));
    position: relative;
}

.lists__item--check::before {
    content: url(/camp/00079/img/NL-guide_ic_check.svg);
    width: calc(100vw * (20 / 375));
    height: calc(100vw * (20 / 375));
    position: absolute;
    left: 0;
}

@media screen and (min-width: 768px) {
    .check-content {
        margin: 0 auto;
        padding: 24px 0 16px 0;
        border: 3px solid #0A8664;
        position: relative;
        margin-top: 12px;
        max-width: 800px;
        width: 100%;
        min-width: unset;

    }

    .check--ttl {
        font-size: 20px;
    }

    .check__lists {
        padding: 0 32px;
        gap: 6px;
    }

    .lists__item--check {
        font-size: 16px;
        padding-left: 26px;
    }

    .lists__item--check::before {
        width: 20px;
        height: 20px;
    }
}

/* swiper */
.swiper-container-wrapper {
    max-width: 100%;
    overflow: hidden;
}

.swiper {
    width: 100%;
    padding: 0 40px 40px;
    box-sizing: border-box;
    overflow: visible !important;
    /* 左右のスライドを見せる */
}

.swiper-slide {
    width: 263px;
    height: auto;
}

.swiper-button-next,
.swiper-button-prev {
    top: 65px;
}

.swiper-slide .content__box {
    justify-content: center;
    width: 263px;
}

.swiper-button-prev:after {
    content: url("/camp/00079/img/NL-guide_ic_slider-left.svg");
}

.swiper-button-next:after {
    content: url("/camp/00079/img/NL-guide_ic_slider-right.svg");
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    display: none;
}

.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet-active {
    background: #0A8664;
}

@media screen and (min-width: 768px) {
    .swiper {
        padding-left: 0;
    }

    .swiper-slide {
        width: 100%;
    }

    .swiper-slide .content--img {
        width: 289px;
        height: 162.563px;
    }

    .swiper-slide .content__box {
        width: 600px;
    }
}

/* service */
.service {
    background: #EDF8F5;
    padding: 80px 16px 60px 16px;
}

@media screen and (min-width: 768px) {
    .service .tab__wrap {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 32px;
    }
}

.dl__area {
    width: 606px;
    margin: 0 auto;
}

.dl__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.dl--ttl {
    color: #333;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 25.2px */
    letter-spacing: 0.36px;
}

.dl__link {
    display: flex;
    width: 606px;
    justify-content: space-between;
    align-items: center;
}

.dl__link img {
    width: 259px;
}

.border {
    background: #DDD;
    width: 1px;
    flex-shrink: 0;
    height: 100px;
}

.qr__area--one {
    display: none;
}

@media screen and (min-width: 768px) {
    .qr__area--one {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 16px;
        align-self: stretch;
        margin-bottom: 24px;
    }

    .qr__area--one .h6--ttl {
        font-size: 18px;
    }
}

/* tag */
.tag__contents {
    display: flex;
    align-items: flex-start;
    align-content: flex-start;
    gap: 4px;
    align-self: stretch;
    flex-wrap: wrap;
}

.tag--btn {
    padding: 2px 10px;
    border: 1px solid #0A8664;
    background: #FFF;
    color: #0A8664;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-align: center;
    border-radius: 40px;
}

.card .tag--btn {
    width: 343px;
}

.tag--btn.is-active {
    background: #0A8664;
    border: none;
    color: #FFF;
}

.result--txt {
    color: #333;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 21px */
    letter-spacing: -0.28px;
    text-align: right;
}

.result--txt .counter {
    font-size: 24px;
    letter-spacing: -0.48px;
    color: #0A8664;
}

.tag--list {
    margin-top: 8px;
    display: inline-grid;
    row-gap: 12px;
    column-gap: 12px;
    align-self: stretch;
    grid-template-rows: repeat(14, fit-content(100%));
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tag__item {

    padding: 12px 12px 8px 12px;

    border-radius: 4px;
    background: #FFF;
}

.tag__item--box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    justify-self: stretch;
}

.tag__item--ttl {
    color: #333;
    font-size: calc(100vw * (18 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 150%;
    /* 27px */
    letter-spacing: -0.36px;
    display: flex;
    height: calc(100vw * (81 / 375));
    flex-direction: column;
    justify-content: center;
    align-self: stretch;
}

.tag__item--head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    justify-self: stretch;
}

.tag__item--bottom {
    width: 100%;
}

.tag__item--bottom .content--btn {
    padding: 4px 8px;
    font-size: calc(100vw * (12 / 375));
    width: calc(100vw * (141.5 / 375));
}

.tag__item--bottom .ic-btn {
    width: calc(100vw * (10 / 375));
    height: calc(100vw * (10 / 375));
}

.hash--tag {
    margin-top: 8px;
}

.hash--tag p {
    color: #999;
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

@media screen and (min-width: 768px) {
    .tag--list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tag__item {
        min-height: 280px;
    }

    .tag__item--ttl {
        font-size: 18px;
        height: unset;
    }

    .tag__item--bottom .content--btn {
        width: 100%;
        font-size: 12px;
    }

    .tag__item--bottom .ic-btn {
        width: 10px;
        height: 10px;
    }

    .hash--tag p {
        font-size: 12px;
    }

    .tag__item--head div {
        min-height: 169px;
    }
}

/* faq */
.faq {
    display: flex;
    padding: 80px 24px 40px 24px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
    background: #FFF;
    padding-bottom: 0;
}

.faq .h4--ttl {
    color: #333;
    margin-bottom: 24px;
}

#info .h4--ttl {
    color: #333;
    margin-bottom: 24px;
}

.faq__accordion {}

.faq__accordion .accordion__head {
    color: #333;
    font-weight: bold;
    padding: 12px 4px 8px 4px;
    border-bottom: none;
    justify-content: center;
    gap: 8px;
}

.faq__accordion .accordion__item:first-child {
    border-top: 1px solid #333;
}

.faq__accordion .accordion__item {
    margin-top: 0;
    border-bottom: 1px solid #333;
}

.faq__accordion .ic-accordion {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.faq__accordion .ic-accordion::after {
    height: 20px;
}

.faq__accordion .ic-accordion::before {
    width: 20px;
}

.faq__accordion .accordion__content {
    background: unset;
    padding-left: 37px;
    padding-top: 0;
    padding-bottom: 12px;

}

.ic-qa {
    content: url(/camp/00079/img/NL-guide_ic_qa.svg);
    width: 18px;
    height: 42px;
}

.faq__head {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
    align-items: center;
}

.txt-link__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.txt-link__content .link__item {
    color: #333;
    display: inline-flex;
}

.txt-link__content .ic-blank {
    background-color: #333;
}

.txt-link__content .content--txt {
    font-weight: 500;

}

@media screen and (min-width: 768px) {
    .txt-link__content {
        justify-content: center;
        flex-direction: row;
        gap: 40px;
        ;
    }

    .faq__accordion .accordion__head {
        justify-content: space-between;
    }

    .faq__content {
        max-width: 800px;
        width: 100%;
        margin: 0 auto;
    }
}

#info {
    padding: 50px 24px 40px 24px;
}

#info .h3--ttl {
    margin-bottom: 32px;
}

.info {
    padding: 24px;
    background: #0A8664;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    align-self: stretch;
}

.info--ttl {
    font-size: calc(100vw * (20 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 140%;
    /* 28px */
    letter-spacing: 0.4px;
    text-align: center;
    color: #FFF
}

.info .txt-link__content .link__item {
    color: #FFF;
    flex-shrink: 0;
}

.info .txt-link__content .ic-blank {
    background-color: #FFF;
}

.info .txt-link__content .content--txt {
    color: #FFF;
    flex-shrink: 0;
}

.info .lists__item--note {
    color: #FFF;
}

.footer {
    background: #000;
    padding: 24px 16px;
}

.footer--link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 16px;
}

.footer--link .link__item {
    color: #FFF;
    font-size: calc(100vw * (10 / 375));
}

.footer--link .ic-blank {
    background-color: #FFF;
    width: calc(100vw * (12 / 375));
    height: calc(100vw * (12 / 375));
}

.footer-copyright {
    color: #FFF;
    text-align: center;
    font-size: calc(100vw * (10 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-top: 24px;
}

@media screen and (min-width: 768px) {
    .info--ttl {
        font-size: 20px;
    }

    .footer--link .link__item {
        font-size: 10px;
    }

    .footer--link .ic-blank {
        width: 12px;
        height: 12px;
    }

    .footer-copyright {
        font-size: 10px;
    }
}

/* kashikin */
.kashikin__area {
    display: flex;

    flex-direction: column;
    gap: 16px;
}

.footer__contents {
    max-width: 800px;
    margin: 0 auto;
}

.kashikin__item {}

.kashikin--ttl {
    color: #DDD;
    font-size: calc(100vw * (14 / 375));
    font-style: normal;
    font-weight: bold;
    line-height: 130%;
    letter-spacing: 0.56px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.kashikin--txt {
    color: #DDD;
    font-size: calc(100vw * (12 / 375));
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */
    letter-spacing: 0.48px;
}

.kashikin__item .lists__item--note .link__item {
    font-size: calc(100vw * (12 / 375));
}

@media screen and (min-width: 768px) {
    .kashikin--ttl {
        margin-top: 20px;
        font-size: 14px;
    }

    .kashikin--txt {
        font-size: 12px;
    }

    .kashikin__item .lists__item--note .link__item {
        font-size: 12px;
    }
}

/* menu */
.kv-area {
    height: 100vh;
    background: #2c3e50;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

/* 追従ナビ本体 */
.js-global-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    /* 初期状態：隠す */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* KVを過ぎた時に付与されるクラス */
.js-global-nav.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* アコーディオン部分 */
.nav-toggle-btn {
    width: 100%;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}

.nav-list-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #FFF;
}

.nav-list-container.is-open {
    max-height: 500px;
    padding: 8px 24px 32px 24px;
}

#js-active-text {
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    color: #000;
}

/* メニュー内のリンク */
.nav-link {
    display: block;
    color: #999;
    padding: 12px 0 12px 15px;
    text-decoration: none;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    transition: 0.3s;
    border-left: 3px solid #999;
}

/* 【重要】現在地の文字をアクティブにする */
.nav-link.is-current {
    color: #0A8664;
    border-left: 3px solid #0A8664;
}

/* 矢印アニメーション */
.arrow {
    transition: transform 0.3s;
}

.is-open .arrow {
    transform: rotate(180deg);
}

@media screen and (min-width: 768px) {
    .nav-list-container {
        padding-top: 18px;
        height: 60px;
        max-height: 60px;
    }

    .nav-list-container ul {
        display: flex;
        justify-content: center;
        gap: 32px;
    }

    .nav-link {
        padding: 0 4px;
        padding-bottom: 6px;
        border-left: none;
    }

    .nav-link.is-current {
        border-left: none;
        border-bottom: 3px solid #0A8664;
    }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
    .nav-list-container ul {
        gap: 10px;
    }
}

@media screen and (min-width: 768px) {
    a:hover {
        opacity: 0.7;
    }

    .tab--btn:hover {
        opacity: 0.7;
    }
}

.mb32 {
    margin-bottom: 32px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.fc-green {
    color: #0A8664 !important;
}

[id^="ex-anc"] {
    scroll-margin-top: 54px;
}

@media screen and (min-width: 768px) {
    [id^="ex-anc"] {
        scroll-margin-top: 60px;
    }
}