@charset "UTF-8";

.l-headerLogo{
  opacity: 0;
  pointer-events: none;
}
.l-headerLogo.w{
  opacity: 1;
  pointer-events: inherit;
}
.l-headerLogo::after{
  color: #fff;
}

.mv{
  position: relative;
  background: linear-gradient(90deg, #397D87 0%, #1A4E56 100%);
  width: 100%;
  height: 550px;
}
.mv .tit{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  font-size: clamp(1rem, 1.5vw, 2rem);
  color: #CCBFA3;
  z-index: 1;
}
.mv .tit strong{
  display: block;
  font-size: clamp(2.8rem, 6vw, 8rem);
  line-height: 1;
  margin: 0 auto 15px;
}
@media(max-width: 768px) {
  .mv{
    height: 200px;
  }
  .mv .tit{
    top: 60%;
  }
  .mv .tit strong{
    margin: 0 auto 5px;
  }
}

main.l-main{
  padding: 120px 0;
  background-color: #F7F5F1;
}
@media(max-width: 768px) {
  main.l-main{
    padding: 60px 0;
  }
}

#login .login-box{
  max-width: 1120px;
  width: 90%;
  margin: 0 auto 80px;
}
#login .login-box{
  box-shadow: 4px 4px 7px rgba(0,0,0,.5);
  border-radius: 30px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #397D87 0%, #1A4E56 100%);
  border: solid 2px #BEB28B;
  padding: 100px 0;
}

#login .login-box .in{
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
#login .login-box .in input[type="password"]{
  border: solid 1px #e9e9e9;
  background-color: #fff!important;
  padding: 10px;
  box-sizing: border-box;
  width: calc(100% - 120px);
  font-size: clamp(1rem,1.3vw,1.5rem);
  text-align: left;
}
#login .login-box .in input[type="password"]:focus{
  background-color: #fff;
}
#login .login-box .in button[type="submit"] {
  background-color: #D2D2D2;
  border: none;
  font-size: clamp(1.2rem,1.6vw,2rem);
  line-height: 1;
  display: block;
  padding: 10px 5px;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  min-width: 110px;
  width: 110px;
  transition: 0.3s;
  border-radius: 5px;
}
#login .login-box .in button[type="submit"]:hover{
  background-color: #000;
  color: #fff;
}
#login .login-box .error{
  font-size: clamp(1rem,1.2vw,1.4rem);
  margin: 10px auto 0;
  color: #ff0;
  text-align: center;
}
#login .login-box .l-txt02{
  font-size: clamp(1.4rem,1.7vw,2rem);
  margin: 20px auto 0;
  color: #CCBFA3;
  text-align: center;
}
#login .limited-contents{
  border: solid 2px #BEB28B;
  border-radius: 30px;
  padding: 5px;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
#login .limited-contents .in{
  border: solid 1px #BEB28B;
  border-radius: 25px;
  padding: 30px;
  color: #99845B;
}
#login .limited-contents .in .tit{
  font-size: clamp(1.8rem,2.6vw,3rem);
  line-height: 1;
  letter-spacing: .25rem;
  margin: 0 auto 10px;
  text-align: center;
}
#login .limited-contents .in .txt{
  font-size: clamp(1.2rem,1.4vw,1.7rem);
  line-height: 1;
  letter-spacing: .25rem;
  margin: 0 auto 30px;
  text-align: center;
}
#login .limited-contents .in ul{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}
#login .limited-contents .in ul li{
  width: 32%;
}
#login .limited-contents .in ul li .txt-box{
  position: relative;
  z-index: 1;
}
#login .limited-contents .in ul li .name{
  font-size: clamp(2.4rem,2.6vw,2.8rem);
  line-height: 1;
  letter-spacing: .25rem;
  margin: -2.5rem 0 5px;
}
#login .limited-contents .in ul li .kana{
  font-size: clamp(1.2rem,1.3vw,1.4rem);
  line-height: 1.4;
}
#login .notice-txt{
  font-size: clamp(1.4rem,1.6vw,2rem);
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 20px;
  color: #99845B;
}
@media(max-width: 768px) {
  #login .login-box{
    margin: 0 auto 0;
    box-shadow: 2px 2px 4px rgba(0,0,0,.5);
    border-radius: 15px;
    margin-bottom: 30px;
    border: solid 1px #BEB28B;
    padding: 30px 10px;
  }
  #login .login-box .in input[type="password"]{
    padding: 8px 5px;
    width: 100%;
  }
  #login .login-box .in button[type="submit"] {
    min-width: 100px;
    width: 100px;
    margin: 10px auto 0;
  }
  #login .login-box .l-txt02{
    margin: 10px auto 0;
  }
  #login .limited-contents{
    border-radius: 15px;
  }
  #login .limited-contents .in{
    border: solid 1px #BEB28B;
    border-radius: 10px;
    padding: 20px 20px 5px;
  }
  #login .limited-contents .in ul{
    display: block;
  }
  #login .limited-contents .in ul li{
    width: 100%;
    margin-bottom: 20px;
  }
}

