@charset "UTF-8";

* {
  list-style: none;
}

html {
  font-size: 16px;
  font-family: 'Noto Sans JP', 'Lato', 'sans-serif';
  font-style: normal;
  height: 100%;
}

body {
  min-height: 100%;
  /* display: flex;
  flex-direction: column; */
  /* transform: translate3d(0, 0, 0); */
  color: #5D5D5D;
}

img {
  width: 100%;
  height: auto;
}

p {
  color: ;
}

a {
  color: #70B97E;
}

header {
  z-index: 999;
  background: #90ce9cd9;
  height: 60px;
  position: fixed;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
}

footer {
  padding: 60px 40px;
  background: #fff;
  /* background: #f1f1f1; */
  margin-top: auto;
  text-align: center;
}

footer img {
  max-width: 200px;
}

footer a {
  display: inline-block;
  text-align: center;
}

footer .copy {
  font-size: 10px;
  color: #5D5D5D;
  text-align: center;
}

section {
  margin: 2rem 0;
}

section:last-child {
  margin-bottom: 0;
}

section h2 {
  font-weight: normal;
  font-size: 16px;
  border-bottom: 6px solid #90CE9C;
  padding-bottom: 4px;
  position: relative;
  margin-bottom: 1rem;
}

section h2 span {
  opacity: .2;
  font-size: 40px;
  position: absolute;
  right: 0;
  bottom: 0;
}

::selection {
  background: #90ce9cd9;
  color: #fff;
}

::-moz-selection {
  background: #90ce9cd9;
  color: #fff;
}

#decimal {
  list-style-type: decimal;
}

/*ローディング*/
.loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
}

.loading.is-active {
  opacity: 0;
  visibility: hidden;
}

.loading-animation {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #90ce9cd9;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  flex-direction: column;
}

.loading-animation img {
  max-width: 200px;
}

.loading-animation.is-active {
  opacity: 1;
  visibility: visible;
}

.loading i {
  color: #fff;
  font-size: 40px;
}

.material-icons.rotate {
  -webkit-animation: spin 1.5s linear infinite;
  -moz-animation: spin 1.5s linear infinite;
  -ms-animation: spin 1.5s linear infinite;
  -o-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(-360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(-360deg);
  }
}

@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }

  100% {
    -ms-transform: rotate(-360deg);
  }
}

@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }

  100% {
    -o-transform: rotate(-360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/*gotop*/
#js-pagetop {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #9bdda8d9;
  color: #fff;
  bottom: 30px;
  right: 20px;
  cursor: pointer;
  z-index: 1;
}

#js-pagetop span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 100%;
  text-align: center;
  font-size: 30px;
}

.page-title {
  background-image: url(../img/title-back.jpg);
  object-fit: contain;
  height: 300px;
  background-size: cover;
  background-position: center;
  text-align: center;
  line-height: 300px;
  position: relative;
  color: #fff;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
}

.page-title span {
  position: absolute;
  top: -10%;
  color: #ffffff7a;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.openbtn {
  display: none;
}

#g-nav {
  display: none;
}

.bg-g {
  color: #fff;
  background: #90CE9C;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 40px;
}

.bg-g h2 {
  border-bottom: 6px solid #ffffff7a;
}

.bg-g a {
  color: #fff;
  text-decoration: none;
}

.menu {
  display: flex;
  position: absolute;
  right: 40px;
  top: 0;
}

.menu a {
  color: #fff;
  text-decoration: none;
  padding: 1rem;
  display: block;
}

/*パンくずリスト*/
.breadlist {
  font-size: 12px;
  margin: 1rem 0;
}

ol li {
  display: inline;
}

ol li:after {
  color: hsl(0, 0%, 62%);
  content: " > ";
}

ol li:last-child:after {
  content: "";
}

.logo {
  max-width: 200px;
  margin-left: 40px;
}

.visual {
  width: 100%;
  padding-top: 600px;
  background: url("../img/top-cast_202312.webp");
  background-size: 1500px 600px;
  animation: bg_slide2 20s linear infinite;
}

