@charset "UTF-8";
@font-face {
  font-family: "light-gothic";
  src: url("../font/NotoSansJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "light-roma";
  src: url("../font/Roboto-Thin.ttf") format("truetype");
}
html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 16px;
  font-family: "light-gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "MS ゴシック", sans-serif;
}

a {
  opacity: 1;
  transition: all 0.3s ease-out;
}
a:hover {
  opacity: 0.8;
  text-shadow: 0px 1px 10px rgba(51, 51, 51, 0.2);
}

@keyframes fadeIn {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
  }
}
header {
  background: #fff;
  width: 100%;
  position: fixed;
  z-index: 1;
  padding: 0 0 0 80px;
  border-bottom: 1px solid #CECECE;
}
@media screen and (max-width: 640px) {
  header {
    padding: 0 0 0 24px;
  }
}
header .header {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 90px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  header .header {
    height: 60px;
  }
}
header h1 {
  margin-right: auto;
}
header .logo {
  height: 33px;
}
@media screen and (max-width: 640px) {
  header .logo {
    height: 26px;
  }
}
header .recruit {
  margin: 0 1em 0 0;
}
@media screen and (max-width: 640px) {
  header .recruit {
    margin: 0 0.5em 0 0;
  }
}

.g_menu {
  display: none;
  justify-content: center;
  align-items: center;
  background: #5EB1A9;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 900;
  opacity: 0;
}

@keyframes menuIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menuOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.g_menu__container {
  min-width: 320px;
  max-width: 480px;
}
.g_menu__container ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.g_menu__container ul li {
  width: 50%;
  font-family: "light-roma" !important;
  font-size: 24px;
  margin-bottom: 40px;
  letter-spacing: 0.12em;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .g_menu__container ul li {
    margin-bottom: 32px;
  }
  .g_menu__container ul li:last-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .g_menu__container ul li {
    width: 100%;
  }
}
.g_menu__container ul li span {
  color: rgba(255, 255, 255, 0.6);
  display: block;
  font-family: "light-gothic";
  font-size: 12px;
  margin-top: 7px;
  letter-spacing: 0;
}
.g_menu__container ul a {
  color: #FFF;
  display: block;
  width: 100%;
  height: 60px;
  text-align: center;
}

#menu_btn {
  display: none;
}

#menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100%;
  background-color: #FFF;
  border-left: 1px solid #CECECE;
}
@media screen and (max-width: 640px) {
  #menu-icon {
    width: 60px;
  }
}

.menu_border {
  content: "";
  display: block;
  width: 30px;
  border-top: 1px solid #707070;
}
.menu_border::before {
  content: "";
  display: block;
  width: 30px;
  margin: 10px 0;
  border-top: 1px solid #707070;
}
.menu_border::after {
  content: "";
  display: block;
  width: 30px;
  margin: 10px 0 0;
  border-bottom: 1px solid #707070;
}

#menu-icon--close {
  background-color: rgba(255, 255, 255, 0.3);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 100px;
  height: 90px;
}
@media screen and (max-width: 640px) {
  #menu-icon--close {
    width: 60px;
    height: 60px;
  }
}

.menu_border--close {
  content: "";
  display: block;
  width: 35px;
  border-top: 1px solid #fff;
  transform: rotate(45deg) translate(0px, 5px);
}
.menu_border--close::after {
  content: "";
  display: block;
  width: 35px;
  margin: 10px 0 0;
  border-bottom: 1px solid #fff;
  transform: rotate(-90deg) translate(10.4px, 0);
}

#menu_btn:checked ~ .g_menu, #menu_btn:checked ~ #menu-icon--close {
  display: flex;
  position: fixed;
  animation: menuIn 0.2s ease-out 0s forwards;
  opacity: 1;
}

