@charset "UTF-8";
/* YAASUU site CSS (main.css) */
/* ================= contents =================
[0] reset
[1] base
[2] headerArea
[3] contentsArea
[4] footerArea
============================================ */
@font-face {
  font-family: "zippy_gothic_outlineblack";
  src: url("../fonts/zippygothicoutline-black-webfont.woff2") format("woff2"), url("../fonts/zippygothicoutline-black-webfont.woff") format("woff"), url("../fonts/zippygothicoutline-black-webfont.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* ============================================
0. reset
============================================ */
/* --------------------------------------------------------------------------------
margin padding
-------------------------------------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* font-family */
body {
  font-family: Tahoma, helvetica, clean, sans-serif;
}

/* line-height */
body {
  line-height: 1.45;
}

*:first-child + html * {
  letter-spacing: 0;
}

/* --------------------------------------------------------------------------------
other
-------------------------------------------------------------------------------- */
ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

img, iframe {
  border: 0;
}

img {
  vertical-align: bottom;
}

li {
  list-style: none;
}

address {
  font-style: normal;
  font-weight: normal;
}

/* --------------------------------------------------------------------------------
table form
-------------------------------------------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: inherit;
}

th, td {
  text-align: left;
  font-style: normal;
  font-weight: normal;
  font-size: inherit;
}

fieldset {
  border: 0;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* --------------------------------------------------------------------------------
block
-------------------------------------------------------------------------------- */
body {
  text-align: left;
}

div, span, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, iframe, form, fieldset, legend, blockquote, input, textarea, p, pre {
  text-align: left;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 1px;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

/* --------------------------------------------------------------------------------
clearfix
-------------------------------------------------------------------------------- */
.cf_og:after {
  content: "";
  clear: both;
  display: block;
}

/* ============================================
 1.base
============================================ */
html, body {
  position: relative;
  width: 100%;
  height: 100%;
  color: #333;
  background: #f7f7f7;
  letter-spacing: 0.1px;
  font-size: 12px;
  line-height: 1.8;
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 300;
  -webkit-text-size-adjust: 100%;
}

a {
  text-decoration: none;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-out;
  opacity: 1;
  color: #83f55c;
}
a:hover {
  opacity: 0.7;
}

.menu {
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s ease-out;
  opacity: 1;
}

.menu.active {
  opacity: 0.6;
}

/* ----------- no-js ----------- */
html#no-js #countdown_time {
  display: none;
}

#noscriptBlock {
  width: 520px;
  position: absolute;
  top: 27px;
  left: 27px;
  padding: 10px;
  background: #FFFFFF;
}

#noscriptBlock p {
  font-size: 14px;
  background: #FDF3F2;
  color: #D72400;
  border: 1px dotted #F4C3BE;
  padding: 6px 10px;
  line-height: 1.4;
}

#container {
  z-index: 100;
  position: relative;
  top: 0;
  width: 100%;
}
#container.page_contents {
  padding-top: 100px;
  min-height: 400px;
}

.page_header {
  padding: 40px 0;
}

/* ============================================
 2.headerArea
============================================ */
header {
  background: white;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
}
header .logo {
  margin: 21px auto 0;
  display: flex;
  padding: 3px 0 0;
  height: auto;
  width: 135px;
  align-items: center;
  justify-content: center;
}
header .logo .menu {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .logo svg {
  width: 100%;
}
/*-----------------------------------------------------------------
  ハンバーガーメニュー
------------------------------------------------------------------*/
.menu_button, .menu_button span {
  display: inline-block;
  transition: all 0.3s;
}

.menu_button {
  position: fixed;
  top: 15px;
  margin: 14px 0 0;
  width: 36px;
  height: 19px;
  right: 7%;
  z-index: 1000000;
}

.menu_button span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}

.menu_button span:nth-of-type(1) {
  top: 0;
}

.menu_button span:nth-of-type(2) {
  top: 8px;
}

.menu_button span:nth-of-type(3) {
  bottom: 0;
}

