@charset "utf-8";

.pc{
  display: block;
}
.sp{
  display: none;
}

.site-main{
  max-width: 1030px;
  margin: 0 auto;
  padding: 0 !important;
  transition: opacity 0.3s;
  opacity: 0;
}
.site-main.on{
  opacity: 1;
  max-height: 100%;
}


#loading {
  text-align: center;
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: auto;
}

#loading p {
  text-align: center;
  font-size: 70px;
}

.entry-header{
  border-bottom: solid 2px #DC123C;
  padding-bottom: 8px;
  margin-bottom: 32px;
}
.entry-header .single_title{
  font-size: 1.14rem;
  margin-bottom: 4px;
  text-align: center;
}
.entry-header .single_roman{
  font-size: 0.86rem;
  margin-bottom: 0;
  text-align: center;
}






.single-talent_main figure{
  margin: 0;
}
.mainblock_1{
  display: flex;
  margin-bottom: 16px;
}
.mainblock_1 .main_img{
  width: 24%;
  margin-right: 8%;
  margin-left: 7px;
}
.mainblock_1 .main_img img{
  width: 100%;
}
.personal_data{
  width: 68%;
  padding-right: 15%;
}
.personal_data table td:first-of-type{
  width: 25%;
}
.sns_area{
  display: flex;
  align-items: center;
  margin: 0 0 0 10px;
}
.sns_area li{
  list-style-type: none;
  width: 40px;
  margin-right: 16px;
}
.sns_area li.composit_listitem{
  width: 120px;
}
.sns_area li:last-of-type{
  margin-right: 0;
}
.sns_area li img{
  width: 100%;
  height: auto;
}

.mainblock_2{
  margin-bottom: 64px;
}
.mainblock_2 ul{
  list-style: none;
  /* margin: 0;
  display: flex;
  flex-wrap: wrap; */
  margin: 0 auto;
  overflow: hidden;
  /* transition: opacity 0.3s;
  opacity: 0; */
  /* max-height: 100vh; */
  max-height: 100%;
  box-sizing: border-box;
}
.mainblock_2 ul li{
  /* max-width: 18%;
  margin-right: 2%; */
  max-width: 206px;
  padding: 5px;
}
/* .mainblock_2 ul li:nth-of-type(5n){
  margin-right: 0;
} */
.mainblock_2 ul li img{
  max-width: 100%;
  height: auto;
}


#overLay{
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.65);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  opacity: 0;
  display: none;
}
.modal{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100vw;
}
.modal .modal-image{
  /* max-width: 1000px;
  max-height: 640px; */
  max-width: 48vw;
  max-height: 86vh;
  border: 4px solid rgba(255,255,255,1);
  border-radius: 8px;
}
.arrow{
  width: 60px;
  height: 60px;
  opacity: 0.4;
}
.arrow-left{
  margin-right: 48px;
}
.arrow-right{
  margin-left: 48px;
}
.fade-in{
  animation-name: fade-in;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
  animation-iteration-count: 1;
}
@keyframes fade-in {
  0%{
      opacity: 0;
  }
  100%{
      opacity: 1;
  }
}

.mainblock_3 table tr{
  min-height: 32px;
  height: 32px;
}
.mainblock_3 table td p{
  margin-bottom: 0.4em;
}

@media(max-width: 768px){
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
  .mainblock_1 .main_img{
    width: 60%;
    margin: 0 auto;
  }
  .personal_data{
    width: 100%;
    padding-right: 0;
    margin-bottom: 64px;
  }
  .personal_data table td:first-of-type{
    width: 25%;
  }
}

@media(max-width: 600px){
  .personal-data-area{
    min-width: 50% !important;
  }
  .modal{
    display: block;
    position: relative;
  }
  .modal .modal-image{
    /* max-width: 300px;
    max-height: 360px; */
    max-width: 96vw;
    max-height: 80vh;
    display: block;
    margin: 8px auto 0;
  }
  .arrow-left{
    margin-right: 0;
    position: absolute;
    bottom: 32px;
    left: 20%;
  }
  .arrow-right{
    margin-left: 0;
    position: absolute;
    bottom: 32px;
    right: 20%;
  }
  .mainblock_2 ul li{
    max-width: 135px;
  }
}