@charset "utf-8";

:root {
    --black: #333333;
    --gray: #b3b3b3;
    --blue1: #1a98ff;
    --blue2: #1127CF;
    --contentsWrapper: calc(100% - 4rem);
    --maxW: 62rem;
    --bdr: 0.4rem;
    --grd: linear-gradient(90deg, var(--blue1), var(--blue2) 80%);
}

html {
    font-family: 'Noto Sans JP', sans-serif;
}

body {
    min-width: initial !important;
}

.wrapper {
    width: var(--contentsWrapper);
    max-width: var(--maxW);
    margin: 6.5rem auto 10rem;
    line-height: 1.3;
    font-size: 1.6rem;
}

.wrapper:has(.oneColumn) {
    margin-top: 2rem;
}

.twostep .wrapper {
    max-width: 48rem;
    margin: 6.5rem auto 10rem;
}

.twostep .wrapper:has(> * #transitionStepOne) {
    margin: 3.5rem auto 10rem;
}

/* --------------------
    header
 -------------------- */
.commonHeader {
    /* background-color: var(--black); */
    background-color: #fff;
    border-bottom: solid 2px #1127CF;
    border-image: linear-gradient(90deg, var(--blue1) 0.6%, #1127CF 70%)1;
}

.commonHeader .headerWrapSp {
    justify-content: space-between;
    align-items: center;
}

.commonHeader .headerWrapSp .headerLogoSp {
    width: initial;
    margin-right: initial;
}

.commonHeader .headerWrapSp .headerLogoSp img {
    width: auto;
    height: 2.2rem;
}

.commonHeader .headerWrapSp .headerAreaListSp {
    width: calc(100% - 14.5rem);
    margin-right: initial;
    justify-content: space-between;
}

.commonHeader .headerWrapSp .headerAreaListSp li {
    padding: initial;
    border-radius: var(--bdr);
    border: 0.1rem solid var(--gray);
}

.commonHeader .headerWrapSp .headerAreaListSp li {
    height: 2rem;
    padding: 0 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #000;
}

.commonHeader .headerWrapSp #menuBtn {
    width: 2.2rem;
    height: 2rem;
    position: relative;
    cursor: pointer;
}

.commonHeader .headerWrapSp #menuBtn:before,
.commonHeader .headerWrapSp #menuBtn:after,
.commonHeader .headerWrapSp #menuBtn span {
    content: '';
    width: 100%;
    height: 0.2rem;
    margin: auto;
    position: absolute;
    /* background-color: var(--colorWhite); */
    background-color: #000;
    transition: top 0.3s, bottom 0.3s, transform 0.3s, opacity 0.3s;
}

.commonHeader .headerWrapSp #menuBtn:before {
    top: 0;
}

.commonHeader .headerWrapSp #menuBtn:after {
    bottom: 0;
}

.commonHeader .headerWrapSp #menuBtn span {
    inset: 0;
}

.commonHeader .headerWrapSp #menuBtn.active:before {
    top: 50%;
    transform: rotate(45deg);
}

.commonHeader .headerWrapSp #menuBtn.active:after {
    bottom: 40%;
    transform: rotate(-45deg);
}

.commonHeader .headerWrapSp #menuBtn.active span {
    opacity: 0;
}

/* formNav */
#formNav {
    width: 100%;
    max-width: 39rem;
    height: 100%;
    padding: 8.5rem 0 3rem;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 9;
    border-left: .1rem solid var(--gray);
    background-color: var(--colorWhite);
    font-size: 1.8rem;
    color: var(--black);
    overflow-y: auto;
    transition: right 0.5s;
    scrollbar-width: thin;
}

#formNav.active {
    right: 0;
}

#formNav .navList>li {
    margin: 0 auto 3rem;
    padding: 0 0 3rem;
    border-bottom: 0.1rem solid var(--colorWhite);
}

#formNav .navList>li:last-of-type {
    margin: 0 auto;
    padding: 0;
    border-bottom: none;
}

#formNav .navList>li .navTitle {
    /* background: linear-gradient(90deg, #82ddff 0.6%, #66ccff 70%); */
    background: transparent;
    /* background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    font-size: 2.4rem;
    border-left: solid 6px #1127CF;
    padding: 0.1em 0.25em;
    font-weight: bold;
    color: #1127CF;
}

#formNav .navList .childNavList {
    margin: 3rem auto 0;
}

#formNav .navList .childNavList li {
    margin: 0 0 3rem 1.5rem;
}

#formNav .navList .childNavList li:last-of-type {
    margin: 0 0 0 1.5rem;
}

/* --------------------
    breadcrumbs
 -------------------- */
.breadcrumbs {
    margin: 0 auto 4rem;
    font-size: 1.2rem;
}

.breadcrumbs .breadcrumbsList li:after {
    content: '';
    width: 0.75rem;
    height: 1em;
    background: url(../img/icon_arrow.svg) no-repeat center / auto 100%;
}

.breadcrumbs .breadcrumbsList li a {
    text-underline-offset: 0.3rem;
}

/* --------------------
    contents
 -------------------- */
.logo {
    width: 15.8rem;
    margin: 0 auto 2rem;
}

.formHeading {
    width: fit-content;
    margin: 0 auto 5rem;
    background: linear-gradient(90deg, var(--blue1) 0.6%, #1127CF 70%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.8rem;
    font-weight: bold;
}

.formDetailText {
    margin-bottom: 1rem;
}

.formDetailText:last-of-type {
    margin-bottom: 3rem;
}

/* =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
    PC
 =-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= */
@media screen and (min-width: 781px) {
    .commonHeader .headerWrapSp {
        padding: initial;
        position: relative;
    }

    .commonHeader .headerWrapSp .headerLogoSp img {
        height: 2.4rem;
    }

    .commonHeader .headerWrapSp .headerAreaListSp {
        max-width: var(--maxW);
        margin: auto;
        justify-content: center;
        position: absolute;
        inset: 0;
    }

    .commonHeader .headerWrapSp .headerAreaListSp li {
        margin-right: 1.5rem;
        font-weight: normal;
        letter-spacing: initial;
    }

    .commonHeader .headerWrapSp .headerAreaListSp li {
        height: 2.2rem;
        padding: 0 0.8rem;
        font-size: 1.4rem;
        color: var(--black);
    }

    .commonHeader .headerWrapSp #menuBtn {
        width: 2.4rem;
        margin-left: auto;
    }

    #formNav {
        padding: 8.5rem 0 3rem;
    }

    #formNav #menuClose {
        top: 1.5rem;
    }

    .wrapper,
    .twostep .wrapper {
        margin: 7.5rem auto 15rem;
    }

    .selectWrapTitle {
        font-size: 1.8rem;
    }

}