@charset "UTF-8";
/* ==================================================================================
/*
/* var
/*
/* ================================================================================== */
.btn_base_pink {
  background-color: #E8418D;
}

.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  transition: ease 0.2s;
  display: block;
  border-radius: 100vh;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 2em auto;
  transition: 0.3s;
}
.btn a {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  color: #fff;
  text-decoration: none;
}
.btn a:after {
  font-family: Material Icons, sans-serif;
  content: "arrow_forward";
  vertical-align: middle;
}
.btn span {
  position: relative;
  z-index: 3; /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #333;
  border-radius: 100vh;
}

.btn:hover span a {
  color: #E8418D;
  border-radius: 100vh;
}

/*== 背景が流れる（下から上） */
.bgbottom:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #fff; /*背景色*/
  width: 100%;
  height: 0;
  border-radius: 100vh;
  /*アニメーション*/
  transition: 0.3s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}
.bgbottom:before a {
  color: #E8418D;
}

/*hoverした際の形状*/
.bgbottom:hover:before {
  height: 100%;
  background-color: #fff;
  border: 2px solid #E8418D;
  border-radius: 100vh;
}

/* ==================================================================================
/* 
/*  レイアウト
/*
/* ================================================================================== */
body, html {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  background: #fff;
  min-height: 100vh;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.3rem; /* 16px*/
}

ul, li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

/*  表示非表示切り替え
/* --------------------------------------------------------------------*/
@media only screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .sp {
    display: inline-block;
  }
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ==================================================================================
/* レイアウト用フレーム
/* ================================================================================== */
#layout_frame {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #layout_frame {
    display: block;
  }
}

#left_block {
  min-height: 100vh;
  width: 35%;
  display: flex;
  justify-content: space-between;
  position: fixed;
  z-index: 888;
  background: #000;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  #left_block {
    display: none;
    width: 0%;
  }
}
#left_block #main_nav {
  width: 11%;
  height: 100vh;
  background: #000;
}
#left_block #main_nav #ico_youtube {
  width: 11%;
  margin: auto;
  position: absolute;
  bottom: 1em;
}
#left_block #main_nav #ico_youtube img {
  width: 70%;
  margin: auto;
}
#left_block #main_visual {
  width: 89% !important;
  height: 100vh;
  background-image: url(../img/idx/bg_mainvisual@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  flex-direction: column;
  display: flex;
}
#left_block #main_visual #visual_image {
  width: 90%;
  margin: auto;
}

#right_block {
  width: 65%;
  margin-left: 35%;
}
@media only screen and (max-width: 767px) {
  #right_block {
    width: 100%;
    margin-left: 0;
  }
}

/* ==================================================================================
/* 下層共通のへっだ
/* ================================================================================== */
#main_head_nav {
  padding-top: 16%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #main_head_nav {
    display: none;
  }
}
#main_head_nav p {
  position: absolute;
  right: 8%;
  top: 5vh;
}
@media only screen and (max-width: 767px) {
  #main_head_nav p {
    position: absolute;
    top: 6vh !important;
    right: 18%;
  }
  #main_head_nav p img {
    width: 45px;
    height: 45px;
  }
}

