@charset "utf-8";


/* index.html
-------------------------------*/




.page_ttl.top {
    margin-top: -100px;
    width: 100%;
    height: 1800px;
}
.page_ttl.top video {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);/* 左右 */
    width: auto;
    height: 100%;
    z-index: 1;
}


.img_main{
    position: absolute;
    top: 120px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);/* 左右 */
    width: 95%;
    max-width: 1835px;
    height: auto;
}
.img_main ._in{
    width: 100%;
    position: relative;
}
.img_main .cap{
    position: absolute;
    left: 140px;
    bottom: 140px;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 600;
    font-size: 128px;
    line-height: 1.5em;
    width: 90%;
    max-width: 1600px;
    height: auto;
}
.img_main .cap .f1{
    font-size: 125%;
}
.img_main .cap .f2{
    display: inline-block;
    font-size: 125%;
    line-height: 1.2;
    color: #000;
    background-color: #fff;
    border-radius: 5px;
    padding-left: 0.1em;
    padding-right: 0.1em;
    padding-bottom: 10px;
}

.txt_main{
    position: absolute;
    top: 1170px;
    left: 50%;
    z-index: 2;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);/* 左右 */
    width: 90%;
    max-width: 1640px;
    height: auto;
    font-family: "Noto Serif JP", serif;
    color: #fff;
}
.txt_main .ttl{
    font-weight: 600;
    font-size: 60px;
    line-height: 1.5em;
    margin-bottom: 40px;
}
.txt_main .ttl span{
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
}
.txt_main p{
    font-weight: 500;
    font-size: 21px;
    line-height: 2em;
}

@media screen and (max-width: 1900px) {
    .page_ttl.top {
        height: calc(100px + 89.4vw);
    }
    .img_main .cap{
        left: 7.3vw;
        bottom: 7.3vw;
        font-size: 6.7vw;
        line-height: 1.5em;
    }
    .img_main .cap .f2{
        border-radius: 0.25vw;
        padding-bottom: 0.5vw;
    }
    
    .txt_main{
        top: calc(90px + 56.3vw);
    }
    .txt_main .ttl{
        font-size: 3.15vw;
        line-height: 1.5em;
        margin-bottom: 2.1vw;
    }
    .txt_main p{
        font-size: 1.1vw;
        line-height: 2em;

    }
}
@media screen and (max-width: 1500px) {
    .txt_main p{
        font-size: 16px;
        line-height: 1.8em;
    }
}

@media screen and (max-width:910px){
    .page_ttl.top{
        margin-top: -80px;
        height: calc(80px + 98vw);
    }
    .txt_main .ttl {
        font-size: 24px;
        line-height: 1.5em;
        margin-bottom: 15px;
    }
    .txt_main p br.pc{
        display: none;
    } 
}

@media screen and (max-width:640px){
    .page_ttl.top{
        height: 130vw;
    }
    .img_main .cap li.n2 .f2{
        font-size: 100%;
    }
    .img_main .cap li.n3 .f2{
        font-size: 100%;
    }
}
@media screen and (max-width:520px){
    .page_ttl.top{
        height: 820px;
    }
    .img_main .cap {
        bottom: -10vw;
        font-size: 9vw;
        line-height: 1.5em;
    }
    .txt_main {
        top: calc(80px + 80vw);
    }
    .txt_main .ttl {
        font-size: 21px;
        line-height: 1.5em;
    }
    .txt_main p{
        font-size: 15px;
        line-height: 1.7em;

    }

}
@media screen and (max-width:420px){
    .page_ttl.top{
        height: 790px;
    }
}






/* 業務内容 */
.top01{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    position: relative;
}
.top01 .title01{
    position: absolute;
    left: 5%;
    top: 125px;
    z-index: 20;
    color: #fff;
}

