@charset "UTF-8";

/*-----responsive-----*/
@media(max-width:1024px) {
    /*---grid-clear---*/
    #indexHeadContainer,
    .headerInfoContWrapInner{
        display: block !important;
    }
    #indexHeadContainer *,
    #headerInfoWrap{
        grid-row:unset !important;
        grid-column:unset !important;
    }
}

/*------index-header, nav------*/
#mainFunc{
    display:block !important;
    @media(min-width:1023px) and (max-height:900px) {
        width:100vw;
        position:fixed;
        margin:0;
        padding:0;
        bottom:0;
        z-index:999;
        & p{
            font-size:0.9em !important;
            & p{
                font-size:1em !important;
            }
        }
        & a{
            padding-top:var(--marginSmall);
            &::before{
                width:45px;
                height:45px;
            }
        }
    }   
}
#indexHeadWrap{
    height: 530px;
    background: #0D65FB url(/img/bg_index.jpg) right / cover no-repeat;
    @media(min-width:1400px) {
        height: 680px;
        background: #0D65FB url(/img/bg_index_wide.jpg) right bottom / cover no-repeat;
    }
    @media(max-width:1024px) {
        background: #0D65FB url(/img/bg_sp_index.jpg) bottom right / cover no-repeat;
    }
    @media(max-width:767px) {
        background: #0D65FB url(/img/bg_sp_index.jpg) bottom right / contain no-repeat;
        /*#4097F6*/
        height: 500px;
    }
    & header::before,
    & header::after{
        position: absolute;
        display: block;
        content:"";
        width: var(--marginNoWrapWidth);
        background-color: var(--orange);
        @media(max-width:1024px) {
            display:none !important;
        }
    }
    & header::before{
        height:106px;
        top:54px;
        left:0;
    }
    & header::after{
        height:12.8px;
        right:0;
        top:0;
    }
}
#indexHeadContainer{
    width:var(--primaryWidth);
    height:160px;
    margin:0 auto;
    display: grid;
    grid-template-rows: 60px 1fr;
    grid-template-columns: 300px 1fr;
    background: url(/img/headerBg.svg) no-repeat top center;
    font-size: var(--fontMini);
    @media(max-width:1024px) {
        height:100px;
        background: url(/img/headerBgSp.svg) bottom left / contain no-repeat;
        position:relative;
        &::before{
            content:"";
            width:100%;
            height:30px;
            position:absolute;
            top:0;
            background:var(--orange);
        }
    }
    @media(max-width:767px) {
        height:100px;
        background: url(/img/headerBgSp.svg) top left / cover no-repeat;
    }
    & #headerLogoWrap{
        height:160px;
        position: relative;
        grid-row: 1 / 3;
        grid-column: 1 / 2;
        & img{
            position: absolute;
            top:50%;
            transform: translateY(-50%);
            width:95%;
        }
        @media(max-width:1024px) {
            height:100px;
            & img{
                width:300px;
                top: 65px;
                padding-left:var(--marginSmall);
            }
        }
        @media(max-width:767px) {
            height:100px;
            & img{
                width:calc(100vw - 247.5px);
                top: 65px;
                transform:none;
            }
        }
