@charset "utf-8";

#about > *{
    box-sizing: border-box;
    --red:#E92D2D;
    --black:#706767;
    --richBlack:#393434;
    --yellow:#FFFF44;
    --midBlue:#004684;
    --midgreen:#008E84;
    --treeBrown:#985219;
    --footerBg:#F9F4F4;
    --lyeBrown:#9E9478;
    --pink:#F53D87;
    --orange:#FF4E00;
}

#about{
    background:#fefef2;
}

#about ul{list-style:none;}

.kvArea {
    --before-visible: initial;      
    min-height: 400px;
    background: linear-gradient(to bottom, rgba(134,241,226,1) 0%, rgba(65,198,230,1) 57%, rgba(37,133,217,1) 100%);
    padding: 2rem;
    overflow: hidden;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
}

.kvContent {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.kvArea:before {
    content: "";
    display: block;
    background: url("/new/_app/_webroot/img/page/job/kv_building.png") no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

/* about */
.aboutWrapper{
    width: 100%;
    max-width:1200px;
    margin: 0 auto;
    padding:0 2rem;
}


.kvTitle {
    width: 50%;
}

.kvTitle img{
    max-width:100%;
}

.kvSelectNav {
    width: 40%;
}

.kvSelectNav h2 {
    color: #ffffff;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
    font-size: 36px;
    margin: 0 0 3rem 0;
}

.kvSelectNav ul {
    list-style: none;
    padding: 0;
}

.kvSelectNav li {
    margin:2rem 0;
}

.kvSelectNav a {
    color: #ffffff;
    display: inline-block;
    font-size: 23px;
    font-weight: bold;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.35));
    outline: none;
    padding-left: 20px;
    position: relative;
    text-decoration: none;
}

.kvSelectNav a::before {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 24px;
    height: 20px;
    background: url("/new/_app/_webroot/img/page/job/up_arrow.png") no-repeat;
    background-size: cover;
}

.kvSelectNav a.hover-focused::before {
    display: block;
}

.kvSelectNav a.keyboard-focused::before {
    display: block;
}

