@charset "UTF-8";

/*****************************
  topスライド
*****************************/
.topsec-firstview{
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .topsec-firstview{
    padding-top: 80px;
  }
}

/*****************************
  TOP ACTORS
*****************************/
.actflex{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.actfbox{
  width: calc(100% / 5);
  padding: 5px;
  opacity: 0;
  transform: translateY(20px);
}
.actfbox.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.actfbox img{
  aspect-ratio: 3/4;
  object-fit: cover;
  max-width: 100%;
}
.actfbox p{
  margin-top: 6px;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .actfbox{
    width: calc(100% / 2);
  }
  .actfbox p{
    font-size: 18px;
  }
}

/*****************************
  TOP ACTORS DESIGN TXT
*****************************/
.designtxt{
  font-family: "oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20rem;
  color: #1a1a1a;
  line-height: 18rem;
  position: absolute;
  bottom: -15%;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 820px) {
  .designtxt {
    font-size: 15rem;
    line-height: 13rem;
    bottom: -10%;
  }
}
@media only screen and (max-width: 767px) {
  .designtxt {
    font-size: 10rem;
    line-height: 8rem;
    bottom: -2%;
  }
}

/*****************************
  topsec-news
*****************************/
.topsec-news{
  margin: 30px 0;
  padding: 30px 0;
}
.topsec-news input[type="radio"] {
  display: none;
}
.topsec-news .tab_area{
  margin-bottom: 3rem;
}
.topsec-news .tab_area .ftab{
  background: #ccc;
  border-radius: 5px;
  margin-right: 10px;
  position: relative;
  text-align: center;
  width: calc(15% - 10px);
}
.topsec-news .tab_area .ftab label{
  cursor: pointer;
  display: block;
  font-weight: bold;
  padding: .3rem 0;
  position: relative;
  width: 100%;
  z-index: 1;
}
.topsec-news .tab_panel{
  display: none;
}
.topsec-news .tab_area .ftab:hover,
.topsec-news #tnewstab1:checked ~ .tab_area .tnewsftab1{
  background: #101010;
  color: #fff;
}
.topsec-news .tab_area .tnewsftab2:hover,
.topsec-news #tnewstab2:checked ~ .tab_area .tnewsftab2{
  background: #001A66;
  color: #fff;
}
.topsec-news .tab_area .tnewsftab3:hover,
.topsec-news #tnewstab3:checked ~ .tab_area .tnewsftab3{
  background: #E40000;
  color: #fff;
}

.topsec-news #tnewstab1:checked ~ .panel_area #tnewspanel1,
.topsec-news #tnewstab2:checked ~ .panel_area #tnewspanel2,
.topsec-news #tnewstab3:checked ~ .panel_area #tnewspanel3{
  display:block;
}