/* ==================================================================================
/* 共通フッター
/* ================================================================================== */
footer #footer_inner {
  border-top: 1px solid #ccc;
  padding: 15% 8%;
}
@media only screen and (max-width: 767px) {
  footer #footer_inner {
    padding-left: 5%;
    padding-right: 5%;
  }
}
footer #footer_inner_banner_list {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
footer #footer_inner_banner_list .footer_banner_child {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
  width: calc((100% - 2em) / 2);
  margin-top: 4em;
}
footer #footer_inner_banner_list .footer_banner_child:nth-child(odd) {
  margin-right: 1em;
}
@media only screen and (max-width: 767px) {
  footer #footer_inner_banner_list .footer_banner_child:nth-child(odd) {
    margin-right: 0;
  }
}
footer #footer_inner_banner_list .footer_banner_child:nth-child(even) {
  margin-left: 1em;
}
@media only screen and (max-width: 767px) {
  footer #footer_inner_banner_list .footer_banner_child:nth-child(even) {
    margin-right: 0;
  }
}
footer #footer_inner_banner_list .footer_banner_child:nth-child(5) {
  margin-right: 0;
  margin-left: 0;
}
footer #footer_inner_banner_list .footer_banner_child .footer_banner {
  margin-bottom: 1em;
}
footer #footer_inner_banner_list .footer_banner_child p {
  margin-bottom: 1.5em;
}
footer #footer_inner_banner_list .footer_banner_child .btn {
  width: 60%;
  text-align: center;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  footer #footer_inner_banner_list .footer_banner_child .btn {
    width: 90%;
  }
}
@media only screen and (max-width: 767px) {
  footer #footer_inner_banner_list .footer_banner_child {
    width: 100%;
    margin: 4em auto auto auto;
  }
}
footer #footer_nav {
  background: #000;
  text-align: center;
  padding-top: 6em;
  padding-bottom: 6em;
}
@media only screen and (max-width: 767px) {
  footer #footer_nav {
    padding-top: 4em;
  }
}
footer #footer_nav_logo p {
  width: 7%;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  footer #footer_nav_logo p {
    width: 13%;
  }
}
footer #footer_nav_list {
  padding-top: 2em;
}
footer #footer_nav_list ul li {
  list-style: none;
  margin: 0 1em;
  padding: 0;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  footer #footer_nav_list ul li {
    line-height: 2em;
  }
}
footer #footer_nav_list ul li a {
  color: #fff;
  text-decoration: none;
}
footer #footer_nav .copy {
  color: #fff;
  padding-top: 4em;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  footer #footer_nav .copy {
    padding-right: 3%;
    padding-left: 3%;
    font-size: 0.8em;
  }
}

/* ==================================================================================
/* 下層ページ
/* ================================================================================== */
#level2_title {
  width: 100%;
  text-align: center;
  padding-top: 30%;
}
#level2_title_logo {
  text-align: center !important;
  width: 111%;
  margin-left: -11%;
}
#level2_title_logo img {
  width: 5em;
  margin: auto;
}
#level2_title_title {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 100px;
  text-align: center;
  margin-left: -11%;
}

.sp #level2_title_headline {
  margin: 0;
  padding: 8vh 0 7vh 0;
  display: flex;
}
.sp #level2_title_headline span {
  width: 4vw;
  height: 2px;
  background: #000;
  display: block;
}
.sp #level2_title_headline #level2_title {
  text-align: center;
  margin: 0;
  padding: 0;
  line-height: 1 !important;
}
.sp #level2_title_headline #level2_title::before, .sp #level2_title_headline #level2_title::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.sp #level2_title_headline #level2_title::before {
  margin-top: calc((1 - 1) * 0.5em);
}
.sp #level2_title_headline #level2_title::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}
.sp #level2_title_headline #level2_title_title {
  color: #000;
  padding: 0;
  font-size: 50px;
  margin: -3vh auto auto 1vw;
}

/* ==================================================================================
/*
/* アニメーション
/*
/* ================================================================================== */
/*　フェードイン・アウト　*/
/* ================================================================================== */
.fadeInTrigger {
  opacity: 0;
}

.fadeInUpTrigger {
  opacity: 0;
}

/*プロフィールページ*/
/* ================================================================================== */
.img-wrap {
  opacity: 0;
}

