@charset "UTF-8";

#page-recruit .graphic{
    position: absolute;
    top: 0;
    right: 0;
    width: 30vw;
}

@media screen and (min-width: 768px) {
    #page-recruit .graphic{
        top: 50%;
        right: 0;
        transform: translate(-50%, -50%);
        width: unset;
    }
 } 

.link-wrap {
    padding: 100px 0;
}

.link-box {
    position: relative;
    width: 100%;
    height: 35vw;
    overflow: hidden;
}
.link-box:first-child{ 
    margin-bottom: 50px;
}


@media screen and (min-width: 768px) {
    .link-wrap {
        padding: 150px 0;
    }
    
    .link-box {
        width: 50%;
        height: auto;
    }

    .link-box:first-child{ 
        margin-bottom: 0;
    }
    
    
} 

.link-box span::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: 600;
    font-size: 7.5vw;
    transition: 0.3s;
    z-index: 99;
    white-space: nowrap;
}

@media screen and (min-width: 768px) {
    .link-box span::after {
        font-size: 40px;
    }
} 
.link-box.-whoweare a span::after {
    content: "私たちについて";
}
.link-box.-services a span::after {
    content: "事業について";
}
.link-box.-whoweare a:hover span::after {
    content: "WHO WE ARE";
    color: #02ADD1;
}
.link-box.-services a:hover span::after {
    content: "SERVICES";
    color: #02ADD1;
}

.link-box a img {
    transition: 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
} 

@media screen and (min-width: 768px) {
    .link-box a img {
        transition: 0.3s ease;
        position: static;
        transform: none;
    } 
} 

.link-box a:hover img {
    transform: translate(-50%, -50%) scale(1.15);
}

@media screen and (min-width: 768px) {
    .link-box a:hover img {
        transform: scale(1.15);
    }
} 

.culture{
    background-color: #222;
    /* padding: 150px 0; */
    padding-top: 100px;
    position: relative;
}

@media screen and (min-width: 768px) {
    .culture{
        padding-top: 150px;
    }    
  } 

.culture::before{
    content: "OUR CULTURE";
    position: sticky;
    color: rgba(255, 255, 255, 0.05);
    font-size: 12vw;
    font-family: "Roboto", system-ui;
    font-weight: 700;
    top: 30%;
    left: 50%;
    text-align: center;
    line-height: 1.3;
    display: block;
}

@media screen and (min-width: 768px) {
    .culture::before{
        font-size: 160px;
        /* top: 50%;
        left: 50%; */
    }
} 

.howwework {
    padding-bottom: 150px;
}

/* accordion-base */
.accordion-container {
    margin: 0 0 50px;
    width: 100%;
}
.culture .accordion-container {
    max-width: 700px;
}

.accordion-list:not(:first-child) {
    margin-top: 10px;
}

.accordion-title {
    background: #fff;
    cursor: pointer;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
    padding: 30px 40px;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all .3s ease-in-out;
}

.faq .accordion-title {
    margin-top: 1em;
    font-size: 4vw;
    text-indent: -1.5em;
}

@media screen and (min-width: 768px) {
    .faq .accordion-title {
        font-size: 2rem;
        text-indent: unset;
    }
    
} 

.accordion-title span{
    color: #02ADD1;
    font-size: 1.2em;
    padding-right: 0.25em;
}

.culture .accordion-title {
    background: transparent;
    cursor: pointer;
    font-size: 5vw;
    font-weight: 600;
    color: #02ADD1;
    padding: 20px 40px;
    position: relative;
    border-bottom: 1px solid #fff;
    transition: all .3s ease-in-out;
}

@media screen and (min-width: 768px) {
    .culture .accordion-title {
        font-size: 2rem;
    }
  } 

.accordion-title:after {
    position: absolute;
    display: block;
    content: '';
    top: 45%;
    right: 22px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(135deg);
    transition: all .3s ease-in-out;
}

.culture .accordion-title:after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.accordion-title.open:after {
    transform: rotate(-45deg);
    top: 45%;
}

.accordion-title.open {
    background: #fff;
}

.accordion-text {
    border-bottom: none;
    display: none;
    padding: 0 40px 20px;
    background-color: #fff;
}

.accordion-text p span{
    font-size: 2rem;
    font-weight: 600;
    display: block;
}

#page-recruit .culture .more-btn-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits .row{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 150px;
}
@media screen and (min-width: 601px) and (max-width: 1120px) {
    .benefits .row{
        width: 60%;
        margin: 0 auto;
    }
  }

.card {
    width: 48%;
    height: 240px;
    perspective: 1000px;
    font-weight: 600;
    margin-bottom: 50px;
}

@media screen and (min-width: 768px) {
    .card {
        width: 250px;
        height: 300px;
        margin-bottom: none;
    }
} 


.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card:hover .card-inner, .card.is-flipped .card-inner {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.card-front {
    background-color: #fff;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 10px;
}

.card-front img{
    max-width: 25vw;
}

.card-front h4{
    font-size: 4vw !important;
    margin-top: 1em;
}

@media screen and (min-width: 768px) {
    .card-front img{
        max-width: 130px;
    }

.card-front h4{
    font-size: 20px !important;
    margin-top: 50px;
}

  } 

.card-back {
    background-color: #ddd;
    color: black;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center;  */
    text-align: center;
    border-radius: 10px;
    padding: 15% 7%;
    position: relative;
}


.card-back h4{
    font-size: 3.5vw !important;
}

@media screen and (min-width: 768px) {
    .card-back h4{
        font-size: 20px !important;
    }
  } 

.card-back img{
    max-width: 70px;
    position: absolute;
    bottom: 0;
    right: 0;
}

.card-back p{
    margin-top: 5px;
}

@media screen and (min-width: 768px) {
    .card-back img{
        max-width: 90px;
    }
    .card-back p{
        margin-top: 25px;
    }
    
  } 

.faq{
    background-color: #eee;
    padding: 100px 0;
}

@media screen and (min-width: 768px) {
    .faq{
        padding: 150px 0;
    }    
  } 


.entry{
    background-color: #222;
    /* height: 400px; */
    width: 100%;
    overflow: hidden;
}

.entry a.entry-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    color: #fff;
    font-size: 14vw;
    text-align: center;
    text-decoration: none;
    line-height: 1.3;
    width: 100%;
    height: auto;
    transition: 0.5s ease;
}

.entry-pc-inner{
    max-width: 1120px;
    margin: 0 auto;
}

.entry a.entry-btn span{
    display: block;
    font-size: 4vw;
}


@media screen and (min-width: 768px) {
    .entry a.entry-btn{
        font-size: 140px;
        width: 1120px;
        height: auto;
        transition: 0.5s ease;
    }

.entry a.entry-btn span{
    display: block;
    font-size: 2rem;
}
} 


.entry a.entry-btn:hover{
    color: #222;
}
.img-before{
    width: 100%;
    height: 100%;
    background-color: #222;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: 0;
    transition: 0.5s ease;
}
.entry a.entry-btn:hover ~ .img-before,
.entry a.entry-btn:active ~ .img-before {
    transform: skew(-30deg) translateX(100%);
} 