@charset "UTF-8";

body{
    overflow-x: hidden;
}
/*
header
*/
header{
    background-image: url(kodawari_img/LP_mv.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    height: 25vw;
}
.header_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 350px;
    padding: 23px 0;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.75);
    position: relative  ;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    transition-duration: .5s;
}
.header_logo{
    width: auto;
    height: 70px;
    margin: 20px 0; 
}
.header_div h1{
    font-size: 28px;
    text-align: center;
    font-weight: 500;
}

/*
main
*/
.concept{
    text-align: center;
    font-size: 28px;
    margin: 10rem 0;
    transition-duration: .5s;
    font-family: "Klee One", cursive;
    font-weight: 600;
    font-style: normal;
}
.concept_des{
    margin: 0 auto;
    display: block;
    width: 55vw;
    line-height: 60px;
    font-size: 20px;
    margin-bottom: 9rem;
    transition-duration: .5s;
}

.main_visual{
    background: #FFE8BD;
}
.visual_pasta{
    width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition-duration: .25s;
}
main h2{
    text-align: center;
    font-size: 24px;
    padding: 15px 0 50px 0;
    font-family: "Klee One", cursive;
    font-weight: 600;
    font-style: normal;
}
.kodawari_img1{
    width: 67vw;
    display: block;
    margin: 0 auto;
}
.kodawari_img2{
    width: calc(-261px + 62vw);
    height: auto;
    display: block;
}
.kodawari_img3{
    width: 35vw;
    display: block;
    border-radius:100%;
}
.kodawari:nth-of-type(3){
    margin: 100px 0 80px 0;
    position: relative;
}
.kodawari:nth-of-type(4){
    margin: 80px 0 80px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.kodawari:nth-of-type(5){
    margin: 80px 0 100px 0;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-end;
}
.kodawari_des{
    width: 325px;
}
.kodawari_des h3{
    padding: 0 0 20px 20px;
    border-bottom: 1px solid #000;
    font-weight: 500;
}
.kodawari_des p{
    padding: 20px 0 10px 20px;
    width: 320px;
}
.kodawari:nth-of-type(3) .kodawari_des{
    position: absolute;
    left: 25vw;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
.kodawari:nth-of-type(3) .kodawari_des h3{
    border-bottom: 1px solid #fff;
}
.kodawari:nth-of-type(5) .kodawari_des{
    margin: 50px 0; 
}

.hp_img{
    width: 600px;
    /* height: 70px; */
    margin: 0 auto;
    display: block;
    position: relative;
    border-radius: 8px;
}
.hp_link{
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFE8BD;
    padding: 30px 0 10px;
}
.link_div{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
}
a{
    text-decoration: none;
    color: #fff;
    background: rgb(0 0 0 / 0.5);
    padding: 20.5px 212px;
    border-radius: 0 0 8px 8px;
}
.link_div a{
    position: relative;
    bottom: 65px;
    left: 0;
}
.revarsation_link{
    border-radius: 8px;
}
.revarsation_link a{
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    width: 600px;
    padding: 20px 228px;
    position: relative;
    bottom: 20px;
    left: 0;
}

footer{
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.shopinfo{
    margin: 60px 60px 30px 0;
}
.shopinfo h2{
    text-align: center;
    font-weight: 500;
    font-size: 20px;
    margin: 20px 0;
}
.footer_other{
    margin: 60px 0px 30px 60px;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.policy{
    margin: 10px 0;
}
.footer_logo{
    display: block;
    width: auto;
    height: 70px;
    margin: 0 auto;
}
.shop_des li{
    list-style: none;
}


/* スクロールダウンの位置 */
.scroll{
    position: relative;
    right: -50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    margin-top: 30px;
}
/* 線のアニメーション部分 */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #000;
    bottom: -75px;
    content: "";
    height: 70px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }
    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }
    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }
    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
}



@media (max-width: 768px) {
    
    header{
        margin-bottom: 150px;
    }
    .header_div{
        padding: 0;
        margin: 0 auto 150px;
        background: #fff;
        position: relative;
        top: 100%;
        transform: translateY(0%);
    }

    .scroll span{
        margin-top: 30px;
    }
    .concept{
        margin: 10rem 0 2rem 0;
    }
    .concept_des{
        width: 80vw;
        margin-bottom: 9rem;
    }
    
    .visual_pasta{
        width: 400px;
        height: auto;
        display: block;
        margin: 0 auto;
    }
    .kodawari_img1{
        width: 70vw;
    }
    .kodawari_img2{
        width: 70vw;
    }
    .kodawari_img3{
        width: 70vw;
        border-radius: 0;
    }
    .kodawari:nth-of-type(3),.kodawari:nth-of-type(4){
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .kodawari:nth-of-type(5){
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .kodawari_des{
        width: 330px;
    }
    .kodawari:nth-of-type(3) .kodawari_des{
        position: static;
        left: 0vw;
        top: 0%;
        transform: translateY(0%);
        color: #000;
    }
    .kodawari:nth-of-type(3) .kodawari_des h3{
        border-bottom: 1px solid #000;
    }
    .kodawari .kodawari_des{
        margin: 50px 0 0; 
    }

    .hp_img{
        width: 100vw;
        margin: 0;
        position: static;
        border-radius: 0px;
    }
    .hp_link{
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #FFE8BD;
        padding: 30px 0;
    }
    .link_div{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100vw;
    }
    a{
        padding: 24px 0;
        width: 100vw;
        text-align: center;
        display: block;
        text-decoration: none;
        color: #fff;
        background: rgb(0 0 0 / 0.5);
        border-radius: 0 0 8px 8px;
    }
    .link_div a{
        position: relative;
        bottom: 65px;
        left: 0;
    }
    .revarsation_link{
        border-radius: 8px;
    }
    .revarsation_link a{
        border-radius: 8px;
        display: inline-block;
        text-align: center;
        width: 100vw;
        padding: 20px 0;
        position: relative;
        bottom: 20px;
        left: 0;
    }

    footer{
        margin: 60px auto;
        display: block;
        align-items: center;
        flex-direction: column;
    }
    .shopinfo{
        margin: 0;
    }
    .shop_des{
        margin: 0 auto;
        width: 272px;
    }
    .footer_other{
        margin: 60px auto;
    }
}