.s-nav-box{
    position: absolute;
    right: 5%;
    top: 125px;
    z-index: 20;
}
#s-nav{
    width: 320px;
    display: flex;
    justify-content: space-between;
    line-height: 1;
    position: relative;
}
#s-nav:after{
    position: absolute;
    left: 10px;
    top:calc(50% - 2px);
    width: calc(100% - 20px);
    height: 2px;
    background-color: #662d91;
    content: "";
}
#s-nav li a span{
    display: inline-block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-color: #662d91;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}
#s-nav li.active a span{
    transform: scale(1.4);
}
#s-nav li a:hover{
    filter: alpha(opacity=100);
    -moz-opacity:1;
    opacity:1;
}




/* マウスホイールで横スクロールできるボックス ***/
.scroll__wrapper {
    width: 100%;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
/*    padding: 0 0 2rem 0.5rem;*/
}
.scroll__wrapper::-webkit-scrollbar {
    height: 10px;
}
.scroll__wrapper::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.scroll__wrapper::-webkit-scrollbar-button {
    display: none;
}
.scroll__wrapper::-webkit-scrollbar-track-piece:start, .scroll__wrapper::-webkit-scrollbar-track-piece:end {
    background-color: transparent;
}
.scroll__wrapper__list {
    display: flex;
/*    gap: 2rem;*/
}
.scroll__wrapper__list::after {
    content: "";
/*    width: 150px;*/
    width: 10px;
    display: block;
    position: relative;
    flex: 0 0 auto;
    background: url(../img/top/top_12.jpg) right center/cover no-repeat;

}
.scroll__wrapper__list__item {
    color: #000;
    width: 100%;
    flex: 0 0 auto;
    transition: .3s;
    padding-top: 320px;
    padding-bottom: 120px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(../img/top/top_08.jpg);
}
.scroll__wrapper__list__item.bg2 {
    background-image: url(../img/top/top_09.jpg);
}
.scroll__wrapper__list__item.bg3 {
    background-image: url(../img/top/top_10.jpg);
}
.scroll__wrapper__list__item.bg4 {
    background-image: url(../img/top/top_11.jpg);
}
.scroll__wrapper__list__item.bg5 {
    background-image: url(../img/top/top_12.jpg);
}

.scroll__wrapper__list__item ._in {
    width: 90%;
    max-width: 1600px;
    margin: auto;
    align-items: center;
}

.scroll__wrapper__list__item .img {
    width: 55%;
}
.scroll__wrapper__list__item .txt {
    width: 43%;
    max-width: 480px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;

}
.scroll__wrapper__list__item .cat {
    font-size: 48px;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}
.scroll__wrapper__list__item p {
    font-size: 32px;
    line-height: 1.5em;
    padding-bottom: 3px;
    border-bottom: solid 1px #000;
}
.scroll__wrapper__list__item .btn{
    margin-top: 160px;
}
.scroll__wrapper__list__item .btn a{
    width: 100%;
    max-width: 420px;
    height: 90px;
    border: solid 1px #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    line-height: 1em;
}
/*.scroll__wrapper__list__item:hover {
    scale: 1.02;
    opacity: 0.8;
}*/



@media screen and (max-width:1900px){
    .top01 .title01{
        top: 6.5vw;
    }
    .s-nav-box{
        top: 6.5vw;
    }

    /* マウスホイールで横スクロールできるボックス ***/
    .scroll__wrapper__list__item {
        padding-top: 16.8vw;
        padding-bottom: 6.3vw;
    }

    .scroll__wrapper__list__item .cat {
        font-size: 2.5vw;
        line-height: 1.3em;
    }
    .scroll__wrapper__list__item p {
        font-size: 1.68vw;
        line-height: 1.5em;
    }
    .scroll__wrapper__list__item .btn{
        margin-top: 8.4vw;
    }
    .scroll__wrapper__list__item .btn a{
        max-width: 22.1vw;
        height: 4.7vw;
        font-size: 1.4vw;
        line-height: 1em;
    }
}