.img-animation {
  animation: img-opacity 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img-animation:before {
  animation: img-animation 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #000;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-opacity {
  100% {
    opacity: 1;
  }
}
@keyframes img-animation {
  100% {
    transform: translateX(100%);
  }
}
/*　画像の拡大　*/
/* ================================================================================== */
.zoomIn img {
  transform: scale(1);
  transition: 0.3s ease-in-out; /*移り変わる速さを変更したい場合はこの数値を変更*/
}

.zoomIn a:hover img { /*hoverした時の変化*/
  transform: scale(1.2); /*拡大の値を変更したい場合はこの数値を変更*/
}

/*　画像のマスク　*/
.mask {
  display: block;
  line-height: 0; /*行の高さを0にする*/
  overflow: hidden; /*拡大してはみ出る要素を隠す*/
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状*/
  top: 0;
  left: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  background-color: rgba(0, 0, 0, 0.8);
  /*動き*/
  transition: all 0.6s;
}
@media only screen and (max-width: 767px) {
  #g-nav {
    left: 120% !important;
  }
}
#g-nav.panelactive {
  left: 0;
}
@media only screen and (max-width: 767px) {
  #g-nav.panelactive {
    left: 0% !important;
  }
}
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 9998;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/*アクティブクラスがついたら位置を0に*/
/*ナビゲーションの縦スクロール*/
/*ナビゲーション*/
#g-nav-list li {
  list-style: none;
  font-size: 4rem !important;
  border-bottom: 1px solid #ccc;
  padding: 0;
  margin: 0;
  width: 100%;
  font-weight: 300;
  text-align: center;
  padding: 0.5em 0;
}
#g-nav-list li a {
  color: #fff;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
}
#g-nav-list li:first-child {
  margin-top: 0;
  padding-top: 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  left: 0;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media only screen and (max-width: 767px) {
  .openbtn1 {
    position: fixed;
    border-radius: 0px;
    left: calc(100vw - 50px);
    background: rgba(0, 0, 0, 0.8);
    top: 0;
  }
}
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 20px;
  background-color: #fff;
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
@media only screen and (max-width: 767px) {
  .openbtn1 span {
    left: 22px;
  }
}
.openbtn1 span:nth-of-type(1) {
  top: 10px;
}
.openbtn1 span:nth-of-type(2) {
  top: 21px;
}
.openbtn1 span:nth-of-type(3) {
  top: 32px;
}
.openbtn1.active span:nth-of-type(1) {
  top: 15px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 67%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn1.active span:nth-of-type(3) {
  top: 28px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 67%;
}

/* ==================================================================================
/*
/* index.css
/*
/* ================================================================================== */
/*　ブロックスタイル */
.idx_block {
  padding: 0 8%;
}
@media only screen and (max-width: 767px) {
  .idx_block {
    padding: 0 3% 0 3.5%;
  }
}

/*　共通ブロック */
.idx_contents {
  padding: 10vh 0;
}

/*　共通見出し */
.idx_block_headline {
  font-family: "Oswald", sans-serif;
  display: flex;
}
.idx_block_headline h2 {
  font-size: 30pt;
  list-style: 1;
  margin-bottom: 1em;
  vertical-align: top;
  margin-top: -9px;
}
.idx_block_headline span {
  width: 6%;
  margin-right: 2%;
  height: 2px;
  display: block;
  background-color: #000;
}

#main_header {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #main_header {
    background-image: url(../img/idx/bg_mainvisual_sp@2x.jpg);
    background-size: cover;
    background-position: top center;
    display: block;
    min-height: 100vh; /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
  }
}
#main_header h1 {
  max-height: 70vh;
  width: auto;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #main_header h1 {
    max-height: 35vh;
    position: absolute;
    right: 5vw;
    top: 5vh;
  }
}
#main_header h1 img {
  width: auto;
  max-height: 70vh;
}
@media only screen and (max-width: 767px) {
  #main_header h1 img {
    max-height: 30vh;
  }
}

/* ==================================================================================
/* indexプロフィール
/* ================================================================================== */
#idx_profile {
  background: #262522;
  color: #fff;
}
#idx_profile_inner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-direction: row-reverse;
}
@media only screen and (max-width: 767px) {
  #idx_profile_inner {
    display: block;
  }
}
#idx_profile_inner #idx_profile_summary {
  padding: 0 8%;
}
#idx_profile_inner #idx_profile_summary p:first-child {
  margin-bottom: 1em;
}
@media only screen and (max-width: 767px) {
  #idx_profile_inner #idx_profile_summary br {
    display: none;
  }
}
#idx_profile_inner #idx_profile_image {
  width: 50%;
  background-image: url(../img/idx/idx_profile@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media only screen and (max-width: 767px) {
  #idx_profile_inner #idx_profile_image {
    width: 100%;
    height: 300px;
    background-position: center 20%;
    background-size: cover;
  }
}
#idx_profile .idx_block_headline {
  color: #fff;
}
#idx_profile .idx_block_headline span {
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #idx_profile .idx_block_headline {
    margin-top: -2em;
  }
}
#idx_profile .btn {
  width: 40%;
}
@media only screen and (max-width: 767px) {
  #idx_profile .btn {
    width: 84%;
    margin-right: auto;
    margin-left: auto;
  }
  #idx_profile .btn .sp {
    display: block !important;
    margin-right: auto;
    margin-left: 8% !important;
  }
}
#idx_profile .pc {
  display: block;
}

