body{
    font-family: "HG正楷書体-PRO"!important;
}

li{
    list-style:none;
    margin-bottom: 15px;
}

section{
    top: -20%;
}

#start-area{
    position: relative;
}

#start-area h2{
    position: absolute;
    writing-mode: vertical-rl;
    color: white;
    top: 20%;
}

#start-area #start-right-tittle{
    right: 40%;
    left: 60%;
    font-size: 50px;
}

#start-area #start-tittle{
    right: 50%;
    left: 50%;
    font-size: 60px;
    font-weight: 100;
}

#start-area #start-left-tittle{
    right: 60%;
    left: 40%;
    font-size: 30px;
    font-weight: 100;
}

#start-area img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 4%;
}

#start-area p{
    position: absolute;
    top: 90%;
    right: 1%;
    left: 80%;
    color: white;
    font-size: 15px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
#start-area .pc { display: block !important; }
#start-area .sp { display: none !important; }


.wrapper{
    max-width: 960px;
    margin: 0 auto 130px auto;
    font-size: 20px;
    padding: 0 4%;
    margin-top: 100px;
}

.sec-tittle{
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 65px;
    margin-top: 65px;
}

#sec-tittle-second{
    margin-top: 100px;
}

#notice dl{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 20px;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}

#notice dl:hover{
    background-color: #f4f4f4;
}

#notice dt{
    padding: 2.5%;
    width:30%;
}

#notice dd{
    padding-left:0;
    padding: 2.5%;
    width:40%;
}

#contact p{
    text-align: center;
    margin-bottom: 20px;
}

#contact dl{
    display: flex;
    flex-wrap: wrap;
}

#contact dt{
    width: 30%;
    margin-bottom: 10px;
}

#contact dd{
    width: 65%;
    margin-bottom: 10px;
}

#contact dd textarea{
    height: 10rem;
}

#contact .button{
    text-align: center;
}

#contact .button input{
    border: 1px solid #24292e;
    width: 200px;
    padding: 15px 0;
    background-color: #24292e;
    color: #fff;
}

#contact .button input:hover{
    background-color: #fff;
    color: #24292e;
}

#contact ul li{
    margin-bottom: 10px;
}


#contact dd input,
#contact dd textarea{
    width: 100%;
    border: 2px solid #c8c8c8;
    padding: 10px;
}

#about-display,
#notice-display,
#view-display,
#navigation-display,
#access-display,
#contact-display{
    height: 3px;
}

.mv{
    width: 100%;
    height: 600px;
    position: relative;
}

.item{
    position: absolute;
    width: 100%;
    height: 100%;
    animation: img-change 15s infinite;
    opacity: 0;
}

.item:nth-child(1){
    animation-delay: 0s;
}

.item:nth-child(2){
    animation-delay: 3s;
}

.item:nth-child(3){
    animation-delay: 6s;
}

.item:nth-child(4){
    animation-delay: 9s;
}

.item:nth-child(5){
    animation-delay: 12s;
}

.item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#required{
    color: red;
}

#navigation dl{
    text-align: center;
}

#navigation img{
    width: 80%;
    height: 600px;
    object-fit: cover;
}

#navigation dl dt{
    width: 100%;
    height: 100%;
    border: 2px solid #e3e3e3;
}

#navigation dl dt:nth-child(1){
    margin-bottom: 10%;
}

button{ 
    background-color: black;
    padding: 0.8rem 0.8rem;
    display:inline-block;
    margin-bottom: 3%;
    color: white;
    font-size: 15px;
}

button:hover{
    background-color: white;
    color: black;
}

#instagram-link{
    text-decoration: none;
    padding: 1.5%;
    border-radius: 3%;
    font-weight: bold;
    font-size: 25px;
    background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
    background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
    overflow: hidden;/*はみ出た部分を隠す*/
    border-radius: 13px;/*角丸に*/
    color: white;
}

#instagram-link::before{
    top: 1%;/*ずらす*/
    left: -5%;/*ずらす*/
    width: 60%;/*グラデーションカバーの幅*/
    height: 60%;/*グラデーションカバーの高さ*/
    background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
    background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);/*グラデーション②*/
}

@keyframes img-change{
    0%{
        opacity: 0;
    }

    10%{
        opacity: 1;
    }

    20%{
        opacity: 1;
    }

    30%{
        opacity: 1;
    }

    40%{
        opacity: 0;
    }

    100%{
        opacity: 0;
    }
}

@media screen and (max-width: 750px){    

    #start-area #start-right-tittle{
        font-size: 30px;
        right:25%;
    }
    
    #start-area #start-tittle{
        font-size: 30px;
        left:45%;
        right:40%;
    }
    
    #start-area #start-left-tittle{
        font-size: 20px;
        left:30%;
    }

    #start-area img{
        max-width:100%;
        height: 500px;
        object-fit: cover;
    }

    #start-area .pc { display: none !important; }
    #start-area .sp { display: block !important; }

    #start-area p{
        font-size: 8px; 
    }

    #about{
        margin-top: 200px;
    } 

    #contact dt{
        width: 35%;
    }
    
    #contact dd{
        width: 70%;
    }

    
    .item img{
        width: 345px;
        height: 300px;
        object-fit: cover;
    }

    .wrapper{
        font-size: 0.9rem;
    }
    
    #navigation img{
        width: 80%;
        height: 400px;
        object-fit: cover;
    }

    #text-layout{
        margin: 5%;
        text-align: start;
    }

    .mv{
        height: 350px;
    }

    #instagram-link{
        font-size: 10px;
    }
    
    ul{
        list-style-type: none;
	padding-left: 0;
    }

    body h2{
        font-family:serif!important;
    }

    #notice dt{
      padding: 2.5%;
      width:30%;
    }

    #notice dd{
      padding-left:0;
      padding: 2.5%;
      width:40%;
    }
}



