@charset "utf-8";
/*-----------------------------------------------------

  BASE

----------------------------------------------------- */
body {
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #4d4d4d;
  background: #fff;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
}
img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}
._sp {
  display: none !important;
}
a {
  text-decoration: none;
  color: #000;
}
li {
  list-style: none;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  margin: 20px 0 !important;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/*-----------------------------------------------------

  inner

----------------------------------------------------- */
.inner {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.page-inner {
  max-width: 600px;
  margin: auto;
  margin-bottom: 60px;
}
/*-----------------------------------------------------

  CLEARFIX

----------------------------------------------------- */
*:first-child + html .clearFix {
  display: inline-block;
} /* for IE7 */
.clearFix:after {
  content: " ";
  display: block;
  visibility: hidden;
  clear: both;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
}
* html .clearFix {
  display: inline-block;
}
/* no ie mac \*/
* html .clearFix {
  height: 1%;
}
.clearFix {
  display: block;
}
/* */
/*-----------------------------------------------------

パンクズ

----------------------------------------------------- */
.breadcrumbs {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  font-size: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 40px;
}
.breadcrumbs span {
  text-align: left;
  margin-right: 2px;
}
.breadcrumbs span[property="name"] {
  display: inline-block;
  padding: 0;
  margin-top: -3px;
  vertical-align: middle;
  max-width: 60px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*-----------------------------------------------------

loading-animation

----------------------------------------------------- */
#loading-animation-js {
  /*fixedで全面に固定*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #333;
  text-align: center;
  color: #fff;
}
/* Loading画像中央配置　*/
#loading-animation-Logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Loading アイコンの大きさ設定　*/
#loading-animation-Logo img {
  width: 260px;
}
/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----------------------------------------------------

header

----------------------------------------------------- */
.header-Wrapper {
  padding: 10px 0px;
  background-color: rgba(0, 0, 0, .8);
  display: block;
  position: fixed;
  z-index: 99;
  width: 100%;
}

.header-Wrapper.inPage {
	position: relative;
	background-color: rgba(0, 0, 0, .8);
}

.header-Content {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-ul-Page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-link-sns > * {
  font-family: FontAwesome;
}
.header-ul-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  line-height: 1;
  margin-bottom: 20px;
}
.header-link-sns {
  margin-right: 15px;
}
.header-link-sns:last-child {
  margin-right: 0px;
}
.sns-Icon {
  font-size: 20px;
  color: #fff;
}
.icon-Facebook::before {
  content: "\f082";
}
.icon-Twitter::before {
  content: "\f081";
}
.icon-Instagram::before {
  content: "\f16d";
}
.icon-Youtube::before {
  content: "\f167";
}
.header-ul-Page .header-link-Page a {
  color: #FFF;
  font-size: 12px;
  font-family: "Arial";
  text-transform: uppercase;
}
.header-ul-Page .header-link-Page {
  margin-right: 45px;
  line-height: 1;
}
.header-ul-Page .header-link-Page:last-child {
  margin-right: 0px;
}
/*ハンバーガー　ver2*/
.header-Menu-sp .spNav01 li {
  border-bottom: 1px solid #ddd;
  width: 100%;
  padding: 0px;
  text-align: left;
}
.menu-open-Btn span:nth-of-type(1) {
  top: 4px;
}
.menu-open-Btn span:nth-of-type(2) {
  top: 14px;
}
.menu-open-Btn span:nth-of-type(3) {
  bottom: 4px;
}
.header-nav {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  width: 80%;
  background: #333;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.menu-open-Btn {
  display: block;
  position: absolute;
  top: 50%;
  right: 5%;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
  transform: translateY(-50%);
  -webkit- transform: translateY(-50%);
}
.menu-open-Btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.open .menu-open-Btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}
.open .menu-open-Btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(45deg);
  transform: translateY(-10px) rotate(45deg);
}
.open .menu-open-Btn span {
  background-color: #fff;
}
.menu-open-Btn span:nth-of-type(1) {
  top: 4px;
}
.menu-open-Btn span:nth-of-type(2) {
  top: 14px;
}
.open .menu-open-Btn span:nth-child(2) {
  opacity: 0;
}
.menu-open-Btn span:nth-of-type(3) {
  bottom: 4px;
}
.header-Menu-sp .header-nav {
  padding: 0;
}
.open .header-nav {
  left: 0;
  opacity: 1;
}
.header-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.header-nav ul li a {
  display: block;
  color: #FFFFFF;
  font-size: 14px;
  padding: 0.7em;
  text-decoration: none;
  transition-duration: 0.2s;
  font-weight: bold;
  text-transform: uppercase;
}
#mask {
  display: none;
  transition: all .5s;
}
.open .header-nav {
  left: 0;
  opacity: 1;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}