/*
        &:not(:lang(ja)){
            & img{
                display: none !important;
            }
            &::before{
                content: "";
                display: block;
                position: absolute;
                width:95%;
                height: 100%;
                top:50%;
                transform: translateY(-50%);
                left:0;
                background: url(/img/logo-w_en.svg) center / contain no-repeat;
                @media(max-width:1024px) {
                    width:300px;
                    top:65px;
                    left:var(--marginSmall);
                }
                @media(max-width:767px) {
                    width:calc(100vw - 247.5px);
                    top:65px;
                    left:var(--marginSmall);
                }    
            }
        }*/
    }
    & nav{
        grid-row: 1 / 2;
        grid-column: 2 / 3;
        & .navButtonWrap{
            top:40px;
        }
    }
    & #headerInfoWrap{
        grid-row: 2 / 3;
        grid-column: 2 / 3;
        padding-top:var(--marginMiddle);
        z-index:0 !important;
        & .headerInfoContWrapInner{
            display: grid;
            grid-template-rows: 40px 40px;
            grid-template-columns: 120px 1fr 180px;
            & .headerInfoTitle{
                grid-row: 1 / 3;
                grid-column: 1 / 2;
                padding-left:var(--marginSmall);
                display: flex;
                align-items: center;
                text-align: center;
                background: var(--whiteAlpha);
            }
            & .headerInfoContWrap{
                grid-row: 1 / 3;
                grid-column: 2 / 3;
                background: var(--white);
                & .headerInfoDayWrap{
                    position: relative;
                    display: flex;
                    padding:var(--marginSmall);
                }
                & .headerInfoDay{
                    position: absolute;
                    top:50%;
                    transform: translateY(-50%);
                    left:var(--marginSmall);
                }
                & .headerInfoStatus{
                    padding:1px 10px;
                    background:var(--red);
                    color:var(--white);
                }
            }
            & .headerInfoLink{
                & p{
                        margin: 0 var(--marginSmall);
                        height:40px;
                        line-height: 40px;
                        overflow: hidden;
                        display: -webkit-box;
                        text-overflow: ellipsis;
                        -webkit-box-orient: vertical;
                        -webkit-line-clamp:1;
                        line-clamp: 1;
                        text-decoration: underline;
                    }
                    & :hover{
                        transition: var(--transSecShort);
                        color:var(--orange);
                    }
               }
            }
            @media(max-width:1024px) {
                width:var(--spContainerWidth);
                margin:0 auto;
                position:relative;
                & .headerInfoTitle{
                    padding:var(--marginSmall);
                    background:transparent !important;
                    border:var(--borderWidth) var(--white) solid;
                    border-radius:var(--kadomaruUe);
                    color:var(--white);
                    font-weight:bold;
                }
            }
        }
        & .headerInfoLinkForList{
            grid-row: 1 / 3;
            grid-column: 3 / 4;
            display:flex ;
            align-items: center;
            background:var(--white);
            & .txtBtn{
                padding: 12px 12px 12px var(--marginLarge);
                width:calc(100% - var(--marginSmall));
            }
            & .txtBtn::before{
                width:20px;
                height:20px;
            }
            & .txtBtn:hover::before{
                left:9px;
                transition: var(--transSec);
            }
            @media(max-width:1024px) {
                position:absolute;
                top:15px;
                right:0;
                background:transparent;
                & .txtBtn{
                    font-weight:normal !important;
                    width:fit-content;
                    border:none;
                    color:var(--white) !important;
                    background:transparent;
                    text-decoration:underline;
                    & p{
                        text-decoration:underline;
                    }
                    &::before{
                        width:15px;
                        height:15px;
                        background:url(/img/icon_arrow-right-wh.svg) center / contain no-repeat !important;
                    }        
                }
            }
        }
    }  
.indexLead{
    width:100%;
    margin:var(--marginSmall) auto 0 0;
    color:var(--white);
    & div{
        width:var(--primaryWidth);
        padding:var(--marginMiddle) var(--marginLarge) var(--marginLarge) 0;
        margin: 0 auto;
    }
    & h1,
    & h2{
        line-height: 1.5em;
        padding-bottom:var(--marginSmall);
        text-shadow: 2px 2px 3px rgba(6, 11, 22, 0.6);
    }
    & h1{
        width:fit-content;
        margin-bottom:var(--marginSmall);
    }
    & h2{
        font-size:var(--fontMini);
        width:250px;
    }
    @media(max-width:1024px) {
        & div{
            width:var(--spContainerWidth);
            position:absolute;
            top:230px;
            left:50%;
            transform:translateX(-50%);
            padding:0;
            & h1,
            & h2{
                padding:0;
                color:var(--white);
                background:transparent;
            }        
            & h1{
                margin-bottom:var(--marginMiddle);
                padding-top:17px;
                line-height:1.5em !important;
                font-size:1.2em;
            }
            & h2{
                font-weight:normal;
                &::before{
                    content:"\025ce";
                    margin-right:3px;
                }
                &:not(:last-child){
                    margin-bottom: 4px !important;
                }
            }
        }
    }
}