#quick_menu {
  box-shadow: 1px 1px 12px rgba(79, 150, 143, 0.15);
  display: block;
  position: fixed;
  border-radius: 28px;
  bottom: 0;
  left: 0;
  margin: 0 16px 16px;
  width: calc(100% - 32px);
  background: #5EB1A9;
}
@media screen and (min-width: 720px) {
  #quick_menu {
    right: 0;
    margin: 0 auto 16px;
    max-width: 600px;
  }
}
#quick_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 56px;
  padding: 0;
}
#quick_menu li {
  border-right: 1px solid #4f968f;
  flex-grow: 1;
}
#quick_menu li:last-child {
  border-right: none;
}
#quick_menu a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
#quick_menu i {
  font-size: 200%;
  margin: 0 0.3em 0 0;
}
@media screen and (max-width: 640px) {
  #quick_menu i {
    font-size: 150%;
  }
}
@media screen and (max-width: 400px) {
  #quick_menu i {
    font-size: 120%;
  }
}
@media screen and (max-width: 370px) {
  #quick_menu i {
    font-size: 100%;
  }
}
@media screen and (max-width: 640px) {
  #quick_menu p {
    font-size: 80%;
  }
}
@media screen and (max-width: 400px) {
  #quick_menu p {
    font-size: 12px;
  }
}
@media screen and (max-width: 370px) {
  #quick_menu p {
    font-size: 9px;
  }
}

footer {
  background: #5EB1A9;
  color: #fff;
  margin: 160px 0 0;
  padding: 80px;
}
@media screen and (max-width: 640px) {
  footer {
    padding: 60px 12.5vW;
    margin: 30px 0 0;
  }
}
footer .footer__menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  max-width: 1090px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 640px) {
  footer .footer__menu {
    display: block;
    height: auto;
  }
}
footer .footer__name {
  border-left: 1px solid #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 5%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  footer .footer__name {
    border-left: none;
    display: block;
    margin: 20px 0 40px;
    padding: 0;
  }
}
footer .footer__name .logo {
  height: 33px;
}
@media screen and (max-width: 640px) {
  footer .footer__name .logo {
    margin: 0 0 14px;
  }
}
footer .footer__name p {
  font-size: 10px;
}
footer .footer__nav {
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  display: flex;
  align-items: center;
  padding: 0 4%;
  height: 100%;
}
@media screen and (max-width: 640px) {
  footer .footer__nav {
    display: block;
    border-right: none;
    border-left: none;
    margin: 40px 0;
    padding: 0;
  }
}
footer .footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .footer__nav ul li {
  font-size: 12px;
  min-width: 25%;
  margin: 0 7% 0 0;
  padding: 10px 0;
}
footer .footer__sns {
  padding: 0 5%;
  border-right: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
@media screen and (max-width: 640px) {
  footer .footer__sns {
    border-right: none;
    justify-content: flex-start;
    padding: 0;
  }
}
footer .footer__sns a {
  margin: 0 12%;
}
@media screen and (max-width: 640px) {
  footer .footer__sns a {
    margin: 0 5% 0 0;
  }
}
footer .footer__description {
  font-size: 10px;
  margin: 0 auto;
  max-width: 1090px;
}
footer .footer__description p {
  line-height: 1.5em;
  margin: 0 0 1em;
}

.container {
  overflow: hidden;
}

.contents {
  padding: 130px 80px 0;
  line-height: 2em;
  opacity: 0;
  animation: fadeInContaienr 1.3s ease-out 0.7s forwards;
}
@media screen and (max-width: 640px) {
  .contents {
    padding: 60px 12.5vw;
  }
}
@keyframes fadeInContaienr {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.contents .headline_main {
  font-family: "light-roma";
  font-size: 40px;
  letter-spacing: 0.14em;
  margin: 0 0 60px;
  text-align: center;
}
.contents .headline_main span.sub {
  display: block;
  font-size: 12px;
  font-family: "light-gothic";
  margin-top: 6px;
}
.contents h2 {
  font-size: 24px;
  line-height: 1.6em;
  margin: 0 0 56px;
}
.contents h3 {
  font-size: 20px;
  line-height: 1.6em;
  margin: 0 0 16px;
}
.contents .status {
  display: flex;
  font-size: 12px;
}

#top .contents {
  padding: 0 12.5vw 60px;
}

#index .contents, #recruit .contents, #recruit .block {
  padding: 0;
}

#recruit ~ footer {
  display: none;
}
@media screen and (max-width: 640px) {
  #recruit ~ footer {
    display: block;
  }
}

#recruit {
  background-image: url(../img/common/light_logo-wh.png);
  background-position: left 3vw bottom 3vw;
  background-repeat: no-repeat;
  background-size: 10%;
  background-attachment: fixed;
}

#recruit .contents {
  background: #fff;
  width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  #recruit .contents {
    width: auto;
  }
}