/*-----------  active  ------------*/
#menu07 span:nth-of-type(1) {
  -webkit-animation: menu07-bar01 0.45s forwards;
  animation: menu07-bar01 0.45s forwards;
}

@-webkit-keyframes menu07-bar01 {
  0% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu07-bar01 {
  0% {
    transform: translateY(8px) rotate(45deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07 span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}

#menu07 span:nth-of-type(3) {
  -webkit-animation: menu07-bar03 0.45s forwards;
  animation: menu07-bar03 0.45s forwards;
}

@-webkit-keyframes menu07-bar03 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu07-bar03 {
  0% {
    transform: translateY(-8px) rotate(-45deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
#menu07.active span:nth-of-type(1) {
  -webkit-animation: active-menu07-bar01 0.45s forwards;
  animation: active-menu07-bar01 0.45s forwards;
}

@-webkit-keyframes active-menu07-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(8px) rotate(45deg);
  }
}
@keyframes active-menu07-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(45deg);
  }
}
#menu07.active span:nth-of-type(2) {
  opacity: 0;
}

#menu07.active span:nth-of-type(3) {
  -webkit-animation: active-menu07-bar03 0.45s forwards;
  animation: active-menu07-bar03 0.45s forwards;
}

@-webkit-keyframes active-menu07-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-45deg);
  }
}
@keyframes active-menu07-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-45deg);
  }
}
.nav_top {
  display: none;
}

#menu_sp {
  position: fixed;
  top: 80px;
  width: 100%;
  z-index: 100000;
  padding: 30px 20px;
  height: calc(100% - 80px);
  transition: transform 0.5s;
  transform: translateX(-100%);
}
#menu_sp.menu_open {
  transform: translateX(0);
}
#menu_sp div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.95;
}
#menu_sp ul {
  position: relative;
}
#menu_sp ul li {
  line-height: 55px;
  color: #333;
  text-align: center;
  font-size: 18px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
#menu_sp ul li:first-child {
  border-top: none;
}
#menu_sp ul li span {
  background: rgba(0, 0, 0, 0.7);
  display: block;
  font-size: 16px;
  font-size: 1.3333333333rem;
  text-align: center;
  line-height: 45px;
}
#menu_sp ul li a {
  color: #333;
  letter-spacing: 2.5px;
  width: 100%;
  padding: 0;
  border-bottom: solid 1px #fff;
  display: inline-block;
  font-size: 20px;
  font-size: 1.6666666667rem;
  text-align: center;
}
#menu_sp ul li.official {
  display: flex;
  margin-top: 20px;
}
#menu_sp ul li.official a {
  display: inline-block;
  color: #979797;
  line-height: 30px;
  width: auto;
  border-bottom: none;
  margin: 0 15px;
  font-size: 20px;
  font-size: 1.6666666667rem;
}
/* ============================================
3.contentsArea
============================================ */
.main_visual {
  position: relative;
  margin-top: 80px;
}
.main_visual img {
  width: 100%;
}

.top_logo {
  position: absolute;
  width: 28%;
  top: 4%;
  right: 20px;
  max-width: 150px;
}

.top_date {
  position: absolute;
  width: 7%;
  bottom: 5%;
  left: 7%;
  max-width: 16px;
}

#contentArea {
  padding-top: 0;
  z-index: 10;
  position: relative;
  top: 0;
  width: 100%;
}

.contentAreaInner {
  position: relative;
  top: 0;
  width: 100%;
  overflow-y: hidden;
}

