/* モーダルCSS */
.modalArea {
    display: none;
    position: fixed;
    z-index: 10; /*サイトによってここの数値は調整 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .modalBg {
    width: 100%;
    height: 100%;
    background-color: rgba(30,30,30,0.9);
  }
  
  .modalWrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform:translate(-50%,-50%);
    width: 70%;
    max-width: 500px;
    padding: 10px 30px;
    background-color: #fff;
    height : 90%; 
    overflow : auto; 
  }
  .modalContents p img{
    height: 100%;
    width: 100%;
  }
  .closeModal {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    cursor: pointer;
  }
  
  
  /* 以下ボタンスタイル */
  button {
    color: #fff;
    font-weight: bold;
    padding: 10px;
    background-color: #67C6D3;
    border-radius: 0.25rem;
    cursor: pointer;
    border: none;
    width: 100%;
  }
  
/*めいん*/
#changePic {
    animation :imgfade 4s infinite;
    opacity: 0;
    }
    
    @keyframes imgfade {
        0% {
            opacity: 0;
        }
        
        25% {
            opacity: 1;
        }
        50% {
            opacity: 1;
        }
    
        75% {
            opacity: 1;
        }
        100% {
            opacity: 0;
        }
    }
.btn{
    margin: 0 10px 0 0;
}
.main{
    text-align: center;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}
.top-title-left{
    position: absolute;
    color: #ffffff;
    top: 70px;
    left: 0;
    width:40%;
    height:auto;
    background-color: #67C6D3;
    padding: 10px 0px 2px 200px;
    z-index: 100;
}
.top-image{
    height: 90vh;
    width: 100%;
    border-radius: 0px 0px 50px 50px;
}
.top-image img{
    width: 100%;
    height: auto;
    position: absolute;
    border-radius:0 0 50px 50px;
}
.top-image .title-txt{
    background-color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    font-weight: bold;
    font-size: 1.25em;
    width: 100%;
    position: absolute;
    top: 91%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.coming-box{
    position: absolute;
    background-color: #67C6D3;
    padding: 10px 20px;
    color: #ffffff;
    width: 300px;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.contents-info{
    position: relative;
    margin: 80px auto 0 auto;
    max-width: 1000px;
}
.contents-info-title{
    background-color: #67C6D3;
    padding: 10px 20px;
    color: #ffffff;
    width: 50%;
    margin-bottom: 40px;
}
.contents-info-txt{
    background-color: #f3f3f3;
    width: 90%;
    padding: 40px 60px;
    margin-left: 20px;
}
.contents-member{
    position: relative;
    margin: 80px auto 0 auto;
    max-width: 1000px;
}
.contents-member-title{
    background-color: #67C6D3;
    padding: 10px 20px;
    color: #ffffff;
    width: 50%;
    margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
    .modalWrapper {
        height : 64%; 
      }
    .top-title-left{
        position: absolute;
        color: #ffffff;
        top: 0px;
        left: 0;
        width:56%;
        height:auto;
        background-color: rgba(103,198,211,0.7);
        padding: 16px 0px 8px 20px;
        z-index: 100;
    }
    .top-image{
        overflow:hidden;
        height: auto;
        width:96%;
        margin: 0 auto;        
    }
    .top-image img{
    position: relative;
    margin-left: -100px;
    width: 1000px;
    height:auto;
    }
    .top-image .title-txt{
        top: 91%;
    }
    .contents-info-title{
        background-color: #67C6D3;
        padding: 12px 20px;
        color: #ffffff;
        width: 90%;
        margin-bottom: 40px;
    }
    .contents-info-txt{
        background-color: #f3f3f3;
        width: 90%;
        padding: 10px 20px;
        font-size: 1.05rem;
        line-height: 220%;
    }
    .contents-member-title{
        background-color: #67C6D3;
        padding: 10px 20px;
        color: #ffffff;
        width: 80%;
        margin-bottom: 40px;
    }
    }
@media screen and (max-width: 400px) {
    .modalWrapper {
        width: 90%;
        height : 64%; 
      }
    h1{
        font-size: 1.5em;
    }
    .top-title-left{
        top: 0px;
        width: 80%;
    }
    .top-image{
        overflow:hidden;
        height: auto;
        width:96%;
        margin: 0 auto;        
    }
    .top-image img{
    position: relative;
    margin-left: -120px;
    width: 600px;
    height:auto;
    }
    .top-image .title-txt{
        font-size: 1em;
    }
}