@media screen and (max-width:910px){

    
    #s-nav{
        width: 180px;
    }
    #s-nav li a span{
        width: 15px;
        height: 15px;
    }
    #s-nav li.active a span{
        transform: scale(1.3);
    }

    .scroll__wrapper__list__item .cat {
        font-size: 25px;
        line-height: 1.3em;
    }
    .scroll__wrapper__list__item p {
        font-size: 18px;
        line-height: 1.5em;
    }
    .scroll__wrapper__list__item .btn{
        margin-top: 40px;
    }
    .scroll__wrapper__list__item .btn a{
        max-width: 300px;
        height: 70px;
        font-size: 20px;
        line-height: 1em;
    }

}
@media screen and (max-width:640px){
    #s-nav{
        width: 120px;
    }
    #s-nav:after{
        display: none;
    }
    #s-nav li a span{
        width: 12px;
        height: 12px;
    }

    .scroll__wrapper__list__item {
        width: 80%;
        padding-top: 100px;
        padding-bottom: 40px;
    }
    .scroll__wrapper__list__item ._in {
        width: 80%;
    }
    .scroll__wrapper__list__item .img {
        width: 100%;
        margin-bottom: 20px;
    }
    .scroll__wrapper__list__item .txt {
        width: 100%;
        max-width: initial;
        max-width: auto;

    }
    
    .scroll__wrapper__list__item .cat {
        font-size: 20px;
        line-height: 1.3em;
    }
    .scroll__wrapper__list__item p {
        font-size: 15px;
        line-height: 1.5em;
    }
    .scroll__wrapper__list__item .btn{
        margin-top: 20px;
    }
    .scroll__wrapper__list__item .btn a{
        max-width: 250px;
        height: 60px;
        font-size: 18px;
        line-height: 1em;
    }

    
}





/* 業務内容-1 */

.top01-2{
    width: 100%;
    max-width: 1920px;
    margin: -5px auto 0;
    position: relative;
}
.top01-2 .title01{
    position: absolute;
    left: 5%;
    top: 125px;
    z-index: 20;
    color: #fff;
}

.wok_slide_1 li{
    width: 100%;
    height: 1120px;
}
.wok_slide_1 li img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


.wok_cont_list{
    position: absolute;
    top: 290px;
    left: 0;
    z-index: 3;
    width: 100%;
}
.wok_cont_list .wok_slide_2 {
    width: 90%;
    max-width: 1600px;
    margin: auto;
}


.wk_slid_item .img {
    width: 55%;
}
.wk_slid_item .txt {
    width: 43%;
    max-width: 480px;
    font-family: "Noto Serif JP", serif;
    font-weight: 500;

}
.wk_slid_item .cat {
    font-size: 48px;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
}
.wk_slid_item p {
    font-size: 32px;
    line-height: 1.5em;
    padding-bottom: 3px;
    border-bottom: solid 1px #000;
}
.wk_slid_item .btn{
    margin-top: 160px;
}
.wk_slid_item .btn a{
    width: 100%;
    max-width: 420px;
    height: 90px;
    border: solid 1px #000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    line-height: 1em;
}

.wok_cont_list .slick-dots li button::before {
    content: '';
    background-color: #662d91;
    border-radius: 50%;
}
.wok_slide_2 .slick-next:before {
    color: #999;
}

@media screen and (min-width:1200px){

    .wok_slide_2 .slick-prev {
        left: -50px;
    }
    .wok_slide_2 .slick-next {
        right: -50px;
    }
    .wok_slide_2 .slick-prev,
    .wok_slide_2 .slick-next {
        width: 40px;
        height: 40px;
    }
    .wok_slide_2 .slick-prev:before,
    .wok_slide_2 .slick-next:before {
        font-size: 40px;
        line-height: 1;
    }

}
@media screen and (min-width:911px){
    .wok_slide_2 .slick-dots {
        position: absolute;
        bottom: auto;
        top: -150px;
        text-align: right;
    }
    .wok_cont_list .slick-dots li {
        width: 25px;
        height: 25px;
        margin: 0 10px;
    }
    .wok_cont_list .slick-dots li button {
        width: 25px;
        height: 25px;
    }

    .wok_cont_list .slick-dots li button::before {
        width: 25px;
        height: 25px;
    }
}

