body,a{
    color: #000;
    cursor: default;
    font-family: "Noto Serif JP", serif;
    cursor: none;
    line-height: 1.5;
    font-size: 16px;
    letter-spacing: 2px;
}
.sp, .tb{
    display: none;
}
.cursor {
    position: fixed;
    top: -5px; /*座標調整*/
    left: -5px; /*座標調整*/
    width: 20px;
    height: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    z-index: 1000;
    transition: width 0.2s, height 0.2s, top 0.2s, left 0.2s;
    transform: translate(0, 0);
    pointer-events: none;
  }
.cursor.cursor--hover{
    top: -20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: none;
    z-index: 1000;
    border:3px solid rgba(255, 106, 0, 0.6);
  }
.main{
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
}
.main_inner{
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 5%;
}
.header {
    position: relative;
    height: 50px;
    z-index: 999;
}

.header-nav-list {
    display: flex;
}
.header-logo-link, .header-nav-link{
    text-decoration: none;
    color: #000;
    text-shadow: 1px 1px 5px #fff, 1px 1px 5px #fff, 1px 1px 2px #fff;
    font-size: 13px;
    letter-spacing: 1px;
}
.header-nav-link:hover{
opacity: 0.7;
}
.header-nav-item {
    padding: 0 20px;
}
.header_inner {
    position: fixed;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 5%;
    display: flex;
    height: 50px;
    width: 90%;
    justify-content: space-between;
    align-items: center;
    padding: 0 2%;
}

.mv {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 100px);
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
}
.mv_title{
    font-size: 30px;
    letter-spacing: 5px;
}

.gallery{
    padding: 150px 2% 50px;
}
.gallery_inner{
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
}
.gallery_box{
    padding: 0;
    width: 30%;
}
.gallery_img{
transition:all 0.2s ease;
padding: 2rem;
}
.gallery_img img{
    width: 100%;
}
.musk {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 999;
    transition:all 0.2s ease;
}
.musk-textM{
    font-size: 14px;
}
.musk-textS{
    font-family: "Josefin Sans", sans-serif;
    font-size:12px;
    color: #af4d06;
    margin-bottom: 5px;
}
.gallery_img:hover .musk{
    opacity: 1;
    transition:all 1s ease;
}
/* .gallery_img:hover{
    transform: scale(1.1);
    transition:all 1s ease;
} */

.h3_ttl{
    margin-bottom: 20px;
    font-size: 20px;
}
/* .gallery_img_03{
    width: 120%;
}
.gallery_img_03 .musk{
    width: 120%;
}
.gallery_img_01{
    width: 90%;
}
.gallery_img_01 .musk{
    width: 90%;
}
.gallery_img_09{
    width: 100%;
}
.gallery_img_09 .musk{
    width: 100%;
}
.gallery_img_05{
    width: 90%;
}
.gallery_img_05 .musk{
    width: 90%;
}
.gallery_img_04{
    width: 110%;
}
.gallery_img_04 .musk{
    width: 110%;
}
.gallery_img_06{
    width: 85%;
}
.gallery_img_06 .musk{
    width: 85%;
}
.gallery_img_08{
    width: 130%;
}
.gallery_img_08 .musk{
    width: 130%;
}
.gallery_img_02{
    width: 110%;
}
.gallery_img_02 .musk{
    width: 110%;
} */

/* モーダル */
.modal-wrapper{
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.5);
z-index: 999;
display: none;
}
.modal-inner{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: rgba(255,255,255,0.9);
    width: 95%;
    height: 90vh;
    max-height: 90vh;
    overflow-y: scroll;
    z-index: 999;
    max-height: 70vw;
}

.modal-contents{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 5% 10%;
}
.modal-title{
    font-size: 23px;
    margin-bottom: 30px;
}
.modal-movie iframe{
    margin-bottom: 20px;
    width: 100%;
    max-width: 1300px;
    aspect-ratio: 16 / 9;
}
.modal-movie img {
    margin-bottom: 20px;
    width: 100%;
    max-width: 800px;
}
.modal-text a{
    color: #ea6200;
}

/* about */
.mv_about{
    display: flex;
    flex-direction: column;
    height: 20vh;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
}
.about {
    padding: 100px 5% 100px;
}
.about_inner {
    max-width: 800px;
    margin: 0 auto;
}
.about_img{
    width: 40%;
}
.about_img img {
    width: 220px;
    height: 300px;
    object-fit: cover;
}
.about_text {
    margin-bottom: 10px;
    line-height: 1.7;
}
.about_content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_textArea{
    margin-left: 20px;
    width: 70%;
}
.icon img{
    width: 20px;
    margin-left: 10px;
}
.icon a:hover{
    opacity: 0.7;
}
.about_text_top{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.about_name {
    font-size: 20px;
}
.about_text{
    margin-bottom: 10px;
}

/* footer */
.copylight{
    text-decoration: none;

    border-left: 1px solid #000;
    border-right: 1px solid #000;
    margin: 0 5%;
    text-align: center;
    padding: 1rem 0;
}
.mv {
    opacity: 0;
    transition: opacity 3s ease;
  }

  /* スクロールアニメーション */
.mv.on {
    opacity: 1;
  }
.scroll_up {
    transition: 1.0s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}
.scroll_up.on {
    transform: translateY(0);
    opacity: 1.0;
}
.gallery_inner li:nth-of-type(3n+1){
    transition-delay: 0.2s;
  }
.gallery_inner li:nth-of-type(3n+2){
    transition-delay: 0.4s;
  }
.gallery_inner li:nth-of-type(3n){
    transition-delay: 0.6s;
  }
.gallery_inner li:nth-of-type(n+4){
    margin-top:10px;
 }

  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }

    to {
      opacity: 1;
    transform: translateY(0);
    }
  }


/* tb */
@media screen and (max-width:1024px) {
    .tb{
        display: block;
    }
    .cursor,.cursor.cursor--hover{
        display: none;
    }
    .header-nav-item {
        padding: 0 10px;
    }
    .about{
        padding:50px 5% 100px;
    }
    .about_img {
        margin-bottom: 20px;
    }
    .gallery_box{
        width: 50%;
        padding: 1rem;
    }
    .modal-tag {
        flex-wrap: wrap;
        gap: 12px 0px;
    }
    .modal-title {
        font-size: max(3vw,16px);
    }
    .modal-inner{
        max-height: 75vh;
        height: auto;
    }
    /* スクロールアニメーション */
    .gallery_inner li:nth-of-type(2n+1){
        transition-delay: 0.2s;
      }
    .gallery_inner li:nth-of-type(2n){
        transition-delay: 0.4s;
      }
    .gallery_inner li:nth-of-type(n+3){
        margin-top:4%;
      }
}
@media screen and (max-width:768px) {
    .sp{
        display: block;
    }
    .h3_ttl{
        margin-bottom: 20px;
        font-size: max(3vw,15px);
    }
    .gallery_box{
        width: 100%;
        padding: 5%;
    }
    .musk-textS{
        font-size: 9px;
        line-height: 2;
        margin-bottom: 0;
    }
    .musk-textM{
        font-size: 10px;
        line-height: 1.3;
    }
    .modal-text,modal-text a{
        font-size: max(2.5vw,10px);
    }
.about_content{
    flex-direction: column;
}
.about_img{
    width: 80%;
    margin-bottom: 40px;
}
.about_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about_textArea {
    width: 100%;
    margin-left: 0;
}
.about_name{
    font-size: 15px;
}
.about_text{
    font-size: 13px;
}
}