@charset "utf-8";

/* スマホ: パンくず（.pnkzWrapper）をメインコンテンツの下へ（#container を flex + order で入れ替え） */
@media only screen and (max-width: 1215px) {
    #container {
        display: flex;
        flex-direction: column;
    }

    #container > header.cmnHeader {
        order: 1;
    }

    #container > .secHero {
        order: 2;
    }

    #container > .main {
        order: 3;
    }

    #container > .pnkzWrapper {
        order: 4;
        height: 3.5rem;
    }

    #container > footer.cmnFooter {
        order: 6;
    }

    #container > *:not(header.cmnHeader):not(.secHero):not(.main):not(.pnkzWrapper):not(footer.cmnFooter) {
        order: 5;
    }
}

/* secHero */
.secHero{
    position: relative;
    height: 40rem;
    overflow: hidden;
    margin-top: 11.5rem;
}
.secHero .imgTit{
    width: 192rem;
    height: auto;
    position: absolute;
    top: 0;
    left: calc(50% - 96rem);
}
@media only screen and (max-width: 1215px) {
    .secHero{
        height: auto;
        margin-top: 6.5rem;
    }
    .secHero .imgTit{
        width: 100%;
        height: auto;
        position: static;
    }
}

/* secPoint */
.secPoint{
    margin-top: 2rem;
}
.secPoint .tit{
    font-size: var(--pcFontSize24);
    text-align: center;
    font-weight: 500;
}
.secPoint .txt{
    font-size: var(--pcFontSize18);
    line-height: calc(40 / 18);
    text-align: center;
    margin-top: 1.5rem;
}
.secPoint .list{
    margin-top: 6rem;
}
.secPoint .item:nth-child(2){
    margin-top: 5rem;
}
.secPoint img{
    width: 100%;
    height: auto;
}
@media only screen and (max-width: 1215px){
    .secPoint{
        margin-top: 3.7rem;
    }
    .secPoint .tit{
        font-size: var(--spFontSize16);
        line-height: calc(24 / 16);
    }
    .secPoint .txt{
        font-size: var(--spFontSize12);
        line-height: calc(26 / 12);
        margin-top: 1rem;
        letter-spacing: -0.1rem;
    }
    .secPoint .list{
        margin-top: 1.6rem;
    }
    .secPoint .item:nth-child(2){
        margin-top: 1.5rem;
    }
}

/* secLoginBox */
.secLoginBox{
    width: 120rem;
    padding: 6.5rem 0 6rem;
    background: var(--ColorTagBg);
    margin: 8rem auto 0;
}
.secLoginBox .tit{
    font-size: var(--pcFontSize22);
    font-weight: 700;
    text-align: center;
}
.secLoginBox .btnLogin{
    width: 60rem;
    height: 9rem;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    box-sizing: border-box;
    font-size: var(--pcFontSize16);
    font-weight: bold;
    margin: 4rem auto 0;
    border: 1px solid var(--colorBorderGray01);
    background: transparent;
    color: var(--textColor);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.4s ease, color 0.4s ease;
}
.secLoginBox .btnLogin::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--textColor);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.4s ease;
    z-index: -1;
}
.secLoginBox .btnLogin:hover {
    opacity: 1;
    border-color: var(--textColor);
    color: var(--whiteColor);
}
.secLoginBox .btnLogin:hover::before {
    transform: scaleX(1);
}
.secLoginBox .icon{
    position: relative;
    z-index: 1;
    padding-right: 3rem;
}
.secLoginBox .icon::after{
    content: "";
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    right: 0;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: url(../img/common/iconArrow.png) center / 0.7rem auto no-repeat var(--colorBgDarkBrown);
}
.secLoginBox .btnLogin:hover .icon::after {
    background: url(../img/common/iconArrowBlack02.png) #fff center / 0.7rem auto no-repeat;
}
@media only screen and (max-width: 1215px){
    .secLoginBox{
        padding: 2.5rem 0 3rem;
        margin: 3rem auto 0;
        width: calc((335 / 375) * 100%);
        margin-inline: auto;
        max-width: 40rem;
    }
    .secLoginBox .tit{
        font-size: var(--spFontSize15);
    }
    .secLoginBox .btnLogin{
        width: 26.5rem;
        height: 4.6rem;
        font-size: var(--spFontSize12);
        margin: 2rem auto 0;
    }
    .secLoginBox .icon{
        padding-right: 2.5rem;
    }
}
/* secConsultation */
.secConsultation{
    width: 120rem;
    margin: 8rem auto 0;
    position: relative;
}
.secConsultation::after{
    content: "";
    position: absolute;
    bottom: -9.5rem;
    left: calc(50% - 0.6rem);
    width: 1.2rem;
    height: 5.6rem;
    background: url(../img/member/iconCircle.png) center / 100% auto no-repeat;
}
@media only screen and (max-width: 1215px){
    .secConsultation{
        width: calc((335 / 375) * 100%);
        margin-inline: auto;
        max-width: 40rem;
        margin: 5rem auto 10rem;
    }
    .secConsultation::after{
        bottom: -7.5rem;
    }
}

.wpcf7-not-valid-tip {
    display: block !important;
    background: url(../img/common/iconError.png) left 2px / 14px auto no-repeat;
    width: 100%;
    color: #F00 !important;
    font-size: 12px !important;
    line-height: 1.5;
    padding: 0 0 0 17px;
    margin-top: 10px;
}
.wpcf7 form .wpcf7-response-output {
    margin: 4rem auto;
    font-size: var(--pcFontSize18);
    padding: 3rem;
}
@media only screen and (max-width: 1215px){
    .wpcf7 form .wpcf7-response-output {
        margin: 2rem auto !important;
        font-size: var(--spFontSize14) !important;
        padding: 1.5rem !important;
        line-height: 1.5 !important;
    }
}

/* memberForm password */
.memberForm .passIn {
    position: relative;
    width: 100%;
    max-width: 50rem;
}
.memberForm .passIn p:not(.iconEye) {
    margin: 0;
}
.memberForm .passIn .wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}
.memberForm .passIn input[name="f_item_password"] {
    padding-right: 5rem;
}
.memberForm .iconEye {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 2rem;
    height: 1.8rem;
    margin: 0;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}
.memberForm .iconEye img {
    display: block;
    width: 100%;
    height: auto;
    opacity: 0.45;
}
.memberForm .iconEye.isShow img {
    opacity: 1;
}
@media only screen and (max-width: 1215px){
    .memberForm .passIn {
        max-width: 100%;
    }
    .memberForm .passIn input[name="f_item_password"] {
        padding-right: 4rem;
    }
    .memberForm .iconEye {
        right: 1rem;
    }
}