@charset "utf-8";

body{
    background-image: url(../img/bg.png);
    background-repeat: repeat;
    border-top: solid 6px #9f904b;
    /* font-family: 'Noto Serif JP', serif; */
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #333;
}

.header{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.header_link_idigio{
    margin: 40px auto;
    position: relative;
    width: 15vw;
    max-width: 245px;
}
.header_logo_idigio{
    /* width: 15vw; */
}
.line{
    position: relative;
}
.line::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 0px;
    height: 60px;
    background-color: #9f904b;
    transform: translateY(-50%);
    border-right: 1px solid #9f904b;
}
.links{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    margin: 50px 0;
}

.links > div{
    width: 200px;
    /* max-width: 15vw; */
    height: auto;
}

.links > div.i2ts{
    max-width: 8vw;
    height: auto;
}

@media only screen and (max-width:600px) {
    .links{
        /* flex-direction: column; */
    }
    .links > div{
        /* width: 200px; */
        /* max-width: 200px; */
    }

    .links > div.i2ts{
        /* width: 100px; */
        /* max-width: 100px; */
    }
}



.mv{
    text-align: center;
}
.mv img{
    width: 700px;
    border-radius: 32px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media only screen and (max-width:600px) {
.mv img{
    width: 100%;
}
}

.fadeInRight {
    animation: fadeInRight 0.7s ease 0s 1 normal;
}
/* fadeInRight */
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
  }
}

.video{
    text-align: center;
    margin: 80px auto;
}

.greeting{
    text-align: center;
    margin: 80px auto;
}
.greeting > p{
    letter-spacing: 2.6px;
    line-height: 2.6;
    font-size: 1.2rem;
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
}
.greeting .sign img{
    width: 180px;
    margin: 20px;
}

.signs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.sign_wrap{
    display: flex;
    align-items: center;
}
.sign_company{
    text-align: right;
    line-height: 1.3;
    width: 23vw;
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
}
.sign_company > span{
    font-size: 0.8rem;
}


@media only screen and (max-width:600px) {
    .greeting{
        text-align: left;
        margin: 20px;
    }
    .greeting .sign{
        text-align: right;
        width: 100%;
    }
    .signs{
        flex-direction: column;
    }
    .sign_wrap{
        flex-direction: column;
        width: 100%;
    }
    .sign_company{
        text-align: left;
        line-height: 1.3;
        width: 100%;
    }

}
@media only screen and (max-width:1024px) {
    .signs{
        flex-direction: column;
    }

}

.video{
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
}

.vimeo_wrap{
    width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}
@media only screen and (max-width:600px) {
    .vimeo_wrap{
        width: 100%;
    }
}

.footer{
    margin: 60px auto 30px;
}
.footer_link_cap{
    width: fit-content;
    margin: 0 auto;
    /* background: #9f904b; */
    /* color: #9f904b; */
    padding: 3px;
    margin-bottom: 20px;
}

.footer_link{
    display: flex;
    justify-content: center;
    gap: 10px;
}


.btn_wrap{
    text-align: center;
    /* margin: 50px auto; */
}

.btn{
    display: inline-block;
    border: solid 2px #9f904b;
    padding: 10px 15px;
    color: #9f904b;
    transition: all 0.1s;
    font-size: 0.8rem;
    border-radius: 20px;
}
.btn:hover{
    background-color: #9f904b;
    color: #fff;
    transition: all 0.1s;
}
@media only screen and (max-width:600px) {
.footer_link{
    flex-direction: column;
}

}
@media only screen and (max-width:1024px) {
.footer_link{
    flex-direction: column;
}

}



.footer .copy{
    text-align: center;
    font-size: 0.6rem;
    margin-top: 40px;
}