/* ==================================================================================
/* NEWS
/* ================================================================================== */
#idx_news {
  background-color: #fff;
}
#idx_news #idx_news_inner #idx_news_list {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article {
  width: 32%;
}
@media only screen and (max-width: 767px) {
  #idx_news #idx_news_inner #idx_news_list .idx_news_article {
    width: 48%;
  }
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article .title a {
  color: #000;
  text-decoration: none;
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article .title a:hover {
  text-decoration: underline;
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article .thumb {
  margin-bottom: 1em;
  height: 150px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid #ccc;
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article .thumb a {
  display: block;
  height: 150px;
}
#idx_news #idx_news_inner #idx_news_list .idx_news_article .thumb:hover {
  opacity: 0.8;
}

/* ==================================================================================
/* MOVIE
/* ================================================================================== */
#idx_movie {
  background-color: #262522;
}
#idx_movie .idx_block_headline {
  color: #fff;
}
#idx_movie .idx_block_headline span {
  background-color: #fff;
}
#idx_movie .youtube__aspect-ratio {
  width: 100%;
  aspect-ratio: 16/9;
}
#idx_movie .youtube__aspect-ratio iframe {
  width: 100%;
  height: 100%;
}
#idx_movie .btn {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #idx_movie .btn {
    width: 84%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ==================================================================================
/* SONGS
/* ================================================================================== */
#idx_songs {
  background-color: #fff;
}
#idx_songs .btn {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #idx_songs .btn {
    width: 84%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* ==================================================================================
/* Interview
/* ================================================================================== */
#idx_interview {
  background-color: #EFEFEF;
}
#idx_interview .interview_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
#idx_interview .btn {
  width: 30%;
}
@media only screen and (max-width: 767px) {
  #idx_interview .btn {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
}

/* =========================================================
/* SONGS & Interview共通
/* ========================================================= */
.section-lineup {
  overflow: hidden;
}
.section-lineup .inner {
  margin: 0 0 0 8%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-lineup .inner {
    max-width: 0 0 0 3.5%;
  }
}
.section-lineup .lineup {
  position: relative;
}
.section-lineup .slick-list {
  overflow: visible;
}

.publish_wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
.publish_wrap .publish_child {
  width: 100%;
  margin-right: 2%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-direction: column;
}
.publish_wrap .publish_child .btn {
  width: 80%;
  margin-top: auto !important;
  margin-bottom: 0 !important;
}
@media only screen and (max-width: 767px) {
  .publish_wrap .publish_child .btn {
    width: 100%;
  }
}
.publish_wrap .publish_thumb {
  margin-bottom: 1em;
  border: 1px solid #ccc;
}
.publish_wrap .publish_title {
  margin-bottom: 1.5em;
}
.publish_wrap .publish_title span {
  display: block;
  font-weight: 300 !important;
}
.publish_wrap .publish_meta {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  align-items: center;
  margin-bottom: 1em;
}
.publish_wrap .publish_meta .release_number {
  font-size: 35px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  border-right: 2px solid #000;
  padding-right: 0.3em;
  margin-right: 0.3em;
  line-height: 1;
}
.publish_wrap .publish_meta .release_number::before, .publish_wrap .publish_meta .release_number::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.publish_wrap .publish_meta .release_number::before {
  margin-top: calc((1 - 1) * 0.5em);
}
.publish_wrap .publish_meta .release_number::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}
.publish_wrap .publish_meta .release_data {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.publish_wrap .publish_meta .release_data::before, .publish_wrap .publish_meta .release_data::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.publish_wrap .publish_meta .release_data::before {
  margin-top: calc((1 - 1) * 0.5em);
}
.publish_wrap .publish_meta .release_data::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}

/* ==================================================================================
/* Splash
/* ================================================================================== */
#splash-logo img {
  height: 50vh;
}