.block {
  padding: 100px 0 0;
  margin: 0 auto;
  max-width: 1090px;
}

.link_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 80px;
}
.link_container a {
  margin: 0 2em 1.5em;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb120 {
  margin-bottom: 120px;
}

.thirdtext {
  display: inline;
  color: #5EB1A9;
}

.link_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  min-width: 260px;
  height: 50px;
  border-radius: 50px;
  border: 1px solid #CECECE;
  letter-spacing: 0.14em;
  padding: 0 30px;
}
.link_btn.appeal {
  background: #5EB1A9;
  border: none;
  color: #FFF;
  font-size: 16px;
}
.link_btn.appeal span {
  font-size: 10px;
  margin-left: 1em;
}
.link_btn.recruit {
  font-family: "light-roma" !important;
  min-width: auto;
}
.link_btn.recruit span {
  font-size: 10px;
  font-family: "light-gothic";
}
@media screen and (max-width: 640px) {
  .link_btn.recruit {
    flex-direction: column;
    height: 42px;
    padding: 0px 1.25em;
    width: auto;
  }
  .link_btn.recruit span {
    font-size: 9px;
  }
}

.circle_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFF;
}
.circle_btn img {
  width: 24px;
}
.circle_btn.border {
  border: 1px solid #CECECE;
}

.newslist-module .news-row {
  border-bottom: 1px solid #CECECE;
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 24px;
  padding: 0 0 24px;
}
.newslist-module .news-cell-date {
  font-size: 12px;
  margin: 0 1em 0 0;
}
.newslist-module .news-cell-category {
  font-size: 12px;
}
.newslist-module .news-event {
  color: #EDA34D;
}
.newslist-module .news-debut, .newslist-module .news-talent {
  color: #5EB1A9;
}
.newslist-module .news-site {
  color: #333;
}
.newslist-module .news-cell-text {
  width: 100%;
}
.newslist-module .news-date2 {
  display: none;
}

#top .newslist-module .news-row:nth-child(n+6) {
  display: none;
}

.talent-module {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  /*
  	50音順の処理
  	headのclassがある時に1行の表示に変更する
  	*/
}
.talent-module .head {
  display: block;
  pointer-events: none;
  width: 100%;
}
.talent-module .head .photo {
  display: none;
}
.talent-module .head .name {
  font-size: 150%;
  font-weight: bold;
}
@media screen and (max-width: 1249px) {
  .talent-module {
    width: 840px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1000px) {
  .talent-module {
    width: 560px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .talent-module {
    width: auto;
  }
}
.talent-module a {
  margin: 0 15px 40px;
  width: 250px;
}
@media screen and (max-width: 640px) {
  .talent-module a {
    width: 45%;
    margin: 0 auto 40px;
  }
}
.talent-module a .photo {
  background: #F8F8F8;
  margin-bottom: 12px;
  height: 313px;
}
.talent-module a .photo img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .talent-module a .photo {
    height: auto;
  }
}
.talent-module a .photo div {
  background-size: contain !important;
}
.talent-module a .name {
  font-size: 18px;
}
.talent-module a .name .sub {
  color: #5EB1A9;
  font-size: 12px;
  margin-top: -5px;
}

#top .talent-module a:nth-child(n+9) {
  display: none;
}

.talent-nav {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #CECECE;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  margin: -160px 0 0;
  position: fixed;
  top: 50%;
  right: 16px;
  width: 48px;
  z-index: 99;
  padding: 24px 0;
}
.talent-nav ul {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  height: 320px;
}

#top .talent-module a:nth-child(n+9) {
  display: none;
}

