@charset "UTF-8";
/* ------------------------------------------------- *
 *        ＠リセットCSS（サイト全体で共通するCSS）　　　　　　　　　　　　　　　　　　
 * ------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

body {
  line-height: 1; }

p {
  font-size: 16px;
  line-height: 1.7; }
  @media only screen and (max-width: 767px) {
    p {
      font-size: 13px; } }

li {
  list-style: none; }

img {
  display: block; }

article, aside, dialog, figure, footer, header,
hgroup, nav, section {
  display: block; }

nav ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  color: #193092; }

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

* {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Lucida Grande", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* ------------------------------------------------- *
  *        ＠マルチクラスCSS（使いまわしのきくCSS）　　　　　　　　　　　　　　　　　　
  * ------------------------------------------------- */
.inner {
  width: 100%;
  max-width: 960px;
  margin: 0 auto; }
  @media only screen and (max-width: 992px) {
    .inner {
      padding: 0 24px; } }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 16px; } }

.img-w {
  width: 100%;
  height: auto; }

/*　背景色 */
.bg-black {
  background: black; }

/* タイトル関係 */
.section-title {
  font-size: 24px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333; }
  @media only screen and (max-width: 767px) {
    .section-title {
      font-size: 18px;
      margin-bottom: 16px; } }

/* コンテンツ関係 */
#section-box {
  margin-bottom: 32px;
  padding: 32px 32px 32px 32px;
  background: #EFEFEF;
  border-top: 5px solid #111; }
  @media only screen and (max-width: 767px) {
    #section-box {
      margin-bottom: 16px;
      padding: 20px 16px 16px 16px; } }

/* ------------------------------------------------- *
 *        ＠コンポーネントCSS（使いまわしのきく単独したコンテンツのCSS）
 * ------------------------------------------------- */
/* ピックアップアーティスト */
#section-artist-picup {
  padding: 64px 0;
  background: #111;
  color: #FFF; }
  @media only screen and (max-width: 767px) {
    #section-artist-picup {
      padding: 40px 0; } }
  #section-artist-picup .col-3-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      #section-artist-picup .col-3-box {
        display: block; } }
    #section-artist-picup .col-3-box .item {
      width: 31%; }
      @media only screen and (max-width: 767px) {
        #section-artist-picup .col-3-box .item {
          width: 100%;
          overflow: hidden;
          margin-bottom: 16px; }
          #section-artist-picup .col-3-box .item:last-child {
            margin-bottom: 0; } }
      #section-artist-picup .col-3-box .item a {
        text-decoration: none;
        color: #FFF; }
      #section-artist-picup .col-3-box .item .img a {
        display: block; }
      #section-artist-picup .col-3-box .item .img img {
        width: 100%;
        height: auto;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          #section-artist-picup .col-3-box .item .img img {
            width: 40%;
            float: left;
            margin-bottom: 0; } }
      @media only screen and (max-width: 767px) {
        #section-artist-picup .col-3-box .item .txt {
          width: 60%;
          float: left;
          padding-left: 8px; } }
      #section-artist-picup .col-3-box .item .title {
        margin-bottom: 16px;
        font-weight: bold; }
        #section-artist-picup .col-3-box .item .title a:hover {
          color: #CCAC2B;
          transition: 0.2s linear; }
      #section-artist-picup .col-3-box .item .btn a {
        display: block;
        border: 1px solid #FFF;
        padding: 10px;
        margin-bottom: 8px; }
        @media only screen and (max-width: 767px) {
          #section-artist-picup .col-3-box .item .btn a {
            font-size: 12px; } }
        #section-artist-picup .col-3-box .item .btn a:hover {
          color: #CCAC2B;
          transition: 0.2s linear;
          border: 1px solid #CCAC2B; }

/* 横長メインビジュアル　*/
#main-visual-wide {
  background: #111; }
  #main-visual-wide .inner {
    position: relative; }
  #main-visual-wide img {
    width: 100%;
    height: auto; }
  #main-visual-wide h1 {
    position: absolute;
    left: 32px;
    bottom: 32px;
    color: #FFF;
    font-size: 46px; }