/* ==================================================================================
/*
/* profile.css
/*
/* ================================================================================== */
#profile_body {
  color: #fff;
}
#profile_body .profile_block {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #profile_body .profile_block {
    display: block;
  }
}
#profile_body .profile_block .profile_photo {
  width: 44%;
}
@media only screen and (max-width: 767px) {
  #profile_body .profile_block .profile_photo {
    width: 100%;
    height: 40vh;
  }
}
#profile_body .profile_block .profile_text {
  width: 56%;
}
@media only screen and (max-width: 767px) {
  #profile_body .profile_block .profile_text {
    width: 100%;
    padding-bottom: 10% !important;
    padding-top: 10% !important;
  }
  #profile_body .profile_block .profile_text br {
    display: none;
  }
}
#profile_body .profile_block .profile_text p {
  padding: 1em 0;
}
#profile_body .profile_block .profile_text p:first-child {
  padding-top: 0;
}
#profile_body .profile_block .profile_text p:last-child {
  padding-bottom: 0;
}
#profile_body #profile_block01 {
  flex-direction: row-reverse;
  background-image: url(../img/profile/bg_profile01@2x.jpg);
  background-size: cover;
  padding-top: 16%;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block01 {
    padding-top: 0;
  }
}
#profile_body #profile_block01 .profile_photo {
  background-image: url(../img/profile/profile_photo01@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block01 .profile_photo {
    background-position: center -3em;
  }
}
#profile_body #profile_block01 h2 {
  width: 70%;
  margin: auto auto auto auto;
  padding-bottom: 2em;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block01 h2 {
    margin-top: -25%;
    z-index: 999;
    position: relative;
  }
}
#profile_body #profile_block01 .profile_text {
  padding: 0 5% 5% 8%;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block01 .profile_text {
    padding: 0 8%;
  }
}
#profile_body #profile_block02 {
  background-image: url(../img/profile/bg_profile02@2x.jpg);
  background-size: cover;
}
#profile_body #profile_block02 .profile_photo {
  background-image: url(../img/profile/profile_photo02@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block02 .profile_photo {
    background-position: center -3em;
    background-size: 150% auto;
  }
}
#profile_body #profile_block02 .profile_text {
  padding: 5% 8% 5% 5%;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block02 .profile_text {
    padding: 0 8%;
  }
}
#profile_body #profile_block03 {
  flex-direction: row-reverse;
  background-image: url(../img/profile/bg_profile03@2x.jpg);
  background-size: cover;
}
#profile_body #profile_block03 .profile_photo {
  background-image: url(../img/profile/profile_photo03@2x.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
#profile_body #profile_block03 .profile_text {
  padding: 5% 5% 5% 8%;
}
@media only screen and (max-width: 767px) {
  #profile_body #profile_block03 .profile_text {
    padding: 0 8%;
  }
}

/* ==================================================================================
/*
/* songs.css
/*
/* ================================================================================== */
#songs_body {
  background: #fff;
  padding: 0 8%;
}
@media only screen and (max-width: 767px) {
  #songs_body {
    padding-left: 5%;
    padding-right: 5%;
  }
}
#songs_body .publish_wrap {
  flex-wrap: wrap;
}
#songs_body .publish_wrap .publish_child {
  width: 31.3333333333%;
  margin-right: 0;
  margin-bottom: 4em;
}
@media only screen and (max-width: 767px) {
  #songs_body .publish_wrap .publish_child {
    width: 47.5%;
  }
}

