body {
    
    margin: 0;
    padding: 0;
   
}

h1,
h2,
h3,
h4,
p,
ul,
li,
table,
tr,
th,
td,
dl,
dt,
dd {
    margin: 0;
    padding: 0;
}

img {
    width: 100%;
}
html{scroll-behavior: smooth;}
body {
    position: relative;
    font-family: 'Noto Serif JP';
    /* scroll-behavior: smooth; */
}

.nav_sp {
    position: relative;
}

.tone {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    background-color: rgba(0, 0, 0, 0.502);
    z-index: 10;
}

.tone.active {
    visibility: visible;
}

.nav_container {
    width: 100%;
    height: 80px;
}

.nav {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 85px;
    z-index: 10;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.video{
    display: none;
}

.main_img {
    height: 100vh;
    position: relative;
width: 100%;
overflow: hidden;
}
.main_img::before{
    content: "";
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100vh;
overflow-x: hidden;
overflow-y: hidden;
background-image: url(../img/main_img0.webp);
background-repeat:repeat-y;
background-size:contain ;
}
.main_img.active::before{
animation: rotation 4s ease 0.8s 1 forwards;
}

@keyframes rotation {
    0% {
      background-position: 0 0;
    }
    25%{
        background-position: 0 25%;
    }
    50%{
        background-position: 0 50%;
    }
    75%{
        background-position: 0 75%;
    }
    100% {
      background-position: 0 100%;
    }
  }


.main_img img{
    width: auto;
    height: 100vh;
}
.main_img_logo img{
    width: 100%;
    height: 100%;
}

.shose{
    
    height: 100vh;
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    display: none;
}



.nav_sp {

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 80px;
    position: relative;
}
.main_img_logo{
    width: 60%;
    position: absolute;
    top:-3%;
    right: -500px;
    z-index: 5;

}
.main_img_logo.active{
    
transition:1s ;
position: absolute;
    top:-3%;
    right: 5px;
}
.logo {
    
    margin-left: 10px;
    width: 30%;
    
}
.nav_pc{
    display: none;
}
.nav_sp .menu_container .sns ul {
    display: flex;
    flex-direction: column;
    
    list-style: none;
    margin-left: 20px;
}

.nav_sp .menu_container .sns ul li {
    border-top: 0px solid #ffffff00;
    margin-top: 5px;
    
}

.nav_sp .menu_container .menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}

.nav_sp .menu_container .sns {
    margin-top: 100px;
}

.nav_sp .menu_container .menu li {
    width: 80%;

    height: 50px;
    border-top: 1px solid whitesmoke;
    display: flex;
    align-items: center;

}

.nav_sp .menu_container .menu li:nth-of-type(1) {
    margin-top: 20px;
}

.nav_sp .menu_container .menu li:nth-of-type(3) {
    border-bottom: 1px solid whitesmoke;
}

.nav_sp .menu_container a {
    text-decoration: none;
    color: #fff;
}

.nav_sp .menu_container {
    text-decoration: none;
    z-index: 11;
    background-color: rgb(27, 27, 27);
    width: 200px;
    height: 100vh;
    position: absolute;
    top: 0;
    left: -300px;
    transition: 1s;
}

.nav_sp .menu_container.active {
    position: absolute;
    top: 0;
    left: 0px;
    transition: 1s;
}



.video video {

    height: 100%;
    width: 100%;

}
#pickup_mark,#feature_mark,#footer_mark{
    width: 10%;
    height: 50px;
    /* background-color: #000; */
}
.pickup {
    margin-top: 50px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pickup_contents {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.pickup_contents .carousel {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    list-style: none;

}

.pickup_contents div {
    width: 100%;
}

.feature {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature_contents {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;

}

.feature_contents ul {
    list-style: none;
    width: 100%;
    
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature_contents ul li {
    min-width: 0;
    width: 80%;
    height: 90%;
    margin: 15px;
    border: 1px solid rgba(135, 135, 135, 0.862);
    border-radius: 10px;
    flex-grow: 1;
}

.feature_contents ul li a {
    /* font-family: 'Noto Serif JP'; */

    text-decoration: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;

}
.feature_contents ul li a .plice{
    text-align: right;
    margin: 10px;
}
.feature_contents ul li a p{
    /* font-family: 'Noto Serif JP'、セリフ; */
    color: #000;
    margin-top: 15px;
    width: 80%;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.feature_contents ul li a img {
display: block;
    border-radius: 10px 10px 0 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer{
    margin-top: 20px;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
tbody{
    width: 100%;
}
footer .footer_contents {
    
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

footer table {
    width: 100%;
    /* display: flex;
    flex-direction: column;
    align-items: center; */
}
footer form{
    width: 100%;
}
footer .text,footer .question{
    width: 50%;
    flex-grow: 1;
}
footer .text p{
   
    word-wrap: break-word;
    width: 100%;
    height: 100%;
}
footer .question {
    width: 90%;
    
}
footer .question table tr{
    display: flex;
    flex-direction: column;
    
    width:70% ;
}
tbody {
    display: flex;
    flex-direction: column; 
    align-items: center;
}
footer .question table td{
    width: 100%;
}
footer .question table th{
    text-align: start;
    width:auto;
}
footer .question table td input{
    width: 100%;
    height: 40px;
}
textarea{
    
    width: 100%;
    height:150px;
}
button{
    color: #fff;
    background-color: #000;
    border: 1px solid #fff;
    width: 120px;
    height: 50px;
    /* margin-left:450px; */
}

button:hover{
    color: #000000;
    background-color: #fff;
    border: 1px solid  #000;
}
@media(min-width:768px) {
    .video {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
    }

    .nav_sp,.tone,.hambager{
        display: none;
    }
    .nav_pc{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    .nav_pc .menu_container {
        width: 40%;
        display: flex;
        flex-direction: row;
        align-items: center;
    }
    .nav_pc .menu_contents{
        width: 90%;
    }
    .nav_pc .menu_contents .menu ul{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        list-style: none;
    }
    .nav_pc .menu_contents .menu ul li{
        flex-grow: 1;
        border-right: 1px solid #000;
    }
    .nav_pc .menu_contents .menu ul li a{
        text-decoration: none;
        text-align: center;
        color: #000000;
    }

    .main_img{
        display: none;
        
        }

    .pickup_contents .carousel {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        list-style: none;

    }

    .pickup_contents .carousel div {
        margin: 10px;
        width: 100%;
    }

    .pickup_contents div {
        width: 100%;
    }


    .feature {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .feature_contents {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;

    }

    .feature_contents ul {
        min-width: 0;
        list-style: none;
        width: 100%;
        height: 100%;
        display: grid;
        justify-items: center;
        
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;

    }

    .feature_contents ul li {
        min-width: 0;
        width: 80%;
        height: 90%;
        
        margin: 15px;
        /* border: 1px solid rgba(135, 135, 135, 0.862); */
        

    }

    .feature_contents ul li a img {

        height: 100%;
    }
    
    
    footer .footer_contents {
        
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
    footer .footer_contents .text{
        margin: 10px;
    }

    footer .text,
    footer .question {
        width: 50%;
        flex-grow: 1;
    }

    footer .question table tr {
        display: flex;
        flex-direction: column;
        width: 90%;
    }
    footer .question table{
        width: 100%;
    }
}