/* カテゴリー_説明文 */
#cat-description {
  margin-bottom: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.5); }
  @media only screen and (max-width: 767px) {
    #cat-description {
      margin-bottom: 16px;
      padding: 16px; } }
  @media only screen and (max-width: 767px) {
    #cat-description p {
      font-size: 12px; } }

/*　セクション_動画　*/
.section-move {
  margin-bottom: 32px; }
  .section-move .col-2-box {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    .section-move .col-2-box .item {
      width: 48%; }
      .section-move .col-2-box .item img {
        width: 100%;
        height: auto;
        margin-bottom: 8px; }

/* セクション_discograpy　*/
.section-discograpy .col-3-box, .section-discograpy .col-2-box {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .section-discograpy .col-3-box, .section-discograpy .col-2-box {
      display: block; } }
  .section-discograpy .col-3-box .item, .section-discograpy .col-2-box .item {
    width: 31%; }
    @media only screen and (max-width: 767px) {
      .section-discograpy .col-3-box .item, .section-discograpy .col-2-box .item {
        width: 100%;
        overflow: hidden;
        margin-bottom: 16px; }
        .section-discograpy .col-3-box .item:last-child, .section-discograpy .col-2-box .item:last-child {
          margin-bottom: 0; } }
    .section-discograpy .col-3-box .item a, .section-discograpy .col-2-box .item a {
      text-decoration: none; }
    .section-discograpy .col-3-box .item img, .section-discograpy .col-2-box .item img {
      width: 100%;
      height: auto;
      margin-bottom: 8px; }
      @media only screen and (max-width: 767px) {
        .section-discograpy .col-3-box .item img, .section-discograpy .col-2-box .item img {
          width: 40%;
          float: left;
          margin-bottom: 0; } }
    @media only screen and (max-width: 767px) {
      .section-discograpy .col-3-box .item .txt, .section-discograpy .col-2-box .item .txt {
        width: 60%;
        float: left;
        padding-left: 8px; } }
    .section-discograpy .col-3-box .item .tag, .section-discograpy .col-2-box .item .tag {
      background: #111;
      padding: 6px;
      color: #FFF;
      margin-bottom: 8px;
      width: 100px;
      text-align: center;
      font-size: 12px; }
      @media only screen and (max-width: 767px) {
        .section-discograpy .col-3-box .item .tag, .section-discograpy .col-2-box .item .tag {
          font-size: 10px;
          padding: 4px;
          width: 100px; } }
    .section-discograpy .col-3-box .item .title, .section-discograpy .col-2-box .item .title {
      margin-bottom: 8px;
      font-weight: bold; }
      @media only screen and (max-width: 767px) {
        .section-discograpy .col-3-box .item .title, .section-discograpy .col-2-box .item .title {
          font-size: 14px; } }
    .section-discograpy .col-3-box .item dl, .section-discograpy .col-2-box .item dl {
      overflow: hidden; }
      .section-discograpy .col-3-box .item dl dt, .section-discograpy .col-2-box .item dl dt {
        width: 70px;
        float: left;
        clear: both;
        font-weight: bold;
        font-size: 12px;
        background: #FFF;
        color: #111;
        padding: 6px;
        margin-bottom: 4px;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          .section-discograpy .col-3-box .item dl dt, .section-discograpy .col-2-box .item dl dt {
            font-size: 10px;
            width: 50px;
            padding: 4px; } }
      .section-discograpy .col-3-box .item dl dd, .section-discograpy .col-2-box .item dl dd {
        padding: 6px 0 6px 76px;
        font-size: 12px;
        margin-bottom: 4px;
        color: #111; }
        @media only screen and (max-width: 767px) {
          .section-discograpy .col-3-box .item dl dd, .section-discograpy .col-2-box .item dl dd {
            font-size: 10px;
            padding: 4px 0 4px 55px; } }

.section-discograpy .col-2-box {
  display: block;
  overflow: hidden; }
  .section-discograpy .col-2-box .item {
    float: left;
    margin-right: 32px; }
    .section-discograpy .col-2-box .item:last-child {
      margin-right: 0; }

/* セクション_NEWアルバム */
#section-new-album {
  background: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  padding: 32px; }
  @media only screen and (max-width: 767px) {
    #section-new-album {
      margin-bottom: 16px;
      padding: 16px 0; } }
  #section-new-album .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center; }
  #section-new-album .left {
    width: 50%; }
    #section-new-album .left img {
      width: 100%;
      height: auto; }
  #section-new-album .right {
    width: 50%;
    padding: 64px; }
    @media only screen and (max-width: 767px) {
      #section-new-album .right {
        padding: 16px 0 16px 16px; } }
    #section-new-album .right img {
      width: 100%;
      height: auto; }