#songs_detail_wrap_inner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #songs_detail_wrap_inner {
    display: block;
  }
}
#songs_detail_wrap_inner #songs_jacket_image {
  width: 43%;
}
@media only screen and (max-width: 767px) {
  #songs_detail_wrap_inner #songs_jacket_image {
    width: 100%;
    margin-bottom: 5em;
  }
}
#songs_detail_wrap_inner #songs_jacket_image .jacket {
  border: 1px solid #ccc;
}
#songs_detail_wrap_inner #songs_jacket_image #outside_link ul {
  width: 90%;
  margin: 2em auto auto auto;
}
@media only screen and (max-width: 767px) {
  #songs_detail_wrap_inner #songs_jacket_image #outside_link ul {
    width: 100%;
  }
}
#songs_detail_wrap_inner #songs_jacket_image #outside_link ul a {
  border: 2px solid #000 !important;
  color: #000 !important;
  text-align: center;
  border-radius: 500px;
  display: block;
  padding: 0.5em 0;
  margin-top: 1em;
}
#songs_detail_wrap_inner #songs_jacket_image #outside_link ul a img {
  height: 2em;
  margin: auto;
  vertical-align: bottom;
}
#songs_detail_wrap_inner #songs_jacket_image #outside_link .haishin a {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  text-decoration: none;
  list-style: 1;
}
#songs_detail_wrap_inner #songs_jacket_image #outside_link .amazon a {
  padding-top: 0.4em;
  padding-bottom: 0.6em;
}
#songs_detail_wrap_inner #songs_detail_info {
  width: 52%;
}
@media only screen and (max-width: 767px) {
  #songs_detail_wrap_inner #songs_detail_info {
    width: 100%;
  }
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta .release_data {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1em;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta .release_data::before, #songs_detail_wrap_inner #songs_detail_info .publish_meta .release_data::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta .release_data::before {
  margin-top: calc((1 - 1) * 0.5em);
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta .release_data::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner {
  border-bottom: 1px solid #000;
  padding-bottom: 1.5em;
  margin-bottom: 1.5em;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number {
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  font-size: 3.5rem;
  border-right: 2px solid #000;
  margin-right: 0.5em;
  padding-right: 0.4em;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number p {
  line-height: 1;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number p::before, #songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number p::before {
  margin-top: calc((1 - 1) * 0.5em);
}
#songs_detail_wrap_inner #songs_detail_info .publish_meta_inner .release_number p::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}
#songs_detail_wrap_inner #songs_detail_info #songs_list li {
  list-style: none;
  margin-bottom: 3em;
}
#songs_detail_wrap_inner #songs_detail_info #songs_list li #song_title {
  font-weight: 700;
  font-size: 1.2em;
}
#songs_detail_wrap_inner #songs_detail_info #songs_list li #song_meta {
  font-weight: 300;
  font-size: 0.9em;
  margin-top: 0.5rem;
}
#songs_detail_wrap_inner #songs_detail_info #songs_list li #audio_file {
  margin-top: 1em;
}
#songs_detail_wrap_inner #songs_detail_info #songs_list li #audio_file audio {
  width: 100%;
}

#songs_pagenav {
  text-align: center;
  padding: 5em 0;
}
#songs_pagenav ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #songs_pagenav ul {
    justify-content: space-between;
  }
}
#songs_pagenav ul li {
  padding: 0 3em;
}
@media only screen and (max-width: 767px) {
  #songs_pagenav ul li {
    padding: 0 0em;
  }
}
#songs_pagenav ul li a {
  text-decoration: none;
  transition: 0.2s;
  color: #000;
}
#songs_pagenav ul li a:hover {
  text-decoration: underline;
  transition: 0.2s;
  color: #E8418D;
}
#songs_pagenav ul li span {
  vertical-align: text-bottom;
}

/*========= モーダル表示のためのCSS ===============*/
/*全て共通：hideエリアをはじめは非表示*/
.hide-area {
  display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/*POD VVAST*/
#podcast_block {
  width: 95%;
  padding: 3em 0;
  margin: auto;
}
@media only screen and (max-width: 767px) {
  #podcast_block {
    width: 100%;
    padding-top: 1em;
  }
}
#podcast_block a {
  color: #000;
  text-decoration: none;
}
#podcast_block a:hover {
  color: #E8418D;
  text-decoration: underline;
}
#podcast_block .podcast_list {
  background: #efefef;
  padding: 3em;
  margin: 3em auto auto auto;
}
@media only screen and (max-width: 767px) {
  #podcast_block .podcast_list {
    padding: 2em;
    margin-top: 2em;
  }
}
#podcast_block .podcast_list .podcast_block_meta2 {
  font-weight: 700;
  text-align: center;
  font-size: 1.2em;
  border-bottom: 2px solid #000;
  display: inline-block;
  text-align: center;
  margin-bottom: 2em;
  margin-left: auto;
  margin-right: auto;
}
#podcast_block .podcast_list ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
  text-align: center !important;
  flex-wrap: wrap;
}
#podcast_block .podcast_list ul li {
  width: calc((100% - 30px) / 7);
}
@media only screen and (max-width: 767px) {
  #podcast_block .podcast_list ul li {
    width: 48%;
    margin-bottom: 1.5em;
  }
}
#podcast_block .podcast_list ul li a {
  display: flex;
  flex-direction: column;
  text-align: center !important;
}
#podcast_block .podcast_list ul li a img {
  margin: auto auto 0.6em auto;
}
#podcast_block .podcast_list ul li a span {
  display: block;
  margin-top: auto;
}