@media screen and (max-width:1770px){
    .wok_slide_1 li {
        width: 100%;
        height: 63vw;
    }
}
@media screen and (max-width:1300px){
    .wok_slide_1 li {
        width: 100%;
        height: 850px;
    }
    .wk_slid_item .cat {
        font-size: 40px;
        line-height: 1.3em;
    }
    .wk_slid_item .btn {
        margin-top: 80px;
    }
}

@media screen and (max-width:910px){

    .top01-2 .title01{
        top: 60px;
    }
    
    .wok_slide_1 li {
        width: 100%;
        height: 600px;
    }
    
    .wok_cont_list{
        top: 180px;
    }
    
    
    

    .wk_slid_item .cat {
        font-size: 25px;
        line-height: 1.3em;
    }
    .wk_slid_item p {
        font-size: 18px;
        line-height: 1.5em;
    }
    .wk_slid_item .btn{
        margin-top: 40px;
    }
    .wk_slid_item .btn a{
        max-width: 300px;
        height: 70px;
        font-size: 20px;
        line-height: 1em;
    }
    .wok_cont_list .slick-dots {
        bottom: -50px;
    }
    
}
@media screen and (max-width:640px){
    .wok_slide_1 li {
        width: 100%;
        height: 800px;
    }

    .wok_cont_list{
        top: 140px;
    }

    .wok_cont_list .wok_slide_2 {
        width: 85%;
    }

    .wk_slid_item ._in {
    }
    .wk_slid_item .img {
        width: 100%;
        margin-bottom: 20px;
    }
    .wk_slid_item .txt {
        width: 100%;
        max-width: initial;
        max-width: auto;
    }
    .wk_slid_item .cat {
        font-size: 20px;
        line-height: 1.3em;
    }
    .wk_slid_item p {
        font-size: 15px;
        line-height: 1.5em;
    }
    .wk_slid_item .btn{
        margin-top: 20px;
    }
    .wk_slid_item .btn a{
        max-width: 250px;
        height: 60px;
        font-size: 18px;
        line-height: 1em;
    }
}

@media screen and (max-width:430px){
    .wok_slide_1 li {
        width: 100%;
        height: 650px;
    }
}







/* 業務内容-2 */
.top02{
    max-width: 1920px;
    margin: auto;
    padding-bottom: 450px;
    background: url(../img/top/top_16.jpg) center top no-repeat;
    margin-top: -10px;
}
.biz_nav{
    width: 100%;
}
.biz_nav li{
    width: 50%;
}
.biz_nav li a{
    width: 100%;
    height: 490px;
    padding: 60px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
    font-size: 60px;
    line-height: 1em;
    background: url(../img/top/top_14.jpg) center center/cover no-repeat;
}
.biz_nav li.nv2 a{
    background-image: url(../img/top/top_15.jpg);
}
@media screen and (max-width:1900px){
    .top02{
        padding-bottom: 18vw;
        background-size: contain;
    }
    .biz_nav li a{
        height: 25.7vw;
        padding: 3.15vw;
        font-size: 3.15vw;
        line-height: 1em;
    }
}
@media screen and (max-width:910px){
    .biz_nav li a{
        padding: 40px;
        font-size: 38px;
        line-height: 1em;
    }
}
@media screen and (max-width:640px){
    .biz_nav li a{
        height: 150px;
        padding: 20px;
        font-size: 24px;
        line-height: 1em;
    }
}
@media screen and (max-width:420px){
    .biz_nav li{
        width: 100%;
    }
}





/* 実績紹介 */


.top03{
    width: 100%;
    max-width: 1920px;
    height: 940px;
    margin: auto;
    background: url(../img/top/top_17.jpg) center center repeat-x;/* 横の時は　repeat-x */
    -moz-animation: kurukuru2 90s linear infinite;
    animation: kurukuru2 90s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
}
/* スクロールの矢印　横にスクロール　*/
@keyframes kurukuru2 {
    0% {background-position: 2368px 0;}/* 画像の長さを入れる */
    100% {background-position:  -2368px 0;}
}
@-moz-keyframes kurukuru2 {
    0% {background-position: 2368px 0;}
    100% {background-position:  -2368px 0;}
}