/* セクション_news　*/
.section-news dl {
  overflow: hidden; }
  .section-news dl dt {
    width: 100px;
    float: left;
    clear: both;
    font-weight: bold;
    font-size: 14px;
    color: #ACAC9D;
    padding: 6px;
    margin-bottom: 8px; }
    @media only screen and (max-width: 767px) {
      .section-news dl dt {
        float: none;
        margin-bottom: 0;
        padding-left: 0;
        font-size: 12px; } }
  .section-news dl dd {
    padding: 4px 0 16px 130px;
    font-size: 12px;
    margin-bottom: 16px;
    color: #111;
    border-bottom: 1px dotted #CCC; }
    .section-news dl dd:last-child {
      border: none;
      padding-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .section-news dl dd {
        padding: 0 0 8px 0; } }
    .section-news dl dd .tag {
      background: #111;
      color: #FFF;
      padding: 4px;
      width: 100px;
      text-align: center;
      margin-bottom: 8px; }
      @media only screen and (max-width: 767px) {
        .section-news dl dd .tag {
          font-size: 10px;
          display: none; } }
    .section-news dl dd a {
      text-decoration: none; }
    .section-news dl dd h3 {
      margin-bottom: 4px;
      font-size: 18px;
      text-decoration: underline;
      line-height: 1.5; }
      @media only screen and (max-width: 767px) {
        .section-news dl dd h3 {
          font-size: 14px; } }
    .section-news dl dd p {
      color: #999; }
      @media only screen and (max-width: 767px) {
        .section-news dl dd p {
          line-height: 1.5; } }

/* セクション_biograpy　*/
.section-biograpy .item {
  overflow: hidden;
  margin-bottom: 32px; }
  @media only screen and (max-width: 767px) {
    .section-biograpy .item {
      margin-bottom: 16px; } }
  .section-biograpy .item:last-child {
    margin-bottom: 0; }
  .section-biograpy .item .img {
    width: 30%;
    float: left; }
    .section-biograpy .item .img img {
      width: 100%;
      height: auto; }
  .section-biograpy .item .txt {
    width: 70%;
    float: right;
    padding-left: 32px; }
    @media only screen and (max-width: 767px) {
      .section-biograpy .item .txt {
        padding-left: 16px;
        float: none;
        padding: 0;
        width: 100%; } }
    .section-biograpy .item .txt .name {
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 16px;
      line-height: 1.3; }
      @media only screen and (max-width: 767px) {
        .section-biograpy .item .txt .name {
          font-size: 16px;
          line-height: 1.3;
          float: right;
          width: 67%; } }
    .section-biograpy .item .txt p {
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        .section-biograpy .item .txt p {
          clear: both;
          padding-top: 10px; } }
    .section-biograpy .item .txt .sns {
      text-align: right; }

/* セクション_CONTACT　*/
#section-contact {
  padding: 64px 0; }
  @media only screen and (max-width: 767px) {
    #section-contact {
      padding: 40px 16px; } }
  #section-contact .contact-box {
    padding: 64px;
    max-width: 680px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3); }
    @media only screen and (max-width: 767px) {
      #section-contact .contact-box {
        max-width: auto;
        width: 100%;
        background: none;
        padding: 0; } }
    #section-contact .contact-box h2 {
      color: #FFF;
      border-color: #FFF; }
    #section-contact .contact-box .description {
      color: #FFF;
      margin-bottom: 16px; }
    #section-contact .contact-box form .tag {
      color: #FFF;
      margin-bottom: 8px; }
      #section-contact .contact-box form .tag span {
        font-size: 12px; }
    #section-contact .contact-box form input {
      margin-bottom: 16px;
      padding: 4px; }
      @media only screen and (max-width: 767px) {
        #section-contact .contact-box form input {
          width: 100%; } }
    #section-contact .contact-box form textarea {
      margin-bottom: 16px;
      width: 100%; }
    #section-contact .contact-box form .submit input {
      padding: 8px 32px;
      margin: 0 auto;
      background: linear-gradient(to bottom, white 0%, #f4f4f4 47%, #e2e2e2 100%); }
      #section-contact .contact-box form .submit input:hover {
        cursor: pointer; }