.material-symbols-outlined {
  font-size: 18px !important;
}

/* ==================================================================================
/*
/* contact.css
/*
/* ================================================================================== */
#contact_body {
  padding: 0 8% 0 8%;
}
#contact_body + footer #footer_inner {
  border: none;
  padding-top: 0;
}
#contact_body_inner ul {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #contact_body_inner ul {
    display: block;
  }
}
#contact_body_inner ul li {
  margin-top: 4em;
  width: calc((100% - 2em) / 2);
}
@media only screen and (max-width: 767px) {
  #contact_body_inner ul li {
    width: 100%;
  }
}
#contact_body_inner ul li img {
  border: 1px solid #ccc;
}
#contact_body_inner ul li .btn {
  width: 60%;
  margin: 2em auto auto auto;
}
@media only screen and (max-width: 767px) {
  #contact_body_inner ul li .btn {
    width: 90%;
  }
}
#contact_body_inner #contact_wrap {
  background-color: #F8F8F8;
  padding: 8% 8%;
}
#contact_body_inner #contact_wrap > p {
  font-size: 1.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2em;
}
#contact_body_inner #contact_wrap > p span {
  border-bottom: 2px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}
#contact_body_inner #contact_wrap_inner {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #contact_body_inner #contact_wrap_inner {
    display: block;
  }
}
#contact_body_inner #contact_wrap_inner .contact_wrap_inner_child {
  width: 48%;
}
@media only screen and (max-width: 767px) {
  #contact_body_inner #contact_wrap_inner .contact_wrap_inner_child {
    width: 100%;
  }
}
#contact_body_inner #contact_wrap_inner .contact_wrap_inner_child dt {
  margin-top: 2em;
  margin-bottom: 1em;
}

input[type=text], input[type=email] {
  height: 3em;
  width: 100% !important;
  text-indent: 1em;
}

::placeholder {
  color: rgb(192, 192, 192);
}

textarea {
  width: 100%;
  height: 9.3em;
}

select {
  width: 100%;
  height: 3em;
  text-indent: 0.5em;
}

.need {
  color: red;
}

.error {
  color: red;
  text-align: center;
  border: 1px solid red;
  padding: 1em;
}

#comfirm_wrap {
  width: 100%;
  padding-top: 3em;
}
#comfirm_wrap dl {
  width: 100%;
}
#comfirm_wrap dl dt {
  margin-bottom: 0.5em;
}
#comfirm_wrap dl dd {
  margin-bottom: 1em;
  padding-bottom: 1em;
  font-size: 1.5em;
  border-bottom: 1px solid #000;
}

.submit_btn ul {
  width: 80%;
  margin: auto;
  flex-direction: row-reverse;
}
.submit_btn ul li .btn {
  width: 90% !important;
}
@media only screen and (max-width: 767px) {
  .submit_btn ul li:nth-child(2) {
    margin-top: 0 !important;
    margin-bottom: 3em;
  }
}

/* ==================================================================================
/*
/* contact.css
/*
/* ================================================================================== */
#movie_body {
  padding: 0 8% 5em 8%;
}
@media only screen and (max-width: 767px) {
  #movie_body {
    padding-right: 5%;
    padding-left: 5%;
  }
}
#movie_body_inner .publish_wrap {
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #movie_body_inner .publish_wrap {
    display: block;
  }
}
#movie_body_inner .publish_wrap .publish_child {
  width: 47.5%;
  margin-bottom: 4em;
}
@media only screen and (max-width: 767px) {
  #movie_body_inner .publish_wrap .publish_child {
    width: 100%;
  }
  #movie_body_inner .publish_wrap .publish_child br {
    display: none;
  }
}
#movie_body_inner .publish_wrap .publish_child iframe {
  width: 100%;
}
#movie_body_inner .publish_wrap .btn {
  width: 60%;
  margin: 2em auto auto auto;
}
@media only screen and (max-width: 767px) {
  #movie_body_inner .publish_wrap .btn {
    width: 90%;
  }
}