.content {
  padding: 0;
}
.content h2 {
  font-family: "zippy_gothic_outlineblack";
  font-size: 38px;
  font-size: 3.1666666667rem;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.wrapper {
  width: 92%;
  margin: 0 auto;
}

.parallax-window {
  background: transparent;
  min-height: 200px;
}

/*---------------- NEWS ---------------*/
.content_top {
  margin-top: 20px;
  padding-bottom: 50px;
}

.news_wrap {
  padding: 0;
  /*
  max-height: 400px;
  overflow-y: scroll;
   */
}
.news_wrap .sns_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
.news_wrap .sns_wrap .sns_box {
  margin: 0 auto 30px;
  width: 100%;
  height: auto;
}
.news_wrap .sns_wrap .sns_box.insta_box {
  width: 100%;
  margin: 0;
}
.news_wrap .sns_wrap .sns_box h3 {
  font-family: "zippy_gothic_outlineblack";
  font-size: 28px;
  font-size: 2.3333333333rem;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.news_wrap .insta_wrap {
  width: 90%;
  margin: 0 auto;
  min-height: 300px;
}
.news_wrap .insta_wrap h3 {
  font-family: "zippy_gothic_outlineblack";
  font-size: 28px;
  font-size: 2.3333333333rem;
  text-align: center;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 -3.33% -3.33%;
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list li {
  width: 30%;
  margin: 0 0 3.33% 3.33%;
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list li a {
  display: block;
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list li div {
  position: relative;
  width: 100%;
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list li div:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* 高さを幅の75%に固定 */
}
.news_wrap .insta_wrap .insta_list_wrap .insta_list li div span {
  position: absolute;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.news_wrap .facebook-wrapper {
  max-width: 500px;
  /* Facebook Page Plugin の最大幅 */
  margin: 0 auto;
}
.news_wrap .facebook-wrapper > .fb-page {
  width: 100%;
}
.news_wrap .facebook-wrapper > .fb-page > span,
.news_wrap .facebook-wrapper iframe {
  width: 100% !important;
}

/*---------------- profile ---------------*/
.content_profile {
  padding: 50px 0;
  background: url("../images/img_profile210624.jpg") 40% center/cover !important;
}
.content_profile h2 {
  color: #fff;
}
.content_profile .profile_txt p {
  color: #fff;
  -moz-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9), 0px 0px 7px rgba(16, 66, 110, 0.9);
  -webkit-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9), 0px 0px 7px rgba(16, 66, 110, 0.9);
  -ms-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9), 0px 0px 7px rgba(16, 66, 110, 0.9);
  text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9), 0px 0px 7px rgba(16, 66, 110, 0.9);
}

/*---------------- VIDEO ---------------*/
.content_movie {
  padding: 50px 0;
}

#channel_slick {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#channel_slick .slick-dots {
  display: none !important;
}

.channel_slide {
  margin: 0 10px;
}

#channel_slick_next, #channel_slick_preview {
  position: absolute;
  display: block;
  height: 35px;
  width: 25px;
  line-height: 1;
  font-size: 30px;
  cursor: pointer;
  background: transparent;
  color: #000;
  top: 50%;
  -webkit-transform: translate(0, -120%);
  -ms-transform: translate(0, -120%);
  transform: translate(0, -120%);
  padding: 0;
  border: none;
  outline: none;
}

#channel_slick_next {
  left: -35px;
}

#channel_slick_preview {
  right: -35px;
}

.channel_tit {
  margin-top: 5px;
  text-align: center;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.channel_btn {
  text-align: center;
  margin: 20px auto 0;
}
.channel_btn img {
  max-width: 220px;
}

/*---------------- discography ---------------*/
.content_discography {
  padding: 50px 0;
}
.content_discography h2 {
  color: #fff;
}
.content_discography .disco_wrap {
  display: flex;
  flex-wrap: wrap;
}
.content_discography .disco_box {
  margin: 30px auto;
  width: 90%;
  display: flex;
}
.content_discography .disco_box .disco_jk {
  width: 40%;
}
.content_discography .disco_box .disco_detail {
  width: 60%;
  padding-left: 15px;
  color: #fff;
}
.content_discography .disco_box .disco_detail h3 {
  font-size: 18px;
  font-size: 1.5rem;
  font-weight: bold;
}
.content_discography .disco_box .disco_detail h4 {
  font-size: 14px;
  font-size: 1.1666666667rem;
  font-weight: bold;
}
.content_discography .disco_box .disco_detail .tracklist {
  font-size: 10px;
  font-size: 0.8333333333rem;
}
.content_discography .disco_box .disco_detail .tracklist span {
  display: inline-block;
}
.content_discography .disco_box .disco_detail .tracklist a {
  display: flex;
  align-items: center;
}
.content_discography .disco_box .disco_detail .tracklist a img {
  width: 1.7em;
  margin-left: 5px;
}
.content_discography .disco_box .disco_detail .price {
  font-size: 14px;
  font-size: 1.1666666667rem;
  color: #fff100;
}
.content_discography .disco_box .disco_detail .bnr_area {
  display: flex;
  margin: 20px 0 0 -5%;
}
.content_discography .disco_box .disco_detail .bnr_area .bnr {
  margin: 0 0 0 5%;
  width: 40%;
}

.lity {
  z-index: 100000000 !important;
  background: rgba(255, 255, 255, 0.7) !important;
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0) !important;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0) !important;
}

