@charset "UTF-8";
/* CSS Document */
.header {
  margin-bottom: 100px;
}
section {
  padding-bottom: 100px;
}
.disco {
  margin-bottom: 50px;
}
@media (min-width: 769px) {
  .header {
    margin-bottom: 200px;
  }
  section {
    padding-bottom: 200px;
  }
  .disco {
    margin-bottom: 100px;
  }
}
.fadein_up {
  opacity: 0;
  transition: 2s ease-in-out;
}
.fadein_up.is-show {
  opacity: 1;
}
/* header */
.header {
  position: relative;
  height: 100vh;
  width: 100vw;
}
.header-catch {
  position: absolute;
  top: 13%;
  left: 4%;
  color: #FFFFFF;
  text-align: left;
  z-index: 10;
  white-space: nowrap;
  font-family: 'Klee One', cursive;
  font-weight: 600;
  font-size: 2.0rem;
  line-height: 3.0rem;
  text-shadow: 0px 4px 20px #000000;
  opacity: 0;
  animation: late-open 2s ease-in 0.3s forwards;
}
/* late-open = display: block; */
@keyframes late-open {
  to {
    opacity: 1;
  }
}
.header-catch-name-wrap {
  display: flex;
}
.header-catch-name {
  font-family: 'Caveat', cursive;
  font-size: 3.0rem;
  font-weight: 400;
}
.header-img-Mobile {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
}
.header-img-Mobile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 501px) {
  .header {
    display: block;
    background-image: url("../img/mainvisual-PC.jpg");
    background-position: 43% 15%;
    background-size: auto 140%;
    background-repeat: no-repeat;
    height: 100vh;
    width: 100vw;
  }
  .header-img-Mobile {
    display: none;
  }
}
@media (min-width: 600px) {
  .header-catch {
    top: 45%;
    left: unset;
    right: 5%;
  }
  .header-catch {
    font-size: 2.5rem;
    line-height: 3.2rem;
    text-shadow: 0px 4px 10px #000000;
  }
  .header-catch-name {
    font-size: 4.4rem;
  }
}
@media (min-width: 1000px) {
  .header-catch {
    right: 8%;
  }
  .header-catch {
    font-size: 3.2rem;
    line-height: 4.5rem;
    text-shadow: 0px 4px 10px #000000;
  }
}
/* MUSICのsection */
.music-move-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  padding-top: 56.25%;
  margin: 0 auto;
}
.music-move-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.music-more {
  position: relative;
  display: inline-flex;
  color: #FFFFFF;
  background-color: #F0A775;
  border-radius: 6px;
  width: 80%;
  max-width: 500px;
  padding: 13px 0;
  margin: 60px auto 0;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgba(33, 33, 33, 0.15);
  transition-duration: .4s;
}
.music-more:hover {
  transform: scale(1.1);
}
.music-more-arrow::before {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .music-more {
    padding: 23px 0;
  }
  .music-more-arrow::before {
    top: 30px;
  }
}
@media (min-width: 800px) {
  .music-move-container {
    width: 800px;
    height: 450px;
    padding-top: unset;
  }
}
/* PROFILEのsection */
.profile-group {
  width: 100%;
  background-color: #FFFAF4;
  padding: 50px 0;
}
.profile-content-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}
.profile-desc-wrap {
  display: block;
  margin: 0 auto;
}
.profile-img-div {
  width: 80%;
  max-width: 500px;
  margin: 0 auto;
}
.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.profile-name {
  padding: 25px 0;
}
.profile-name p {
  display: inline-block;
}
.profile-name1 {
  font-family: 'Caveat', cursive;
  font-size: 4.8rem;
  line-height: 4.8rem;
  font-weight: 500;
}
.profile-name2 {
  font-size: 2.4rem;
}
.profile-desc {
  width: 80%;
  max-width: 450px;
  margin: 0 auto;
}
.profile-desc p {
  text-align: left;
}
.profile-more {
  position: relative;
  display: inline-flex;
  color: #FFFFFF;
  background-color: #F0A775;
  border-radius: 6px;
  width: 100%;
  padding: 13px 0;
  margin: 60px auto 0;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgb(33 33 33 / 15%);
  transition-duration: .4s;
}
.profile-more:hover {
  transform: scale(1.1);
}
.plofile-more-arrow::before {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .profile-group {
    padding: 100px 50px;
  }
  .profile-more {
    padding: 18px 0;
    margin-top: 100px;
  }
  .plofile-more-arrow::before {
    top: 26px;
  }
  .profile-name {
    padding-bottom: 61px;
  }
  .profile-name1 {
    font-size: 6.4rem;
  }
  .profile-name2 {
    font-size: 3.2rem;
  }
  .profile-desc p {
    line-height: 3.5rem;
  }
}
/* newsのsection */
.news-item-info {
  color: #333333;
  margin-bottom: 20px;
}
/* newsとliveのsection */
.news-list, .live-list {
  width: 80%;
  max-width: 700px;
  margin: 0 auto;
}
.news-list p, .live-list p {
  text-align: left;
}
.news-item, .live-item {
  margin-top: 15px;
  border-bottom: 1px solid #CDCDCD;
}
.news-item-date, .live-item-date {
  color: #F0A775;
  padding-bottom: 5px;
}
.more-wrap-small {
  text-align: right;
}
.news-list a:hover, .live-list a:hover {
  display: block;
  opacity: 0.7;
}
/*　くの字　*/
.more-wrap-small {
  margin-top: 20px;
}
.arrow::before {
  display: inline-block;
  content: 'more';
  color: #F0A775;
}
.arrow::after {
  display: inline-block;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 2px solid #F0A775;
  border-right: 2px solid #F0A775;
  margin: 0 2px 1px 5px;
}
.arrow.arrow-right::after {
  transform: rotate(45deg);
}
.arrow.arrow-right:hover::before {
  color: #FF4500;
}
.arrow.arrow-right:hover::after {
  border-top: 2px solid #FF4500;
  border-right: 2px solid #FF4500;
}
/* SNSのsection */
.sns-container {
  padding: 50px 0;
  background-color: #FDFCE7;
}
.sns-lead {
  font-family: 'M PLUS 1p', sans-serif;
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 3.0rem;
  color: #F0A775;
  margin-bottom: 50px;
  text-shadow: 3px 3px 3px #fff, -3px -3px 3px #fff, -3px 3px 3px #fff, 3px -3px 3px #fff;
}
.sns-area-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1050px;
  justify-content: center;
  margin: 0 auto;
}
.sns-twitter-area, .sns-instagram-area {
  margin: 0 20px 100px;
}
.sns-tiktok-area {
  margin: 0 20px;
}
h4 {
  font-family: 'Caveat', cursive;
  font-size: 3.2rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin-bottom: 30px;
}
.twitter-title, .instagram-title, .tiktok-title {
  width: 300px;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.sns-twitter-logo, .sns-instagram-logo, .sns-tiktok-logo {
  width: 32px;
  margin-right: 10px;
}
.sns-twitter-logo {
  margin-top: 3px;
}
.instagram-wrap {
  width: 300px;
  height: 300px;
  margin: 0 auto;
  background-color: #FFFFFF;
}
.instagram-link {
  width: 300px;
  height: 300px;
}
.instagram-link img {
  width: 98px;
  height: 98px;
  object-fit: cover;
  object-position: top;
  padding: 1px;
}
.instagram-item01, .instagram-item02, .instagram-item03 {
  display: flex;
  justify-content: center;
}
.instagram-item01 div, .instagram-item02 div, .instagram-item03 div {
  padding: 1px;
}
.tiktok-embed {
  height: 382px;
}
.tiktok-elem {
  margin: -18px auto;
}
@media (min-width: 769px) {
  .sns-container {
    padding: 100px 0;
  }
  .sns-lead {
    font-size: 3.0rem;
    line-height: 4.5rem;
    margin-bottom: 100px;
  }
  .sns-twitter-area, .sns-instagram-area {
    margin: 0 20px 100px;
  }
  h4 {
    font-size: 4.8rem;
    line-height: 4.8rem;
    margin-bottom: 30px;
  }
  .sns-twitter-logo, .sns-instagram-logo, .sns-tiktok-logo {
    width: 48px;
    margin-right: 10px;
  }
}
@media (min-width: 1020px) {
  .sns-container {
    padding: 100px 0 0;
  }
  .sns-tiktok-area {
    margin-bottom: 100px;
  }
}
/* DISCOGRAPHYのsection */
.disco-new-container {
  display: inline-flex;
  flex-direction: column;
}
.disco-newitem {
  background-color: #FF7778;
  width: 300px;
  height: 210px;
  padding-left: 30px;
  margin: 0 auto;
  text-align: left;
}
.disco-newitem-img-wrap, .disco-newitem {
  display: inline-block;
}
.disco-newitem-img-wrap {
  width: 300px;
  height: 300px;
}
.disco-newitem-lead {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: left;
  padding: 15px 0 10px;
}
.disco-newitem-text01, .disco-newitem-title {
  display: inline-block;
}
.disco-newitem-text01 {
  font-size: 1.4rem;
}
.disco-newitem-title {
  font-size: 2.4rem;
  font-weight: 500;
  color: #FCFDF5;
  padding: 10px 0 10px 20px;
}
.disco-newitem-date {
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding-top: 20px;
}
.disco-newitem-text02 {
  padding-top: 10px;
}
@media (min-width: 800px) {
  .disco-new-container {
  flex-direction: unset;
}
  .disco-newitem-lead {
    font-size: 2.4rem;
    line-height: 2.4rem;
    padding-top: 36px;
  }
  .disco-newitem {
    width: 350px;
    height: 300px;
  }
  .disco-newitem-title {
    font-size: 3.2rem;
    line-height: 3.2rem;
    padding: 20px 0 20px 20px;
  }
  .disco-newitem-text01 {
    font-size: 1.8rem;
  }
  .disco-newitem-text02, .disco-newitem-text03 {
    font-size: 2rem;
    padding-bottom: 10px;
  }
  .disco-newitem-text02 {
    padding-top: 30px;
  }
}
.disco-item-area {
  display: flex;
  justify-content: center;
  max-width: 1050px;
  margin: 0 auto;
}
.disco-item-cotainer01, .disco-item-cotainer02, .disco-item-cotainer03 {
  margin: 0 25px;
}
.disco-item-cotainer01 a:hover, .disco-item-cotainer02 a:hover, .disco-item-cotainer03 a:hover, .disco-new-container-link:hover {
  display: block;
  opacity: 0.8;
}
.disco-item-cotainer01, .disco-item-cotainer03 {
  display: none;
}
.disco-item-img-wrap {
  width: 300px;
  height: 300px;
  margin: 50px auto 0;
}
.disco-item-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.disco-item-category {
  padding-top: 10px;
  color: #F0A775;
  font-weight: 500;
}
@media (min-width: 800px) {
  .disco-item-cotainer01 {
    display: block;
  }
}
@media (min-width: 1100px) {
  .disco-item-cotainer03 {
    display: block;
  }
}
.disco-item-img-wrap {
  width: 300px;
  height: 300px;
  margin: 100px auto 0;
}
.disco-item {
  width: 300px;
  text-align: left;
  margin: 0 auto;
}
.disco-item-title {
  font-size: 2.4rem;
  font-weight: 500;
  padding-top: 15px;
}
.disco-item-date {
  font-size: 1.4rem;
  line-height: 1.4rem;
  padding-top: 30px;
  margin-bottom: 50px;
}
.disco-item {
  position: relative;
}
.disco-item-more-arrow::before {
  position: absolute;
  top: 8px;
  right: 0;
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #F0A775;
  border-right: 2px solid #F0A775;
  transform: rotate(45deg);
}
.disco-more {
  position: relative;
  display: inline-flex;
  color: #FFFFFF;
  background-color: #F0A775;
  border-radius: 6px;
  width: 80%;
  max-width: 500px;
  padding: 13px 0;
  margin: 50px auto 0;
  justify-content: center;
  box-shadow: 0px 5px 15px 0px rgba(33, 33, 33, 0.15);
  transition-duration: .4s;
}
.disco-more:hover {
  transform: scale(1.1);
}
.disco-more-arrow::before {
  position: absolute;
  top: 20px;
  right: 20px;
  display: inline-block;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
}
@media (min-width: 769px) {
  .disco-more {
    padding: 23px 0;
  }
  .disco-more-arrow::before {
    top: 30px;
  }
}
/* LIVEのsection */
.live-item-info {
  color: #333333;
  font-weight: 700;
  margin-bottom: 20px;
}
.live-item-info-01 {
  font-size: 1.4rem;
  font-weight: 500;
}
.live-item-info-02 {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: -20px;
  margin-bottom: 20px;
}
.live-item-title, .live-item-title01, .live-item-title02, .live-item-title03, .live-item-title04 {
  margin-left: 1.2rem;
}
.live-item-info_span {
  padding-left: 1.3rem;
}
@media (min-width: 352px) {
  .live-item-info_br {
    display: none;
  }
  .live-item-info_span {
    padding-left: 0rem;
  }
}
@media (min-width: 769px) {
  .live-item-info {
    line-height: 2.7rem;
  }
  .live-item-info-01 {
    font-size: 1.6rem;
  }
  .live-item-title02 {
    margin-left: 1.2rem;
  }
}
/* タイトルが長い時の改行css */
@media (min-width: 433px) {
  .live-title-br01 {
    display: none;
  }
  .live-item-title01 {
    margin-left: 0rem;
  }
}
@media (min-width: 433px) {
  .live-title-br02 {
    display: none;
  }
}
@media (min-width: 511px) {
  .live-title-br02 {
    display: block;
  }
}
@media (min-width: 320px) {
  .live-title-br03 {
    display: none;
  }
}
@media (min-width: 349px) {
  .live-item-title03 {
    margin-left: 1.0rem;
  }
}
@media (min-width: 356px) {
  .live-title-br03 {
    display: block;
  }
}
@media (min-width: 485px) {
  .live-title-br03 {
    display: none;
  }
  .live-item-title04 {
    margin-left: 0rem;
  }
}
/* ここまで(タイトルが長い時の改行css) */