/* font */
@import url('https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap');
/* font-family: 'Zen Kurenaido', sans-serif; */
@import url('https://fonts.googleapis.com/css2?family=Yuji+Mai&display=swap');
/* font-family: 'Yuji Mai', serif; */

body {
    font-family: 'Zen Old Mincho', serif;
}

.maincolor{
    color: #f4ce47;
}

.center{
    text-align: center;
}

.white{
    color: #fff;
}



/* PC */
@media (min-width: 992px) {

    .sp {
        display: none!important;
    }

    .d-flex{
        display: flex;
    }

    /* slide show */
    .wrap{
        max-height: 30vw;
        overflow-y: hidden;
        width: 80%;
        margin: auto;
        padding-bottom: 3vw;
    }
    .slider {
        margin: 0;
        padding: 0;
    }

    .slick-slide {
        margin: 0 3vw;
    }

    .slideshow {
        list-style: none;
    }

    .slideshow a{
        text-decoration: none;
        color: #333;
        font-size: 1vw;
    }

    .slideshow .workstitle p{
        margin: 0.5vw 0;
    }

    .slideshow .workstitle .cate{
        border: solid 1px #f4ce47;
        display: inline-block;
        padding: 0.3vw;
    }

    .worksimage {
        min-height: 12vw;
        max-height: 12vw;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .worksimage img{
        width: 100%;
    }
    /* slide show end */

    .site-header{
        position: fixed;
        width: 100%;
        z-index: 999;
        background-color: #ffffffd9;
        height: 6.5vw;
        top: 0;
    }

    .headerbar {
        display: flex;
        padding: 1vw 0;
        align-items: center;
    }

    .logoarea{
        width: 25%;
    }

    .logoarea img {
        width: 45%;
        margin-left: 3vw;
    }

    .main-navigation .menu{
        justify-content: flex-end;
        font-size: 1vw;
        margin-right: 2vw;
        text-align: center;
    }

    .main-navigation .menu> li {
        position: relative;
        width: 10%;
    }

    .main-navigation .menu> li > a{
        color: #000;
        text-decoration: none;
        padding: 2vw 0;
        transition: .5s;
    }

    .main-navigation .menu> li > a:hover{
        text-decoration: none;
        padding: 2vw 0;
        background-color: #f4ce47;
    }


    /* .current-menu-item a {
        color: #f4ce47!important;
    } */

    .sub-menu{
        display: block!important;
        text-align: left;
        background: #ffffffd9;
        margin-top: 1vw;
    }

    .sub-menu li a{
        font-size: 1vw;
        color: #333;
        padding: 1vw 0;
        transition: .5s;
        padding-left: 2vw!important;

    }

    .sub-menu li a:hover{
        background: #f4ce47;
    }

    .toprightcontent{
        width: 80%;
        margin-left: 20%;
    }

    .topimage{

        position: relative;
        /* top: 0; */
    }

    .topimage img {
        width: 100%;
    }

    .bgarea {
        margin-top: 6.5vw;
    }

    .bgtext{
        position: fixed;
        top: 7vw;
    }

    .bgtext p{
        writing-mode: tb-rl;
        font-size: 6vw;
        margin: 0;
        color: #3333;
    }

    /* スクロールを促す要素 */
    .scrolldown{
        position: absolute;
        bottom: 5vw;
        left: -8vw;
        writing-mode: vertical-lr;
        font-size: 1vw;
        animation: scrolldown 2s ease-in-out infinite;
    }

    .scrolldown p {
        margin: 1vw;
    }
    
    .scrolldown:before{
        content: "";
        border-bottom: solid 2px #333;
        bottom: 0.2vw;
        position: absolute;
        width: 1vw;
        transform: skewY(-30deg);
    }

    .scrolldown:after{
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 2px;
        height: 5vw;
        background: #333;
    }

    @keyframes  scrolldown{
        0%{
            bottom: 5vw;
        }

        50%{
            bottom: 4vw;
        }

        100% {
            bottom: 5vw;
        }
    }

    /* スクロールを促す要素 end */

    /* スクロール度 */

    .scrollgress{
        top: auto!important;
        z-index: 999;
    }

    .scrollgress__progress{
        background: #f4ce47b0!important;
    }

    /* スクロール度 end */


    /* 下からフワッと */

    .fadeUp{
        animation-name:fadeUpAnimation;
        animation-duration:1s;
        animation-fill-mode:forwards;
        opacity:0;
    }

    @keyframes fadeUpAnimation{
        0% {
            opacity: 0;
            transform: translateY(100px);
        }

        50%{
            opacity: 1;
            /* transform: translateY(50px); */
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fadeUpClass{
        opacity: 0;
    }

    /* 下からフワッと end */
    
    /* 色→画像 */

    .imgactive .serviceimg:before{
        animation-name: imganim;
        animation-duration:0.8s;
        animation-fill-mode:forwards;
        
    }

    @keyframes imganim{
        from {
            width: 60%;
        }

        to {
            width: 0%;
        }
    }

    /* 色→画像 end */


    .top .topon{
        position: absolute;
        top: 20vw;
        left: -7vw;
        font-size: 3vw;
    }

    .top .topon p span{
        opacity: 0;
    }
    .top .topon p.appeartext span{
         animation:text_anime_on 1s ease-out forwards;
    }

    @keyframes text_anime_on {
        0% {opacity:0;}
        100% {opacity:1;}
    }
    

    .top .topon p {
        margin: 0;
    }

    .about{
        position: relative;
        height: 40vw;
        display: flex;
        align-items: center;
    }

    .about .bg1{
        position: absolute;
        bottom: 10%;
        right: 0;
        width: 25%;
        height: 15vw;
        opacity: 0.3;
        overflow: hidden;
    }

    .about .bg2{
        position: absolute;
        left: 0;
        bottom: 0;
        width: 20%;
        opacity: 0.3;
    }

    .about .bg3{
        width: 40%;
        height: 57%;
        background: #f7f7f7;
        position: absolute;
        z-index: 0;
        bottom: 7%;
    }


    .aboutfl{
        display: flex;
        width: 80%;
        margin: auto;
        align-items: center;
        z-index: 1;
    }

    .aboutfl .lcol{
        width: 50%;
    }

    .aboutfl .lcol h2{
        margin: 0;
        font-size: 4vw;
    }

    .aboutfl .lcol p{
        margin: 1vw 0;
        font-size: 2vw;
    }

    .aboutfl .rcol {
        width: 50%;
    }

    .aboutfl .rcol p{
        margin: 0;
        font-size: 1.2vw;
        line-height: 2.4vw;
    }

    .about .morebtn{
        width: 35%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
        margin-top: 5vw;
    }

    .about .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .about .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .about .morebtn:hover a{
        color: #fff;
    }

    .about .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .about .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .about .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .service{
        margin: 5vw 0;
    }

    .service .title{
        /* width: 90%; */
        margin-left: 10%;
        display: flex;
        margin-bottom: 2vw;
    }

    .service .title h2 {
        font-size: 4vw;
        margin: 0;
    }

    .service .title  h3{
        font-size: 1.3vw;
    }

    .service .title .ccol{
        display: flex;
        align-items: center;
        margin-left: 2vw;
    }

    .service .title .ccol .border{
        border-bottom: solid 1px #ddd;
        width: 10vw;
    }

    .service .title .rcol {
        display: flex;
        align-items: center;
        margin-left: 2vw;
    }

    .serviceimg{
        width: 60%;
    }

    .si1{
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2023/09/service1-scaled.jpeg');
        background-size: cover;
    }

    .si2{
        background-image: url('https://stg.ito-shoukai.biz/wp-content/uploads/2025/12/renewal.jpg');
        background-size: cover;
    }

    .si3{
        background-image: url('https://stg.ito-shoukai.biz/wp-content/uploads/2025/12/rent.jpg');
        background-size: cover;
    }

    .si1:before,.si2:before,.si3:before{
        content: "";
        background-color: #f4ce47;
        width: 60%;
        height: 100%;
        /* z-index: -1; */
        position: absolute;
        transition: .5s;
    }

    .servicecontent{
        display: flex;
        justify-content: space-between;
        z-index: 1;
        position: relative;
        margin-bottom: 3vw;
    }

    .servicecontent .col{
        width: 80%;
        margin: 2vw auto;
    }

    .servicecontent .title2{
        display: flex;
        align-items: center;
    }

    .servicecontent .servicesentence{
        width: 40%;
        display: inline-flex;
    }

    .servicecontent .title2{
        margin-bottom: 2vw;
    }

    .servicecontent .title2 h3{
        font-size: 2.5vw;
        margin: 0;
    }

    .servicesentence .title2 .rcol {
        font-size: 1vw;
        margin-left: 2vw;
    }

    .servicesentence .sentence {
        margin-bottom: 3vw;
    }

    .servicesentence .sentence p{
        margin: 0;
        font-size: 1.2vw;
    }

    .servicesentence .morebtn{
        width: 50%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
    }

    .servicesentence .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .servicesentence .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .servicesentence .morebtn:hover a{
        color: #fff;
    }

    .servicesentence .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .servicesentence .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .servicesentence .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .servicecontent .bgnum{
        position: absolute;
        top: 0;
        right: 0;
        line-height: 15vw;
        z-index: 0;
    }


    .servicecontent .bgnum p{
        font-size: 20vw;
        margin: 0;
        color: #3333;
        font-family: sans-serif;
    }

    .works{
        background-color: #f7f7f7;
        position: relative;
    }


    .works .title{
        /* width: 90%; */
        margin-left: 10%;
        display: flex;
        margin-bottom: 2vw;
        padding-top: 3vw;
    }

    .works .title h2 {
        font-size: 4vw;
        margin: 0;
    }

    .works .title  h3{
        font-size: 1.3vw;
    }

    .works .title .ccol{
        display: flex;
        align-items: center;
        margin-left: 2vw;
    }

    .works .title .ccol .border{
        border-bottom: solid 1px #ddd;
        width: 10vw;
    }

    .works .title .rcol {
        display: flex;
        align-items: center;
        margin-left: 2vw;
    }


    .news {
        position: relative;
        width: 80%;
        margin-left: 20%;
        margin-top: 8vw;
    }

    .gotonewsview{
        position: absolute;
        top: 0vw;
        right: 15vw;
        font-size: 1.2vw;
        border-left: solid 1px #ddd;
        padding-left: 2vw;
        height: 5vw;
        display: flex;
        align-items: center;
    }

    .gotonewsview a {
        text-decoration: none;
    }

    .gotonewsview a p{
        background: #f4ce47;
        padding: 1vw 2vw;
        color: #333;
        font-size: 1vw;
        transition: .5s;
    }

    .gotonewsview a p:hover{
        background: #333;
        color: #fff;
    }

    .news .title{
        display: flex;
        align-items: center;
    }

    .news .title .lcol h2 {
        margin: 0;
        font-size: 2.5vw;
    }

    .news .title  h3{
        font-size: 1.3vw;
    }

    .news .title .ccol .border{
        border-bottom: solid 1px #ddd;
        width: 10vw;
    }

    .news .title .ccol, .news .title .rcol {
        margin-left: 2vw;
    }

    .newsbox .list ul{
        margin: 0;
        padding: 0;
        list-style: none;
        width: 92%;
    }

    .newsbox .list{
        margin-top: 4vw; 
    }

    .newsbox .list ul a{
        text-decoration: none;
        color: #333;
        font-size: 1vw;
    }

    .newsbox .list ul a li{
        margin-bottom: 1vw;
        padding: 1vw 0;
        transition: .1s;
        position: relative;
    }

    /* .newsbox .list ul a li:after{
        position: absolute;
        left: 90%;
        bottom: 0;
        width: 0vw;
        content: '';
        border: solid 1px #333;
        transition: .5s;
    }

    .newsbox .list ul a li:hover:after{
        width: 5%;
    } */

    .newsbox .list ul a li .newstitle,.newsbox .list ul a li .cate{
        margin-left: 2vw;
    }

    .newsbox .list ul a li .cate{
        border: solid 1px #f4ce47;
        padding: 0.2vw 0.5vw;
    }


    /* archive */

    .archive .topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2023/09/IMG_5015-scaled.jpg');
        background-position-y: center;
        background-size: cover;
    }
    
    .archive .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .archive .topon span {
        font-size: 1.5vw;
    }

    .archive .topon p {
        margin: 0;
    }

    .worksdetail{
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .categorybox {
        margin-top: 15vw;
    }


    .categorycontent .categoryimg{
        width: 60%;
        position: relative;
        height: 30vw;
    }

    .categorycontent .categoryimg .img1{
        width: 70%;
        height: 28vw;
        display: flex;
        overflow: hidden;
        position: absolute;
        left: 8vw;
        top: -1vw;
        align-items: center;
    }

    /* .categorycontent .categoryimg .img1 img{
        clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
        -webkit-clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
    } */

    /* .categorycontent .categoryimg .img2{
        bottom: -3vw;
        width: 70%;
        position: absolute;
        left: -7vw;
    } */

    /* .categorycontent .categoryimg .img2 img{
        clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
        -webkit-clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
    } */

    .categorycontent .categoryimg .bgsquare{
        width: 40vw;
        height: 23vw;
        background: #f7f7f7;
        position: absolute;
        bottom: 0;
        left: 0vw;
    }

    .categorycontent{
        display: flex;
        z-index: 1;
        position: relative;
        margin-bottom: 3vw;
    }

    .categorycontent .col{
        width: 90%;
        margin: auto;
    }

    /* .categorycontent .title2{
        display: flex;
        align-items: center;
    } */

    .categorycontent .categorysentence{
        width: 35%;
        display: inline-flex;
    }

    .categorycontent .title2{
        margin-bottom: 2vw;
    }

    .categorycontent .title2 h3{
        font-size: 2.5vw;
        margin: 0;
    }


    .categorycontent .categorysentence .title2 .rcol {
        font-size: 1vw;
        /* margin-left: 2vw; */
    }

    .categorycontent .categorysentence .sentence {
        margin-bottom: 3vw;
    }

    .categorycontent .categorysentence .sentence p{
        margin: 0;
        font-size: 1.2vw;
    }

    .categorycontent .categorysentence .morebtn{
        width: 50%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
    }

    .categorycontent .categorysentence .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .categorycontent .categorysentence .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .categorycontent .categorysentence .morebtn:hover a{
        color: #fff;
    }

    .categorycontent .categorysentence .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .categorycontent .categorysentence .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .categorycontent .categorysentence .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .categorycontent2{
        display: flex;
        justify-content: space-between;
        z-index: 1;
        position: relative;
        margin-bottom: 3vw;
    }

    .categorycontent2 .col{
        width: 90%;
        margin: auto;
    }

    /* .categorycontent .title2{
        display: flex;
        align-items: center;
    } */

    .categorycontent2 .categorysentence{
        width: 35%;
        display: inline-flex;
        margin-left: 5%;
    }

    .categorycontent2 .title2{
        margin-bottom: 2vw;
    }

    .categorycontent2 .title2 h3{
        font-size: 2.5vw;
        margin: 0;
    }


    .categorycontent2 .categorysentence .title2 .rcol {
        font-size: 1vw;
        /* margin-left: 2vw; */
    }

    .categorycontent2 .categorysentence .sentence {
        margin-bottom: 3vw;
    }

    .categorycontent2 .categorysentence .sentence p{
        margin: 0;
        font-size: 1.2vw;
    }

    .categorycontent2 .categorysentence .morebtn{
        width: 50%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
    }

    .categorycontent2 .categorysentence .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .categorycontent2 .categorysentence .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .categorycontent2 .categorysentence .morebtn:hover a{
        color: #fff;
    }

    .categorycontent2 .categorysentence .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .categorycontent2 .categorysentence .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .categorycontent2 .categorysentence .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .categorycontent2 .categoryimg{
        width: 60%;
        position: relative;
        height: 30vw;
    }

    .categorycontent2 .categoryimg .img1{
        width: 70%;
        height: 28vw;
        overflow: hidden;
        position: absolute;
        right: 8vw;
        top: -1vw;
        display: flex;
        align-items: center;
    }

    /* .categorycontent2 .categoryimg .img1 img{
        clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
        -webkit-clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
    } */

    .categorycontent2 .categoryimg .img2{
        width: 70%;
        position: absolute;
        right: -7vw;
        bottom: -3vw;
    }

    /* .categorycontent2 .categoryimg .img2 img{
        clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
        -webkit-clip-path: polygon(25% 0%,75% 0%,75% 100%, 25% 100%);
    } */

    .categorycontent2 .categoryimg .bgsquare{
        width: 40vw;
        height: 23vw;
        background: #f7f7f7;
        position: absolute;
        bottom: 0;
        right: 0vw;
    }

    .workslist{
        margin: 5vw 0;
        position: relative;
    }

    .workslist h2{
        font-size: 2vw;
    }

    .workslist .flcol ul{
        list-style: none;
        margin: 0 0 1vw;
        padding: 0;
    }

    .workslist .flcol ul.list{
        margin-right: 5vw;
    }

    .workslistfl{
        margin: 3vw auto;
        width: 80%;
        justify-content: space-around;
    }

    .workslistfl .flcol{
        width: 50%;
        z-index: 1;
        justify-content: center;
    }

    .workslistfl .flcol2{
        width: 40%;
        z-index: 1;
        justify-content: center;
    }

    .workslistfl .flcol .photo{
        overflow: hidden;
        height: 10vw;
        display: flex;
        align-items: center;
    }

    .workslistfl .flcol .photo:first-child{
        margin-right: 1vw;
    }
    
    .workslist .bg{
        width: 60%;
        height: 85%;
        background: #f7f7f7;
        position: absolute;
        z-index: 0;
        bottom: 0%;
    }

    /* archive end */



    /* contact */

    .contact.topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2023/09/contact-scaled.jpeg');
        background-position-y: center;
        background-size: cover;
    }
    
    .contact .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .contact .topon span {
        font-size: 1.5vw;
    }

    .contact .topon p {
        margin: 0;
    }

    .contactbox .rec, .contactbox .tel, .contactbox .mail{
        width: 75%;
        margin: 5vw auto;
        padding: 5vw 0;
    }

    .contactbox .telbg{
        background: #f7f7f7;
        position: relative;
    }

    .contactbox .rec h2, .contactbox .tel h2,.contactbox .mail h2{
        margin: 0;
        font-size: 1.8vw;
    }

    .contactbox .rec p,.contactbox .tel p,.contactbox .mail p{
        margin: 0;
        font-size:  1.2vw;
        line-height: 3vw;
    }

    .contactbox .rec .col,.contactbox .tel .col,.contactbox .mail .col{
        margin: 2vw 0;
    }

    .contactbox .tel .bo{
        border: solid 1px #f4ce47;
        padding: 0.4vw;
        font-size: 1vw;
        margin: 0 1vw;
    }

    .contactbox .morebtn{
        width: 20%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
    }

    .contactbox .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .contactbox .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .contactbox .morebtn:hover a{
        color: #fff;
    }

    .contactbox .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .contactbox .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .contactbox .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .contactbox .contactform .req{
        border: solid 1px #f4ce47;
        padding: 0.4vw;
        font-size: 1vw;
        margin: 0 1vw;
    }

    .contactbox .contactform input{
        width: 50%;
        padding: 0.5vw;
    }

    .contactbox .contactform .wpcf7-submit{
        width: 30%;
        padding: 1vw;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
        margin-left: 35%;
        font-size: 1.2vw;
    }

    .contactbox .contactform .wpcf7-submit:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .contactbox .contactform .wpcf7-submit:hover{
        background: #333;
        border: solid 1px #333;
        color: #fff;
    }


    .contactbox .contactform textarea{
        width: 70%;
        padding: 0.5vw;
    }

    .contactbox .contactform p{
        margin-bottom: 2vw;
    }

    

    /* conatct end */


    /* recruit */

    .recruit.topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2020/02/30129ecac91d7903698b297560731cf3_m.jpg');
        background-position-y: center;
    }
    
    .recruit .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .recruit .topon span {
        font-size: 1.5vw;
    }

    .recruit .topon p {
        margin: 0;
    }


    .rectop{
        /* width: 90%; */
        margin: 10vw 0;
        position: relative;
    }

    .recfl{
        display: flex;
        position: relative;
        width: 90%;
        z-index: 1;
    }

    .recimg{
        width: 40%;
    }

    .recsen{
        width: 50%;
        margin-left: 10%;
    }

    .recsen h2{
        margin: 0 0 2vw;
        font-size: 2vw;
    }

    .recsen p{
        margin: 0;
        font-size: 1.2vw;
        line-height: 2.4vw;
    }

    .recbg{
        position: absolute;
        bottom: -3vw;
        width: 60%;
        height: 90%;
        background: #f7f7f7;
        z-index: 0;
    }

    .reccol1{
        width: 80%;
        margin: auto;
    }

    .reccol1 h2{
        margin: 0;
        font-size: 2vw;
    }

    .reccol1 .recruitform{
        margin-top: 3vw;
        font-size: 1.2vw;
        line-height: 2.4vw;
    }

    .reccol1 .recruitform .column-1{
        width: 25%;
        background: #f7f7f7;
        padding: 2vw;
    }
    
    .reccol1 .recruitform .column-2{
        padding: 2vw;
    }

    .reccol2{
        background: #f7f7f7;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-around;
        padding: 5vw 2vw;
    }

    .reccol2 .lcol{
        width: 25%;
    }

    .reccol2 .lcol h2{
        margin: 0;
        font-size: 1.5vw;
    }

    .reccol2 .ccol{
        width: 30%;
    }

    .reccol2 .ccol p{
        margin: 0;
        font-size: 1vw;
        line-height: 2vw;
    }

    .reccol2 .ccol .tel{
        font-size: 2vw;
        margin: 1vw 0px;
    }

    .reccol2 .rcol{
        width: 30%;
    }


    .reccol2 .morebtn{
        width: 50%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
        margin: auto;
    }

    .reccol2 .morebtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .reccol2 .morebtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .reccol2 .morebtn:hover a{
        color: #fff;
    }

    .reccol2 .morebtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .reccol2 .morebtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .reccol2 .morebtn a p{
        margin: 0;
        font-size: 1vw;
    }

    .reccol2 .bo{
        border: solid 1px #f4ce47;
        padding: 0.4vw;
        font-size: 1vw;
        margin-right: 1vw;
    }




    /* recruit end */

    /* company */

    .company.topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2023/09/30129ecac91d7903698b297560731cf3_m.jpeg');
        background-position-y: center;
    }
    
    .company .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .company .topon span {
        font-size: 1.5vw;
    }

    .company .topon p {
        margin: 0;
    }

    .comtop{
        /* width: 90%; */
        margin: 10vw 0;
        position: relative;
    }

    .comfl{
        display: flex;
        position: relative;
        width: 80%;
        z-index: 1;
        margin: auto;
        align-items: center;
    }

    .comimg{
        width: 50%;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2020/02/30129ecac91d7903698b297560731cf3_m.jpg');
        background-size: cover;
        height: 25vw;
    }

    .comsen{
        width: 45%;
        margin-left: 5%;
    }

    .comtitle{
        width: 80%;
        margin: auto;
    }

    .comtitle h2{
        margin: 0 0 2vw;
        font-size: 2vw;
    }

    .comsen p{
        margin: 0;
        font-size: 1.2vw;
        line-height: 2.4vw;
    }

    .combg{
        position: absolute;
        bottom: -2vw;
        right: 0;
        width: 70%;
        height: 35vw;
        background: #f7f7f7;
        z-index: 0;
    }

    .comsen .daihyo{
        font-size: 1.5vw;
        text-align: right;
        margin-top: 2vw;
        font-family: 'Yuji Mai', serif;
    }


    .comcol1{
        width: 80%;
        margin: auto;
    }

    .comcol1 h2{
        margin: 0;
        font-size: 2vw;
    }

    .comcol1 .company{
        margin-top: 3vw;
        font-size: 1.2vw;
        line-height: 2.4vw;
    }

    .comcol1 .company .column-1{
        width: 25%;
        background: #f7f7f7;
        padding-left: 2vw;
    }

    .comcol1 .company .column-2{
        padding-left: 2vw;
    }

    .comcol2{
        background: #f7f7f7;
        position: relative;
        padding: 3vw 0;
    }

    .comcol2 iframe{
        border: 0;
        width: 80%;
        margin-left: 10%;
    }

    .access{
        width: 80%;
        margin: 2vw auto;
    }

    .access h2{
        margin: 0;
        font-size: 2vw;
    }

    /* company end */

    /* news */

    .newscontent{
        width: 70%;
        margin: 10vw auto;
    }

    .newscontent .newsmidashi h2{
        font-size: 2vw;
    }

    .newscontent .newslist ul a{
        text-decoration: none;
        color: #333;
    }

    .newscontent .newslist ul{
        margin: 0;
        padding: 0;
    }

    .newscontent .newslist li{
        display: flex;
        padding: 2vw 0;
    }

    .newscontent .newslist .newslcol{
        width: 20%;
    }

    .newscontent .newslist .newsrcol{
        width: 75%;
        margin-left: 5%;
        font-size: 1vw;
    }

    .newscontent .newslist .newsrcol h3, .newscontent .newslist .newsrcol p{
        margin: 0;
    }

    .newscontent .newslist .newsrcol h3{
        font-size: 1.5vw;
        margin-bottom: 1vw;
    }

    .newscontent .newslist .newsrcol .cate{
        padding: 0.1vw 0.2vw;
        border: solid 1px #f4ce47;
        margin-left: 1vw;
    }

    .pagenavi{
        margin-top: 2vw;
    }
    
    .now{
        padding: 0.5vw 0.8vw;
        background: #f4ce47;
    }
    
    .pagenavi a{
        padding: 0.5vw 0.8vw;
        background: #333;
        text-decoration: none;
        color: #fff;
    }

    /* news end */

    /* news detail */

    .single .topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2020/02/30129ecac91d7903698b297560731cf3_m.jpg');
        background-position-y: center;
    }
    
    .single .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .single .topon span {
        font-size: 1.5vw;
    }

    .single .topon p {
        margin: 0;
    }

    .singlecontent{
        width: 70%;
        margin: 10vw auto;
    }

    .singlecontent .day{
        font-size: 1vw;
    }

    .singlecontent .cate{
        font-size: 1vw;
        color: #f4ce47;
        padding: 0.1vw 0.2vw;
        border: solid 1px #f4ce47;
        margin-left: 1vw;
    }

    .singlecontent h1{
        font-size: 2vw;
        margin: 1vw 0;
    }

    .singlecontent .entry-content p{
        font-size: 1.2vw;
        margin: 0;
        line-height: 2vw;
    }

    .singlecontent .backbtn{
        width: 25%;
        border: solid 1px #f4ce47;
        background: #f4ce47;
        position: relative;
        transition: .5s;
        margin: auto;
    }

    .singlecontent .backbtn:after{
        content: "";
        width: 2vw;
        height: 1px;
        border-bottom: solid 1px #333;
        position: absolute;
        right: 1vw;
        bottom: 10%;
        transition: .5s;
    }

    .singlecontent .backbtn:hover{
        background: #333;
        border: solid 1px #333;
    }

    .singlecontent .backbtn:hover a{
        color: #fff;
    }

    .singlecontent .backbtn:hover:after{
        right: -1vw;
        border-color: #f4ce47;
    }

    .singlecontent .backbtn a{
        text-decoration: none;
        color: #333;
        width: 100%;
        height: 3vw;
        display: flex;
        align-items: center;
        margin-left: 2vw;
        transition: .5s;
    }

    .singlecontent .backbtn a p{
        margin: 0;
        font-size: 1vw;
    }

    /* news detail end */

    /* privacy policy */

    .policy.topimage {
        position: relative;
        height: 20vw;
        background-image: url('https://ito-shoukai.biz/wp-content/uploads/2023/09/pri-scaled.jpeg');
        background-position-y: center;
        background-size: cover;
    }
    
    .policy .topon {
        position: absolute;
        top: 6vw;
        left: -7vw;
        font-size: 3vw;
    }

    .policy .topon span {
        font-size: 1.5vw;
    }

    .policy .topon p {
        margin: 0;
    }

    .privacybox{
        width: 70%;
        margin: 10vw auto;
    }

    .privacybox p {
        font-size: 1vw;
    }

    .privacybox h2 {
        font-size: 1.5vw;
        margin-top: 5vw;
    }

    .privacybox ul{
        margin: 0;
    }

    /* privacy policy end */


    /* footer */
    footer {
        z-index: 10;
        position: relative;
        margin-top: 10vw;
    }

    .farea{
        display: flex;
        justify-content: space-around;
        width: 85%;
        margin: 3vw auto 2vw;
    }

    .farea .flogo{
        width: 25%;
    }

    .farea .frightcol{
        width: 70%;
        margin-left: 5%;
    }

    .farea .fcompany p {
        margin: 0;
    }

    .farea .fmenu{
        display: flex;
        justify-content: space-around;
    }

    .fmenucol{
        width: 23%;
    }

    .iconbtn{
        display: flex;
        justify-content: flex-start;
        margin-top: 1.5vw;
    }

    .iconbtn p {
        margin: 0;
        font-size: 1vw;
    }

    .recbtn, .conbtn{
        border-bottom: solid 0.1vw #333;
        text-align: center;
        padding: 0.5vw 0.5vw 0.2vw;
        width: 10vw;
    }

    .iconbtn a{
        color: #000;
        text-decoration: none;
        transition: .5s;
    }

    .iconbtn a:last-child{
        margin-left: 1vw;
    }

    .iconbtn a:hover {
        /* background-color: #333; */
        color: #f4ce47;
        border-bottom: 0.1vw #f4ce47 solid;
    }

    .iconbtn i{
        font-size: 1.5vw;
    }



    .fmenutitle {
        font-size: 1.2vw;
    }

    .fmenutitle h3 {
        margin: 0;
    }

    .fmenulist {
        margin-top: 1vw;
    }

    .fmenulist ul{
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .fmenu ul li{
        margin-left: 1vw;
        transition: .5s;
    }

    .fmenu ul li:hover{
        margin-left: 0vw;
    }

    .fmenulist ul a {
        color: #333;
        text-decoration: none;
        font-size: 1vw;
    }

    .farea .fcompany{
        font-size: 1vw;
        margin: 2vw 0;
        text-align: right;
    }

    .fbar{
        background: #333;
        padding: 0.3vw 0px;
        font-size: 1vw;
        text-align: center;
        color: #fff;
    }

    .fbar p {
        margin: 0;
    }

}