/*========= NEWSのためのCSS ===============*/
#news_body_inner {
  margin: auto 8%;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
#news_body_inner a {
  color: #000;
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  #news_body_inner {
    display: block;
    margin: auto 5%;
  }
}
#news_body_inner #news_contents {
  width: 64%;
}
@media only screen and (max-width: 767px) {
  #news_body_inner #news_contents {
    width: 100%;
  }
}
#news_body_inner #news_contents .post {
  margin-bottom: 8em;
}
#news_body_inner #news_contents .post .entry-title {
  border-bottom: 2px solid #000;
  padding-bottom: 1em;
  margin-bottom: 1.5em;
  width: 100%;
}
#news_body_inner #news_contents .post .entry-title a {
  color: #fff;
  background: #000;
  display: inline;
  text-decoration: none;
}
#news_body_inner #news_contents .post .entry-utility {
  background-color: #F7F7F7;
  margin-top: 3em;
  padding: 0.5em;
}
#news_body_inner #sidemenu {
  font-weight: 400;
  width: 28%;
  background: #F7F7F7;
  padding: 5% 3%;
}
@media only screen and (max-width: 767px) {
  #news_body_inner #sidemenu {
    width: 100%;
    margin-bottom: 5em;
  }
}
#news_body_inner #sidemenu h2 img {
  height: 30px;
}
#news_body_inner #sidemenu .side_list {
  margin-top: 1em;
  margin-bottom: 3em;
}
#news_body_inner #sidemenu .side_list li {
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 1em;
  margin-bottom: 1em;
}
#news_body_inner #sidemenu .cat_list li a {
  background-image: url(/source/img/news_arrow.png);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 1.5em;
}
#news_body .recent_post_list li {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}
#news_body .recent_post_list li .archive_thumb {
  width: 30%;
}
#news_body .recent_post_list li .archive_meta {
  width: 65%;
  text-align: justify;
}
#news_body .recent_post_list li .archive_meta .archive_date {
  margin-bottom: 0.5em;
  font-weight: bold;
}

.cat_name {
  font-size: 2em;
  margin-bottom: 2em;
}

.entry_date {
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-bottom: 1em;
}

.nav-links {
  text-align: center;
  margin-bottom: 3em;
}
.nav-links a {
  background-color: #fff;
}
.nav-links a:hover {
  background-color: #000;
  color: #fff !important;
}
.nav-links span {
  background-color: #000;
  color: #fff;
}
.nav-links .page-numbers {
  display: inline-block;
  padding: 1em;
  border: 1px solid #ccc;
  margin: 3px;
}

.top_recent_post_list {
  margin: 5% 8%;
  background: #FAFAFA;
  padding: 5%;
}
@media only screen and (max-width: 767px) {
  .top_recent_post_list {
    display: none;
  }
}
.top_recent_post_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_recent_post_list ul li {
  width: 48%;
  padding: 3% 0;
}
.top_recent_post_list ul li a {
  color: #000;
}

@media only screen and (max-width: 767px) {
  .navigation {
    margin-bottom: 3em;
  }
}
.navigation ul {
  display: flex;
  justify-content: center;
}
.navigation ul li {
  width: 50%;
}
.navigation ul li:first-child {
  text-align: left;
}
.navigation ul li:last-child {
  text-align: right;
}

#news-side-block_year_list h2 {
  margin-bottom: 1em;
}
#news-side-block_year_list .toggle_btn:hover {
  cursor: pointer;
}
#news-side-block_year_list .child {
  display: none;
  margin-bottom: 2em;
}
#news-side-block_year_list .child li {
  margin: 5px 0;
}
#news-side-block_year_list .toggle_btn {
  border-bottom: 1px solid #C7C7C7;
  padding-bottom: 1em;
  margin-bottom: 1em;
  background-image: url(/source/img/news_arrow.png);
  background-position: left 4px;
  background-repeat: no-repeat;
  padding-left: 1.5em;
}

.entry-content iframe {
  width: 100% !important;
}

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