/*------operationStatus------*/
#operationStatus{
    width: 100%;
    background: linear-gradient(
        90deg,
        var(--gray) 0%,
        var(--gray) 50%,
        var(--white) 50%,
        var(--white) 100%
        );
    position: relative;
        &::after{
            position: absolute;
            display: block;
            content:"";
            width:calc( (100% - var(--primaryWidth)) / 2 );
            height:70px;
            top:0;
            right:0;
            background: var(--black);
            overflow: hidden;
        }
    @media(max-width:1024px) {
        background:transparent;
    }
}
.operationStatusWrap{
    width: var(--primaryWidth);
    margin:0 auto;
    display: grid;
    grid-template-rows: 70px 1fr;
    grid-template-columns: 203px 1fr;
    @media(max-width:1024px) {
        grid-template-rows: fit-content 1fr;
        grid-template-columns: 120px 1fr;    
    }
}
.topFreeWrap{
    grid-row: 1 / 3 ;
    grid-column: 1 / 2 ;
    position: relative;
    max-height: 210px;
    overflow: hidden;
    margin:3px;
    &::after{
        position: absolute;
        top: 0;
        left:0;
        content: '';
        border-top:7px solid var(--gray);
        border-left:7px solid var(--gray);
        border-right: 7px solid var(--orange);
        border-bottom: 7px solid var(--orange);
        box-sizing: border-box;
    }
    &::before{
        position: absolute;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        top: 0;
    }
    &:hover::before{
        transition: var(--transSec);
        -moz-transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    & p{
        position: absolute;
        width:90%;
        bottom:var(--marginSmall);
        left:50%;
        transform: translateX(-50%);            
        padding:var(--marginSmall);
        text-align: center;
        font-weight: bold ;
        color: var(--white);
        border:2px solid var(--white);
        background: rgba(0, 0, 0, .4);
    }
    &.all{
        &::before{
            background: url(/img/bg_os_all.jpg) bottom center / cover no-repeat;
        }
        &:hover::before{
            opacity: .6;
        }    
    }
    &.login{
        &::after{
            border-right: 7px solid var(--deepgray);
            border-bottom: 7px solid var(--deepgray);
        }
        &::before{
            background: var(--deepgray) url(/img/bg_noQR.svg) bottom center / contain no-repeat;
            @media(max-width:1024px) {
                background: var(--deepgray) url(/img/bg_noQR.svg) center / contain no-repeat;
            }
        }
        & p{
            font-weight: normal ;
            border:none;
            background: none;
            color: var(--grayblack);
            opacity: .8;
        }
        &:hover{
            &::before{
                opacity: 1;
                cursor: default !important;
                -moz-transform: none;
                -webkit-transform: none;
                -ms-transform: none;
                transform: none;
            }
            & p{
                cursor: default !important;
            }
        }
    }
    &.loginQR{
        & p{
            border-radius: var(--kadomaru);
        }
        &:hover{
            &::before{
                opacity: .6;
            }
            & p{
                cursor: default !important;
                background:var(--white) !important;
                transition: var(--transSec) !important;
            }
        }
        &.haneda{
            &::before{
                background: var(--hanedaRight) url(/img/bg_QR_haneda.svg) bottom center / contain no-repeat;
            }
            &::after{
                border-right: 7px solid var(--haneda);
                border-bottom: 7px solid var(--haneda);
            }
            & p{
                background:var(--haneda);
                border-color: var(--haneda);
            }
            &:hover p{
                    color: var(--haneda);
            }
        }
        &.narita{
            &::before{
                background: var(--naritaRight) url(/img/bg_QR_narita.svg) bottom center / contain no-repeat;
            }
            &::after{
                border-right: 7px solid var(--narita);
                border-bottom: 7px solid var(--narita);
            }
            & p{
                background:var(--narita);
                border-color: var(--narita);
            }
            &:hover p{
                color: var(--narita);
            }
        }
    }
    @media(max-width:1024px) {
        max-height: 180px;
        margin:3px 3px 0 0;
        font-size:var(--fontSpMin);
        background:var(--rightgray);
    }
}
.operationStatusMain{
    grid-row:  1 / 2 ;    
    grid-column: 2 / 3 ;
    display: flex;
    align-items: center;
    position: relative;
    padding-left:calc(var(--marginLarge) + 70px );
    color:var(--white);
    background: var(--black);
    @media(max-width:1024px) {
        padding:0 var(--marginSmall) 0 42px;
    }
    & > p{
        &::before{
            position: absolute;
            width:50px;
            height: 50px;
            display: block;
            content: "";
            top:50%;
            left: var(--marginLarge);
            transform: translateY(-50%);
        }   
        &.operationStatusOK::before{
            background:url(/img/icon_os-OK.svg) center / contain no-repeat;
        }
        &.operationStatusCaution::before{
            background:url(/img/icon_os-caution.svg) center / contain no-repeat;
        }
        &.operationStatusNoOpe::before{
            background:url(/img/icon_os-noOpe.svg) center / contain no-repeat;                   
        }
        @media(max-width:1024px) {
            left: var(--marginMiddle);
            &::before{
                left:var(--marginSmall);
                width: 25px;
                height: 25px;
            }
            & span{
                font-size:0.9em;
            }
        }
    }
    & .txtBtn{
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right:0;
        margin:0;
        font-size:var(--fontMini);
        border:none;
        @media(max-width:1024px) {
            width:fit-content;   
            top: auto;
            transform: translateY(0);
            bottom:-45px;
            padding:15px var(--marginSmall) 15px 35px;
            background:transparent;
            & p{
                text-decoration:underline;
            }
            &::before{
                width:20px;
                height:20px;
            }
        }
    }
}
.operationStatusTxt{
    grid-row:  2 / 3 ;    
    grid-column: 2 / 3 ;   
    padding:var(--marginLarge);
    background:var(--white);
    @media(max-width:1024px) {
        padding:50px var(--marginSmall) var(--marginSmall);
        font-size:var(--fontMini);
    }
}
.sfContainer{
    display: flex;
/*    justify-content: space-between;*/ /*if .sfBContact display*/
    justify-content: space-evenly;
    text-align: center;
    &  > div{
        width:32%;
        &  > img{
            width:80px;
            margin: 0 auto var(--marginLarge) auto;
        }
        & > p{
            margin-bottom:var(--marginLarge);
        }       
    }   
    & .txtBtn{
        height: 5.5em;
        display: flex;
        align-items: center;
        & p{
            text-align: center;
            width: fit-content;
            margin: 0 auto;
        }
    }
    & .sfBContact{
        display: none !important;
    }
    @media(max-width:1024px) {
        display:block;
        & br{
            display:none;
        }
        &  > div{
            width:100%;
            margin-top:var(--marginMiddle);
            &:not(.sfHelp){
                margin-top:var(--marginLarge);
            }
            & > img{
                width:60px;
                margin: 0 var(--marginMiddle) var(--marginMiddle) auto;
                float:left;
            }
            & > p{
                width:100%;
                margin: 0!important;
                text-align:left;       
                &::after{
                    content:""
                    clear:both;
                    display:block;
                }         
            }
            & .txtBtn{
                width:90%;
                height:fit-content;
                line-height:2em;
                margin:var(--marginMiddle) auto 0 auto;
                padding:var(--marginMiddle) var(--marginMiddle) var(--marginMiddle) 45px;
                & p:only-child{
                    line-height:inherit;
                }
            }
        }
    }
    &:lang(en){
        & .sfHelp > p,
        & .sfBarrier > p,
        & .sfBContact > p{
            display:none !important;
        }
        @media(max-width:1024px) {
            & > div > img{
                float:none !important;
            }
            & > div > p{
                text-align:center;
            }
        }
    }    
}

.halfContainerWrap:has(.imgAirToBus) .container:first-child{/*haneda*/
    & .containerTitle{
        border-left:var(--haneda) 10px solid;
    }
    & .txtBtn{
        padding:var(--marginMiddle) var(--marginMiddle) var(--marginMiddle) 100px;
        & p{
            width: 100%;
            text-align: left !important;
        }
        &::before{
            width:80px;
        }
        &:nth-last-child(3)::before{ /*from HANEDA*/
            background: url(/img/img_Air_HND_from.svg) center / contain no-repeat;
        }
        &:nth-last-child(2)::before{ /*HANEDA to NARITA*/
            background: url(/img/img_Air_HND_toNRT.svg) center / contain no-repeat;
        }
        &:last-child::before{ /*to HANEDA*/
            background: url(/img/img_Air_HND_to.svg) center / contain no-repeat;
        }
    }
}
.halfContainerWrap:has(.imgAirToBus) .container:nth-child(2){/*narita*/
    .containerTitle{
        border-left:var(--narita) 10px solid;
    }
    & .txtBtn{
        padding:var(--marginMiddle) var(--marginMiddle) var(--marginMiddle) 100px;
        & p{
            width: 100%;
            text-align: left !important;
        }
        &::before{
            width:80px;
        }
        &:nth-last-child(3)::before{ /*from NARITA*/
            background: url(/img/img_Air_NRT_from.svg) center / contain no-repeat;
        }
        &:nth-last-child(2)::before{ /*NARITA to HANEDA*/
            background: url(/img/img_Air_NRT_toHND.svg) center / contain no-repeat;
        }
        &:last-child::before{ /*to NARITA*/
            background: url(/img/img_Air_NRT_to.svg) center / contain no-repeat;
        }
    }
}
.halfContainerWrap:has(.imgAirToBus) .containerInner{
    text-align: center;
    & .txtBtn{
        width:var(--halfContainerIn);
        margin:0 auto;
        & p{
            text-align: center;
        }
    }
    & .imgAirToBus{
        width:200px;
        margin:var(--marginLCenterBottom);
    }
    & .imgAirToBus + p{
        margin:var(--marginLCenterBottom);
    }    
    @media(max-width:1024px) {
        & .txtBtn{
            width:90%;
        }
        & .imgAirToBus{
            margin:var(--marginMiddle) auto;
        }
        & .imgAirToBus + p{
            margin: 0 auto var(--marginMiddle) auto;
        }        
    }
}
.halfContainerWrap:has(.imgAirToBus) .txtBtn + .txtBtn{
    margin-top: var(--marginMiddle);
}

.pointWrap{
    display: flex;
    @media(max-width:1024px) {
        display:block;
    }
}
.pointWrapInner{
    display: flex;
    justify-content: space-between;
    width:var(--halfContent);
    text-align: center;
    &:first-child{
        margin-right:var(--marginLarge);
    }
    & img{
        margin-bottom:var(--marginLarge);
    }
    & div:only-child img{
        width:100%;
    }
    & div:only-child p:last-child{
        font-size:.8em;
        font-weight: normal !important;
    }
    @media(max-width:1024px) {
        display:block;
        width:var(--primaryWidth);
        & br{
            display:none;
        }
        &:first-child{
            margin-right:0;
            & > div{
                display:flex;
                align-items:center;
                margin:var(--marginMiddle) auto 0 auto;
                & img{
                    width:30%;
                    margin:0 15px 0 0;
                }
                & p{
                    text-align:left;
                    font-weight:bold;
                    color:var(--navy);
                }
            }
        }
        &:nth-child(2){
            border:var(--borderWidth) var(--rightblue) solid;
            border-radius:var(--kadomaru);
            margin-top:var(--marginMiddle);
            padding:var(--marginMiddle);
            color:var(--navy);
            font-weight:bold;
            & img{
                margin-bottom:var(--marginMiddle);
            }
        }
    }       
}

.containerColorLabel{
    position: relative;
    width:100%;
    height:6em;
    margin-top:80px;
    padding:var(--marginMiddle);
    color: var(--white);
    &> p:first-child{
        position: absolute;
        top:50%;
        transform: translateY(-50%);
    }
    & + div a{
        position: relative;
        padding:var(--marginLarge);
        border-radius: var(--kadomaruShita);
        font-weight: bold;
        background: var(--white);
        border-top:none;
    }
    & + div a:hover{
        transition: var(--transSec);
        border-top:none;
    }
    & + div a::after{
        position: absolute;
        display: block;
        content: "";
        width:100%;
        height:2em;
        top:50%;
        transform: translateY(-50%);
        right:var(--marginLarge);
    }   
    @media(max-width:1024px) {
        margin-top:0; 
        & + div a{
            padding:var(--marginMiddle);
            & p{
                width:90%;
            }
        }    
    }
}
.indexCompanyContainer{
    background: url(/img/bg_index-company.jpg) top center / contain no-repeat;
    & .containerColorLabel{
        background-color: var(--orange);
        & img{
            width:var(--halfContainerIn);
        }
    }
    & a{
        border:var(--borderWidth) solid var(--white);
    }
    & a:hover{
        border:var(--borderWidth) solid var(--orange);
        background-color: var(--rightorange);
    }
    & a::after{
        background:url(/img/icon_arrow-right.svg) no-repeat right;
    }
}
.indexRecruitContainer{
    background: url(/img/bg_index-recruit.jpg) top center / contain no-repeat;
    & .containerColorLabel{
        background-color: var(--navy);
    }
    & a{
    border:var(--borderWidth) solid var(--white);
    }
    & a:hover{
        border:var(--borderWidth) solid var(--navy);
        background-color: var(--rightnavy);
    }
    & a::after{
        background:url(/img/icon_window.svg) no-repeat right;
    }
}
@media(max-width:1024px) {
    .indexCompanyContainer,
    .indexRecruitContainer{
       padding-top:17vw !important;
    }
}

/*-----information--------------*/
.container:has(.informaitionWrap){
    position: relative;
    & .txtLink{
        position:absolute;
        top:var(--marginLarge);
        right:var(--marginLarge);
        height: 2em;
    }
    @media(max-width:1024px) {
        & .txtLink{
            right:10px;
        }
    }
}
ul.informaitionWrap{
    list-style-type: none;
    & li{
        padding: var(--marginMiddle) 0 0 0;
        & > div{
            display: flex;
            }
        }
    & li:not(:last-child){
        border-bottom:var(--borderWidth) solid var(--gray);
        & a{
            padding:var(--marginMiddle) 0;
        }
    }
    & li:last-child a{
        padding:var(--marginMiddle) 0 0 0;
    }
    & a{
        text-decoration: underline !important;
        & p{
            overflow: hidden;
            display: -webkit-box;
            text-overflow: ellipsis;
            -webkit-box-orient: vertical;
            -webkit-line-clamp:1;
            line-clamp: 1;
            text-decoration: underline;    
        }
    }
    & a:hover{
        transition: var(--transSecShort);
        color: var(--orange);
    }
}
.headerInfoStatus,
.informaitionWrap p.infoImportant{
    padding:1px 10px;
    background:var(--cautionred);
    color:var(--white);
}
    .headerInfoStatus{
        margin-left:10em;
    }
    .informaitionWrap p.infoImportant{
        margin-left:1em;
    }

#snsShareWrap{
    width:var(--primaryWidth);
    margin:var(--marginLarge) auto 0 auto;
    text-align: center;
    & > div{
        width:280px;
        margin:var(--marginMiddle) auto 0 auto;
        display: flex;
        justify-content: space-between;
    }
    & div:where(.fbLink, .xLink, .lineLink){
        width:70px;
        height: 70px;
        border-radius: 50%;
        cursor: pointer;
        background: center / contain no-repeat;
        &:hover{
            background-color:rgba(255,255,255,0.6);
            background-blend-mode:lighten;
            transition: var(--transSec);
        }
    }
    & div.fbLink{
        background-image:url(/img/icon_sns_fb.svg);
    }
    & div.xLink{
        background-image:url(/img/icon_sns_x.svg);
    }
    & div.lineLink{
        background-image:url(/img/icon_sns_line.svg);
    }
    @media(max-width:1024px) {
        & > div{
            width:260px;
        }
        & div:where(.fbLink, .xLink, .lineLink){
            width:60px;
            height: 60px;
        }    
    }
}