/* ============================================
 4.footerArea
============================================ */
footer {
  padding-top: 50px;
  position: relative;
  z-index: 10000;
}

.page_top {
  text-align: center;
  width: 100%;
}
.page_top a {
  padding: 10px 0;
  border-radius: 20px 20px 0 0/20px 20px 0 0;
  background: #fff;
  display: block;
}
.page_top i {
  font-size: 20px;
  font-size: 1.6666666667rem;
  color: #000;
}

.share_area {
  margin-bottom: 20px;
}
.share_area .share_btn {
  text-align: center;
}
.share_area .share_btn div {
  display: inline-block;
  margin: 0 15px;
}
.share_area .share_btn div a {
  font-size: 28px;
  font-size: 2.3333333333rem;
  color: #979797;
}

.copyrights {
  position: relative;
  width: 100%;
  padding: 20px 0;
  bottom: auto;
  text-align: center;
  font-size: 10px;
  font-size: 0.8333333333rem;
  line-height: 1;
  letter-spacing: 2px;
}

.no_pc {
  display: inline-block;
}

.no_sp {
  display: none;
}

@media screen and (min-width: 768px) {
  .no_pc {
    display: none;
  }

  .no_sp {
    display: inline-block;
  }

  #container {
    z-index: 100;
    position: relative;
    top: 0;
    width: 100%;
  }
  #container.page_contents {
    min-height: 600px;
    padding-top: 100px;
  }

  .page_header {
    padding: 60px 0;
  }

  /* ============================================
   2.headerArea
  ============================================ */
  header {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100px;
  }
  header .logo {
    margin: 25px auto 0;
    display: flex;
    padding: 3px 0 0;
    height: auto;
    width: 175px;
    align-items: center;
    justify-content: center;
  }
  header .logo .menu {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .logo svg {
    width: 100%;
  }
  /*-----------------------------------------------------------------
    ハンバーガーメニュー
  ------------------------------------------------------------------*/
  .menu_button, .menu_button span {
    display: inline-block;
    transition: all 0.3s;
  }

  .menu_button {
    position: fixed;
    top: 27px;
    margin: 14px 0 0;
    width: 36px;
    height: 19px;
    right: 40px;
    z-index: 1000000;
  }

  .menu_button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }

  .menu_button span:nth-of-type(1) {
    top: 0;
  }

  .menu_button span:nth-of-type(2) {
    top: 8px;
  }

  .menu_button span:nth-of-type(3) {
    bottom: 0;
  }

  /*-----------  active  ------------*/
  #menu07 span:nth-of-type(1) {
    -webkit-animation: menu07-bar01 0.45s forwards;
    animation: menu07-bar01 0.45s forwards;
  }

  @-webkit-keyframes menu07-bar01 {
    0% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu07-bar01 {
    0% {
      transform: translateY(8px) rotate(45deg);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #menu07 span:nth-of-type(2) {
    transition: all 0.25s 0.25s;
    opacity: 1;
  }

  #menu07 span:nth-of-type(3) {
    -webkit-animation: menu07-bar03 0.45s forwards;
    animation: menu07-bar03 0.45s forwards;
  }

  @-webkit-keyframes menu07-bar03 {
    0% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(0) rotate(0);
    }
  }
  @keyframes menu07-bar03 {
    0% {
      transform: translateY(-8px) rotate(-45deg);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(0) rotate(0);
    }
  }
  #menu07.active span:nth-of-type(1) {
    -webkit-animation: active-menu07-bar01 0.45s forwards;
    animation: active-menu07-bar01 0.45s forwards;
  }

  @-webkit-keyframes active-menu07-bar01 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(8px) rotate(45deg);
    }
  }
  @keyframes active-menu07-bar01 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(8px) rotate(0);
    }
    100% {
      transform: translateY(8px) rotate(45deg);
    }
  }
  #menu07.active span:nth-of-type(2) {
    opacity: 0;
  }

  #menu07.active span:nth-of-type(3) {
    -webkit-animation: active-menu07-bar03 0.45s forwards;
    animation: active-menu07-bar03 0.45s forwards;
  }

  @-webkit-keyframes active-menu07-bar03 {
    0% {
      -webkit-transform: translateY(0) rotate(0);
    }
    50% {
      -webkit-transform: translateY(-8px) rotate(0);
    }
    100% {
      -webkit-transform: translateY(-8px) rotate(-45deg);
    }
  }
  @keyframes active-menu07-bar03 {
    0% {
      transform: translateY(0) rotate(0);
    }
    50% {
      transform: translateY(-8px) rotate(0);
    }
    100% {
      transform: translateY(-8px) rotate(-45deg);
    }
  }
  .nav_top {
    display: none;
  }

  #menu_sp {
    position: fixed;
    top: 100px;
    width: 100%;
    z-index: 100000;
    padding: 30px 20px;
    height: calc(100% - 100px);
    transition: transform 0.5s;
    transform: translateX(-100%);
  }
  #menu_sp.menu_open {
    transform: translateX(0);
  }
  #menu_sp div:first-child {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 0.95;
  }
  #menu_sp ul {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
  }
  #menu_sp ul li {
    line-height: 70px;
    color: #333;
    text-align: center;
    font-size: 26px;
    font-size: 2.1666666667rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #menu_sp ul li:first-child {
    border-top: none;
  }
  #menu_sp ul li span {
    background: rgba(0, 0, 0, 0.7);
    display: block;
    font-size: 16px;
    font-size: 1.3333333333rem;
    text-align: center;
    line-height: 45px;
  }
  #menu_sp ul li a {
    color: #333;
    letter-spacing: 2.5px;
    width: 100%;
    padding: 0;
    border-bottom: solid 1px #fff;
    display: inline-block;
    font-size: 22px;
    font-size: 1.8333333333rem;
    text-align: center;
  }
  #menu_sp ul li.official {
    display: flex;
    margin-top: 30px;
  }
  #menu_sp ul li.official a {
    display: inline-block;
    color: #979797;
    line-height: 30px;
    width: auto;
    border-bottom: none;
    margin: 0 15px;
    font-size: 24px;
    font-size: 2rem;
  }
  /* ============================================
  3.contentsArea
  ============================================ */
  .main_visual {
    position: relative;
    margin-top: 100px;
  }

  .top_logo {
    position: absolute;
    bottom: auto;
    left: auto;
    width: 28%;
    top: 4%;
    right: 69px;
    max-width: 160px;
  }

  .top_date {
    position: absolute;
    bottom: auto;
    left: auto;
    width: 2.8%;
    top: 25%;
    right: 249px;
    max-width: 23px;
  }

  #contentArea {
    padding-top: 0;
    z-index: 10;
    position: relative;
    top: 0;
    width: 100%;
  }

  .contentAreaInner {
    position: relative;
    top: 0;
    width: 100%;
    overflow-y: hidden;
  }

  .content {
    padding: 0;
  }
  .content h2 {
    font-size: 76px;
    font-size: 6.3333333333rem;
    text-align: center;
    margin-bottom: 40px;
  }

  .wrapper {
    width: 92%;
    margin: 0 auto;
    max-width: 1000px;
  }

  .coming-soon {
    font-size: 14px;
    font-size: 1.1666666667rem;
    padding: 80px 0;
    text-align: center;
  }

  /*---------------- NEWS ---------------*/
  .content_top {
    margin-top: 20px;
    padding-bottom: 100px;
  }

  .news_wrap {
    padding: 0;
    /*
    max-height: 400px;
    overflow-y: scroll;
     */
  }
  .news_wrap .sns_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 515px;
    margin: 0 0 0% -2.5%;
  }
  .news_wrap .sns_wrap .sns_box {
    margin: 0 0 5% 5%;
    width: 45%;
    height: auto;
  }
  .news_wrap .sns_wrap .sns_box h3 {
    font-family: "zippy_gothic_outlineblack";
    font-size: 34px;
    font-size: 2.8333333333rem;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .news_wrap .insta_wrap {
    width: 100%;
    margin: 0 auto;
    min-height: 260px;
  }
  .news_wrap .insta_wrap h3 {
    font-family: "zippy_gothic_outlineblack";
    font-size: 34px;
    font-size: 2.8333333333rem;
    text-align: center;
    letter-spacing: -0.5px;
    margin-bottom: 10px;
  }
  .news_wrap .insta_wrap .insta_list_wrap .insta_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 -1.6% -1.6%;
  }
  .news_wrap .insta_wrap .insta_list_wrap .insta_list li {
    width: 15%;
    margin: 0 0 1.6% 1.6%;
  }
  .news_wrap .facebook-wrapper {
    max-width: 500px;
    /* Facebook Page Plugin の最大幅 */
    margin: 0 auto;
  }
  .news_wrap .facebook-wrapper > .fb-page {
    width: 100%;
  }
  .news_wrap .facebook-wrapper > .fb-page > span,