/*個人情報の取り扱い*/
.contact_page{
  background-color: #fff;
    padding: 1rem;
    margin-bottom: 1rem;
}
.contact_page .subtext {
  margin-bottom: 15px !important;
  font-weight: bold;
  font-size: .9rem;
  line-height: 1.6; }
.contact_page .l-container {
  margin-bottom: 3rem;
  letter-spacing: 2px; }
  .contact_page .l-container .protection {
    overflow-y: scroll;
    height: 350px;
    background: #FFF;
    padding: 0.5rem;
    margin-bottom: 1rem; }
    .contact_page .l-container .protection h3 {
      font-size: 1.1rem;
      padding: 0.6rem;
      color: #000;
      margin-bottom: 1.5rem;
      background: #eee;
      line-height: 1.6; }
    .contact_page .l-container .protection p {
      color: #000;
      text-align: left;
      font-size: .9rem;
      font-weight: normal;
      line-height: 1.6;
      margin-bottom: 10px; }
    .contact_page .l-container .protection h4 {
      text-align: left;
      margin-bottom: .6rem;
      font-size: 1rem;
      color: #000000;
      font-weight: bold;
      line-height: 1.6; }
    .contact_page .l-container .protection ul {
      margin-bottom: 2rem;
      line-height: 1.6;
      color: #333; }
      .contact_page .l-container .protection ul li {
        font-size: .9rem; }
    .contact_page .l-container .protection .adress {
      border-top: 2px solid #eee;
      margin-bottom: 2.5rem; }
.contact_page .checkbox {
  font-weight: bold;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 2px; }
  .contact_page input{
    margin: auto!important;
    margin-right: 10px!important;
  }
  @media only screen and (max-width: 767px) {
    .contact_page .l-container {margin-bottom: 1rem;}
    .contact_page .checkbox {font-size: .9rem;}
    .contact_page .wpcf7-list-item{
      margin-right: 0.5rem;
    }
    }


/* ------------------------------------------------- *
  *        ＠header
  * ------------------------------------------------- */
header {
  background: #111;
  overflow: hidden;
  padding: 32px 0; }
  @media only screen and (max-width: 767px) {
    header {
      padding: 16px 0; } }
  header .inner {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center; }
  header .h-logo {
    text-align: center;
    margin: 0 auto; }
    header .h-logo a {
      display: block; }
    header .h-logo img {
      width: 150px; }
      @media only screen and (max-width: 767px) {
        header .h-logo img {
          width: 120px; } }

#gnavi {
  background: #DDD; }
  @media only screen and (max-width: 767px) {
    #gnavi {
      display: none; } }
  @media only screen and (max-width: 992px) {
    #gnavi .inner {
      padding: 0; } }
  #gnavi ul {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    border-left: 1px solid #CCC; }
    #gnavi ul li {
      width: 25%; }
      #gnavi ul li a {
        color: #111;
        padding: 16px;
        display: block;
        text-decoration: none;
        border-right: 1px solid #CCC;
        text-align: center;
        font-size: 14px; }
        #gnavi ul li a:hover {
          color: #CCAC2B;
          transition: 0.2s linear; }