#bannerWrap{
    width:var(--primaryWidth);
    margin:var(--marginLarge) auto 0 auto;
    & div{
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        & a{
            width: calc((var(--primaryWidth) - var(--marginSmall)*2) / 3);
            &:nth-child( n + 4){
                margin-top: var(--marginSmall);
            }
            &:not(:nth-child(3n)){
                margin-right: var(--marginSmall);
            }
            & img{
                width: 100%;
                &:hover{
                    opacity: .6;
                    transition: var(--transSec);
                }
            }
        }
    }
    @media(max-width:1024px) {
        width:var(--spContainerWidth);
        justify-content:space-between;
        & div{
            & a{
                width: calc((100% - var(--marginSmall)) / 2);
                &:nth-child( n + 4){
                    margin-top:0;/*reset*/
                }
                &:not(:nth-child(3n)){
                    margin-right:0;/*reset*/
                }
                &:nth-child( n + 3){
                    margin-top: var(--marginSmall) !important;
                }
                &:not(:nth-child(2n)){
                    margin-right: var(--marginSmall) !important;
                }
                & img{
                    width: 100%;
                }
            }
        }
    }
}

/*------------footer-----------------*/
footer{
    @media(min-width:1023px) and (max-height:900px) {      
        z-index:10000;
    }
}

