/* --------------------
    01 COMMON
    02 HEADER
    03 MAIN VISUAL
    04 SP SNS AREA
    05 PICKUP
    06 NEWS
    07 MOVIE
    08 PROFILE
    09 OFFICIAL SNS
    10 DISCOGRAPHY
    11 FOOTER
    12 SP - MENU
    13 UNDERLAYER
     - breadcrumb
     - news
     - movie
     - disco
     14 MOVIE MODAL
     15 WORDPRESS
     16 SWAY
-------------------- */
* {
  transition: all 0.2s ease-in-out;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #1f1f1f;
  background: url("../images/bg.png");
  background-size: 150px;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 60px;
  }
}
.top {
  background: linear-gradient(-45deg, #c5f7e6, #fffbdf, #e5f2ff, #fff) fixed;
  background-size: 600% 600%;
  animation: BGGradietionAnimation 6s ease infinite;
}
@keyframes BGGradietionAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
a {
  color: #1f1f1f;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
a img {
  cursor: pointer;
}
a:hover, a:hover img {
  opacity: 0.95;
}
.sp-disp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .pc-disp {
    display: none !important;
  }
  .sp-disp {
    display: block !important;
  }
}
.f-color {
  color: #15a8a3;
  font-weight: 600;
}
/* --------------------
    01 COMMON
-------------------- */
section {
  padding: 8rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  section {
    padding: 3rem 0;
  }
}
section.sub {
  overflow: hidden;
}
section:before {
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  position: absolute;
  top: 8rem;
  left: 2%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  section:before {
    left: 1%;
  }
}
@media screen and (max-width: 768px) {
  section:before {
    content: none !important;
  }
}
.content-area {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 10rem;
}
@media screen and (max-width: 1024px) {
  .content-area {
    padding: 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  .content-area {
    padding: 0 2rem;
  }
}
.content-title.js-in {
  display: inline-block;
  position: relative;
  padding: 1rem 1rem 1rem 0;
}
.content-title span:before {
  background: #363636;
  content: '';
  position: absolute;
  transition: all 0.05s ease-in-out;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
}
.content-title.js-view span:before {
  animation: span-before 2s;
  animation-fill-mode: forwards;
}
.content-title span:after {
  background: #fff;
  content: '';
  position: absolute;
  transition: all 0.3s ease-in-out;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.content-title.js-view span::after {
  animation: span-after 1.5s;
  animation-fill-mode: forwards;
}
@keyframes span-before {
  0% {
    width: 100%;
  }
  40% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}
@keyframes span-after {
  0% {
    width: 100%;
  }
  40% {
    width: 0;
  }
  100% {
    width: 0;
  }
}
@media screen and (max-width: 768px) {
  .content-title {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 425px) {
  .content-title {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  .content-title img {
    height: 60px;
    width: auto;
  }
}
@media screen and (max-width: 768px) {
  .content-title img {
    height: 40px;
  }
}
.totop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 110px;
  height: 110px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .totop {
    width: 80px;
    height: 80px;
    bottom: 0;
  }
}
.back-btn, .more-btn, .view-btn {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  max-width: 38rem;
  margin: 5rem auto 0;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .back-btn, .more-btn, .view-btn {
    max-width: 27rem;
    font-size: 1.6rem;
    margin-top: 4rem;
    padding-bottom: 1rem;
  }
}
.back-btn a, .more-btn span, .view-btn a {
  cursor: pointer;
  background: #72bea1;
  background: linear-gradient(90deg, #72bea1 0%, #9bcdff 100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  color: #fff;
  min-height: 80px;
  width: 100%;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.back-btn a:hover, .more-btn span:hover, .view-btn a:hover {
  background-size: 200% 200%;
  animation: GradietionAnimation 2s ease infinite;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .back-btn a, .more-btn span, .view-btn a {
    min-height: 50px;
  }
}
.back-btn a:after, .more-btn span:after, .view-btn a:after {
  content: '';
  background-image: url("../images/icon_right_arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 17px;
  height: 24px;
  position: absolute;
  right: 20px;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .back-btn a:after, .more-btn span:after, .view-btn a:after {
    width: 12px;
    height: 16px;
  }
}
@keyframes GradietionAnimation {
  0% {
    background-position: 100% 50%;
  }
  50% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.more-btn span:after {
  content: '';
  background-image: url("../images/icon_down_arrow.png");
  width: 24px;
  height: 17px;
}
@media screen and (max-width: 768px) {
  .more-btn span:after {
    width: 16px;
    height: 12px;
  }
}
.back-btn a:after {
  content: '';
  background-image: url("../images/icon_left_arrow.png");
  width: 17px;
  height: 24px;
  left: 30px;
  right: auto;
}
@media screen and (max-width: 768px) {
  .back-btn a:after {
    width: 12px;
    height: 16px;
  }
}
.more-loading {
  text-align: center;
  padding-top: 2em;
  display: none;
}
.more-loading.is-show {
  display: block;
}
/* --------------------
    02 HEADER
-------------------- */
.header {
  font-family: din-condensed, 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
  background: #72bea1;
  background: linear-gradient(90deg, #72bea1 0%, #9bcdff 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}
.header__snsarea {
  background: #363636;
}
.header__snsarea ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-height: 4rem;
  padding: 1rem 0;
}
.header__snsarea li {
  margin-left: 1rem;
}
.header__snsarea li:first-child {
  margin-left: 0;
}
.header__snsarea a {
  color: #f7ed36;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}
@media screen and (max-width: 950px) {
  .header__main {
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header__main {
    height: 6rem;
    flex-direction: row;
  }
}
.header__gnavi {
  display: flex;
  font-size: 2.6rem;
}
.header__gnavi li {
  margin-left: 3rem;
}
.header__gnavi li:first-child {
  margin-left: 0;
}
.header__gnavi a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .header__menu-btn {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }
}
/* --------------------
    03 MAIN VISUAL
-------------------- */
.mainvisual {
  background-image: url("../images/img_main241031.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 0;
  padding-top: calc(700 / 1380 * 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    height: 350px;
    background-image: url("../images/img_main241031-sp.jpg");
  }
}
.mainvisual__banner {
  position: absolute;
  bottom: 4rem;
  right: 4rem;
  display: flex;
}
@media screen and (max-width: 768px) {
  .mainvisual__banner {
	          bottom: 1rem;
        right: 1rem;
  }
}
.mainvisual__banner li {
  margin-left: 1rem;
  box-shadow: 0 0px 15px rgb(21, 255, 233);
  overflow: hidden
}
.mainvisual__banner li:first-child {
  margin-left: 0;
}
.mainvisual__banner img {
  width: 360px;
    box-shadow: 0 0px 8px rgb(21, 255, 233);
}
@media screen and (max-width: 1024px) {
  .mainvisual__banner li:first-child {
    margin: 0 auto;
  }
  .mainvisual__banner img {
	  width: 180px;
  }
}
.mainvisual__banner a:hover img {
  transform: scale(1.05);
  opacity: 1;
}
/* --------------------
    04 SP SNS AREA
-------------------- */
.sns-area__wrap {
  display: flex;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .sns-area__wrap {
    margin-top: 4rem;
  }
}
.sns-area__wrap li {
  margin-left: .5rem;
}
.sns-area__wrap li a {
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sns-area__wrap li:first-child {
  margin-left: 0;
}
/* --------------------
    05 PICKUP
-------------------- */
@media screen and (min-width: 769px) {
  .pickup {
    padding-top: 4rem
  }
}
.pickup__item {
  margin: 0 2rem;
}
@media screen and (max-width: 768px) {
  .pickup__item {
    margin: 0 0.5rem;
  }
}
.pickup .slick-slide img {
  height: 300px;
}
@media screen and (max-width: 768px) {
  .pickup .slick-slide img {
    height: 180px;
  }
}
.pickup .slick-slider div {
  transition: none;
}
.pickup .prev_icon {
  position: absolute;
  top: 50%;
  left: 24%;
  transform: translate(0, -50%);
  width: 86px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pickup .prev_icon {
    display: none !important;
  }
}
.pickup .next_icon {
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 24%;
  transform: translate(0, -50%);
  width: 86px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .pickup .next_icon {
    display: none !important;
  }
}
.pickup .slick-dots li.slick-active button:before {
  color: #75bfa7;
  opacity: 1;
}
.pickup .slick-dots li button {
  width: 30px;
  height: 30px;
}
.pickup .slick-dots li.slick-active button {
  border-radius: 50%;
  border: 1px solid #75bfa7;
  position: relative;
}
.pickup .slick-dots li.slick-active button:after {
  position: absolute;
  content: '';
  top: 0;
  left: -14px;
  background: #fff;
  width: 30px;
  height: 10px;
  transform: rotate(-60deg);
}
.pickup .slick-dots li button:before {
  color: #d6d6d6;
  opacity: 1;
}
/* --------------------
    06 NEWS
-------------------- */
.news:before {
  content: '';
  background-image: url("../images/txt_news.png");
}
.news__head, .movie__head, .profile__head, .disco__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .news__head, .movie__head, .profile__head, .disco__head {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .news-detail .news__head, .news-detail .movie__head, .news-detail .profile__head, .news-detail .disco__head {
    margin-bottom: 1rem;
  }
}
.news__menu, .disco__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  font-size: 2.6rem;
  font-family: din-condensed, 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
}
@media screen and (max-width: 425px) {
  .news__menu, .disco__menu {
    justify-content: center;
    font-size: 2.2rem;
  }
}
.news__menu li, .disco__menu li {
  margin-left: 3rem;
  padding: 1rem 0 0;
  cursor: pointer;
}
.news__menu li:first-child, .disco__menu li:first-child {
  margin-left: 0;
}
.news__menu li:hover, .disco__menu li:hover {
  color: #75bfa7;
  opacity: 1;
}
@media screen and (max-width: 425px) {
  .news__menu li, .disco__menu li {
    margin-left: 1.5rem;
  }
}
.news__menu .active, .disco__menu .active {
  color: #75bfa7;
  border-bottom: solid 2px #99ccfa;
}
.news__wrap {
  display: none;
}
.news__wrap.active {
  display: block;
}
.news__list {
  border-top: solid 1px #d6d6d6;
}
.news__item {
  position: relative;
}
.news__item:after {
  content: '';
  background: url("../images/btn_right_arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  width: 86px;
  height: 86px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -43px;
}
@media screen and (max-width: 768px) {
  .news__item:after {
    content: none;
  }
}
.news__item a {
  border-bottom: solid 1px #d6d6d6;
  padding: 2rem 0;
  font-size: 1.8rem;
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .news__item a {
    font-size: 1.4rem;
    line-height: 1.65;
  }
}
.news__item a:after {
  position: absolute;
  content: '';
  display: block;
  width: calc(100% - 1px);
  height: 2px;
  background-color: #99ccfa;
  left: 0;
  bottom: -1px;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 1.3s cubic-bezier(0.52, 0.08, 0.18, 1);
}
.news__item a:hover:after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.news__item a:hover {
  opacity: 1;
}
.news__item img {
  margin-right: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.news__item .date {
  color: #75bfa7;
  margin-right: 1rem;
}
.news__item .cat {
  font-size: 1.6rem;
  font-family: din-condensed;
  color: #fff;
  background: #75bfa7;
  padding: .1rem .5rem;
  line-height: 1;
}
.news__item .title {
  margin-top: 1rem;
  font-weight: 500;
  padding-right: 12rem;
}
@media screen and (max-width: 768px) {
  .news__item .title {
    padding-right: 0;
  }
}
/* --------------------
    07 MOVIE
-------------------- */
.movie {
  overflow: hidden;
}
.movie:before {
  content: '';
  background-image: url("../images/txt_movie.png");
}
@media screen and (max-width: 768px) {
  .movie .content-area {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .movie__head {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .movie .slick-slide img {
    height: 170px;
  }
}
.movie .slick-slider > div {
  margin-bottom: 20px;
  transition: none;
}
.movie .slick-dots li.slick-active button:before {
  color: #75bfa7;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .movie .slick-dots {
    bottom: 60px;
  }
}
.movie .slick-dots li.slick-active button {
  border-radius: 50%;
  border: 1px solid #75bfa7;
  position: relative;
}
.movie .slick-dots li.slick-active button:after {
  position: absolute;
  content: '';
  top: 0;
  left: -14px;
  background: #fff;
  width: 30px;
  height: 10px;
  transform: rotate(-60deg);
}
.movie .slick-dots li button:before {
  color: #d6d6d6;
  opacity: 1;
}
.movie__pager {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.movie__page-border {
  width: 350px;
  position: relative;
  margin-right: 2rem;
  height: 5px;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: #f9f9f9;
}
.movie ::-moz-progress-bar {
  background-color: #75bfa7;
}
.movie ::-webkit-progress-bar {
  background-color: #f9f9f9;
}
.movie ::-webkit-progress-value {
  background-color: #75bfa7;
}
.movie__pager-btn {
  display: flex;
}
.movie__pager-btn img {
  width: 86px;
  height: 86px;
  cursor: pointer;
}
.movie__pager-btn img:hover {
  opacity: 0.85;
}
.movie .content-area {
  position: relative;
}
.movie__list {
  position: absolute;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .movie__list {
    position: static;
  }
}
.movie__item {
  width: 530px;
}
@media screen and (max-width: 768px) {
  .movie__item {
    width: unset;
  }
}
.movie__item {
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  .movie__item {
    margin-left: 1rem;
  }
}
.movie__item:first-child {
  margin-left: 0;
}
.movie__list .js-modal-video {
  position: relative;
  overflow: hidden;
}
.movie__list .js-modal-video:hover img {
  -webkit-transform: scale(1.01);
  transform: scale(1.01);
}
.movie__list .js-modal-video:before {
  content: '';
  background-image: url("../images/btn_play.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 1;
}
.movie__list .js-modal-video:after {
  content: '';
  background: rgba(6, 2, 3, 0.3);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.movie__list .js-modal-video.active:after {
  content: none;
}
.movie .view-btn {
  padding-top: 35rem;
}
@media screen and (max-width: 768px) {
  .movie .view-btn {
    padding-top: 0;
  }
}
/* --------------------
    08 PROFILE
-------------------- */
.profile {
  background: url("../images/bg_profile.png") no-repeat;
  background-size: 70%;
  background-position: top;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .profile {
    background: none;
  }
}
.profile:before {
  content: '';
  background-image: url("../images/txt_profile.png");
}
.profile__head {
  /**&:after {
      content: '';
      background: url('../images/icon.png');
      background-repeat: no-repeat;
      background-size: cover;
      width: 198px;
      height: 198px;
      position: absolute;
      right: -78px;
      top: 50px;
      z-index: 0;
      @media screen and (max-width: 1024px) {
        width: 150px;
        height: 150px;
        right: -58px;
      }
      @media screen and (max-width: 768px) {
        background: none;
      }
    }**/
}
@media screen and (max-width: 768px) {
  .profile__head {
    margin-bottom: 1rem;
  }
}
.profile__head.no-icon:after {
  display: none;
}
.profile__image {}
.profile__menu {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  width: 220px;
  border-bottom: solid 1px #75bfa7;
  padding: 1rem 0;
}
.profile__menu a {
  font-size: 2.2rem;
  color: #75bfa7;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile__menu i {
  font-size: 2.2rem;
  color: #fff;
  background: #75bfa7;
  width: 26px;
  height: 26px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.profile__wrap {
  display: flex;
}
@media screen and (max-width: 768px) {
  .profile__wrap {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.profile__wrap > li {
  margin-left: 1rem;
}
.profile__wrap > li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .profile__wrap > li {
    margin-left: 0;
  }
}
.profile__item {
  width: 20%;
}
@media screen and (max-width: 768px) {
  .profile__item {
    width: 48.5%;
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .profile__item:first-child {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .profile__item .profile__menu {
    width: 100%;
    margin-top: 2rem;
  }
}
.profile__item .name {
  font-size: 3.2rem;
  font-family: din-condensed;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile__item .name {
    margin: 0
  }
}
.profile__item .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.profile__item .sns-list + .sns-list {
  margin-top: 0.7rem;
}
.profile__item .sns-list li {
  margin-left: 1rem;
}
.profile__item .sns-list li:first-child {
  margin-left: 0;
}
.profile__item .sns-list img {
  max-height: 18px;
  width: 100%;
}
.profile__item .sns-list img.sway {
  height: 11px;
  display: flex;
  align-items: center;
}
.profile__name {
  margin-top: 6rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .profile__name {
    width: 80%;
    margin: 4rem auto 0;
  }
}
.profile__name > img {
  width: 250px;
  max-width: 100%;
}
.profile__name p {
  margin-top: 1rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.profile__name .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.profile__name .sns-list li:not(:first-child) {
  margin-left: 1.5rem;
}
.profile__description {
  max-width: 800px;
  margin: 4rem auto 15rem;
  position: relative;
}
.profile__description .text {
  line-height: 2;
  height: 250px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .profile__description .text {
    line-height: 2;
    margin-top: 2rem;
  }
}
.profile__description .show_more {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100px;
  padding-top: 150px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 70%);
  cursor: pointer;
  transition: bottom 0.2s;
}
.profile__description .show_more img {
  width: 220px;
}
.profile__description .show_more .close_btn {
  display: none;
}
.profile__description .show_more.active .close_btn {
  display: inline-block;
}
.profile__description .show_more.active .open_btn {
  display: none;
}
.profile__description .active {
  background: none;
  bottom: -30px;
}
@media screen and (max-width: 768px) {
  .sub {
    overflow: hidden;
  }
}
.member__head {
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .member__head {
    text-align: center;
  }
}
.member__item {
  display: flex;
  justify-content: space-between;
  margin-top: 23rem;
  position: relative;
}
.member__item:first-child {
  margin-top: 15rem;
}
.member__item:last-child {
  margin-bottom: 15rem;
}
@media screen and (max-width: 768px) {
  .member__item {
    flex-direction: column;
    margin-top: 18rem;
  }
}
.member__item .section__line {
  position: absolute;
  top: -80px;
  left: -50%;
  border-top: 1px solid #75bfa7 !important;
  width: 900px;
  transform: rotate(10deg);
}
.member__item .section__line.even {
  transform: rotate(-10deg);
}
.member__item .section__line.even.last {
  bottom: -80px;
  top: unset;
}
.member__item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .member__item:nth-child(even) {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .member__item:nth-child(even) .profile {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .member__item:nth-child(even) h3 {
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .member__item:nth-child(even) .name {
    margin-left: auto;
  }
}
.member__item .profile {
  position: relative;
  width: 48%;
  overflow: unset;
}
@media screen and (max-width: 768px) {
  .member__item .profile {
    width: 100%;
  }
}
.member__item .profile img {
  width: 100%;
  height: 900px;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
@media screen and (max-width: 1024px) {
  .member__item .profile img {
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .member__item .profile img {
    height: auto;
  }
}
.member__item .content {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 48%;
}
@media screen and (max-width: 768px) {
  .member__item .content {
    width: 100%;
    margin-top: -5rem;
  }
}
@media screen and (max-width: 768px) {
  .member__item h3 {
    width: 80%;
    margin-top: -2rem;
    z-index: 2;
  }
}
.member__item .name {
  font-family: din-condensed;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .member__item .name {
    width: 80%;
    margin-top: 2rem;
  }
}
.member__item .name span {
  font-size: 1.8rem
}
.member__item .text {
  margin-top: 5rem;
  margin-bottom: 2.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .member__item .text {
    width: 90%;
    margin: 2rem auto 0;
  }
}
.member__item .text table {
  width: 100%
}
.member__item a {
  max-width: 220px;
  margin: auto auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member__item a img {
  width: 100%;
}
.member__item .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  line-height: 1;
}
.member__item .sns-list li:not(:first-child) {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .member__item .sns-list li:not(:first-child) {
    margin-left: 2rem;
  }
}
.member__item a img.icon_X,.member__popup .sns-list li img.icon_X {
  width: 32px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_X,.member__popup .sns-list li img.icon_X {
    width: 30px;
  }
}
.member__item a img.icon_instagram,.member__popup .sns-list li img.icon_instagram {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_instagram,.member__popup .sns-list li img.icon_instagram {
    width: 30px;
  }
}
.member__item a img.icon_tiktok,.member__popup .sns-list li img.icon_tiktok {
  width: 30px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_tiktok,.member__popup .sns-list li img.icon_tiktok {
    width: 30px;
  }
}
.member__item a img.icon_ldhmobile,.member__popup .sns-list li img.icon_ldhmobile {
  width: 68px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_ldhmobile,.member__popup .sns-list li img.icon_ldhmobile {
    width: 68px;
  }
}
.member__item a img.icon_weibo,.member__popup .sns-list li img.icon_weibo {
  width: 37px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_weibo,.member__popup .sns-list li img.icon_weibo {
    width: 37px;
  }
}
.member__item a img.icon_sway,.member__popup .sns-list li img.icon_sway {
  width: 83px;
}
@media screen and (max-width: 768px) {
  .member__item a img.icon_sway,.member__popup .sns-list li img.icon_sway {
    width: 83px;
  }
}
.member__popup-btn img {
  margin-top: 2rem
}
.member__popup {
  position: relative;
  padding: 20px;
  width: auto;
  height: auto;
  margin: 20px auto;
}
.member__popup .content-area {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .member__popup .content-area {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .member__popup .content-area {
    flex-direction: column;
    padding: 0;
  }
}
.member__popup-left {
  width: 50%;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .member__popup-left {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .member__popup-left {
    width: 100%;
  }
}
.member__popup-left .content {
  margin-top: -4rem;
}
.member__popup-left .content .name {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: din-condensed;
  margin-top: 1rem;
}
.member__popup-left .content .name span {
  font-size: 1.8rem;
}
.member__popup-right {
  width: 45%;
}
@media screen and (min-width: 769px) {
  .member__popup-right {
    overflow: scroll;
    overflow-y: auto;
    max-height: 100vh;
  }
}
@media screen and (max-width: 1024px) {
  .member__popup-right {
    width: 52%;
  }
}
@media screen and (max-width: 768px) {
  .member__popup-right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .member__popup-right table {
    margin-top: 2rem;
  }
}
.member__popup-right .profile__item-ttl, .member__popup-right .profile__item-txt {
  padding: 1rem 0;
}
.profile__item-ttl, .profile__item-txt {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .profile__item-ttl, .profile__item-txt {
    width: 100%;
    display: block;
  padding: 5px 0;
  }
  .profile__item-row .profile__item-ttl, .profile__item-row .profile__item-txt {
    width: auto;
    display: inline-block;
    float: left
  }
  .profile__item-row .profile__item-ttl {
    margin-right: 1rem
  }
}
.profile__item-ttl {
  color: #75bfa7;
  width: 150px;
}
@media screen and (max-width: 768px) {
  .profile__item-ttl {
    padding-bottom: 0;
  }
}
.member__popup .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.member__popup .sns-list li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.member__popup .sns-list li:not(:first-child) {
  margin-left: 1rem;
}
@media screen and (max-width: 768px) {
  .member__popup .sns-list li:not(:first-child) {
    margin-left: 2rem;
  }
}
.sway__popup {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 10rem;
  overflow: scroll;
  overflow-y: auto;
  max-height: 100vh;
  line-height: 2
}
@media screen and (max-width: 768px) {
  .sway__popup {
    padding: 0;
    margin-top: 5rem
  }
}
.mfp-bg {
  background: #fff;
  opacity: 0.975;
}
.mfp-close-btn-in .mfp-close {
  color: #75bfa7;
  width: 70px;
  height: 70px;
  right: 5%;
  top: 5%;
  position: fixed;
  z-index: 2;
  display: inline-block;
  overflow: hidden;
  border: none;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .mfp-close-btn-in .mfp-close {
    width: 60px;
    height: 60px;
    right: 4%;
    top: 3%;
  }
}
.mfp-close-btn-in .mfp-close:before, .mfp-close-btn-in .mfp-close:after {
  height: 5px;
  background: #75bfa7;
}
.mfp-close-btn-in .mfp-close:before {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  border-radius: 5px;
  margin-top: -6px;
  transform: rotate(45deg);
}
.mfp-close-btn-in .mfp-close:after {
  content: '';
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  border-radius: 5px;
  margin-top: -6px;
  transform: rotate(-45deg);
}
/* --------------------
    09 OFFICIAL SNS
-------------------- */
.officialsns__wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .officialsns__wrap {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .officialsns h2 {
    margin-bottom: 3rem;
  }
  .officialsns h2 img {
    height: 40px
  }
}
.officialsns__box {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .officialsns__box {
    flex-direction: column;
    align-items: center;
  }
}
.officialsns__item {
  text-align: center;
  padding: 1rem;
  width: 100%;
  min-width: 36rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .officialsns__item {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.officialsns__item.instagram {
  border-radius: 10px;
  border: solid 2px #75bfa7;
}
@media screen and (max-width: 768px) {
  .officialsns__item.instagram {
    order: 2;
  }
}
.officialsns__item.twitter {
  border-radius: 10px;
  border: solid 2px #99ccfa;
}
@media screen and (max-width: 768px) {
  .officialsns__item.twitter {
    order: 1;
  }
}
.officialsns__item .timeline-Widget {
  background-color: unset !important
}
/* --------------------
    10 DISCOGRAPHY
-------------------- */
.disco:before {
  content: '';
  background-image: url("../images/txt_disco.png");
}
.disco__wrap {
  display: none;
}
.disco__wrap.active {
  display: block;
}
.disco__main-item {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .disco__main-item {
    flex-direction: column;
  }
}
.disco__img, .disco__item, .sub .disco__sub-text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .disco__img, .disco__item, .sub .disco__sub-text {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .disco__img {
    width: 410px;
    max-width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .disco__img {
    margin-bottom: 2rem;
    text-align: center
  }
}
.disco__img img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.disco__item .date, .sub .disco__sub-text .date {
  font-size: 1.6rem;
  color: #75bfa7;
  margin-right: .5rem;
  display: inline;
}
.disco__item .cat, .sub .disco__sub-text .cat {
  font-size: 1.6rem;
  font-family: din-condensed;
  color: #fff;
  background: #75bfa7;
  padding: .1rem .5rem;
  line-height: 1;
}
.disco__main-item .disco__item .date, .disco__main-item .disco__item .cat {
  font-size: 2rem;
}
@media screen and (max-width: 950px) {
  .disco__item .date, .sub .disco__sub-text .date {
    display: block;
  }
  .single-discography .disco__item .date {
    display: inline;
  }
}
@media screen and (max-width: 768px) {
  .sub .disco__sub-text .date {
    line-height: 1.2;
  }
}
.disco__item .title, .sub .disco__sub-text .title {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  margin: 2rem 0;
  line-height: 1.5
}
.disco__main-item .disco__item .title {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .disco__main-item .disco__item .title, .disco__item .title, .sub .disco__sub-text .title {
    font-size: 2.4rem;
    margin: 1rem 0;
  }
}
.disco__item .comment {
  display: none;
  font-size: 1.8rem;
}
.disco__link {
  display: flex;
  margin-top: 4rem;
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 768px) {
  .disco__link {
    border-top: solid 1px #b5b5b5;
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.disco__link li {
  width: 50%;
  text-align: center;
}
.disco__link li {
  margin-left: 1rem;
}
.disco__link li:first-child {
  margin-left: 0;
}
.disco__link a {
  width: 100%;
  height: 56px;
  color: #fff;
  background: #0089ff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .disco__link a {
    padding: 2rem;
    line-height: 2rem;
  }
}
.disco__link .streaming a {
  background: #0089ff;
}
.disco__link .shop a {
  background: #00c764;
}
.disco__link img {
  width: 20px;
  margin-right: 0.5rem;
}
.disco__sub-item {
  display: flex;
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .disco__sub-item {
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 3rem;
  }
}
.disco__sub-item li {
  width: 25%;
  margin-left: 4rem;
}
@media screen and (max-width: 768px) {
  .disco__sub-item li {
    width: 48.5%;
    margin-bottom: 3%;
    margin-left: 0;
  }
}
.disco__sub-item li:first-child {
  margin-left: 0;
}
.disco__sub-item img {
  width: 324px;
  max-width: 100%;
  height: 324px;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: 'object-fit: cover;';
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.top .disco__sub-item img, .page-template-page-sway .disco__sub-item img {
  width: 240px;
  max-width: 100%;
  height: 240px;
}
@media screen and (max-width: 950px) {
  .disco__sub-item img {
    width: 207px;
    height: 207px;
  }
  .page-template-page-sway .top .disco__sub-item img {
    width: 145px;
    height: 145px;
  }
}
@media screen and (max-width: 768px) {
  .disco__sub-item img {
    width: 100%;
    height: 100%;
    max-height: 200px;
  }
}
/* --------------------
    11 FOOTER
-------------------- */
.footer {
  margin-top: 12rem;
  font-family: din-condensed, 'Helvetica Neue', 'Helvetica', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'Yu Gothic', 'Meiryo', sans-serif;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 10rem;
  }
}
.footer__wrap {
  background-image: url("../images/bg_footer.jpg");
  background-size: initial;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 3rem;
  position: relative;
}
@media screen and (max-width: 425px) {
  .footer__wrap {
    background-image: url("../images/bg_footer_sp.jpg");
    background-size: cover;
  }
}
.footer__round-logo {
  position: absolute;
  top: -4.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
}
.footer__round-logo:after {
  content: '';
  background-image: url("../images/foot_logo_round.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 120px;
  height: 120px;
  position: absolute;
  right: -15px;
  left: -15px;
  top: -15px;
  bottom: -15px;
  animation: rotate 10s linear infinite;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
.footer__logo {
  width: 21rem;
  margin: 0 auto 3rem;
}
.footer__banner, .footer__nav, .footer__sns {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer__banner, .footer__nav, .footer__sns {
    flex-wrap: wrap;
  }
}
.footer__nav {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.footer__nav li {
  margin-left: 3rem;
}
.footer__nav li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .footer__nav li {
    margin: 0 0.6rem;
  }
}
.footer__nav a {
  color: #fff;
}
.footer__banner {
  margin-bottom: 3rem;
}
.footer__banner li {
  margin-left: 2rem;
}
@media screen and (max-width: 768px) {
  .footer__banner li {
    margin-left: 0;
    margin-bottom: 1rem;
  }
}
.footer__banner li:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .footer__banner li:last-child {
    margin-bottom: 0;
  }
}
.footer__banner img {
  max-width: 320px;
}
.footer__sns a {
  height: 100%;
  font-size: 2.4rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__sns li {
  margin-left: 1rem;
}
.footer__sns li:first-child {
  margin-left: 0;
}
.footer__copyright {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  text-align: right;
  background: #363636;
  color: #f7ed36;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    padding: 1rem;
    text-align: center;
  }
  .footer__copyright p {
    font-size: 1.2rem !important
  }
}
/* --------------------
    12 SP - MENU
-------------------- */
.sp-menu {
  z-index: 99;
  position: fixed;
  background: linear-gradient(90deg, #72bea1 0%, #9bcdff 100%);
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.sp-menu__close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.sp-menu__wrap {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 100%;
  max-width: 40rem;
  margin: 0 auto;
}
.sp-menu .sns-area__wrap {
  margin-top: 4rem;
  margin-bottom: 1rem;
}
.sp-menu__gnavi li {
  margin-top: .5rem;
  text-align: center;
}
.sp-menu__gnavi li a {
  background: #fff;
  color: #75bfa7;
  font-size: 2.6rem;
  width: 100%;
  height: 55px;
  padding: .5rem 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sp-menu__banner {
  margin-top: .5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sp-menu__banner li {
  width: 49.5%;
}
.open .sp-menu {
  visibility: visible;
  opacity: 1;
  z-index: 101;
}
/* --------------------
    13 UNDERLAYER
-------------------- */
.breadcrumb {
  font-size: 1.2rem;
  margin-top: 2rem;
  display: block;
  align-items: center;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  overflow: auto;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 0;
    padding: 1rem;
  }
}
.breadcrumb a {
  display: inline;
}
.breadcrumb a:after {
  content: '';
  background: url("../images/bread_arrow.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 9px;
  height: 12px;
  margin: 0 1rem;
}
@media screen and (max-width: 768px) {
  .sub {
    padding-bottom: 0;
  }
}
.sub .news__under-list {
  margin-top: 8rem;
}
.sub .movie__list {
  position: static;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sub .movie__list li {
  width: 30%;
  margin-left: 0;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sub .movie__list li {
    width: 100%;
  }
}
.sub .movie__list a:before {
  width: 30px;
  height: 30px;
  bottom: 10px;
  left: 10px;
}
.sub .movie__text {
  font-weight: 700;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .sub .movie__text {
    font-size: 1.6rem;
  }
}
.sub .disco__sub-item {
  flex-wrap: wrap;
  justify-content: space-between;
}
.sub .disco__sub-item li {
  width: 30%;
  margin-left: 0;
  margin-bottom: 5rem;
  text-align: center
}
@media screen and (max-width: 768px) {
  .sub .disco__sub-item li {
    width: 48.5%;
    margin-bottom: 2rem;
  }
}
.sub .disco__sub-item img {
  margin-bottom: 2rem;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .sub .disco__sub-item img {
    margin-bottom: 1rem;
  }
}
.sub .disco__sub-text {
  width: 100%;
  line-height: 1.5;
  text-align: left;
}
.sub .disco__sub-text .title {
  font-size: 1.8rem;
  margin-top: .5rem;
  margin-bottom: 0;
}
/* --------------------
    14 MOVIE MODAL
-------------------- */
.modal-video-close-btn:after, .modal-video-close-btn:before {
  background: #75bfa7;
  height: 5px;
}
@media screen and (max-width: 768px) {
  .modal-video-close-btn:after, .modal-video-close-btn:before {
    margin-top: -1px;
    height: 2px;
  }
}
.modal-video-close-btn {
  width: 70px;
  height: 70px;
  right: 0;
  top: -70px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-video-close-btn {
    top: -80px;
    right: 10px;
  }
}
.modal-video-body {
  max-width: 1080px;
}
.modal-video {
  background: rgba(0, 0, 0, 0.9);
}
.modal-video-volume-btn {
  display: block;
  width: 50px;
  height: 50px;
  margin: 5px 5px 0 auto;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  outline: none;
  border: none;
}
/* --------------------
    15 WORDPRESS
-------------------- */
.contents {
  max-width: 1000px;
  margin: 5rem auto 0;
}
@media screen and (max-width: 768px) {
  .contents {
    margin-top: 2rem;
  }
}
.contents__wrap {
  background: #fff;
  padding: 5rem;
  font-size: 1.8rem;
  line-height: 1.9;
  letter-spacing: 0.5px;
}
@media screen and (min-width: 769px) {
  .contents__wrap {
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  .contents__wrap {
    padding: 0;
    font-size: 1.6rem;
  }
}
.contents__wrap > * {
  margin-bottom: 2rem;
}
.contents__wrap > *:last-child {
  margin-bottom: 0;
}
.contents p {}
.contents ol, .contents ul {
  padding-left: 2.5rem;
}
.contents ul {
  list-style: square;
}
.contents a {
  color: #2d89e4;
  text-decoration: underline;
}
.contents .image {
  padding: 0;
}
.contents figure {
  max-width: 100%
}
.contents .date {
  font-size: 2rem;
  color: #75bfa7;
  display: block
}
@media screen and (max-width: 768px) {
  .contents .date {
    font-size: 1.8rem;
  }
}
.contents .title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 3rem !important;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contents .title {
    font-size: 2.4rem;
  }
}
.contents h2 {
  margin: .5rem 0 0;
  padding: 2.5rem 1rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  border-top: 1px solid #eee;
}
.contents h3 {
  margin: 3.5rem 0 2rem;
  padding: 1.5rem;
  font-size: 2.4rem;
  font-weight: 700;
  border-bottom: solid 1px;
  border-top: solid 1px;
  background: #f9f9f9;
  color: #75bfa7;
}
.contents h4 {
  margin: 3.5rem 0 1.5rem;
  padding: 1rem;
  border-bottom: solid 1px #ccc;
  color: #75bfa7;
  font-size: 2.2rem;
  font-weight: 700;
}
.contents h5 {
  font-size: 2.2rem;
  font-weight: 700;
}
.contents h6 {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .contents h2 {
    font-size: 2.2rem;
    padding: 1.5rem 0;
  }
  .contents h3 {
    font-size: 2.2rem;
    padding: 1.5rem 1rem
  }
  .contents h4 {
    margin: 1.5rem 0;
  }
}
.contents figcaption {
  text-align: center;
  font-size: 80%;
  color: #555
}
.contents .wp-block-post-excerpt {
  padding: 2.5rem;
  background: #f9f9f9;
  font-size: 90%;
  line-height: 2;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contents .wp-block-post-excerpt {
    padding: 1.5rem;
  }
}
.contents .post-memo {
  margin-top: 1rem;
  font-size: 80%
}
.contents .movie {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}
.contents .movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contents .view-btn {
  margin: 2rem auto 5rem;
}
.contents iframe {
  width: 100% !important;
  height: 500px;
}
@media screen and (max-width: 950px) {
  .contents iframe {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  .contents iframe {
    height: 250px;
  }
}
.wp-block-button__link:visited {
  color: #f7ed36;
}
@media screen and (max-width: 950px) {
  .wp-block-buttons > .wp-block-button, .wp-block-button__link {
    width: 100%
  }
}
/* --------------------
    16 SWAY
-------------------- */
.page-template-page-sway {
  background: none;
}
.page-template-page-sway .header__logo, .header__logo-sway, .page-template-page-sway .breadcrumb {
  display: none
}
.page-template-page-sway .header__logo-sway {
  display: contents
}
.page-template-page-sway .header__logo-sway img {
  height: 25px
}
.memonly {
  margin-bottom: -12rem;
}
.memonly section.sub {
  overflow: hidden;
  padding: 3rem 0 3.2rem;
  background-color: #8AF5B7;
}
@media screen and (max-width: 768px) {
  .memonly section.sub {
    padding-top: 1.8rem;
  }
}
.memonly-vis {
  position: relative;
  margin-bottom: 6rem;
}
.visual__image {
  position: relative;
}
.memonly-vis__main {
  display: grid;
  grid-gap: 2.8%;
  grid-template-rows: 1fr auto;
  grid-template-columns: 28.55% 28.55% 37.3%;
  height: 100%;
}
.safari .memonly-vis__main {
  grid-template-rows: 490px 308px;
}
.memonly-vis__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
.memonly-vis__main .visual__image01 {
  grid-row: 1;
  grid-column: 1 / span 2;
}
.memonly-vis__main .visual__image02 {
  grid-row: 1 / span 2;
  grid-column: 3;
}
.memonly-vis__main .visual__image03 {
  grid-row: 2;
  grid-column: 1;
}
.memonly-vis__main .visual__image04 {
  grid-row: 2;
  grid-column: 2;
}
@media screen and (max-width: 1280px) {
  .safari .memonly-vis__main {
    grid-template-rows: 38.2vw 24vw;
  }
}
@media screen and (max-width: 768px) {
  .memonly-vis {
    margin-bottom: 3.5rem;
  }
  .memonly-vis__main {
    grid-gap: 1rem;
    grid-template-rows: 1fr auto auto;
    grid-template-columns: 42% 55.2%;
    margin: 0 2.5rem;
  }
  .safari .memonly-vis__main {
    grid-template-rows: 75.5vw 33vw 55.3vw;
  }
  .memonly-vis__main .visual__image01 {
    grid-row: 1;
    grid-column: 1 / span 2;
    margin: 0 -4rem;
  }
  .memonly-vis__main .visual__image02 {
    grid-row: 2 / span 2;
    grid-column: 2;
  }
  .memonly-vis__main .visual__image03 {
    grid-row: 2;
    grid-column: 1;
  }
  .memonly-vis__main .visual__image04 {
    grid-row: 3;
    grid-column: 1;
    margin-left: -6.5rem;
    padding-bottom: 1.5rem;
  }
}
.memonly-vis__left {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  position: absolute;
  right: calc(100% + 3rem);
  max-width: 540px;
  width: 100%;
  top: 0;
}
.memonly-vis__left .visual__image:not(:first-child) {
  margin-top: 3rem;
}
.memonly-vis__left .visual__image01 {
  max-width: 320px;
}
.memonly-vis__left .visual__image02 {
  max-width: 600px;
}
.memonly-vis__left .visual__image03 {
  max-width: 540px;
}
.memonly-vis__left .visual__image04 {
  max-width: 440px;
}
@media screen and (max-width: 1280px) {
  .memonly-vis__left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .memonly-vis__left {
    right: calc(100% - 1.5rem);
    top: 43.2%;
  }
  .memonly-vis__left .visual__image:not(:first-child) {
    margin-top: 1rem;
  }
  .memonly-vis__left .visual__image01 {
    width: 86%;
  }
  .memonly-vis__left .visual__image02, .memonly-vis__left .visual__image03, .memonly-vis__left .visual__image04 {
    display: none;
  }
}
.memonly-vis__right {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  position: absolute;
  left: calc(100% + 3rem);
  max-width: 540px;
  width: 100%;
  top: 0;
}
.memonly-vis__right .visual__image:not(:first-child) {
  margin-top: 3rem;
}
.memonly-vis__right .visual__image01 {
  max-width: 488px;
}
.memonly-vis__right .visual__image02 {
  max-width: 415px;
}
.memonly-vis__right .visual__image03 {
  max-width: 395px;
}
.memonly-vis__right .visual__image04 {
  max-width: 590px;
}
@media screen and (max-width: 1280px) {
  .memonly-vis__right {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .memonly-vis__right {
    top: 41%;
    left: calc(100% - 1.5rem);
  }
  .memonly-vis__right .visual__image:not(:first-child) {
    margin-top: 1rem;
  }
  .memonly-vis__right .visual__image01 {
    width: 84.1%;
  }
  .memonly-vis__right .visual__image02 {
    width: 122%;
  }
  .memonly-vis__right .visual__image03, .memonly-vis__right .visual__image04 {
    display: none;
  }
}
.memonly .sway__btn {
  max-width: 220px;
  margin-left: auto;
  margin-bottom: 6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .memonly .sway__btn {
    margin: 0 auto;
  }
}
.memonly .deco {
  position: absolute;
  z-index: 2;
}
.memonly .deco.deco01 {
  left: -3rem;
  top: 0;
}
.memonly .deco.deco02 {
  top: 50%;
  max-width: 12rem;
  right: -7.2rem;
}
.memonly .deco.deco03 {
  left: 0;
  bottom: 0;
}
.memonly .deco.deco04 {
  top: 50%;
  left: 0;
}
.memonly .deco.deco05 {
  left: 0;
  bottom: 0;
}
.memonly .deco.deco05 img {
  width: 61.6rem;
  max-width: none;
}
.memonly .deco.deco06 {
  bottom: 28.2%;
  left: -7rem;
}
@media screen and (max-width: 768px) {
  .memonly .deco.deco02, .memonly .deco.deco06 {
    display: none;
  }
  .memonly .deco.deco01 {
    width: 71.2%;
    left: -2rem;
    top: 0.5rem;
  }
  .memonly .deco.deco03 {
    width: 79.2%;
    left: 10.2%;
    bottom: 1.5%;
  }
  .memonly .deco.deco04 {
    width: 70%;
    top: 86%;
    left: 20%;
  }
  .memonly .deco.deco05 {
    left: 11.1%;
    bottom: 10%;
  }
  .memonly .deco.deco05 img {
    width: 111.2%;
  }
}
.memonly__head {
  display: flex;
  justify-content: flex-start;
}
.memonly__head .name {
  font-size: 3rem;
  color: #0440F6;
  font-weight: 500;
  margin-right: 5rem;
}
.memonly__head .name img {
  margin-right: .5rem;
}
.memonly__head .sns-list {
  display: flex;
  align-items: center;
}
.memonly__head .sns-list img {
  vertical-align: text-top;
}
.memonly__head .sns-list a:hover {
  opacity: .8;
}
.memonly__head .sns-list li:not(:first-child) {
  margin-left: 1.5rem;
}
@media screen and (max-width: 768px) {
  .memonly__head {
    flex-direction: column;
    margin-right: 0;
  }
  .memonly__head .name {
    max-width: 30.4rem;
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }
  .memonly__head .name img {
    width: 100%;
    height: 40px;
    margin-bottom: 0.3rem;
  }
  .memonly__head .sns-list {
    max-width: 22rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem auto 0;
  }
  .memonly__head .sns-list li:nth-child(1) {
    margin-left: 1.5rem;
  }
  .memonly__head .sns-list li:nth-child(3) {
    margin-right: 1.5rem;
  }
  .memonly__head .sns-list li:nth-child(4) {
    margin-left: 0;
    margin-top: 1.5rem;
  }
  .memonly__head .sns-list li:nth-child(4) ~ li {
    margin-top: 1.5rem;
  }
}
.memonly__read {
  font-size: 1.8rem;
  line-height: 2.44;
  font-weight: 500;
  margin: 3.2rem 2rem;
}
.memonly__description {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.memonly__description .profile {
  width: 45%;
  position: relative;
  background: none;
  overflow: visible;
}
.memonly__description .content {
  width: 52%;
}
.memonly__description .show_more {
  display: none;
}
.memonly__description tr {
  display: table;
  margin-bottom: 1.8rem;
}
.memonly__description tr:last-child {
  margin-bottom: 0
}
.memonly .profile__item-ttl {
  width: 150px;
  color: #8AF5B7;
  background: #181818;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  padding: 2px 5px;
  -webkit-transform: skew(-7deg);
  -moz-transform: skew(-7deg);
  -o-transform: skew(-7deg);
}
.memonly .profile__item-txt {
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .memonly__read {
    font-size: 1.6rem;
    line-height: 2;
    margin: 3rem 0 2rem;
  }
  .memonly__description {
    flex-direction: column;
  }
  .memonly__description .profile, .memonly__description .content {
    width: 100%;
  }
  .memonly__description .content {
    padding-bottom: 7.5rem;
  }
  .memonly__description .text {
    height: 360px;
    overflow: hidden;
  }
  .memonly__description .show_more {
    position: absolute;
    left: 0px;
    width: 100%;
    height: 100px;
    text-align: center;
    background: #8AF5B7;
    cursor: pointer;
    transition: bottom 0.2s;
    display: block;
    padding-top: 2.5rem;
    bottom: -1rem;
  }
  .memonly__description .show_more img {
    width: 220px;
  }
  .memonly__description .show_more .close_btn {
    display: none;
  }
  .memonly__description .show_more.active .close_btn {
    display: inline-block;
  }
  .memonly__description .show_more.active .open_btn {
    display: none;
  }
  .memonly__description .active {
    background: none;
  }
  .memonly .content table {
    margin-top: 2rem;
  }
  .memonly .profile__item-ttl {
    line-height: 1.375;
  }
  .memonly .profile__item-txt {
    padding: 1rem 0 0;
  }
  .memonly .profile__item-row .profile__item-txt {
    padding: .2rem 0;
  }
}
.memonly .news {
  background: none;
  margin-bottom: -1px;
}
.memonly .news::before {
  content: '';
  background: url("../images/sway/sway_bg.jpg") no-repeat center top/cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .5;
}
.memonly .news__bg:before, .memonly .news__bg:after {
  content: '';
  background: none;
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(100% - 6rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: -1;
}
.memonly .news__bg:after {
  background-color: rgba(0, 218, 254, 0.4);
}
.memonly .news__list {
  border-top: solid 1px #fff;
}
.memonly .news__item a {
  border-color: #fff;
}
.memonly .news__item a:after {
  background-color: #0440F6;
}
.memonly .news__item .date {
  color: #0440F6;
}
.memonly .news__item .cat {
  color: #FFF500;
  background: #0440F6;
}
.memonly .news__item:after {
  background: url("../images/sway/btn_right_arrow.png");
  background-size: 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .memonly .news::before {
    content: '' !important;
  }
  .memonly .news__bg:before, .memonly .news__bg:after {
    left: 0;
    width: 100%;
  }
}
.memonly .view-btn a {
  background: #0440F6;
  color: #FFF500;
}
.memonly .view-btn a:hover {
  opacity: .85;
}
.memonly .view-btn a:after {
  background-image: url("../images/sway/icon_right_arrow.svg");
}
.memonly .movie {
  background: #8AF5B7;
}
.memonly .movie:before {
  content: none;
}
.memonly .movie ::-moz-progress-bar {
  background-color: #0440F6;
}
.memonly .movie ::-webkit-progress-value {
  background-color: #0440F6;
}
@media screen and (max-width: 768px) {
  .memonly .movie .slick-dots li button:before {
    color: #fff;
  }
  .memonly .movie .slick-dots li.slick-active {
    background: #0440F6;
  }
  .memonly .movie .slick-dots li.slick-active button {
    background: #8AF5B7;
  }
  .memonly .movie .slick-dots li.slick-active button:before, .memonly .movie .slick-dots li.slick-active button:after {}
  .memonly .movie .slick-dots li.slick-active button:before {
    color: #0440F6;
  }
  .memonly .movie .slick-dots li.slick-active::before, .memonly .movie .slick-dots li.slick-active::after {
    background: #8AF5B7;
  }
  .memonly .movie .slick-dots li.slick-active::after {
    -webkit-animation: rotate-circle-rightm 2s linear forwards;
    animation: rotate-circle-rightm 2s linear forwards;
  }
  @-webkit-keyframes rotate-circle-rightm {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      background: #8AF5B7;
    }
    50% {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      background: #8AF5B7;
    }
    50.01% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      background: #0440F6;
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      background: #0440F6;
    }
  }
  @keyframes rotate-circle-rightm {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg);
      background: #8AF5B7;
    }
    50% {
      -webkit-transform: rotate(180deg);
      transform: rotate(180deg);
      background: #8AF5B7;
    }
    50.01% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      background: #0440F6;
    }
    100% {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
      background: #0440F6;
    }
  }
}
.memonly .disco {
  background: none
}
.memonly .disco::before {
  content: '';
  background: url("../images/sway/sway_bg.jpg") no-repeat center top/cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: .5;
}
.memonly .disco__bg {}
.memonly .disco__bg:before, .memonly .disco__bg:after {
  content: '';
  background: none;
  background-color: rgba(255, 255, 255, 0.9);
  width: calc(100% - 6rem);
  height: 100%;
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: -1;
}
.memonly .disco__bg:after {
  background-color: rgba(0, 218, 254, 0.4);
}
.memonly .disco__item .date {
  color: #0440F6;
}
.memonly .disco__item .cat {
  color: #FFF500;
  background-color: #0440F6;
}
.memonly .disco__menu .active {
  color: #0440F6;
  border-color: #FFF500;
}
.memonly .disco__menu li:hover {
  color: #0440F6;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .memonly .disco {
    background: transparent;
  }
  .memonly .disco::before {
    content: '' !important;
    background-position: 40% center;
  }
  .memonly .disco__bg:before, .memonly .disco__bg:after {
    left: 0;
    width: 100%;
  }
  .memonly .disco .disco__link {
    border-color: #070203;
  }
}
.memonly .officialsns {
  background-color: #8AF5B7;
  padding: 15.7rem 0 15rem;
}
.memonly .officialsns__item {
  background: #fff;
  position: relative;
}
.memonly .officialsns__item .fa-instagram, .memonly .officialsns__item .fa-twitter {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}
.memonly .officialsns__item .fa-instagram {
  transform: translate(-50%, -31%);
}
.memonly .officialsns__item .fa-twitter {
  transform: translate(-50%, -34%);
}
.memonly .officialsns__item .fa-instagram:before, .memonly .officialsns__item .fa-twitter::before {
  color: #fff;
  font-size: 22.85rem;
}
.memonly .officialsns__item .fa-twitter::before {
  font-size: 24.6rem;
}
@media screen and (max-width: 768px) {
  .memonly .officialsns {
    padding: 3rem 0 9rem;
  }
  .memonly .officialsns__box {
    margin-top: 4rem;
  }
  .memonly .officialsns__item.twitter {
    margin-bottom: 8rem;
  }
  .memonly .officialsns__item .fa-twitter::before {
    font-size: 23.9rem;
  }
  .memonly .officialsns__item .fa-instagram:before {
    font-size: 21.89rem;
  }
}
.fa-twitter:before {
    content: '𝕏' !important;
    font-family: unset !important;
    font-weight: bold !important;
}