.talentdetail-module {
  display: flex;
}
@media screen and (max-width: 900px) {
  .talentdetail-module {
    width: 500px;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 640px) {
  .talentdetail-module {
    width: 100%;
  }
}
.talentdetail-module .photo {
  width: 700px;
}
@media screen and (max-width: 900px) {
  .talentdetail-module .photo {
    text-align: center;
    width: 100%;
    margin: 0 0 40px;
  }
}
.talentdetail-module .photo img {
  width: 100%;
}
.talentdetail-module .profile {
  padding: 10px 8%;
}
@media screen and (max-width: 900px) {
  .talentdetail-module .profile {
    padding: 0;
  }
}
.talentdetail-module .name_main {
  font-size: 36px;
  margin: 0 0 8px 0;
}
@media screen and (max-width: 900px) {
  .talentdetail-module .name_main {
    margin: 0;
  }
}
@media screen and (max-width: 640px) {
  .talentdetail-module .name_main {
    font-size: 24px;
  }
}
.talentdetail-module .name_sub {
  color: #727272;
  font-size: 14px;
}
.talentdetail-module .profile-list {
  display: flex;
  flex-wrap: wrap;
  margin: 50px 0;
}
@media screen and (max-width: 900px) {
  .talentdetail-module .profile-list {
    margin: 40px 0;
  }
}
@media screen and (max-width: 640px) {
  .talentdetail-module .profile-list {
    display: block;
  }
}
.talentdetail-module .profile-list dt {
  width: 30%;
}
@media screen and (max-width: 640px) {
  .talentdetail-module .profile-list dt {
    font-size: 12px;
    margin: 0 0 -8px;
    width: auto;
  }
}
.talentdetail-module .profile-list dd {
  width: 70%;
}
@media screen and (max-width: 640px) {
  .talentdetail-module .profile-list dd {
    margin: 0 0 16px;
    width: auto;
  }
}
.talentdetail-module .sns_link {
  display: flex;
}
.talentdetail-module .sns_link li {
  margin: 0 1em 0 0;
}

.snslist-module {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.snslist-module li {
  display: flex;
  background: #F8F8F8;
  width: 500px;
  margin: 0 0 30px 30px;
}
@media screen and (max-width: 1220px) {
  .snslist-module li {
    flex-wrap: nowrap;
    width: 100%;
    margin: 0 0 30px;
  }
}
.snslist-module li .photo {
  width: 160px;
  height: 160px;
}
@media screen and (max-width: 640px) {
  .snslist-module li .photo {
    width: 100px;
    height: 100px;
  }
}
.snslist-module li .photo img {
  width: 100%;
}
.snslist-module li .info {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  padding: 0 40px;
}
@media screen and (max-width: 640px) {
  .snslist-module li .info {
    padding: 0 0px 0 10px;
  }
}
.snslist-module li .name {
  font-size: 22px;
  font-weight: bold;
  margin: 0 0 14px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .snslist-module li .name {
    font-size: 14px;
    margin: 0;
  }
}
.snslist-module li a {
  margin: 0 1em 0 0;
}
@media screen and (max-width: 640px) {
  .snslist-module li a {
    margin: 0 0.5em 0 0;
  }
}

.form-module dl {
  margin: 0 0 56px;
}
.form-module dt {
  font-size: 20px;
  padding: 20px 0 10px;
}
.form-module dd {
  margin: 0 0 20px;
}
.form-module select, .form-module input[type=text], .form-module input[type=email], .form-module input[type=tel], .form-module textarea {
  width: 100%;
  border: 1px solid #CECECE;
  padding: 12px 16px;
  border-radius: 10px;
}
.form-module select:focus, .form-module input[type=text]:focus, .form-module input[type=email]:focus, .form-module input[type=tel]:focus, .form-module textarea:focus {
  background: #f4f4f4;
}
.form-module input[type=submit], .form-module input[type=reset] {
  margin: 0 auto 24px;
}

#topslide {
  height: 100vh;
  background: #999;
}
#topslide .slide {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
#topslide .slide .outline {
  width: 400px;
  padding: 0 0 5% 0;
}
@media screen and (max-width: 640px) {
  #topslide .slide .outline {
    padding: 5%;
  }
}
#topslide .slide .outline .name {
  font-size: 20px;
  margin: 0 0 0.6em;
}
#topslide .slide .outline .text {
  font-size: 11px;
  line-height: 1.6em;
}
#topslide .slide .outline.left-under {
  margin: 40% 40% 0 0;
}
#topslide .slide .outline.left-top {
  margin: 0 40% 20% 0;
}
#topslide .slide .outline.right-top {
  margin: 0 0 20% 40%;
}
#topslide .slide .outline.right-under {
  margin: 40% 0 0 40%;
}

.modal_18 {
  position: fixed;
  display: none;
  z-index: 9999;
  top: 35%;
  left: 50%;
  width: 300px;
  height: 200px;
  margin: -120px 0 0 -150px;
  padding: 20px;
  text-align: center;
  line-height: 2em;
}
.modal_18 a {
  cursor: pointer;
}