@keyframes bg_slide2 {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -1500px 0;
  }
}

.area {
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.link {
  display: flex;
  align-items: flex-end;
}

.link a {
  display: block;
  max-width: 300px;
  margin-right: 20px;
  text-decoration: none;
}

.talentpage h3 {
  font-size: 16px;
}

.profile h4 {
  font-size: 30px;
}

.profile {
  width: 100%;
  border-collapse: collapse;
}

.profile h3 {
  margin-top: 1rem;
}

.profile .title {
  width: 100%;
  text-align: left;
  border-bottom: 4px solid #90ce9c;
  font-size: 20px;
  font-weight: 600;
  margin-top: 2rem;
  padding: 0 1rem 0.5rem 1rem;
}

.profile td {
  border-bottom: 1px dashed #999;
  padding: 1rem;
}

.profile th {
  vertical-align: top;
  text-align: left;
  padding: 1rem;
  border-bottom: 2px solid #b0d9b8;
}

/*sns*/
.profile .name ul {
  display: flex;
  justify-content: center;
}

.profile .name ul li {
  width: 20px;
  margin: 1rem 1rem 0 0;
}

.follower th {
  width: 30%;
}

.talentpage .link {
  text-align: center;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: flex-end;
}

.talentpage .link div {
  width: 50%;
}

.talentpage .link div a {
  max-width: inherit;
}

.talentpage .link .out-pdf {
  background: #90ce9c;
  color: #fff;
  padding: 1rem;
}

.talentpage .link .contact-req {
  width: 100%;
  padding: 1rem;
  border: 1px solid #90ce9c;
  text-decoration: none;
}

.contact .formlink .contact-app, .contact .formlink .contact-req {
  background: #90ce9c;
  color: #fff;
  width: 100%;
  text-decoration: none;
  padding: 1rem;
}

.talentpage p {
  font-size: 12px;
}

.talentpage .contact-req::before {
  color: inherit;
}

.talent-photo {
  display: flex;
  align-content: center;
  justify-content: center;
  width: 100%;
  /* max-height: 500px; */
}

.talent-photo div {
  /* width: 100%; */
  width: 50%;
  /* margin-right: 1rem; */
}

.talent-photo div:last-child {
  margin-right: 0;
}

.innner {
  margin: 0 auto;
  max-width: 960px;
}

.connection {
  display: inherit;
  font-size: 14px;
}

.connection a {
  max-width: inherit;
  text-decoration: underline;
  margin-bottom: 1rem;
}

.innner p {
  margin-top: 1rem;
}

/*pc-news*/
.news li {
  position: relative;
  font-size: 14px;
  border-bottom: 1px solid #cdcdcd;
}

.newspage .news .more {
  width: 20%;
}

.news li a::after {
  font-family: 'Material Icons';
  position: absolute;
  top: 50%;
  right: 10px;
  content: '\e409';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news li a {
  display: block;
  padding: 1rem 2rem 1rem 1rem;
  text-decoration: none;
  color: inherit;
}

.newsdata {
  text-align: right;
}

.newsdetail h2 {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 0.5rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.newsdetail img {
  max-width: 500px;
  display: block;
  margin: 1rem auto;
}

.talent-col:hover, a:hover {
  opacity: .5;
  transition: all .3s;
}

.more {
  position: relative;
  display: block;
  width: 100px;
  margin: 1rem 0 0 0;
  margin-left: auto;
  padding: 0.5rem 0 0.5rem 1.5rem;
  text-decoration: none;
  color: #90ce9c;
  border: 1px solid #90ce9c;
}

.more::after {
  font-family: 'Material Icons';
  position: absolute;
  top: 50%;
  right: 10px;
  content: '\e5e1';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.news li span {
  margin-right: 2rem;
}

.contact {
  margin: 3rem 0 0 0;
}

.finalconfirm .item {
  border-bottom: 1px solid #c9c9c9;
  padding: 0 1rem 1rem 1rem;
}

.contact .contact-req,
.contact .contact-app {
  display: block;
  width: 300px;
  margin-top: 1rem;
  padding: 1rem;
  text-align: center;
  /* border: 1px solid #90ce9c; */
  font-size: 14px;
  background: #fff;
  color: #90ce9c;
}

.aboutpage h3 {
  margin: 2rem 0;
  padding: 0 0 0.5rem 0.5rem;
  border-bottom: 4px solid #90ce9c;
}

.about .link .contact-req::before, .contact-req::before {
  font-family: 'Material Icons';
  content: '\e0be';
  color: #90ce9c;
  vertical-align: -2px;
  margin-right: 3px;
}

#g-nav .contact-req::before, #g-nav .contact-app::before {
  color: #fff;
}

.about .link .contact-app::before, .contact-app::before {
  font-family: 'Material Icons';
  content: '\e7fd';
  color: #90ce9c;
  vertical-align: -2px;
  margin-right: 3px;
}

.about {
  text-align: center;
}

.about .link a {
  margin: 1rem auto;
  width: 100%;
  text-decoration: none;
  border: 1px solid #70B97E;
}

.about .link .contact-req::before, .about .link .contact-app::before {
  color: #70B97E;
}

.contact .formlink .contact-app::before, .contact .formlink .contact-req::before {
  color: #fff;
}

.about .link div {
  width: 50%;
  margin-top: 1rem;
  margin-right: 1rem;
}

.about .link p {
  font-size: 14px;
}

footer .link {
  color: inherit;
  font-size: 12px;
  display: flex;
  justify-content: center;
}

footer .link a {
  color: inherit;
  text-decoration: none;
  border: 1px solid #5D5D5D;
  padding: 0.5rem;
}

footer .link a:last-child {
  margin-right: 0;
}

footer .contact-req::before, footer .contact-app::before {
  color: inherit;
}

.talent-group {
  display: flex;
  flex-wrap: wrap;
}

.talent-col {
  width: 25%;
  padding: 0 1rem;
  position: relative;
  margin-bottom: 1rem;
}

.talent-col a {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.talent-col h3 {
  font-size: 12px;
  border-left: 3px solid #90ce9c;
  padding-left: 3px;
  font-weight: normal;
  margin-bottom: .5rem;
}

.talent-col p {
  font-size: 13px;
}

.talent-col img {
  /* max-width: 200px; */
}

.sns-follower {
  vertical-align: baseline;
}

.sns-follower th {
  font-size: 12px;
  margin-right: 0.5rem;
  display: block;
}

.talentpage .talent-col {
  margin-bottom: 2rem;
}

/*pc-タレントページ*/
.slider {
  background: #f0f7e7;
}

.name {
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.slick-prev {
  left: 10px;
  z-index: 1;
}

.slick-next {
  right: 10px;
  z-index: 1;
}

.slick-track {
  display: flex;
}

.profile i {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

/*pc-コンタクト*/
.contactpage {
  margin-top: 2rem;
}

.formlink {
  display: flex;
  align-content: center;
  justify-content: center;
}

.formlink div {
  width: 50%;
  /* position: relative; */
}

.formlink h3 {
  margin-top: 0.5rem;
  font-size: 18px;
  border-bottom: 3px solid #90CE9C;
  padding-bottom: 0.3rem;
}

.formlink div {
  margin-right: 2rem;
}

.formlink div:last-child {
  margin-right: 0;
}

.formlink h3 span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 0.5rem;
}

.formlink .cast-img {
  width: 100%;
  position: relative;
  margin: 0;
}

.formlink p {
  height: 4rem
}

/* .formlink a {
position: absolute;
bottom: 0;
} */
.cast-img span {
  position: absolute;
  top: 50%;
  left: 5%;
  margin: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 13px;
}

/*pc-問い合わせ*/
textarea, input {
  display: block;
  border: 1px solid #c7c7c7;
  border-radius: 3px;
  margin: 0.2rem 0 1rem;
}

input {
  padding: 0.5rem;
  width: 40%;
}

textarea {
  padding: 0.5rem;
  width: 100%;
  height: 10rem;
}

input::placeholder, textarea::placeholder {
  color: #999;
  font-size: 12px;
}

.item label {
  font-size: 14px;
}

.contact form span {
  background: #FF8363;
  color: #fff;
  font-size: 12px;
  padding: 0 0.5rem;
  border-radius: 3px;
  margin-left: 0.5rem;
}

.contact .btn {
  text-align: center;
  margin: 0 auto;
  max-width: 300px;
}

.contact .btn button {
  background: #FF8363;
  width: 100%;
  cursor: pointer;
  color: #fff;
  padding: 1rem;
}

.contact .return button {
  text-align: center;
  margin: 0 auto;
  max-width: 300px;
  border: solid 1px #90ce9cd9;
}

.confirm .return {
  margin: 2rem auto;
}

.confirm .return button {
  background: #999;
  border: inherit
}

.confirm .contact {
  margin: inherit;
}

.item .terms_flame .inclusion {
  height: 10rem;
}

.item .terms_flame .inclusion {
  color: #000;
  font-size: 12px;
  line-height: 1.6em;
  overflow: auto;
  width: 100%;
  height: 10rem;
  margin-bottom: 1rem;
  padding: .5em;
  border: solid 1px #ccc;
}

.item-checkbox input {
  width: inherit;
  display: inline-block;
  margin: 0;
}

.item-checkbox {
  margin: 2rem 0 1rem 0;
  font-size: 14px;
  text-align: center;
}

.item-upload input {
  font-size: 12px;
  padding: 1rem;
}

.terms_flame p {
  margin-top: inherit;
}

/*フォームデザイン*/
.formattention {
  background: #ffd1d1;
  border: 2px solid #ff9494;
}

.entrypage h2, .formpage h2 {
  margin-top: 2rem;
}

.more {
  display: block;
  margin: 2rem auto;
  width: 40%;
  text-align: center;
  padding: 1rem;
  max-width: 600px;
}

.conditions li {
  display: list-item;
  list-style: decimal;
  margin-left: 1.3rem;
  margin-top: 0.5rem;
}

.conditions li::after {
  display: none;
}

.errorpage {
  text-align: center;
}

.errorpage input {
  margin: 1rem auto;
}

/*--960px----------------------------------------*/
@media screen and (max-width: 960px) {
  section {
    padding: 0 40px;
  }

  .breadlist {
    margin: 1rem 1rem
  }
}

/*--sp----------------------------------------*/
@media screen and (max-width: 750px) {
  .menu {
    display: none;
  }

  .openbtn {
    display: block;
  }

  #g-nav .menu {
    display: block;
    text-align: left;
    width: 100%;
    padding: 1rem 1rem 0;
  }

  #g-nav .menu li {
    font-size: 20px;
    border-bottom: 1px solid #ffffff7d;
  }

  /*ハンバーガーメニュー*/
  /*ボタン外側*/
  .openbtn {
    position: fixed;
    z-index: 9999;
    width: 50px;
    height: 50px;
    cursor: pointer;
    border-radius: 5px;
    top: 7px;
    left: 5px;
  }

  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #fff;
    width: 70%;
  }

  .openbtn span:nth-of-type(1) {
    top: 10px;
  }

  .openbtn span:nth-of-type(2) {
    top: 20px;
  }

  .openbtn span:nth-of-type(3) {
    top: 31px;
  }

  /*回転*/
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }

  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px)rotate(45deg);
    width: 50%;
  }

  /*ナビスクロール*/
  #g-nav.panelactive #g-nav-list {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #g-nav {
    display: block;
    position: fixed;
    z-index: 999;
    top: -120%;
    /* top: 0; */
    left: 0;
    width: 100%;
    height: 100vh;
    background: #90CE9C;
    transition: all .7s;
    opacity: 0;
  }

  #g-nav.panelactive {
    top: 0;
    opacity: 1;
  }

  #g-nav .link {
    position: absolute;
    bottom: 20%;
    margin: 0 auto;
    width: 100%;
  }

  #g-nav .link a {
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
    text-align: center;
    width: 100%;
    margin: 0 auto 1rem;
  }

  #g-nav .link a:last-child {
    /* margin-right: 0; */
  }

  .visual {
    padding-top: 300px;
    background-size: 750px 300px;
    animation: bg_slide2 20s linear infinite;
  }

  @keyframes bg_slide2 {
    0% {
      background-position: 0 0;
    }

    100% {
      background-position: -750px 0;
    }
  }

  .logo {
    margin: 0 auto;
  }

  section {
    padding: 0 40px;
  }

  .page-title {
    height: 200px;
    line-height: 200px;
    font-size: 16px;
  }

  .talenthead {
    font-size: 10px;
  }

  .news li a {
    padding: 1rem 1.5rem 1rem 1rem;
  }

  .more {
    width: 100%;
    text-align: center;
    padding: 0.5rem;
  }

  .contact p {
    text-align: center;
  }

  .link {
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
  }

  .link a {
    max-width: inherit;
    width: 100%;
    margin: 1rem 0 0;
  }

  .breadlist {
    padding: 0 1rem;
  }

  .contact .link a {
    width: 100%;
  }

  .about .link div {
    width: 100%;
    margin-right: 0;
  }

  .about .link a {
    padding: 0.5rem;
  }

  .talent-col {
    width: 47%;
    padding: 0;
    margin-right: 1rem;
    margin-top: 1rem;
  }

  .talent-col:nth-of-type(2n) {
    margin-right: 0;
  }

  .about .link div:last-child, .talent-col:nth-child(-n+2) {
    margin-top: 0;
  }

  .innner .link a {
    width: 100%;
    max-width: inherit;
    margin-bottom: 1rem;
    margin-right: 0;
  }

  /*sp-タレントページ*/
  .talent-photo div {
    width: 100%;
  }

  .profile th {
    /* width: 60%; */
    padding: .5rem;
    font-size: 12px;
    vertical-align: inherit;
    width: 6rem;
  }

  .profile td {
    /* width: 40%; */
    padding: 0.5rem;
  }

  .achievement th, .achievement td {
    width: 100%;
    display: block;
  }

  .achievement td {
    border-bottom: 0px;
  }

  .follower th, .follower td {
    width: 100%;
    display: block;
  }

  .achievement th, .follower th {
    border-bottom: 1px dashed #999;
  }

  .achievement tr, .follower tr {
    border-bottom: 2px solid #b0d9b8;
  }

  .follower td {
    border-bottom: none;
  }

  .follower span {
    font-size: 12px;
    margin-left: 0.5rem;
  }

  .talentpage .link div {
    width: 100%;
  }

  .talentpage .link div:last-child {
    margin-top: 2rem;
  }

  .slider, .name {
    width: 100%;
  }

  .prof-layout {
    flex-direction: column;
  }

  /*sp-news*/
  .newspage .news .more {
    width: 100%;
  }

  /*sp-Contact*/
  .formlink div {
    width: 100%;
    margin-bottom: 3rem;
    margin-right: 0;
  }

  .formlink {
    flex-direction: column;
  }

  .formlink p {
    text-align: left;
    height: inherit;
  }

  /*sp-問い合わせ*/
  input {
    width: 100%;
  }

  .contact .btn, .confirm .return button {
    max-width: inherit;
    width: 100%;
  }

  .finalconfirm p {
    text-align: inherit;
  }

  .formlink h3 {
    font-size: 16px;
  }

  .talent-group {
    justify-content: center;
  }
}

/*--414px----------------------------------------*/
@media screen and (max-width: 414px) {
  footer .link a {
    /* width: 100%; */
    /* margin: 0 1rem 0 0; */
    max-width: inherit;
    width: 100%;
    margin: 1rem 0 0;
  }

  footer .link {
    font-size: 10px;
  }

}

/*--375px----------------------------------------*/
@media screen and (max-width: 375px) {
  #g-nav ul {
    top: 35%;
  }

  #g-nav .link {
    bottom: 10%;
  }
}