.header-Menu-sp li a::after {
  content: "\f105";
  font-family: FontAwesome;
  color: #FFFFFF;
  font-weight: normal;
  position: absolute;
  right: 10px;
}
._sp {
  display: none !important;
}
._pc {
  display: block !important;
}
.header-Menu-sp .header-ul-sns {
  justify-content: center;
}
.header-Menu-sp .header-ul-sns li a::after {
  content: none;
}
.header-Menu-sp .header-ul-sns li {
  margin-right: 0px;
}
.header-Menu-sp .header-ul-sns li a {
  padding: 15px;
}
.header-Logo {
  width: 200px;
  min-width: 200px;
}
@media screen and (max-width:1200px) {
  .inner {
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width:980px) {
  ._sp {
    display: block !important;
  }
  ._pc {
    display: none !important;
  }
  .header-Logo {
    max-width: auto;
	  width: 60%;
    min-width: 100px;
	  position: relative;
	  top: 3px;
  }
}
/*-----------------------------------------------------

footer

----------------------------------------------------- */
.footer-Wrapper {
  background-image: url("../images/common/footer-back.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
}
.footer-ul-Link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1;
  margin-bottom: 50px;
}
.footer-link-Page a {
  color: #fff;
  text-transform: uppercase;
  font-family: "Arial";
  font-size: 12px;
}
.footer-link-Page {
  margin-right: 40px;
}
.footer-link-Page:last-child {
  margin-right: 0px;
}
.footer-ul-sns {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 70px;
}
.footer-logo {
  margin-bottom: 15px;
  text-align: center;
}
.footer-logo img {
  max-width: 200px;
}
.footer-link-sns .sns-Icon {
  font-family: FontAwesome;
}
.footer-link-sns {
  margin-right: 15px;
}
.footer-link-sns:last-child {
  margin-right: 0px;
}
.footer-text-Box {
  text-align: center;
}
.footer-text-Box .footer-text {
  font-size: 9px;
  color: #fff;
  line-height: 1.8;
}
.copyright {
  font-size: 9px;
  font-family: "Arial";
  color: #fff;
}
@media screen and (max-width:767px) {
  .footer-Wrapper {
    padding: 30px 0px;
    background-position: top;
  }
  .footer-ul-Link {
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    width: 100%;
    margin-bottom: 20px;
  }
  .footer-link-Page {
    width: calc(100% / 2);
    margin-right: 0px;
    text-align: left;
    margin-bottom: 20px;
    position: relative;
  }
  .footer-link-Page a {
    display: block;
  }
  .footer-link-Page a::after {
    content: "\f105";
    font-family: FontAwesome;
    color: #FFFFFF;
    font-weight: normal;
    position: absolute;
    right: 15px;
  }
  .footer-ul-sns {
    margin-bottom: 30px;
    width: 100%;
    justify-content: center;
  }
  .footer-link-sns {
    margin-right: 20px;
  }
  .sns-Icon {
    font-size: 30px;
    color: #fff;
  }
  .footer-text-Box .footer-text {
    font-size: 11px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .copyright {
    font-size: 11px;
    line-height: 1.5;
  }
}
/*-----------------------------------------------------

  contact

----------------------------------------------------- */
.contact-Table {
  width: 100%;
}
.contact-Table th {
  width: 100%;
  display: block;
  text-align: left;
  font-size: 15px;
  margin-bottom: 10px;
  line-height: 1;
}
.contact-Table th .red-Asterisk {
  color: #cc0000;
}
.contact-Table td {
  width: 100%;
  display: block;
  text-align: left;
}
.contact-Table tr {
  border-bottom: 1px solid #999;
  margin-bottom: 30px;
  display: block;
  padding-bottom: 30px;
}
.contact-Table tr:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 50px;
}
.name-Text, .mail-Address, .tell-Number {
  width: 100%;
  display: block;
  background-color: #e6e6e6;
  line-height: 1;
  padding: 10px;
  border: none;
  margin-bottom: 10px;
}
.contact-table-Text {
  font-size: 11px;
  line-height: 1.8;
}
.contact-text-Area {
  line-height: 1.8;
  width: 100%;
  display: block;
  background-color: #e6e6e6;
  border: none;
  margin-bottom: 10px;
}
.contact-Dropdown {
  padding: 5px;
  line-height: 1;
  border: 1px solid #999;
  border-radius: 0px;
}
.contact-send-Botann {
  font-size: 15px;
  color: #fff;
  display: block;
  line-height: 1;
  background-color: #000;
  border: 1px solid #000;
  margin: auto;
  width: 300px;
  padding: 20px 0px;
  transition: all 0.3s ease 0s;
}
.contact-send-Botann:hover {
  text-decoration: none;
  background-color: #fff;
  color: #000;
}
/*-----------------------------------------------------

  ディスコグラフィー

----------------------------------------------------- */
.discography-main-Content {
  margin-bottom: 40px;
}
.discography-title-Catchcopy {
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.8;
  margin-bottom: 5px;
}
.discography-title-H3 .news-day {
  display: block;
  line-height: 1;
  font-size: 12px;
  margin-bottom: 10px;
}
.discography-title-H3 {
  font-size: 24px;
  margin-bottom: 30px;
  display: block;
}
.music-list-Title {
  text-align: left;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #333;
  font-size: 18px;
  box-sizing: border-box;
}
.music-name-List {
  margin-bottom: 40px;
  text-align: left;
}
.music-name-List li {
  list-style: inside decimal;
  line-height: 1.8;
  margin-bottom: 10px;
}
.music-name-List li:last-child {
  margin-bottom: 0px;
}
.price-Table {
  width: 100%;
  margin-bottom: 40px;
}
.single-content-Box {
  margin-bottom: 40px;
}
.single-content-Box.news-Content p {
  font-size: 15px;
  text-align: left;
  margin-bottom: 20px;
}
.single-content-Box.news-Content p:last-child {
  margin-bottom: 0px;
}
.thumbnail-img-Box {
  width: 100%;
  margin-bottom: 30px;
}
.price-Table tr {
  border-top: 1px solid #333;
}
.price-Table tr:last-child {
  border-bottom: 1px solid #333;
}
.price-Table th {
  width: 30%;
  vertical-align: middle;
}
.price-Table td {
  width: 70%;
  padding: 15px 10px;
  text-align: left;
  box-sizing: border-box;
}
.discography-main-Content p {
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
}
.archive-tern-Botann {
  border: 1px solid #333;
  line-height: 1;
  width: 160px;
  background-color: #fff;
  padding: 10px 0px;
  font-size: 11px;
  margin: auto;
  display: block;
  transition: all 0.3s ease 0s;
}
.archive-tern-Botann:hover {
  background-color: #333;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width:767px) {
  .archive-tern-Botann {
    width: 80%;
    padding: 15px 0px;
    font-size: 12px;
  }
  .contact-send-Botann {
    width: 80%;
  }
  .contact-table-Text {
    font-size: 11px;
    line-height: 1.8;
    margin-bottom: 10px;
  }
  .contact-table-Text:last-child {
    margin-bottom: 0px;
  }
  .price-Table th {
    width: 100%;
    vertical-align: middle;
    display: block;
    padding: 10px 0px;
    background-color: #333;
    color: #fff;
  }
  .price-Table td {
    width: 100%;
    padding: 20px 10px;
    text-align: left;
    box-sizing: border-box;
    display: block;
    line-height: 1.8;
  }
}