.top03 ._in{
    width: 90%;
    max-width: 1600px;
    color:#fff;
    font-family: "Noto Serif JP", serif;
    font-weight:500;
    align-items: center;
}
.top03 .txt{
    width: 55%;
    max-width: 600px;
    font-size: 21px;
    line-height: 2em;
}
.top03 .btn{
    width: 40%;
    max-width: 420px;
}
.top03 .btn a{
    border: solid 1px #fff;
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 175%;
    line-height: 1;
}
@media screen and (max-width:1900px){
    .top03{
        height: 49vw;
        background-size: auto 100%;
    }
    .top03 .txt br.pc{
        display: none;
    }
}
@media screen and (max-width:910px){
    .top03{
        height: auto;
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .top03 .txt{
        width: 100%;
        max-width: initial;
        max-width: auto;
        font-size: 16px;
        line-height: 1.8em;
    }
    .top03 .btn{
        width: 100%;
        max-width: initial;
        max-width: auto;
        margin-top: 50px;
    }
    .top03 .btn a{
        width: 80%;
        max-width: 300px;
        height: 80px;
        font-size: 120%;
        line-height: 1;
        margin: auto;
    }
}
@media screen and (max-width:640px){
    .top03 .txt{
        font-size: 14px;
        line-height: 1.8em;
    }
    .top03 .btn a{
        height: 60px;
        font-size: 112%;
        line-height: 1;
    }


}















/* 会社概要 */

.top04{
    padding-top: 130px;
}
.top04 .title01{
    width: 90%;
    max-width: 1720px;
    margin-left: auto;
    margin-right: auto;
}
.com_nav{
    width: 100%;
    max-width: 1920px;
    margin: auto;
    border: solid 1px #999; 
    font-family: "Noto Serif JP", serif;
    font-weight: 500;
}
.com_nav li:not(:last-child){
    border-bottom: solid 1px #999;  
}
.com_nav li{
    background-position: center center;
    background-size: cover;
}
.com_nav li.nv1{
    background-image: url(../img/top/top_21.jpg);
}
.com_nav li.nv2{
    background-image: url(../img/top/top_22.jpg);
}
.com_nav a{
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 48px;
    line-height: 1em;
    background-color: rgba(255,255,255,0.9);
    transition: 0.5s;
}
.com_nav a:hover{
    color: #fff;
    background-color: rgba(255,255,255,0);
}
.com_nav a span{
    display: inline-block;
    width:90%;
    max-width: 1500px;
    text-align: right;
    padding-right: 220px;
    background-image: url(../img/top/ya_bk.png);
    background-position: center right;
    background-repeat: no-repeat;
}
.com_nav a:hover span{
    background-image: url(../img/top/ya_w.png);
}
@media screen and (max-width:1920px){
    .top04{
        padding-top: 6.7vw;
    }
    .com_nav a{
        height: 17.7vw;
    }
}
@media screen and (max-width:1400px){
    .com_nav a{
        font-size: 38px;
        line-height: 1em;
    }
}
@media screen and (max-width:910px){
    .top04{
        padding-top: 80px;
    }
    .com_nav{
        border: none; 
    }
    .com_nav li:not(:last-child){
        border-bottom: none; 
    }
    .com_nav a{
        height: 140px;
        font-size: 30px;
        line-height: 1em;
        background-color: rgba(255,255,255,0.6);
    }
    .com_nav a span{
        padding-right: 100px;
        background-size: 40px auto;
    }
}
@media screen and (max-width:640px){
    .top04{
        padding-top: 60px;
    }

    .com_nav a{
        height: 100px;
        font-size: 20px;
        line-height: 1em;
    }
    .com_nav a span{
        background-size: 30px auto;
    }

}