@media only screen and (max-width: 1024px) {
  .topsec-news .tab_area {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 820px) {
  .topsec-news .tab_area .ftab{
    margin: 1rem 1rem 0 0;
    width: calc(30% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .topsec-news .t-newsttlbox,
  .topsec-news .tab_area .ftab label{
    font-size: 1.4rem;
  }
  .topsec-news .tab_area .ftab{
    width: calc(33% - 10px);
  }
}

/*****************************
  お知らせ一覧
*****************************/
.newslist{
  margin-bottom: 60px;
}
.newslinktab{
  margin-bottom: 5rem;
}
.newslinktab li{
  width: calc(15% - 10px);
}
.newslinktab  a.label{
  background: #ccc;
  border-radius: 5px;
  display: block;
  font-weight: bold;
  margin-right: 10px;
  opacity: 1 !important;
  padding: .3rem 0;
  position: relative;
  text-align: center;
}
.newslinktab  a.label:hover,
.newslinktab  a.label.label_cr{
  background: #101010;
  color: #fff;
}
.newslinktab  a.label.label_cr{
  pointer-events: none;
}
.newslinktab  a.label2:hover,
.newslinktab a.label2.label_cr{
  background: #001A66;
}
.newslinktab  a.label3:hover,
.newslinktab a.label3.label_cr{
  background: #E40000;
}

.newslist li{
  margin-top: 1rem;
}
.newslist a{
  opacity: 1 !important;
  position: relative;
  display: block;
}
.newslist a::before,
.newslist a::after{
  content: "";
  background: #959595;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
}
.newslist a::after{
  background: #555;
  transition: 0.3s;
  width: 7%;
  z-index: 1;
}
.newslist a:hover::after{
  width: 100%;
}
.newslist a .cat,
.singlehead .cat{
  background: #888;
  border-radius: 5px;
  color: #fff;
  margin-right: 1rem;
  text-align: center;
  width: 135px;
}
.newslist a .cat-cat01,
.singlehead .cat-cat01{
  background: #001A66;
}
.newslist a .cat-cat02,
.singlehead .cat-cat02{
  background: #E40000;
}
.newslist a .ttl{
  padding: 1rem 0;
}
@media only screen and (max-width: 820px) {
  .newslinktab li{
    margin: 1rem 1rem 0 0;
    width: calc(30% - 10px);
  }
}
@media only screen and (max-width: 767px) {
  .newslinktab li{
    width: calc(50% - 10px);
  }
  .newslist a .cat{
    font-size: 1.2rem;
    line-height: 2;
    width: 110px;
  }
  .newslist a .date{
    font-size: 1.4rem;
  }
  .singlehead .ttl{
    font-size: 2rem;
  }
}
.newsflex{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
.newsimg{
  width: 20%;
  margin-right: 20px;
}
.newscont{
  width: 76%;
}
.newsimg img{
  width: 100%;
  height: 120px;
  object-fit: cover;
  padding: 5px;
  aspect-ratio: 4/3;
}
@media only screen and (max-width: 767px) {
  .newsimg{
    margin-right: 10px;
  }
  .newsimg img{
    padding: 0;
    height: auto;
  }
}

/*****************************
  ボタン
*****************************/
.top_btn {
  margin: 20px 0;
}
.top_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 230px;
  margin: 0 auto;
  padding: 5px 30px 5px 2px;
  border: 1px solid #888;
  color: #ddd;
  font-size: 1em;
  transition: .6s;
  background: #282828;
  border-radius: 50px;
}
.top_btn a:hover {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 1px solid #282828;
  color: #888;
  background: #282828;
  opacity: 1;
  transition: .6s;
}
.top_btn a::after {
  position: absolute;
  right: 2em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: .5em;
  background-color: #fff;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
  transition: .6s;
}
.top_btn a:hover::after {
  /* transform: translateY(-50%) scaleX(1.4); */
  border: 1px solid #888;
}
.top_btn a:hover::after {
  position: absolute;
  right: -1.5em;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: .5em;
  background-color: #888;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: '';
}

/*****************************
  TOP TTL
*****************************/
.topttl{
  margin: 20px 0;
}
.topttl h2{
  color: #adadad;
  font-size: 6rem;
  line-height: 6rem;
  word-break: normal;
}


/*****************************
  TOP MESSAGE
*****************************/
.topmessage{
  color: #adadad;
}
.topmesflex{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
}
.topmesfbox{
  width: 30%;
  margin-right: 30px;
}
.topmesfbox2{
  width: calc(70% - 30px);
}
.topmessage .designtxt {
  font-family: "oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20rem;
  color: #1a1a1a;
  line-height: 18rem;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  word-break: normal;
}
@media only screen and (max-width: 767px) {
  .topmesfbox{
    width: 100%;
    margin-right: 0;
  }
  .topmesfbox2{
    width: 100%;
  }
  .topmessage .designtxt{
    font-size: 10rem;
    line-height: 10rem;
  }
}

/******************************
スクロール連動アニメーション
******************************/
.leftover-box {
  overflow: hidden;
}
.leftover-box .leftover-box-in {
  overflow: hidden;
  position: relative;
  transition-delay: 0.1s;
  transform: translate3d(-100.5%, 0px, 0px);
  transition-delay: 0s;
  transition-duration: 1.5s;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  transform-origin: left center;
  transition-property: transform, -webkit-transform;
}
.leftover-box.animated .leftover-box-in::before {
  transform: scale(0, 1);
}
.leftover-box .leftover-box-in::before {
  content: "";
  background: #1a1a1a;
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  transform: scaleX(1);
  transition-delay: 0.4s;
  transition-duration: 1.5s;
  transform-origin: right center;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 5;
}
.leftover-box .leftover-box-in img {
  transform: scale(1);
  transition-duration: 4s;
  transition-property: transform, -webkit-transform;
  transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
.leftover-box.animated .leftover-box-in {
  transform: translate3d(0px, 0px, 0px);
}