.news_wrap .facebook-wrapper iframe {
    width: 100% !important;
  }

  /*---------------- profile ---------------*/
  .content_profile {
    padding: 50px 0;
    background: transparent !important;
  }
  .content_profile h2 {
    color: #fff;
  }
  .content_profile .profile_txt p {
    font-size: 14px;
    font-size: 1.1666666667rem;
    color: #fff;
    -moz-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9);
    -webkit-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9);
    -ms-text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9);
    text-shadow: 0px 0px 7px rgba(16, 66, 110, 0.9);
  }

  /*---------------- VIDEO ---------------*/
  .content_movie {
    padding: 80px 0;
  }

  #channel_slick {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  #channel_slick .slick-dots {
    display: none !important;
  }
  #channel_slick .slick-slide {
    padding: 0 20px;
    /* ガター */
  }

  .channel_slide {
    margin: 0 10px;
  }

  #channel_slick_next, #channel_slick_preview {
    position: absolute;
    display: block;
    height: 35px;
    width: 25px;
    line-height: 1;
    font-size: 40px;
    cursor: pointer;
    background: transparent;
    color: #000;
    top: 50%;
    -webkit-transform: translate(0, -120%);
    -ms-transform: translate(0, -120%);
    transform: translate(0, -120%);
    padding: 0;
    border: none;
    outline: none;
  }

  #channel_slick_next {
    left: -35px;
  }

  #channel_slick_preview {
    right: -35px;
  }

  .channel_tit {
    margin-top: 5px;
    text-align: center;
  }

  .slick-dotted.slick-slider {
    margin-bottom: 0;
  }

  .channel_btn {
    text-align: center;
    margin: 35px auto 0;
  }
  .channel_btn img {
    max-width: 350px;
  }

  /*---------------- discography ---------------*/
  .content_discography {
    padding: 80px 0 100px;
  }
  .content_discography h2 {
    color: #fff;
  }
  .content_discography .disco_wrap {
    display: flex;
    flex-wrap: wrap;
  }
  .content_discography .disco_box {
    margin: 40px auto;
    width: 50%;
    padding: 0 20px 0 0;
    display: flex;
  }
  .content_discography .disco_box .disco_jk {
    width: 40%;
  }
  .content_discography .disco_box .disco_detail {
    width: 60%;
    padding-left: 15px;
    color: #fff;
  }
  .content_discography .disco_box .disco_detail h3 {
    font-size: 22px;
    font-size: 1.8333333333rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .content_discography .disco_box .disco_detail h4 {
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
  .content_discography .disco_box .disco_detail .tracklist {
    font-size: 12px;
    font-size: 1rem;
  }
  .content_discography .disco_box .disco_detail .tracklist span {
    display: inline-block;
  }
  .content_discography .disco_box .disco_detail .price {
    margin-top: 15px;
    font-size: 18px;
    font-size: 1.5rem;
    color: #fff100;
  }

  /* ============================================
   4.footerArea
  ============================================ */
  footer {
    padding-top: 50px;
    position: relative;
    z-index: 10000;
  }

  .page_top {
    text-align: center;
    width: 100%;
  }
  .page_top a {
    padding: 10px 0;
    border-radius: 20px 20px 0 0/20px 20px 0 0;
    background: #fff;
    display: block;
  }
  .page_top i {
    font-size: 20px;
    font-size: 1.6666666667rem;
    color: #000;
  }

  .share_area {
    margin-bottom: 20px;
  }
  .share_area .share_btn {
    text-align: center;
  }
  .share_area .share_btn div {
    display: inline-block;
    margin: 0 20px;
  }
  .share_area .share_btn div a {
    font-size: 34px;
    font-size: 2.8333333333rem;
    color: #979797;
  }

  .copyrights {
    position: relative;
    width: 100%;
    padding: 20px 0;
    bottom: auto;
    text-align: center;
    font-size: 14px;
    font-size: 1.1666666667rem;
    line-height: 1;
    letter-spacing: 2px;
  }

  .no_pc {
    display: none;
  }

  .no_sp {
    display: inline;
  }

  .teacher_window {
    max-width: 600px;
    flex-wrap: wrap;
    padding: 30px;
    margin: 40px 20px !important;
    background: #fff;
    border-radius: 10px;
  }
  .teacher_window .window_teacher_img {
    width: 100%;
    text-align: center;
    margin: 0 0 15px;
  }
  .teacher_window .window_teacher_img img {
    border-radius: 30px;
    border: solid 2px #000;
  }
  .teacher_window h3 {
    font-size: 16px;
    font-size: 1.3333333333rem;
    font-weight: bold;
    margin: 0 auto 15px;
    text-align: center;
  }
  .teacher_window h4 {
    font-size: 18px;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: bold;
    margin: 15px auto;
    text-align: center;
  }
  .teacher_window .tag_list ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 0 15px 0;
  }
  .teacher_window .tag_list ul li {
    color: #fff;
  }
  .teacher_window .tag_list ul li a {
    color: #fff;
    border-radius: 10px;
    background: #ada29c;
    display: inline-block;
    font-size: 10px;
    font-size: 0.8333333333rem;
    width: auto;
    margin: 0 5px 5px 5px;
    text-align: center;
    padding: 3px 10px;
  }
  .teacher_window .tag_list ul li .link_fancy {
    transform: translate3d(0, 0, 0);
    transition: all 0.2s ease-out;
    opacity: 1;
    display: block;
    background: transparent;
    margin: 0;
    padding: 0;
  }
  .teacher_window .tag_list ul li .link_fancy:hover {
    opacity: 0.7;
  }
  .teacher_window p {
    line-height: 1.7;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
  .teacher_window p span {
    color: #bf1313;
    font-weight: bold;
  }
  .teacher_window p a {
    color: #cc9c3b;
  }
  .teacher_window .close {
    padding: 10px;
    margin: 20px auto 0;
    width: 50%;
    border-radius: 30px;
    background: #9a9a9a;
    text-align: center;
    color: #fff;
    font-size: 14px;
    font-size: 1.1666666667rem;
  }
}

/*# sourceMappingURL=main.css.map */