/*-----text-size-responsive--------------*/
/*body.textSmall{

}*/
body.textLarge{
    & .topFreeWrap{
        &.login{
            &::before{
                background: var(--deepgray) url(/img/bg_noQR.svg) top center / contain no-repeat;
            }
            & p:lang(en){
                font-size:80% !important;
            }
        }
        &.loginQR{
            & p{
                border-radius: var(--kadomaru);
                font-size:90% !important;
            }
        }
        @media(max-width:1024px) {
            &.login p,
            &.loginQR p{
                font-size:80% !important;
            }
        }
    }
    & .indexLead h2{
        font-size:80% !important;
        width:100%;
    }
    & .topFreeWrap p{
        @media(max-width:1024px) {
            font-size: 60% !important;
        }
    }
    & .operationStatusMain {
        @media(min-width:1023px) {
            & .txtBtn{
                margin-top:85px;
                border:var(--borderWidth) var(--deepgray) solid;
                &:hover{
                    border:var(--borderWidth) var(--orange) solid;

                }
            }
        }
        @media(max-width:1024px) {
            font-size:80% !important;
            & .txtBtn{
                bottom:-60px;
            }
        }
    }
    & .operationStatusTxt{
        @media(min-width:1023px) {
            padding-top: 100px;
        }
    }
    & .sfContainer{
        & > div > p{
            text-align: left;
            @media(min-width:1023px) {
                min-height: 4.5em;
            }
            & br{
                display: none;
            }
        }
        & .txtBtn{
            height:fit-content !important;
            padding:var(--marginMiddle) var(--marginMiddle) var(--marginMiddle) 55px;
            & p{
                line-height: 1.3em;
            }
        }
    }
    & .halfContainerWrap:has(.imgAirToBus) .containerInner{
        @media(max-width:1024px) {
            & .imgAirToBus + p{
                text-align:left;
                & br{
                    display:none;
                }
            }
        }
    }
    & ul.informaitionWrap{
        & li{
            font-size:90% !important;
            & .infoImportant{
                width: fit-content;
                margin-left: 5px !important;
            }
        }
    }
    & .pointWrapInner{
        text-align:left !important;
        @media(min-width:1023px) {
            &:first-child div:nth-child(2){
                margin: 0 5px !important;
                padding: 0 5px !important;
                & p{
                    padding: 0 5px !important;
                    border-right:2px solid var(--gray);
                    border-left:2px solid var(--gray);
                }
            }
        }
    }
}