@charset "UTF-8";
/* CSS Document */
@import url("reset.css");
/* Google Font */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400;600&display=swap");
/**** カラー設定 *****/
/****************************

ページ共通設定 

*****************************/
/* ページトップh1タグ背景 */
/* ページトップh1タグ文字カラー */
/* メニュー背景カラー設定 */
/* スクロールテキスト背景カラー設定 */
/* SPメニューアイコン（左上） */
/* 背景設定 */
/* 文字カラー設定 */
/* インナーページ見出し文字カラー設定 */
/* リンクカラー設定 */
/* フレームカラー設定 */
/* フッターnavトップ */
/* SPフッターnav背景 */
/****************************

トップ

*****************************/
/* PC_SP_width設定 */
/* setting */
html {
  font-size: 62.5%;
  scroll-behavior: smooth; }

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "sans-serif";
  scroll-behavior: smooth;
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 1px;
  background: #FFF;
  color: #333; }

img {
  width: 100%; }

a {
  transition: 0.3s;
  text-decoration: none;
  color: #E79E90; }

a:hover {
  opacity: 0.8;
  color: #7FCCF3; }

.pc {
  display: block; }

.sp {
  display: none; }

input[type="submit"] {
  appearance: none;
  -webkit-appearance: none; }

input[type='text'], textarea {
  font-size: 1.6rem; }

/***************************

ローディング

***************************/
#loading {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: -webkit-linear-gradient(60deg, #7FCCF3, #F25C6F);
  background: -moz-linear-gradient(60deg, #7FCCF3, #F25C6F);
  background: -o-linear-gradient(60deg, #7FCCF3, #F25C6F);
  background: linear-gradient(60deg, #7FCCF3, #F25C6F);
  z-index: 9999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 1s ease; }

#loading.is_loaded {
  opacity: 0.5;
  visibility: hidden;
  transform: translateY(-150vh); }

.loading_logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  -webkit-animation: loadinglogo 1s ease-in-out 0s infinite alternate;
  animation: loadinglogo 1s ease-in-out 0s infinite alternate; }

@keyframes loadinglogo {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
/***************************

トップヘッダー

***************************/
header {
  background: rgba(255, 255, 255, 0.6);
  height: 320px;
  width: auto;
  position: fixed;
  top: 2%;
  left: 2%;
  right: 85%;
  z-index: 10;
  animation: nav-fade 2s;
  box-shadow: 0 0 10px #999; }
  header .header-wrap {
    text-align: center;
    margin: 0 auto; }
    header .header-wrap .logo-wrap {
      margin-top: 0%;
      margin-left: 20%;
      width: 60%; }
      header .header-wrap .logo-wrap h1 a {
        color: #FFF; }
    header .header-wrap .nav-wrap nav {
      width: 100%;
      z-index: 10; }

@-webkit-keyframes headerGrade {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@-moz-keyframes headerGrade {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@keyframes headerGrade {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
/* ナビゲーション*/
button {
  margin: 0;
  padding: 5px 7px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  vertical-align: middle;
  text-align: inherit;
  font: inherit;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 3px; }

.btn {
  display: none; }

.menu {
  width: 100%; }

.menu-list {
  width: 100%;
  height: 100%;
  padding: 0 0px;
  font-size: 2.4rem;
  font-family: 'Josefin Sans', sans-serif; }
  .menu-list a {
    color: #333; }
    .menu-list a:hover {
      color: #7FCCF3;
      cursor: pointer;
      transition: .3s; }

@media screen and (max-width: 959px) {
  .pc {
    display: none; }

  .sp {
    display: block; }

  header {
    background: white;
    height: 70px;
    width: 100%;
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    z-index: 10;
    animation: nav-fade 2s; }
    header .header-wrap {
      width: 100%;
      text-align: left; }
      header .header-wrap .logo-wrap {
        margin-top: 0%;
        margin-left: 0%;
        padding: 5px;
        width: 110px;
        position: relative;
        z-index: 11; }
        header .header-wrap .logo-wrap img {
          width: 100%;
          max-width: 100px; }
      header .header-wrap .logo-wrap.open {
        z-index: 10; }
      header .header-wrap nav {
        position: relative;
        z-index: 10; }
        header .header-wrap nav ul {
          display: flex;
          justify-content: center !important;
          flex-direction: column;
          position: fixed;
          top: -100%;
          right: 0%;
          width: 100%;
          height: calc(100vh - 100px - 120px);
          padding: 100px 0 120px;
          background: rgba(255, 255, 255, 0.8);
          color: #FFF;
          transition: .3s;
          z-index: 9;
          transition: .5s;
          opacity: 0; }
          header .header-wrap nav ul li {
            color: #000;
            width: 70% !important;
            padding: 1% !important;
            margin: 0 14%;
            text-align: center;
            font-size: 2rem; }
            header .header-wrap nav ul li a {
              font-size: 3rem;
              color: #000; }

  button {
    margin-top: 3px;
    padding: 5px 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    vertical-align: middle;
    text-align: inherit;
    font: inherit;
    -webkit-appearance: none;
    appearance: none; }

  .btn {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 100;
    width: 50px;
    height: 50px;
    display: block;
    padding: 18px 9px; }

  .btn-line {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background: #7FCCF3;
    transition: .2s; }

  .btn-line::before, .btn-line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #7FCCF3;
    transition: .5s;
    left: 0; }

  .btn-line::before {
    transform: translateY(-10px); }

  .btn-line::after {
    transform: translateY(10px); }

  .btn-line.open {
    background-color: transparent; }

  .btn-line.open::before, .btn-line.open::after {
    content: "";
    background: #7FCCF3;
    transition: .2s; }

  .btn-line.open::before {
    transform: rotate(45deg); }

  .btn-line.open::after {
    transform: rotate(-45deg); }

  .btn-txt {
    font-size: 1rem;
    color: #7FCCF3;
    padding-top: 10px;
    text-align: center; }

  .btn-txt.open {
    color: #7FCCF3;
    padding-top: 10px;
    text-align: center;
    margin-left: -1px; }

  .btn-txt-on.disp-off {
    display: none; }

  .menu-list.line {
    border-bottom: solid 1px #CCC; }

  .menu.open {
    top: 0 !important;
    opacity: 1; } }
@keyframes nav-fade {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.m-scroll {
  position: absolute;
  bottom: 10px;
  right: 50%;
  animation: mousemove 1.6s ease-in-out infinite;
  z-index: 100; }
  .m-scroll span {
    font-family: 'Josefin Sans', sans-serif;
    white-space: nowrap;
    position: absolute;
    left: -50px;
    bottom: 65px;
    color: #eee;
    font-size: 1.2rem;
    letter-spacing: 0.1em; }
    .m-scroll span:after {
      content: "";
      position: absolute;
      top: 12px;
      left: 53px;
      width: 1px;
      height: 35px;
      background: #eee;
      animation: mousepathmove 1.4s linear infinite;
      opacity: 0; }
  .m-scroll:before {
    content: "";
    position: absolute;
    bottom: 10px;
    left: -10px;
    width: 25px;
    height: 37px;
    border-radius: 10px;
    border: 1px solid #eee; }
  .m-scroll:after {
    content: "";
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 5px;
    height: 10px;
    border-radius: 40%;
    border: 1px solid #eee; }

@keyframes mousemove {
  0% {
    bottom: 10px; }
  50% {
    bottom: 5px; }
  100% {
    bottom: 10px; } }
@keyframes mousepathmove {
  0% {
    height: 0;
    top: 15px;
    opacity: 0; }
  50% {
    height: 35px;
    opacity: 1; }
  100% {
    height: 0;
    top: 40px;
    opacity: 0; } }
/***************************

トップ詳細

***************************/
.slideBox {
  height: 100vh;
  overflow: hidden;
  background: #000;
  position: relative;
  margin-bottom: 40px; }
  .slideBox .swiper-slide[class*=-active] img {
    transition-delay: 0s;
    animation: motion-fade .5s ease-in;
    transform: translate(0);
    height: 100vh;
    object-fit: cover; }
  .slideBox .swiper-slide img {
    height: 100vh;
    object-fit: cover; }
  .slideBox .nav-wrap .menu {
    position: absolute;
    z-index: 100;
    top: 10%;
    left: 20px; }

.sns-count-wrap {
  padding: 0px 5px 20px 5px;
  color: #3981BC; }
  .sns-count-wrap p {
    font-weight: 100;
    font-size: 4rem; }
    .sns-count-wrap p span {
      font-family: 'Josefin Sans', sans-serif;
      font-weight: bold;
      font-size: 6rem; }

.top-topics-wrap {
  margin-bottom: 60px; }
  .top-topics-wrap h2 {
    text-align: center;
    margin: 20px auto;
    color: #7FCCF3;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .top-topics-wrap ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .top-topics-wrap ul li {
      width: 23%; }
      .top-topics-wrap ul li a .topics-thumnail {
        display: flex; }
        .top-topics-wrap ul li a .topics-thumnail_deta {
          font-size: 1.4rem;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; }
        .top-topics-wrap ul li a .topics-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 3 / 2;
          position: relative;
          margin-bottom: 20px; }
          .top-topics-wrap ul li a .topics-thumnail_img img {
            object-fit: cover; }
          .top-topics-wrap ul li a .topics-thumnail_img .filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -o-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: linear-gradient(60deg, #7FCCF3, #3981BC);
            opacity: 0; }
      .top-topics-wrap ul li .topics-title {
        margin: 0px 5px 25px 5px;
        text-align: center;
        color: #333; }
        .top-topics-wrap ul li .topics-title_t-name {
          font-weight: 600;
          font-size: 1.4rem;
          line-height: 1.8;
          margin-bottom: 10px; }
        .top-topics-wrap ul li .topics-title h3 {
          font-weight: 200;
          font-size: 1.2rem;
          overflow: hidden;
          display: -webkit-box;
          text-overflow: ellipsis;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2; }
      .top-topics-wrap ul li a:hover .topics-thumnail .topics-thumnail_img .filtter_on {
        opacity: 0.8 !important;
        transition: .4s; }
  .top-topics-wrap ul::before {
    content: "";
    display: block;
    width: 23%;
    order: 1; }
  .top-topics-wrap ul::after {
    content: "";
    display: block;
    width: 23%; }
  .top-topics-wrap__btn {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif; }
    .top-topics-wrap__btn a {
      display: inline-block;
      position: relative;
      color: #E79E90;
      text-decoration: none; }
      .top-topics-wrap__btn a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: #E79E90;
        transform: scale(0, 1);
        transition: 0.4s; }
      .top-topics-wrap__btn a:hover:before {
        transform: scale(1); }

.top-talent-wrap {
  margin-bottom: 60px; }
  .top-talent-wrap h2 {
    text-align: center;
    margin: 20px auto;
    color: #7FCCF3;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .top-talent-wrap ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .top-talent-wrap ul li {
      width: 31.33%;
      margin-bottom: 20px; }
      .top-talent-wrap ul li .talent-thumnail {
        display: flex; }
        .top-talent-wrap ul li .talent-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 1/ 1;
          position: relative; }
          .top-talent-wrap ul li .talent-thumnail_img img {
            object-fit: cover; }
          .top-talent-wrap ul li .talent-thumnail_img .filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(60deg, #7FCCF3, #F25C6F);
            background: -moz-linear-gradient(60deg, #7FCCF3, #F25C6F);
            background: -o-linear-gradient(60deg, #7FCCF3, #F25C6F);
            background: linear-gradient(60deg, #7FCCF3, #F25C6F);
            opacity: 0; }
            .top-talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translateY(-50%) translateX(-50%);
              -webkit-transform: translateY(-50%) translateX(-50%); }
              .top-talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name h3 {
                font-size: 2rem;
                transform: scaleX(0.2);
                color: #000;
                text-align: center; }
              .top-talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name h4 {
                font-size: 1.4rem;
                font-weight: 200;
                transform: scaleX(0.2);
                color: #000;
                text-align: center;
                font-family: 'Josefin Sans', sans-serif; }
      .top-talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on {
        opacity: 0.8 !important;
        transition: .4s; }
        .top-talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on h3 {
          transform: scaleX(1);
          transition: .4s; }
        .top-talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on h4 {
          transform: scaleX(1);
          transition: .4s; }
  .top-talent-wrap ul::after {
    content: "";
    display: block;
    width: 31.33%; }
  .top-talent-wrap__btn {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif; }
    .top-talent-wrap__btn a {
      display: inline-block;
      position: relative;
      color: #E79E90;
      text-decoration: none; }
      .top-talent-wrap__btn a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: #E79E90;
        transform: scale(0, 1);
        transition: 0.4s; }
      .top-talent-wrap__btn a:hover:before {
        transform: scale(1); }

@media screen and (max-width: 959px) {
  .slideBox {
    height: calc(100vh - 70px);
    margin-top: 70px; }

  .sns-count-wrap {
    padding: 0px 5px 10px 5px; }
    .sns-count-wrap p {
      font-size: 2rem; }
      .sns-count-wrap p span {
        font-size: 3rem; }

  .top-topics-wrap {
    margin-bottom: 40px; }
    .top-topics-wrap h2 {
      font-size: 3rem; }
    .top-topics-wrap ul li {
      width: 48%; }
      .top-topics-wrap ul li a .topics-thumnail_deta {
        font-size: 1.1rem; }
      .top-topics-wrap ul li .topics-title h3 {
        font-weight: 200;
        font-size: 1.1rem; }

  .top-talent-wrap {
    margin-bottom: 40px; }
    .top-talent-wrap h2 {
      font-size: 3rem; }
    .top-talent-wrap ul li {
      width: 48%; }
      .top-talent-wrap ul li .talent-thumnail {
        display: block; }
        .top-talent-wrap ul li .talent-thumnail_img {
          margin-bottom: 0px; }
      .top-talent-wrap ul li .talent-name-wrap {
        padding: 10px 5px;
        margin-bottom: 10px; }
        .top-talent-wrap ul li .talent-name-wrap h3 {
          font-size: 1.8rem;
          color: #000;
          text-align: center; }
        .top-talent-wrap ul li .talent-name-wrap h4 {
          font-size: 1.2rem;
          font-weight: 200;
          color: #000;
          text-align: center;
          font-family: 'Josefin Sans', sans-serif; }

  .top-profile-wrap_layout {
    display: block; }
    .top-profile-wrap_layout .photo {
      width: 100%;
      margin-bottom: 20px; }
    .top-profile-wrap_layout .prof-info {
      width: 100%;
      text-align: center; }

  .top-SNS-wrap ul li a {
    font-size: 40px;
    width: 80px;
    height: 80px; }

  .top-timeline-wrap ul li {
    display: block;
    padding-bottom: 10px;
    border-bottom: solid 1px #EEE;
    margin-bottom: 10px; }
    .top-timeline-wrap ul li .timelone-txt {
      width: 100%; }
    .top-timeline-wrap ul li .images {
      width: 100%; }
      .top-timeline-wrap ul li .images img {
        margin-top: 10px; }

  .top-contents ul {
    display: block; }
    .top-contents ul li {
      width: calc(100% - 20px); } }
/***************************

フッター

***************************/
.d-sponsor h4 {
  font-size: 1.4rem;
  font-family: 'Josefin Sans', sans-serif; }
.d-sponsor ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 5px; }
  .d-sponsor ul li {
    margin: 10px 1%;
    width: 31.333%; }
    .d-sponsor ul li a {
      padding: 5px; }

.g-sponsor h4 {
  font-size: 1.4rem;
  font-family: 'Josefin Sans', sans-serif; }
.g-sponsor ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 5px; }
  .g-sponsor ul li {
    margin: 10px 1%;
    width: 23%; }
    .g-sponsor ul li a {
      padding: 5px; }

.b-sponsor h4 {
  font-size: 1.4rem;
  font-family: 'Josefin Sans', sans-serif; }
.b-sponsor ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 5px; }
  .b-sponsor ul li {
    margin: 10px 1%;
    width: 18%; }
    .b-sponsor ul li a {
      padding: 5px; }

footer {
  border-top: solid 1px #000;
  margin-top: 50px; }
  footer .ft-nav {
    padding: 30px 10px 30px 10px; }
    footer .ft-nav .ft-nav-content {
      width: 1024px;
      text-align: center;
      margin: 0px auto; }
      footer .ft-nav .ft-nav-content ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start; }
        footer .ft-nav .ft-nav-content ul li {
          margin-right: 5%; }
          footer .ft-nav .ft-nav-content ul li a {
            color: #000;
            font-size: 1.6rem;
            font-family: 'Josefin Sans', sans-serif; }
            footer .ft-nav .ft-nav-content ul li a:hover {
              color: #7FCCF3; }
  footer .copyright {
    font-size: 1.2rem;
    font-weight: 200;
    padding: 20px 5px 20px 150px;
    border-top: solid 1px #000;
    margin: 0px auto;
    text-align: center;
    color: #000;
    font-family: 'Josefin Sans', sans-serif; }

@media screen and (max-width: 959px) {
  .d-sponsor ul {
    margin: 10px 5px; }
    .d-sponsor ul li {
      width: 100%; }
      .d-sponsor ul li a {
        padding: 5px 0; }

  .g-sponsor ul {
    margin: 10px 5px; }
    .g-sponsor ul li {
      width: 48%; }
      .g-sponsor ul li a {
        padding: 5px 0; }

  .b-sponsor ul {
    margin: 10px 5px; }
    .b-sponsor ul li {
      width: 31%; }
      .b-sponsor ul li a {
        padding: 5px 0; }

  footer .ft-nav {
    padding: 20px 10px 20px 10px; }
    footer .ft-nav .ft-nav-content {
      width: 94%; }
      footer .ft-nav .ft-nav-content ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; }
        footer .ft-nav .ft-nav-content ul li {
          margin-right: 0%;
          width: 100%; }
          footer .ft-nav .ft-nav-content ul li a {
            color: #000;
            font-size: 1.4rem; }
            footer .ft-nav .ft-nav-content ul li a:hover {
              color: #7FCCF3; }
  footer .copyright {
    padding: 15px 5px 15px;
    border-top: solid 1px #000;
    margin: 0px auto;
    text-align: center;
    color: #000;
    font-family: 'Josefin Sans', sans-serif; } }
/***************************

コンテンツ

***************************/
.content {
  width: 1024px;
  text-align: center;
  margin: 40px auto;
  padding-left: 150px; }

@media screen and (max-width: 959px) {
  .content {
    width: 94%;
    margin: 20px 3%;
    padding-left: 0px; } }
/***************************

about

***************************/
.about-wrap {
  position: relative;
  height: 100vh; }
  .about-wrap .pic {
    height: 100vh;
    width: auto; }
  .about-wrap__filter {
    position: absolute;
    height: 100%;
    width: 100%;
    background: -webkit-linear-gradient(60deg, rgba(30, 184, 200, 0.5), rgba(187, 105, 157, 0.5));
    background: -moz-linear-gradient(60deg, rgba(30, 184, 200, 0.5), rgba(187, 105, 157, 0.5));
    background: -o-linear-gradient(60deg, rgba(30, 184, 200, 0.5), rgba(187, 105, 157, 0.5));
    background: linear-gradient(60deg, rgba(30, 184, 200, 0.5), rgba(187, 105, 157, 0.5));
    top: 0;
    left: 0; }
  .about-wrap__txt {
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto; }
    .about-wrap__txt__title {
      font-family: 'Josefin Sans', sans-serif;
      font-size: 1.8rem;
      margin-bottom: 20px; }
    .about-wrap__txt__content {
      font-size: 1.8rem; }

@media screen and (max-width: 959px) {
  .about-wrap.s1 {
    margin-top: 70px;
    height: calc(100vh - 70px); }
    .about-wrap.s1__txt {
      color: #FFF;
      text-align: center;
      position: absolute;
      top: 30%;
      left: 0;
      bottom: 0;
      right: 0;
      margin: auto; }
      .about-wrap.s1__txt__title {
        font-size: 1.4rem;
        margin-bottom: 10px;
        line-height: 1.6; }
      .about-wrap.s1__txt__content {
        font-size: 1.4rem; }

  .about-wrap__txt {
    color: #FFF;
    text-align: center;
    position: absolute;
    top: 30%;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto; }
    .about-wrap__txt__title {
      font-size: 1.4rem;
      margin-bottom: 10px;
      line-height: 1.6; }
    .about-wrap__txt__content {
      font-size: 1.4rem; } }
/***************************

タレント一覧

***************************/
.talent-wrap {
  padding-top: 20px;
  margin-bottom: 60px; }
  .talent-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .talent-wrap .sns-count-wrap {
    padding: 0px 5px 20px 5px;
    color: #3981BC; }
    .talent-wrap .sns-count-wrap p {
      font-weight: 100;
      font-size: 4rem; }
      .talent-wrap .sns-count-wrap p span {
        font-family: 'Josefin Sans', sans-serif;
        font-weight: bold;
        font-size: 6rem; }
  .talent-wrap_category {
    margin-bottom: 40px; }
    .talent-wrap_category ul.item {
      display: flex;
      justify-content: center; }
      .talent-wrap_category ul.item li {
        width: 100px;
        margin: 10px;
        font-family: 'Josefin Sans', sans-serif;
        font-weight: 600;
        padding: 5px 10px 3px 10px;
        position: relative;
        text-align: center; }
        .talent-wrap_category ul.item li a {
          text-align: center;
          display: block;
          color: #000; }
          .talent-wrap_category ul.item li a:hover {
            color: #000; }
      .talent-wrap_category ul.item li::before {
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        transform: skewX(-25deg);
        content: "";
        border: solid 1px #A8C5F4; }
      .talent-wrap_category ul.item li.active::before {
        background: #7FCCF3; }
      .talent-wrap_category ul.item li.active a {
        color: #FFF; }
    .talent-wrap_category ul.item::after {
      display: none; }
  .talent-wrap ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .talent-wrap ul li {
      width: 31.33%;
      margin-bottom: 30px; }
      .talent-wrap ul li .talent-thumnail {
        display: flex; }
        .talent-wrap ul li .talent-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 1/ 1;
          position: relative; }
          .talent-wrap ul li .talent-thumnail_img img {
            object-fit: cover; }
          .talent-wrap ul li .talent-thumnail_img .filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -o-linear-gradient(60deg, #7FCCF3, #F25C6F);
            background: linear-gradient(60deg, #7FCCF3, #3981BC);
            opacity: 0; }
            .talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translateY(-50%) translateX(-50%);
              -webkit-transform: translateY(-50%) translateX(-50%); }
              .talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name h3 {
                font-size: 2rem;
                transform: scaleX(0.2);
                color: #000;
                text-align: center; }
              .talent-wrap ul li .talent-thumnail_img .filtter_on_talent_name h4 {
                font-size: 1.4rem;
                font-weight: 200;
                transform: scaleX(0.2);
                color: #000;
                text-align: center;
                font-family: 'Josefin Sans', sans-serif; }
      .talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on {
        opacity: 0.8 !important;
        transition: .4s; }
        .talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on h3 {
          transform: scaleX(1);
          transition: .4s; }
        .talent-wrap ul li a:hover .talent-thumnail .talent-thumnail_img .filtter_on h4 {
          transform: scaleX(1);
          transition: .4s; }
  .talent-wrap ul::after {
    content: "";
    display: block;
    width: 31.33%; }
  .talent-wrap__btn {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif; }
    .talent-wrap__btn a {
      display: inline-block;
      position: relative;
      color: #E79E90;
      text-decoration: none; }
      .talent-wrap__btn a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: #E79E90;
        transform: scale(0, 1);
        transition: 0.4s; }
      .talent-wrap__btn a:hover:before {
        transform: scale(1); }

@media screen and (max-width: 959px) {
  .talent-wrap {
    margin-bottom: 40px;
    margin-top: 60px; }
    .talent-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; }
    .talent-wrap .sns-count-wrap {
      padding: 0px 5px 10px 5px; }
      .talent-wrap .sns-count-wrap p {
        font-size: 2rem; }
        .talent-wrap .sns-count-wrap p span {
          font-size: 3rem; }
    .talent-wrap_category {
      margin-bottom: 20px; }
      .talent-wrap_category ul.item li {
        width: 80px;
        margin: 10px;
        font-size: 1.2rem; }
    .talent-wrap ul li {
      width: 48%;
      margin-bottom: 15px; }
      .talent-wrap ul li .talent-thumnail {
        display: block; }
        .talent-wrap ul li .talent-thumnail_img {
          margin-bottom: 0px; }
      .talent-wrap ul li .talent-name-wrap {
        padding: 10px 5px;
        margin-bottom: 10px; }
        .talent-wrap ul li .talent-name-wrap h3 {
          font-size: 1.8rem;
          color: #000;
          text-align: center; }
        .talent-wrap ul li .talent-name-wrap h4 {
          font-size: 1.2rem;
          font-weight: 200;
          color: #000;
          text-align: center;
          font-family: 'Josefin Sans', sans-serif; } }
/***************************

トピックス一覧_詳細

***************************/
.topics-wrap {
  margin-bottom: 40px; }
  .topics-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .topics-wrap_layout {
    display: flex;
    justify-content: space-between; }
    .topics-wrap_layout .topics-main {
      width: 80%; }
      .topics-wrap_layout .topics-main ul {
        text-align: left;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap; }
        .topics-wrap_layout .topics-main ul li {
          width: 31%; }
          .topics-wrap_layout .topics-main ul li a .topics-thumnail {
            display: flex; }
            .topics-wrap_layout .topics-main ul li a .topics-thumnail_deta {
              font-size: 1.4rem;
              -ms-writing-mode: tb-rl;
              writing-mode: vertical-rl; }
            .topics-wrap_layout .topics-main ul li a .topics-thumnail_img {
              overflow: hidden;
              width: 100%;
              aspect-ratio: 3 / 2;
              position: relative;
              margin-bottom: 20px; }
              .topics-wrap_layout .topics-main ul li a .topics-thumnail_img img {
                object-fit: cover; }
              .topics-wrap_layout .topics-main ul li a .topics-thumnail_img .filtter_on {
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
                background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
                background: -o-linear-gradient(60deg, #7FCCF3, #3981BC);
                background: linear-gradient(60deg, #7FCCF3, #3981BC);
                opacity: 0; }
          .topics-wrap_layout .topics-main ul li .topics-title {
            margin: 0px 5px 25px 5px;
            text-align: center;
            color: #333; }
            .topics-wrap_layout .topics-main ul li .topics-title_t-name {
              font-weight: 600;
              font-size: 1.4rem;
              line-height: 1.8;
              margin-bottom: 10px; }
            .topics-wrap_layout .topics-main ul li .topics-title h3 {
              font-weight: 200;
              font-size: 1.2rem;
              overflow: hidden;
              display: -webkit-box;
              text-overflow: ellipsis;
              -webkit-box-orient: vertical;
              -webkit-line-clamp: 2; }
          .topics-wrap_layout .topics-main ul li a:hover .topics-thumnail .topics-thumnail_img .filtter_on {
            opacity: 0.8 !important;
            transition: .4s; }
      .topics-wrap_layout .topics-main ul::after {
        content: "";
        display: block;
        width: 31%; }
      .topics-wrap_layout .topics-main_article {
        text-align: left;
        padding: 40px 0;
        border-top: solid 1px #333;
        border-bottom: solid 1px #333; }
        .topics-wrap_layout .topics-main_article h3 {
          font-size: 2rem;
          padding: 10px 0; }
        .topics-wrap_layout .topics-main_article .deta {
          color: #7FCCF3;
          font-family: 'Josefin Sans', sans-serif; }
        .topics-wrap_layout .topics-main_article .topics_c {
          font-size: 1.2rem;
          border: solid 1px #000;
          font-family: 'Josefin Sans', sans-serif;
          padding: 5px 5px 3px 5px;
          color: #FFF;
          background: #7FCCF3; }
        .topics-wrap_layout .topics-main_article .talent_link {
          margin-bottom: 30px; }
          .topics-wrap_layout .topics-main_article .talent_link a {
            border-bottom: solid 1px #E79E90;
            padding-bottom: 3px;
            font-size: 1.4rem; }
            .topics-wrap_layout .topics-main_article .talent_link a:hover {
              border-bottom: solid 1px #7FCCF3; }
        .topics-wrap_layout .topics-main_article p {
          font-size: 1.4rem; }
        .topics-wrap_layout .topics-main_article img {
          margin: 20px 0; }
      .topics-wrap_layout .topics-main .to_topics_all {
        text-align: right;
        font-size: 1.4rem;
        margin: 20px 0; }
      .topics-wrap_layout .topics-main .relation_topics {
        text-align: left;
        color: #7FCCF3;
        font-size: 2.4rem;
        margin-bottom: 30px;
        font-weight: 400;
        font-family: 'Josefin Sans', sans-serif; }
    .topics-wrap_layout .topics-side {
      width: 15%;
      text-align: left;
      margin-top: -1%; }
      .topics-wrap_layout .topics-side h3 {
        font-size: 2rem;
        font-family: 'Josefin Sans', sans-serif;
        color: #7FCCF3;
        margin-bottom: 10px; }
      .topics-wrap_layout .topics-side ul.category {
        margin-bottom: 20px;
        display: flex;
        flex-wrap: wrap;
        padding-bottom: 20px;
        border-bottom: solid 1px #999; }
        .topics-wrap_layout .topics-side ul.category li {
          text-align: center;
          padding: 2px 5px 2px 5px;
          margin: 2px;
          font-size: 1.2rem;
          font-family: 'Josefin Sans', sans-serif;
          margin-bottom: 3px;
          border: solid 1px #7FCCF3; }
          .topics-wrap_layout .topics-side ul.category li a {
            display: block;
            color: #000; }
        .topics-wrap_layout .topics-side ul.category li.active {
          background: #7FCCF3; }
          .topics-wrap_layout .topics-side ul.category li.active a {
            display: block;
            color: #FFF; }
      .topics-wrap_layout .topics-side .pickup-topics-thumnail {
        display: block;
        padding-bottom: 20px;
        border-bottom: solid 1px #999; }
        .topics-wrap_layout .topics-side .pickup-topics-thumnail li {
          margin-bottom: 10px; }
        .topics-wrap_layout .topics-side .pickup-topics-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 3 / 2;
          position: relative; }
          .topics-wrap_layout .topics-side .pickup-topics-thumnail_img a {
            transition: 1s; }
          .topics-wrap_layout .topics-side .pickup-topics-thumnail_img img {
            object-fit: cover; }
          .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: .4s;
            background: #7FCCF3; }
            .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt {
              position: absolute;
              top: 0%;
              left: 0%;
              margin: 10%; }
              .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt h3 {
                font-size: 1.2rem;
                color: #000;
                text-align: left;
                font-weight: 600;
                margin-bottom: 5px; }
              .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt h4 {
                font-size: 1rem;
                font-weight: 200;
                color: #000;
                text-align: left;
                line-height: 1.4;
                overflow: hidden;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2; }
      .topics-wrap_layout .topics-side a:hover .topics-filtter_on {
        opacity: 0.8 !important;
        transition: 1s; }
        .topics-wrap_layout .topics-side a:hover .topics-filtter_on h3 {
          transition: 1s;
          opacity: 1 !important; }
        .topics-wrap_layout .topics-side a:hover .topics-filtter_on h4 {
          transition: 1s;
          opacity: 1 !important; }

@media screen and (max-width: 959px) {
  .topics-wrap {
    padding-top: 20px;
    margin-bottom: 60px;
    margin-top: 60px; }
    .topics-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; }
    .topics-wrap_layout {
      display: block;
      margin-top: 20px; }
      .topics-wrap_layout .topics-main {
        width: 100%; }
        .topics-wrap_layout .topics-main ul {
          margin-bottom: 15px; }
          .topics-wrap_layout .topics-main ul li {
            width: 48%; }
            .topics-wrap_layout .topics-main ul li a .topics-thumnail {
              display: flex; }
              .topics-wrap_layout .topics-main ul li a .topics-thumnail_deta {
                font-size: 1.2rem; }
              .topics-wrap_layout .topics-main ul li a .topics-thumnail_img {
                overflow: hidden;
                width: 100%;
                aspect-ratio: 3 / 2;
                position: relative;
                margin-bottom: 20px; }
                .topics-wrap_layout .topics-main ul li a .topics-thumnail_img img {
                  object-fit: cover; }
                .topics-wrap_layout .topics-main ul li a .topics-thumnail_img .filtter_on {
                  position: absolute;
                  top: 0;
                  right: 0;
                  width: 100%;
                  height: 100%;
                  background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
                  background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
                  background: -o-linear-gradient(60deg, #7FCCF3, #3981BC);
                  background: linear-gradient(60deg, #7FCCF3, #3981BC);
                  opacity: 0; }
            .topics-wrap_layout .topics-main ul li .topics-title {
              margin: 0px 5px 20px 5px; }
              .topics-wrap_layout .topics-main ul li .topics-title_t-name {
                font-weight: 600;
                font-size: 1.2rem; }
              .topics-wrap_layout .topics-main ul li .topics-title h3 {
                font-weight: 200;
                font-size: 1.1rem; }
            .topics-wrap_layout .topics-main ul li a:hover .topics-thumnail .topics-thumnail_img .filtter_on {
              opacity: 0.8 !important;
              transition: .4s; }
        .topics-wrap_layout .topics-main ul::after {
          content: "";
          display: block;
          width: 48%; }
      .topics-wrap_layout .topics-side {
        width: 100%;
        text-align: left;
        margin-top: 0%;
        /*a:hover .topics-filtter_on { opacity: 0.8 !important; transition: 1s; 
        	h3 { transition: 1s; opacity: 1 !important; }
        	h4 { transition: 1s; opacity: 1 !important;}
        }*/ }
        .topics-wrap_layout .topics-side .pickup-topics-thumnail {
          display: block;
          padding-bottom: 20px;
          border-bottom: solid 1px #999; }
          .topics-wrap_layout .topics-side .pickup-topics-thumnail li {
            margin-bottom: 15px; }
          .topics-wrap_layout .topics-side .pickup-topics-thumnail_img {
            overflow: hidden;
            width: 100%;
            aspect-ratio: 3 / 2;
            position: relative; }
            .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on {
              position: absolute;
              top: 75%;
              right: 0;
              width: 100%;
              height: 25%;
              opacity: 0.7;
              background: #999; }
              .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt {
                position: absolute;
                top: 0%;
                left: 0%;
                margin: 2%; }
                .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt h3 {
                  font-size: 1.2rem;
                  color: #000;
                  text-align: left;
                  font-weight: 600;
                  margin-bottom: 5px; }
                .topics-wrap_layout .topics-side .pickup-topics-thumnail_img .topics-filtter_on_txt h4 {
                  font-size: 1rem;
                  font-weight: 200;
                  color: #000;
                  text-align: left;
                  line-height: 1.4;
                  overflow: hidden;
                  display: -webkit-box;
                  -webkit-box-orient: vertical;
                  -webkit-line-clamp: 1; } }
/*****************
ページネーション
*****************/
.pagenation {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0; }

.pagenation-item-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  background: #fff;
  border: solid 2px #7FCCF3;
  font-size: 1.4rem;
  color: #7FCCF3;
  font-weight: bold;
  transition: all 0.2s linear;
  font-family: 'Josefin Sans', sans-serif; }

.pagenation-item-link.active {
  background: #7FCCF3;
  color: #fff;
  pointer-events: none; }

.pagenation-item-link:not(.active):hover {
  background: #7FCCF3;
  color: #fff; }

.pagenation > * + * {
  margin-left: 8px; }

/***************************

グループ一覧

***************************/
.group-wrap {
  padding-top: 20px;
  margin-bottom: 60px; }
  .group-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .group-wrap__txt {
    text-align: left;
    margin-top: 40px; }
    .group-wrap__txt h3 {
      color: #7FCCF3;
      font-family: 'Josefin Sans', sans-serif;
      margin-bottom: 10px;
      font-size: 2rem; }
  .group-wrap ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .group-wrap ul li {
      width: 48.5%;
      margin-bottom: 30px; }
      .group-wrap ul li .group-thumnail {
        display: flex; }
        .group-wrap ul li .group-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 6 / 4;
          position: relative; }
          .group-wrap ul li .group-thumnail_img img {
            object-fit: cover; }
          .group-wrap ul li .group-thumnail_img .filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -o-linear-gradient(60deg, #7FCCF3, #F25C6F);
            background: linear-gradient(60deg, #7FCCF3, #3981BC);
            opacity: 0; }
            .group-wrap ul li .group-thumnail_img .filtter_on_group_name {
              position: absolute;
              top: 50%;
              left: 50%;
              transform: translateY(-50%) translateX(-50%);
              -webkit-transform: translateY(-50%) translateX(-50%); }
              .group-wrap ul li .group-thumnail_img .filtter_on_group_name h3 {
                font-size: 2rem;
                transform: scaleX(0.2);
                color: #000;
                text-align: center; }
              .group-wrap ul li .group-thumnail_img .filtter_on_group_name h4 {
                font-size: 1.4rem;
                font-weight: 200;
                transform: scaleX(0.2);
                color: #000;
                text-align: center;
                font-family: 'Josefin Sans', sans-serif; }
      .group-wrap ul li a:hover .group-thumnail .group-thumnail_img .filtter_on {
        opacity: 0.8 !important;
        transition: .4s; }
        .group-wrap ul li a:hover .group-thumnail .group-thumnail_img .filtter_on h3 {
          transform: scaleX(1);
          transition: .4s; }
        .group-wrap ul li a:hover .group-thumnail .group-thumnail_img .filtter_on h4 {
          transform: scaleX(1);
          transition: .4s; }
      .group-wrap ul li .g-member-title {
        font-family: 'Josefin Sans', sans-serif;
        text-align: center;
        color: #7FCCF3;
        padding: 10px 5px;
        font-size: 2rem; }
      .group-wrap ul li .member-list-wrap {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; }
        .group-wrap ul li .member-list-wrap__icon {
          border-radius: 50%;
          width: 60px;
          height: 60px;
          background: #7FCCF3;
          background: -moz-linear-gradient(bottom left, #7FCCF3, #3981BC);
          background: -webkit-linear-gradient(bottom left, #7FCCF3, #3981BC);
          background: linear-gradient(to top right, #7FCCF3, #3981BC);
          margin: 1%; }
          .group-wrap ul li .member-list-wrap__icon a {
            display: flex;
            height: 60px; }
            .group-wrap ul li .member-list-wrap__icon a img {
              border-radius: 50%;
              width: 54px;
              height: 54px;
              border: solid 3px transparent;
              object-fit: cover; }
  .group-wrap ul::after {
    content: "";
    display: block;
    width: 31.33%; }

@media screen and (max-width: 959px) {
  .group-wrap {
    margin-bottom: 40px;
    margin-top: 60px; }
    .group-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; }
    .group-wrap ul li {
      width: 100%;
      margin-bottom: 25px; }
      .group-wrap ul li .group-thumnail {
        display: block; }
        .group-wrap ul li .group-thumnail_img {
          margin-bottom: 0px; }
      .group-wrap ul li .group-name-wrap {
        padding: 10px 5px 0 5px;
        margin-bottom: 0px; }
        .group-wrap ul li .group-name-wrap h3 {
          font-size: 1.8rem;
          color: #000;
          text-align: center; }
        .group-wrap ul li .group-name-wrap h4 {
          font-size: 1.2rem;
          font-weight: 200;
          color: #000;
          text-align: center;
          font-family: 'Josefin Sans', sans-serif; } }
/***************************

会社概要・PP

***************************/
.company-wrap {
  margin-bottom: 40px; }
  .company-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .company-wrap__box {
    text-align: left;
    font-size: 1.4rem; }
    .company-wrap__box__title {
      background: #7FCCF3;
      color: #FFF;
      padding: 5px;
      margin-bottom: 10px;
      font-weight: 400; }
    .company-wrap__box p {
      padding: 5px;
      line-height: 2;
      margin-bottom: 20px; }

@media screen and (max-width: 959px) {
  .company-wrap {
    padding-top: 40px;
    margin-bottom: 60px; }
    .company-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; } }
/***************************

LP

***************************/
.lp-main-img {
  margin-bottom: 5%; }
  .lp-main-img img {
    width: 100%; }

.lp-wrap {
  margin-bottom: 40px;
  padding-bottom: 20px; }
  .lp-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #7FCCF3;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .lp-wrap__box {
    text-align: left;
    font-size: 1.4rem; }
    .lp-wrap__box h3 {
      color: #F25C6F;
      font-size: 1.8rem;
      padding: 5px; }
    .lp-wrap__box h3.center-t {
      color: #7FCCF3;
      font-size: 1.8rem;
      padding: 5px;
      text-align: center; }
    .lp-wrap__box__title {
      background: #7FCCF3;
      color: #FFF;
      padding: 5px;
      margin-bottom: 10px;
      font-weight: 400; }
    .lp-wrap__box p {
      padding: 5px;
      line-height: 2;
      margin-bottom: 20px; }
    .lp-wrap__box hr {
      margin: 6% 0; }
    .lp-wrap__box span {
      background: #7FCCF3;
      padding: 5px;
      color: #FFF; }

@media screen and (max-width: 959px) {
  .lp-wrap {
    padding-top: 40px;
    margin-bottom: 60px; }
    .lp-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; } }
/***************************

問い合わせ

***************************/
.contact-wrap {
  margin-bottom: 40px; }
  .contact-wrap h2 {
    text-align: center;
    margin: 20px auto 40px auto;
    color: #000;
    font-size: 4rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .contact-wrap .contact-form {
    width: 96%;
    margin: 5px 2%; }
    .contact-wrap .contact-form p {
      color: #7FCCF3;
      text-align: left;
      margin: 20px 0 10px 0; }
      .contact-wrap .contact-form p span {
        background: #F25C6F;
        border-radius: 30px;
        color: #FFF;
        padding: 3px 10px;
        font-size: 1.2rem;
        vertical-align: middle; }
    .contact-wrap .contact-form input[type='text'], .contact-wrap .contact-form textarea {
      box-sizing: border-box;
      width: 100%;
      padding: 10px 5px;
      transition: 0.3s;
      color: #7D7D7D;
      border: 3px solid #7FCCF3;
      border-radius: 3px; }
    .contact-wrap .contact-form input[type='submit'] {
      -webkit-appearance: none; }
    .contact-wrap .contact-form__entry input[type='text']:focus, .contact-wrap .contact-form textarea:focus {
      border: 3px solid #F25C6F;
      outline: none; }
    .contact-wrap .contact-form__annotation {
      font-size: 1.2rem !important;
      color: #383838 !important;
      line-height: 1.2; }
      .contact-wrap .contact-form__annotation a {
        color: #E79E90; }
    .contact-wrap .contact-form__btn {
      margin: 1em auto 0 auto;
      text-align: center;
      padding: 10px 40px;
      cursor: pointer;
      border-radius: 40px;
      font-size: 1.6rem;
      background: #7FCCF3;
      color: #fff;
      line-height: 2;
      width: 300px;
      text-decoration: none;
      border: none; }
      .contact-wrap .contact-form__btn:hover {
        opacity: 0.8; }

@media screen and (max-width: 959px) {
  .contact-wrap {
    padding-top: 40px;
    margin-bottom: 60px; }
    .contact-wrap h2 {
      font-size: 3rem;
      margin-bottom: 20px; } }
/***************************

インナーページ

***************************/
.link-btn {
  background: #F25C6F;
  display: block;
  width: calc(100% - 50px);
  max-width: 360px;
  padding: 10px 15px;
  margin: 50px auto;
  border: none;
  border-radius: 50px;
  text-align: center;
  font-size: 1.8rem;
  color: #FFF; }

/***************************

プロフィール

***************************/
.profile-slide {
  margin: 0px 0 0 20%;
  position: relative;
  padding-bttom: 40px;
  margin-bottom: 80px;
  /* スライド アクティブ時 */ }
  .profile-slide .swiper-container {
    padding-bottom: 40px; }
  .profile-slide .swiper-slide[class*=-active] img {
    transition-delay: 0s;
    animation: motion-fade .5s ease-in;
    transform: translate(0); }
  .profile-slide .swiper-slide img {
    height: 600px;
    object-fit: cover; }
  .profile-slide .swiper-pagination.p-posi {
    text-align: center;
    position: absolute;
    bottom: 0px; }
    .profile-slide .swiper-pagination.p-posi span {
      margin: 10px; }
  .profile-slide .swiper-pagination-bullet-active {
    background: #7FCCF3; }
  .profile-slide .name-title {
    position: absolute;
    left: -5%;
    bottom: 40px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 4rem;
    color: #333;
    line-height: 1;
    letter-spacing: 0.1em;
    white-space: nowrap; }

@keyframes motion-fade {
  0% {
    transform: scale(0.9);
    opacity: 0;
    border-radius: 50%;
    filter: blur(50px);
    background: #000; }
  50% {
    transform: scale(1);
    opacity: 1;
    border-radius: 0%;
    filter: blur(0);
    background: #FFF; } }
.slant-bg {
  width: 100%;
  padding: 10% 0;
  clip-path: polygon(0 calc(0% + 7vw), 100% 0, 100% calc(100% - 7vw), 0 100%);
  /*background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.2) 100%), url("../images/profile/name-bg.jpg");*/
  background: url("../images/profile/name-bg.jpg");
  background-position: center;
  background-size: cover;
  position: relative; }
  .slant-bg_dot {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#000 20%, transparent 20%);
    background-size: 3px 3px; }
  .slant-bg_grade {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-linear-gradient(90deg, #F25C6F, #7FCCF3);
    background: -moz-linear-gradient(90deg, #F25C6F, #7FCCF3);
    background: -o-linear-gradient(90deg, #F25C6F, #7FCCF3);
    background: linear-gradient(90deg, #F25C6F, #7FCCF3);
    opacity: 0.6; }
  .slant-bg .content .profile-title {
    margin-top: -4%;
    padding: 0 30px;
    color: #FFF;
    text-align: right;
    z-index: 1; }
    .slant-bg .content .profile-title h3 {
      font-size: 3rem;
      font-weight: 500; }
      .slant-bg .content .profile-title h3 span {
        display: block;
        font-size: 2rem;
        font-family: 'Josefin Sans', sans-serif;
        font-weight: 200; }

.profile-posi {
  margin-top: -5%; }

.profile-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: -180px;
  position: relative; }
  .profile-wrap .profile-wrap-item {
    width: 32%; }
    .profile-wrap .profile-wrap-item img {
      object-fit: cover;
      height: 400px;
      /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);*/ }
  .profile-wrap .profile-wrap-item2 {
    width: 30%;
    text-align: left;
    margin-top: 150px; }
    .profile-wrap .profile-wrap-item2 h4 {
      font-size: 2.4rem;
      font-family: 'Josefin Sans', sans-serif;
      font-weight: 600;
      color: #7FCCF3;
      padding: 20px 0px 10px; }
    .profile-wrap .profile-wrap-item2 .profile-info {
      width: 100%;
      font-size: 1.2rem; }
      .profile-wrap .profile-wrap-item2 .profile-info dt {
        width: 28%;
        float: left;
        margin-bottom: 5px;
        font-weight: bold;
        padding: 1%; }
      .profile-wrap .profile-wrap-item2 .profile-info dd {
        margin-left: 30.3%;
        margin-bottom: 5px;
        padding: 1%; }
    .profile-wrap .profile-wrap-item2 .profile-sns-wrap {
      display: flex;
      margin-bottom: 20px; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap a.twitter-link {
        background: #000;
        color: #FFF;
        font-size: 1.8rem;
        padding: 5px 10px;
        border-radius: 50px;
        margin-right: 10px; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap a.instagram-link {
        background: #E1306C;
        color: #FFF;
        font-size: 1.8rem;
        padding: 5px 11px;
        border-radius: 50px;
        margin-right: 10px; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap a.tiktok-link {
        background: #333;
        color: #FFF;
        font-size: 1.8rem;
        padding: 5px 11px;
        border-radius: 50px;
        margin-right: 10px; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap a.youtube-link {
        background: #FF0000;
        color: #FFF;
        font-size: 1.8rem;
        padding: 5px 9px;
        border-radius: 50px;
        margin-right: 10px; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap a:last-child {
        margin-right: 0; }
    .profile-wrap .profile-wrap-item2 .profile-link-wrap {
      margin-bottom: 20px; }
      .profile-wrap .profile-wrap-item2 .profile-link-wrap ul li {
        font-size: 1.4rem;
        margin-bottom: 10px; }
        .profile-wrap .profile-wrap-item2 .profile-link-wrap ul li a {
          display: inline-block;
          padding: 1px 5px;
          background: #7FCCF3;
          color: #FFF !important;
          font-size: 1.2rem; }
        .profile-wrap .profile-wrap-item2 .profile-link-wrap ul li audio {
          margin-top: 10px;
          width: 260px;
          height: 40px; }
    .profile-wrap .profile-wrap-item2 h5 {
      font-size: 1.4rem;
      color: #333;
      font-weight: 600; }
    .profile-wrap .profile-wrap-item2 .profile-txt {
      font-size: 1.2rem;
      padding: 5px 0 20px;
      border-bottom: solid 1px #333;
      margin-bottom: 20px; }

.profile-topics-wrap {
  margin-bottom: 60px; }
  .profile-topics-wrap h2 {
    text-align: left;
    margin: 20px auto;
    color: #000;
    font-size: 3rem;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 600;
    letter-spacing: 0.1em; }
  .profile-topics-wrap ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    .profile-topics-wrap ul li {
      width: 32%; }
      .profile-topics-wrap ul li a .topics-thumnail {
        display: flex; }
        .profile-topics-wrap ul li a .topics-thumnail_deta {
          font-size: 1.4rem;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl; }
        .profile-topics-wrap ul li a .topics-thumnail_img {
          overflow: hidden;
          width: 100%;
          aspect-ratio: 3 / 2;
          position: relative;
          margin-bottom: 20px; }
          .profile-topics-wrap ul li a .topics-thumnail_img img {
            object-fit: cover; }
          .profile-topics-wrap ul li a .topics-thumnail_img .filtter_on {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            background: -webkit-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -moz-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: -o-linear-gradient(60deg, #7FCCF3, #3981BC);
            background: linear-gradient(60deg, #7FCCF3, #3981BC);
            opacity: 0; }
      .profile-topics-wrap ul li .topics-title {
        margin: 0px 5px 25px 5px;
        text-align: center;
        color: #333; }
        .profile-topics-wrap ul li .topics-title_t-name {
          font-weight: 600;
          font-size: 1.4rem;
          line-height: 1.8;
          margin-bottom: 10px; }
        .profile-topics-wrap ul li .topics-title h3 {
          font-weight: 200;
          font-size: 1.2rem;
          overflow: hidden;
          display: -webkit-box;
          text-overflow: ellipsis;
          -webkit-box-orient: vertical;
          -webkit-line-clamp: 2; }
      .profile-topics-wrap ul li a:hover .topics-thumnail .topics-thumnail_img .filtter_on {
        opacity: 0.8 !important;
        transition: .4s; }
  .profile-topics-wrap ul::after {
    content: "";
    display: block;
    width: 32%; }
  .profile-topics-wrap__btn {
    text-align: center;
    font-family: 'Josefin Sans', sans-serif; }
    .profile-topics-wrap__btn a {
      display: inline-block;
      position: relative;
      color: #E79E90;
      text-decoration: none; }
      .profile-topics-wrap__btn a:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 100%;
        height: 1px;
        background: #E79E90;
        transform: scale(0, 1);
        transition: 0.4s; }
      .profile-topics-wrap__btn a:hover:before {
        transform: scale(1); }

@media screen and (max-width: 979px) {
  .profile-slide {
    margin: 0px 0 0 11%;
    margin-bottom: 0px;
    margin-top: 70px; }
    .profile-slide .swiper-slide img {
      height: 300px; }
    .profile-slide .name-title {
      position: absolute;
      left: -10%;
      font-size: 2.4rem; }

  .profile-title {
    padding: 15px;
    margin-left: 0px;
    margin-top: 0px;
    color: #FFF;
    text-align: center; }
    .profile-title h3 {
      font-size: 2.4rem; }
      .profile-title h3 span {
        font-size: 1.8rem; }

  .profile-wrap {
    display: block;
    justify-content: space-between;
    margin-top: 20px; }
    .profile-wrap .profile-wrap-item {
      width: 100%; }
      .profile-wrap .profile-wrap-item img {
        height: 400px; }
    .profile-wrap .profile-wrap-item2 {
      width: 100%;
      text-align: left;
      margin-top: 10px; }
      .profile-wrap .profile-wrap-item2 h4 {
        text-align: center; }
      .profile-wrap .profile-wrap-item2 .profile-sns-wrap {
        justify-content: center; }
      .profile-wrap .profile-wrap-item2 .profile-link-wrap ul {
        text-align: center; }

  .profile-topics-wrap {
    margin-bottom: 40px; }
    .profile-topics-wrap h2 {
      font-size: 3rem;
      text-align: center; }
    .profile-topics-wrap ul li {
      width: 48%; }
      .profile-topics-wrap ul li a .topics-thumnail_deta {
        font-size: 1.1rem; }
      .profile-topics-wrap ul li .topics-title h3 {
        font-weight: 200;
        font-size: 1.1rem; } }
/***************************

SP 

***************************/
@media screen and (max-width: 959px) {
  .pc {
    display: none; }

  .sp {
    display: block; }

  .page-layout {
    display: block; }
    .page-layout .main-wrap {
      width: 100%; }
    .page-layout .side-wrap {
      width: 100%; }

  .headline-title {
    font-size: 2rem;
    padding: 5px 0;
    margin-bottom: 20px; }
    .headline-title span {
      font-size: 1.2rem; }

  .headline-title:before {
    bottom: 30px; } }
/*************************************

タイマー設定

*************************************/
.timerHidden {
  display: none; }

.timerVisible {
  display: block; }

/*************************************

アニメーション

*************************************/
/*************************************
スクロールアクション
*************************************/
.scroll-action {
  opacity: 0; }

.fadeinUp {
  transform: translate(0px, 150px);
  transition: all 600ms; }

.fadeinLeft {
  transform: translate(-500px, 0px);
  transition: all 600ms;
  backface-visibility: hidden; }

.fadeinRight {
  transform: translate(150px, 0px);
  transition: all 600ms;
  backface-visibility: hidden; }

.fadeinZoom {
  transform: scale(0.1);
  transition: all 600ms; }

.fadeinRight2 {
  transform: translate(500px, 0px); }

/* 画面内に入った状態 */
.scroll-action.scroll-in {
  opacity: 1;
  transform: translate(0, 0) scale(1); }

.container-fade {
  position: relative;
  width: 400px;
  height: 200px; }

.fade-image {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim 15s infinite;
  overflow: hidden; }

.fade-image:nth-of-type(1) {
  animation-delay: 0s; }

.fade-image:nth-of-type(2) {
  animation-delay: 5s; }

.fade-image:nth-of-type(3) {
  animation-delay: 10s; }

@keyframes change-img-anim {
  0% {
    opacity: 0;
    transform: scale(1.3); }
  20% {
    opacity: 1;
    transform: scale(1); }
  36% {
    opacity: 1; }
  45% {
    opacity: 0; }
  100% {
    opacity: 0; } }
.fade-image2 {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: change-img-anim2 2.4s infinite;
  overflow: hidden; }

.fade-image2:nth-of-type(1) {
  animation-delay: 0s; }

.fade-image2:nth-of-type(2) {
  animation-delay: 0.4s; }

.fade-image2:nth-of-type(3) {
  animation-delay: 0.8s; }

.fade-image2:nth-of-type(4) {
  animation-delay: 1.2s; }

.fade-image2:nth-of-type(5) {
  animation-delay: 1.6s; }

.fade-image2:nth-of-type(6) {
  animation-delay: 2s; }

@keyframes change-img-anim2 {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  15% {
    opacity: 1;
    transform: scale(1); }
  25% {
    opacity: 1; }
  40% {
    opacity: 0; }
  100% {
    opacity: 0; } }
.pb5 {
  padding-bottom: 5%; }