#members .head-txt{
  font-size: clamp(1.4rem,1.5vw,1.7rem);
  line-height: 1.8;
  text-align: center;
  max-width: 1120px;
  width: 90%;
  margin: 0 auto 60px;
}
#members .limited-contents{
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#members .limited-contents li{
  position: relative;
  padding: 100px 0;
  margin-bottom: 100px;
}
#members .limited-contents li:last-child{
  margin-bottom: 0;
}
#members .limited-contents li:after{
  content: '';
  position: absolute;
  width: 200%;
  height: 100%;
  background-color: #EBE5DA;
  top: 0;
  right: 40%;
  z-index: -1;
}
#members .limited-contents li a{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  color: #4E6D6B;
}
#members .limited-contents li .img{
  max-width: 565px;
  width: 50%;
}
#members .limited-contents li .modal-open{
  transition: .3s;
  cursor: pointer;
}
#members .limited-contents li .modal-open:hover{
}
#members .limited-contents li .txt-box{
  max-width: 520px;
  width: 40%;
  margin-left: 5%;
}
#members .limited-contents li .txt-box .name{
  font-size: clamp(4rem,5.5vw,7rem);
  line-height: 1;
  letter-spacing: .25rem;
  margin: 0 0 10px;
}
#members .limited-contents li .txt-box .kana{
  font-size: clamp(1rem,1.4vw,1.8rem);
  line-height: 1.4;
}
#members .limited-contents li .more{
  position: absolute;
  bottom: 100px;
  right: 10%;
}
#members .limited-contents li .more{
  color: #fff;
  display: inline-block;
  width: fit-content;
  margin-left: auto;
  font-size: clamp(1.5rem,1.8vw,2rem);
  line-height: 1;
  position: relative;
  padding: 0 40px 5px 0;
  transition: .3s;
  color: #4E6D6B;
}
#members .limited-contents li .more:after{
  content: '';
  background: url(../images/members_01/arw01.svg) no-repeat bottom right;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
}
#members .limited-contents li a:hover .more{
  color: rgba(0,132,135, .75);
}
#members .limited-contents li a:hover .more:after{
  right: -5px;
}
#members .footerNotice{
  background-color: #fff;
}
/* モーダルと背景の指定 */
#members .modal{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,50%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 100;
}
/* モーダルの擬似要素の指定 */
#members .modal:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
/* クラスが追加された時の指定 */
#members .modal.is-active{
  opacity: 1;
  visibility: visible;
}
/* モーダル内側の指定 */
#members .modal-container{
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}
/* モーダルを閉じるボタンの指定 */
#members .modal-close{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}
/* モーダルのコンテンツ部分の指定 */
#members .modal-content{
  text-align: left;
  line-height: 1.8;
}
#members .modal-content .movie{
  width: 100%;
  aspect-ratio: 16 / 9;
}
#members .modal-content .movie iframe,
#members .modal-content .movie video {
  width: 100%;
  height: 100%;
}
@media(max-width: 768px) {
  #members .head-txt{
    text-align: left;
    margin: 0 auto 30px;
  }
  #members .limited-contents{
    width: 100%;
  }
  #members .limited-contents li{
    display: block;
    padding: 40px 5%;
    margin-bottom: 20px;
  }
  #members .limited-contents li:after{
    width: 100%;
    height: 71%;
    right: initial;
    left: 0;
  }
  #members .limited-contents li .img{
    max-width: none;
    width: 100%;
  }
  #members .limited-contents li .txt-box{
    max-width: none;
    width: 100%;
    margin: 10px 0 0;
  }
  #members .limited-contents li .more{
    position: relative;
    bottom: initial;
    right: initial;
    text-align: right;
    margin-top: 15px;
  }
}