.aboutLead{
    margin:2rem 0;
    background: linear-gradient(180deg, #e5c08d 0%, #e5c08d 5%, #e2b276 10%, #e5c08d 20%, #d99f5d 30%, #e5c08d 40%, #d28f48 50%, #e5c08d 60%, #bf7630 70%, #e5c08d 80%, #d99f5d 90%, #e5c08d 100%);
    border-radius: 1rem;
    border: 4px solid var(--treeBrown);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
    padding: 1rem;
}

.aboutLeadWrap{
    background:#ffffff;
    padding:2rem;
}

.aboutLeadWrap h3{
    color:#985219;
    font-weight:bold;
    font-size:2rem;
    margin-bottom:1rem;
    text-align: center;
}

.aboutLeadWrap p{
    font-size:1.2rem;
    line-height:1.6;
    color:#985219;
}

.aboutLeadLink{
    color:#810F0F;
    font-weight: bold;
    text-decoration: underline;
}

/* .questHowtoBlock アコーディオンメニュー */
.questHowtoBlock1 details,
.questHowtoBlock2 details{
    margin: 1rem 0 3rem 0;
    border-radius: 4px;
    padding: 1rem;
}

.questHowtoBlock1 summary,
.questHowtoBlock2 summary{
    background:#ffffff;
    box-shadow:0 3px 6px #ccc;
    cursor: pointer;
    font-size:2.4rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    position:relative;
    padding:1.5rem;
}

.questHowtoBlock1 summary{
    color:#004684;
    border-left:7px solid #004684;
}
.questHowtoBlock2 summary{
    color:#008E84;
    border-left:7px solid #008E84;
}

.questHowtoBlock1 summary::marker,
.questHowtoBlock2 summary::marker{
    display: none;
}


.questHowtoBlock1 details[open] summary::before,
.questHowtoBlock2 details[open] summary::before{
    transform: rotate(0deg);
}


.questStepList{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    width: 100%;
    max-width: 700px;
    justify-content: space-between;
    margin:2.5rem auto 0 auto;
}

.questStep{
    max-width:335px;
    background:#ffffff;
    border-radius:7px;
    padding:1rem 1.5rem;
    display:flex;
    flex-direction: column;
    align-items:center;
}

.questHowtoBlock1 .questStep{
    border:1px solid #0666BB;
}

.questHowtoBlock2 .questStep{
    border:1px solid #0666BB;
}

.questHowtoBlock1 .stepTitle,
.questHowtoBlock2 .stepTitle{
    width: 100%;
    font-size:24px;
    font-weight:bold;
    margin:0;
    padding:0 0 0.5rem 0;
    border-bottom:1px solid #707070;
}

.questHowtoBlock1 .stepTitle{
    color:#0666BB;
}

.questHowtoBlock2 .stepTitle{
    color:#008E84;
}

.questHowtoBlock1 .stepTitle span,
.questHowtoBlock2 .stepTitle span{
    font-size:13px;
    margin-left:1rem;
    position:relative;
    top:-2px;
}

.questHowtoBlock1 .stepTitle span{
    color:#004684;
}

.questHowtoBlock2 .stepTitle span{
    color:#025457;
}

.stepText{
    font-size:1.2rem;
    line-height:1.6;
    color:#707070;
    margin:1rem 0;
}

.redBtn{
    display:flex;
    justify-content:center;
    margin:2rem 0 0 0;
}

.redBtn a{
    display: block;
    max-width:256px;
    background:#E92D2D;
    color:#ffffff;
    padding:1rem 2.75rem;
    border-radius:50px;
    font-weight:bold;
    box-shadow:0 3px 0 #810F0F;
}

/*ランクエリア*/
.rankBoxWrap{
    max-width:1100px;
    margin: 0 auto;
    display:flex;
    background:#ffffff;
    border:2px solid #004684;
    padding:60px;
    justify-content: space-between;
    gap:20px;
}

.rankBox{
    width:48%;
    display:flex;
    justify-content:flex-start;
    flex-direction:column;
}

.rankTitle{
    color:#004684;
    font-weight:bold;
    text-align: center;
    margin: 0;
    padding: 0;
    font-size:1.4rem;
}

.rankText{
    font-size:12px;
    line-height:1.8;
    text-align: center;
    color:#707070;
    margin:1rem 0;
    flex-grow: 1;
}

.rankTextLarge{
    font-size:15px;
    line-height:1.6;
    text-align: center;
    color:#707070;
    margin:0.75rem 0 0 0;
    flex-grow: 1;
}

.rankBox a{
    display:inline-block;
    text-align: center;
    text-decoration: underline;
    margin: 0 0 1rem 0;
    padding: 0;
    color:#0666BB;
    font-weight:bold;
    font-size:1.2rem;
}

.rankBox img{
    width: 100%;
    max-width:330px;
    margin: 0 auto;
}


@media screen and (max-width:768px) {
    .kvArea{
        min-height: 450px;
    }

    .kvContent{
        width: 100%;
        margin: 0 auto 0 auto;
        display:flex;
        justify-content: space-around;
        flex-wrap:wrap;
    }

    .kvTitle{
        width:initial;
    }

    .kvSelectNav{
        width:initial;
    }

    .kvSelectNav h2 {
        font-size: 3rem;
        margin: 4rem 1rem;
    }

    .kvSelectNav a {
        padding-left: 2rem;
        font-size: 1.6rem;
    }

    .aboutLead{
        margin:2rem 0;
        background: linear-gradient(180deg, #e5c08d 0%, #e5c08d 5%, #e2b276 10%, #e5c08d 20%, #d99f5d 30%, #e5c08d 40%, #d28f48 50%, #e5c08d 60%, #bf7630 70%, #e5c08d 80%, #d99f5d 90%, #e5c08d 100%);
        border-radius: 1rem;
        border: 4px solid var(--treeBrown);
        box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        padding: 1rem;
    }
    
    .aboutLeadWrap{
        background:#ffffff;
        padding:2rem;
    }
    
    .aboutLeadWrap h3{
        color:#985219;
        font-weight:bold;
        font-size:2rem;
        margin-bottom:1rem;
        text-align: center;
    }
    
    .aboutLeadWrap p{
        font-size:1.3rem;
        line-height:2;
        color:#985219;
    }
    
    .aboutLeadLink{
        color:#810F0F;
        font-weight: bold;
        text-decoration: underline;
    }

    .rankBoxWrap{
        max-width:100%;
        padding:32px;
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:40px;
    }

    .rankBox{
        width: 100%;
    }

    .rankBox a{
        margin: 1rem 0 1rem 0;
        padding: 0;
        color:#0666BB;
        font-weight:bold;
        font-size:1.4rem;
    }

    .questHowtoBlock1 summary,
    .questHowtoBlock2 summary{
        font-size:2rem;
    }

    .questHowtoBlock1 .stepTitle,
    .questHowtoBlock2 .stepTitle{
        font-size:1.6rem;
    }
}