@charset "UTF-8";

/* ---------------------
command
--------------------- */
/* page-hero */
.page-hero {
    width: 100%;
    position: relative;
}

.page-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    right: 0;
    width: calc(100% - 8vw);
    height: 100%;
    margin: 0 auto;
    border-left: solid 1px var(--c-border);
    border-right: solid 1px var(--c-border);
}


/* read-top */
.read-top {
    width: 100%;
    margin: 0;
    padding: 3rem 10vw;
    border-bottom: solid 1px var(--c-border);
}

@media (min-width: 1280px) {
    .read-top {
        padding: 5.5rem 14vw;
        text-align: center;
        line-height: 200%;
    }
}


/* title */
.title-h2 {
    font-weight: 600;
    font-size: clamp(26px, 5vw, 36px);
    text-align: center;
    padding: 4rem 10vw;
    margin: 0;
}

.title-h3 {
    font-weight: 600;
    font-size: clamp(20px, 4vw, 28px);
    text-align: center;
    padding: 0;
    margin: 0;
}

.title-h4 {
    font-weight: 600;
    font-size: clamp(18px, 3.5vw, 26px);
    text-align: center;
    padding: 0;
    margin: 0;
}


/* btn */
.btn-blue {
    position: relative;
    display: inline-block;
    background: var(--blue);
    border: solid 1px var(--blue);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    padding: 1.4rem 2.5rem;
    width: 100%;
    max-width: 276px;
    margin: 0 auto;
}

.btn-blue span {
    position: relative;
    z-index: 1;
}

.btn-blue::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--black_33);
    transform: scaleX(0);
    transform-origin: right;
    transition: all 0.5s ease;
    transition-property: transform;
}

.btn-blue:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-blue::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 1.4rem;
    margin: auto 0;
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    background-image: url(../img/common/ico-arrow.svg);
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(142deg) brightness(103%) contrast(103%);
}

.btn-blue.clone::after {
    width: 13px;
    height: 13px;
    background-image: url(../img/common/ico-clone.svg);
}

/* accordion */
.accordion-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}

.accordion-item {
    width: 100%;
    transition: all 0.3s ease;
}

.accordion-title {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 15px 50px 15px 22px;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 500;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: solid 1px var(--c-border);
}

.accordion-title:hover {
    background: var(--c-gry_bg);
}

.is-open .accordion-title {
    color: var(--blue);
}

.accordion-title .num {
    color: var(--blue);
    font-weight: 700;
    white-space: nowrap;
}

.accordion-title::before,
.accordion-title::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 20px;
    height: 2px;
    background: var(--blue);
}

.accordion-title::after {
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

.is-open .accordion-title::after {
    transform: rotate(0deg);
}

.accordion-desc {
    height: 0;
    overflow: hidden;
}

.accordion-desc .inner {
    padding: 18px 22px;
    background: var(--c-gry_bg);
    border-right: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

.accordion-desc .inner p {
    font-size: 16px;
}

@media (min-width: 1024px) {

    .accordion-title {
        padding: 2.1em 5rem;
    }

    .accordion-title::before,
    .accordion-title::after {
        right: 3rem;
    }

    .accordion-desc .inner {
        padding: 1.2rem 5rem;
    }
}

/* ---------------------
sec-faq
--------------------- */
.sec-faq {
    padding: 0 4vw;
    margin: 4rem 0;
    border-top: solid 1px var(--c-border);
}

/* faq-nav */
.faq-nav {
    border-bottom: solid 1px var(--c-border);
}

.faq-nav .nav-list {
    padding: 2rem 3vw;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.faq-nav a {
    text-decoration: none;
    color: var(--black_33);
    font-size: 12px;
}

.faq-nav a:hover {
    color: var(--blue);
}

.faq-nav a::after {
    content: "";
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    margin: 10px auto 0;
    background-image: url(../img/common/ico-arrow.svg);
    transform: rotate(90deg);
}

/* wrap-qa */
.wrap-qa .title-h3 {
    padding: 1.5rem 1rem;
    border-bottom: solid 1px var(--c-border);
}

@media (min-width: 768px) {
    .faq-nav a {
        font-size: 16px;
    }
}


@media (min-width: 1024px) {
    .sec-faq {
        display: grid;
        grid-template-columns: 25% 1fr;
        align-items: stretch;
    }

    /* faq-nav */
    .faq-nav {
        position: relative;
    }

    .faq-nav .nav-list {
        flex-direction: column;
        gap: 2.2rem;
        padding: 7vw 6.2vw;
        position: sticky;
        top: 65px;
    }

    .faq-nav .active a {
        color: var(--blue);
    }

    .faq-nav a::after {
        display: none;
    }

    /* wrap-qa */
    .wrap-qa {
        min-width: 0;
        border-left: solid 1px var(--c-border);
    }
}

/* btm-bnr-guide */
.btm-bnr-guide {
    margin: 4rem 0 8rem;
    border-top: solid 1px var(--c-border);
    border-bottom: solid 1px var(--c-border);
}

.btm-bnr-guide .title-h2 {
    width: calc(100% - 8vw - 2px);
    padding: 1.4rem;
    margin: 0 auto;
    background: var(--c-gry_bg);
    color: var(--blue);
}

.btm-bnr-guide .bnr-wrap {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: calc(100% - 8vw - 2px);
    border-top: solid 1px var(--c-border);
    gap: 0 4vw;
}

.btm-bnr-item {
    text-align: center;
    padding: 2rem;
    width: 100%;
    border-bottom: solid 1px var(--c-border);
}

.btm-bnr-item:nth-last-child(1) {
    border-bottom: none;
}

.btm-bnr-item .title-h4 {
    margin: 0;
}

.btm-bnr-item .mid {
    margin: 10px 0 30px;
}

@media (min-width: 1024px) {
    .btm-bnr-guide .title-h2 {
        margin: 0 auto 4rem;
        border-bottom: solid 1px var(--c-border);
    }

    .btm-bnr-item {
        padding: 4rem 5rem;
        width: calc(50% - 2vw);
        border-left: solid 1px var(--c-border);
        border-right: solid 1px var(--c-border);
    }

    .btm-bnr-item:nth-child(odd) {
        border-left: none;
    }

    .btm-bnr-item:nth-child(even) {
        border-right: none;
    }
}