/* ------------------------------------------------- *
 *        ＠sidebar
 * ------------------------------------------------- */
/* ------------------------------------------------- *
  *        ＠footer
  * ------------------------------------------------- */
footer {
  background: #111;
  text-align: center;
  color: #FFF;
  padding: 64px 0; }
  @media only screen and (max-width: 767px) {
    footer {
      padding: 40px 0; } }
  @media only screen and (max-width: 767px) {
    footer .inner {
      padding: 0; } }
  footer .f-link {
    margin-bottom: 48px; }
    footer .f-link li {
      list-style: none;
      display: inline-block; }
      @media only screen and (max-width: 767px) {
        footer .f-link li {
          display: block;
          text-align: left; } }
      footer .f-link li a {
        color: #FFF;
        padding: 0 16px;
        font-size: 14px; }
        @media only screen and (max-width: 767px) {
          footer .f-link li a {
            display: block;
            padding: 16px;
            border-bottom: 1px solid #333;
            text-decoration: none;
            text-align: center; } }
        footer .f-link li a:hover {
          color: #CCAC2B;
          transition: 0.2s linear; }
  footer .f-logo {
    margin-bottom: 48px; }
    footer .f-logo img {
      width: 200px;
      margin: 0 auto; }
  footer .copylight {
    font-size: 12px; }

/* ------------------------------------------------- *
 *        ＠TOP
 * ------------------------------------------------- */
#section-top-firstview {
  height: 100vh;
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    #section-top-firstview {
      height: 100vh;
      padding: 30px 0; } }
  #section-top-firstview .logo {
    margin-bottom: 90px; }
    @media only screen and (max-width: 767px) {
      #section-top-firstview .logo {
        margin-bottom: 30px; } }
    #section-top-firstview .logo img {
      margin: 0 auto; }
      @media only screen and (max-width: 767px) {
        #section-top-firstview .logo img {
          width: 200px;
          height: auto; } }
  #section-top-firstview .txt {
    color: #FFF;
    padding: 45px;
    background: rgba(0, 0, 0, 0.2); }
    @media only screen and (max-width: 767px) {
      #section-top-firstview .txt {
        background: none;
        padding: 15px; } }
    #section-top-firstview .txt p {
      font-size: 18px;
      line-height: 2; }
      @media only screen and (max-width: 992px) {
        #section-top-firstview .txt p {
          font-size: 16px; } }
      @media only screen and (max-width: 767px) {
        #section-top-firstview .txt p {
          font-size: 12px; } }
  #section-top-firstview .scroll a {
    position: absolute;
    bottom: 30px;
    color: #FFF;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    text-decoration: none;
    padding-top: 70px; }
    #section-top-firstview .scroll a span {
      position: absolute;
      top: 0;
      left: 50%;
      width: 24px;
      height: 24px;
      margin-left: -12px;
      border-left: 1px solid #fff;
      border-bottom: 1px solid #fff;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
      -webkit-animation: sdb 1.5s infinite;
      animation: sdb 1.5s infinite;
      box-sizing: border-box; }

@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }

@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0; } }

#section-news-top {
  padding: 64px 0;
  background: #FFF; }
  @media only screen and (max-width: 767px) {
    #section-news-top {
      padding: 40px 0; } }

/* ------------------------------------------------- *
 *        ＠カテゴリページ
 * ------------------------------------------------- */
#cat-bg {
  padding: 36px 0; }
  @media only screen and (max-width: 767px) {
    #cat-bg {
      padding: 16px 0; } }

/* ------------------------------------------------- *
 *        ＠その他
 * ------------------------------------------------- */
