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

/* 共通部分
--------------------------- */
html {
	font-size: 100%;
}
body{
	font-family: 'Open Sans Condensed', sans-serif;
    font-family: "Helvetica Neue", Helvetica, Arials, sans;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.7;
	color: #fff;
    margin: 0;
    padding: 0;
}
a {
	text-decoration: none;
}
a:link	{
	color : #fff;
}
a:visited	{
	color : #fff;
} 
img {
	max-width: 100%;
}

#HOME {
	width: 1200px;
}
/* HEADER
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.page-header {
	width: 100%;
	color: #fff;
}
.logo {
	display: block;
	padding-left: 10%;
	padding-top: 8%;
}
img.logo {
	width: 420px;
}
p.logo {
	font-family: 'Allura', cursive;
	text-align: left;
	font-size: 1.3rem;
	letter-spacing: 0.2rem;
	padding-left: 15%;
	padding-top: 0;
	margin-top: -20px;
}

.main-nav {
	margin: auto;
	font-family: 'Aleo', serif;
	font-size: 0.9rem;
	margin-top: 80px;
	text-align: left;
	letter-spacing: 0.2rem;
	line-height: 2.5;
	list-style: none;
	padding-left: 23%;
}
.main-nav li {
	margin: auto;
}
.main-nav a {
	color: #fff;
}
.main-nav a:hover {
	color: #b0941e;
}
.sns-icon {
	display: flex;
	width: 180px;
	margin: auto;
	list-style: none;
	margin-top: 20px;
	margin-left: 22%;
}
.sns-icon li {
	margin: auto;
}
.sns-icon li;hover {
	opacity: 0.5;
}
.wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
.page-header {
	width: 100%;
	color: #fff;
}
.logo {
	display: block;
	padding-top: 40%;
}
img.logo {
	width: 70%;
	display: block;
	margin: auto;
}
p.logo {
	font-family: 'Allura', cursive;
	text-align: center;
	font-size: 1.3rem;
	letter-spacing: 0.1rem;
	margin-top: -20px;
	padding-top: 0;
}

.main-nav {
	display: none;
}
.sns-icon {
	display: flex;
	width: 200px;
	margin: auto;
	list-style: none;
	margin-top: 35px;
}
.sns-icon li {
	margin: auto;
}
.sns-icon li;hover {
	opacity: 0.5;
}
.wrapper {
	max-width: 100%;
	margin: 0 auto;
	padding: 0;
}
}


/* スクロールバー
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.scroll {
	margin-top: 350px;
	margin-bottom: 300px;
	text-align: center;
}
a span {
  position: absolute;
  top: 500px;
  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;
  }
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
.scroll {
	text-align: center;
	margin-bottom: 600px;
}
a span {
  position: absolute;
  top: 80%;
  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;
  }
}
}


/* 大きな背景
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.big-bg {
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
	background-attachment: fixed;
}
#home {
	background-image: url(../images/Danrok-top-2.jpg);
}
}
@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
body:before{
  content:"";
  display:block;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
  width:100%;
  height:100vh;
  background:url(../images/Danrok-top-2.jpg);
  background-color: #000;
  background-size: 173%;
  background-position: right 0px top 250px;
	background-repeat: no-repeat;
}
}

/* タイトル
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.title {
    font-size: 3rem;
	font-weight: normal;
	font-family: 'Oswald', sans-serif;
    text-align: center;
    color: #202020;
    text-transform: uppercase;
    letter-spacing: 1rem;
	margin-top: 120px;
  }
h2 span {
	display: block;
  margin: 11px 0 17px 0;
  color: #f1ebe5;
  text-shadow: 0 13.36px 8.896px #c4b59d,0 -2px 1px #fff;
}
}
@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
.title {
	margin-top: 100px;
    font-size: 1.8rem;
	font-weight: normal;
	font-family: 'Oswald', sans-serif;
    text-align: center;
    color: #202020;
    text-transform: uppercase;
    letter-spacing: 0.5rem;
  }
h2 span {
	display: block;
  margin: 11px 0 17px 0;
  color: #f1ebe5;
  text-shadow: 0 13.36px 8.896px #c4b59d,0 -2px 1px #fff;
}
}

/* ホームコンテンツ
--------------------------- */	
.home-content wrapper {
	width: 100%;
}
/* ボタン
--------------------------- */	

/* ボタン
--------------------------- */	
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
@import url(https://fonts.googleapis.com/css?family=Roboto);
.fuller-button {
	font-family: "Helvetica Neue", Helvetica, Arials, sans;
  color: white;
  background: none;
  border-radius: 0;
  padding: 0.8em 1em;
  letter-spacing: 0.2em;
  font-size: 1.05em;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  margin: 1em;
}
}
@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
@import url(https://fonts.googleapis.com/css?family=Roboto);
.fuller-button {
	width: 100%;
	font-family: "Helvetica Neue", Helvetica, Arials, sans;
  color: white;
  background: none;
  border-radius: 0;
  padding: 0.8em 1em;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
  margin: auto;
}
}
.fuller-button.blue {
  box-shadow: inset 0 0 1em rgba(0, 170, 170, 0.5), 0 0 1em rgba(0, 170, 170, 0.5);
  border: #0dd solid 1px;
}
.fuller-button.blue:hover {
  background-color: #0dd;
  box-shadow: inset 0 0 0 rgba(0, 170, 170, 0.5), 0 0 1.5em rgba(0, 170, 170, 0.7);
}
.fuller-button.red {
  box-shadow: inset 0 0 1em rgba(251, 81, 81, 0.4), 0 0 1em rgba(251, 81, 81, 0.4);
  border: #eed13f solid 1px;
}
.fuller-button.red:hover {
  background-color: #eed13f;
  box-shadow: inset 0 0 0 rgba(251, 81, 81, 0.4), 0 0 1.5em rgba(251, 81, 81, 0.6);
}
.fuller-button.white {
  box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 0.3), 0 0 0.8em rgba(255, 255, 255, 0.3);
  border: #fff solid 1px;
}
.fuller-button.white:hover {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.8);
  box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.5);
}

.pure-form .pure-control-group label {
  text-align: left;
  position: absolute;
  left: 0;
  top: 15%;
  z-index: 0;
  letter-spacing: 0;
  margin: 0 1em;
}

.pure-form .pure-control-group input {
  background: none;
  box-shadow: none;
  padding-left: 0;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 1;
  color: #fff;
}

.pure-form .pure-control-group input:focus {
  border-bottom: 2px solid white;
}

.pure-form .pure-control-group textarea {
  background: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  border-left: 2px solid rgba(255, 255, 255, 0.4);
  resize: none;
  height: 8em;
  color: #fff;
}

.pure-form .pure-control-group textarea:focus {
  border-left: 2px solid white;
}

.pure-form .pure-control-group input[type=email]:focus:invalid {
  color: #fff;
}

.pure-form .pure-control-group input[type=email]:invalid {
  color: #fb5454;
}

.pure-form button {
  margin: 0.5em 1em;
}



/* YouTube
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.m-content {
	display: flex;
	width: 100%;
	margin: auto;
	margin-top: 30px;
	background-color: rgba(0,0,0,0.5);
}
.movie-wrap {
	width: 560px;
	padding: 50px;
	margin: auto;
}
.YouTube-content {
	width: 40%;
	margin: auto;
}
h1.YouTube-t {
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.2rem;
	text-align: center;
	text-shadow: 1px 1px 1px #FFF;
	color: #b0941e;
	padding-bottom: 35px;
	margin-bottom: 35px;
	border-bottom: solid;
	border-color: #CCC;
	border-width: 1px;
}
.YouTube-content p {
	margin: 15px;
	letter-spacing: 0.1rem;
	font-size: 0.9rem;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
.m-content {
	display: block;
	width: 100%;
	margin: auto;
	margin-top: 30px;
	background-color: rgba(0,0,0,0.7);
}
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
 
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}
.YouTube-content {
	width: 85%;
	margin: auto;
	padding: 3px;
}
h1.YouTube-t {
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1rem;
	text-align: center;
	text-shadow: 1px 1px 1px #FFF;
	color: #b0941e;
	padding-bottom: 35px;
	margin-top: 30px;
	margin-bottom: 35px;
	border-bottom: solid;
	border-color: #CCC;
	border-width: 1px;
}
.YouTube-content p {
	margin: auto;
	margin: 15px;
	letter-spacing: 0.1rem;
	margin-bottom: 30px;
	font-size: 0.8rem;
}
}

/* schedule
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.schedule {
	width: 100%;
	margin: auto;
}
.ticket {
	width: 500px;
	margin: auto;
}
.s-c {
	width: 330px;
	background-color: rgba(255,255,255,0.2);
	margin: auto;
	margin-top: 40px;
	margin-bottom: 50px;
	padding: 40px;
	box-shadow: 4px 4px 2px #CCC;
}
.s-c h5{
	font-size: 0.85rem;
	letter-spacing: 0.1rem;
	padding-bottom: 10px;
	color: #DCDCDC;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}
.s-c h4{
	font-size: 1.25rem;
	color: #DCDCDC;
	letter-spacing: 0.1rem;
	padding-left: 8px;
	line-height: 35px;
	border-left-width: 8px;
	border-left-style: solid;
	border-color: #DCDCDC;
	border-bottom-style: dashed;
	border-bottom-width: 0.2px;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}
.s-c p{
	font-size: 0.85rem;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 14px;
}
.s-content {
	display: flex;
    justify-content: center;
	margin-top: 10px;
	background-color: rgba(0,0,0,0.5);
}
span.bold {
	font-weight: bold;
}
}
@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
.schedule {
	width: 100%;
	margin: auto;
}
.ticket {
	width: 85%;
	margin: auto;
}
.s-c {
	width: 85%;
	background-color: rgba(255,255,255,0.2);
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 40px;
	box-shadow: 3px 3px 4px #CCC;
}
.s-c h5{
	font-size: 0.85rem;
	padding-bottom: 10px;
	color: #DCDCDC;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}
.s-c h4{
	font-size: 1.15rem;
	color: #DCDCDC;
	letter-spacing: 0.1rem;
	padding-left: 8px;
	line-height: 35px;
	border-left-width: 8px;
	border-left-style: solid;
	border-color: #DCDCDC;
	border-bottom-style: dashed;
	border-bottom-width: 0.2px;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
}
.s-c p{
	font-size: 0.8rem;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 14px;
}
.s-content {
	display: block;
	width: 100%;
	margin: auto;
	margin-top: 10px;
	padding: 3px;
	background-color: rgba(0,0,0,0.7);
}
span.bold {
	font-weight: bold;
}
}

/* DISCOGRAPHY
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.discography {
	margin: auto;
}
.d-content {
	display: flex;
	justify-content: center; 
	width: 100%;
	margin: auto;
	margin-top: 10px;
	color: #fff;
	background-color: rgba(0,0,0,0.5);
}
.cd-c {
	width: 330px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 30px;
	background-color: rgba(255,255,255,0.3);
	box-shadow: 3px 3px 4px #CCC;
}
p.album {
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
	font-size: 0.7rem;
	letter-spacing: 0.2px;
	text-align: left;
}
h4.album-title{
	font-size: 1.3rem;
	color: #b0941e;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
	margin-top: 30px;
	text-align: left;
	letter-spacing: 0.2rem;
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
}
p.price {
	font-size: 0.65rem;
	text-align: left;
}
	
.cd-c p{
	text-align: center;
	letter-spacing: 0.2rem;
	font-size: 0.85rem;
	margin-top: 20px;
	margin-bottom: 10px;
	padding-bottom: 5px;
	text-align: left;
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
}
img.cd-j{
	display: block;
	margin: auto;
}
h3.cd-icon {
	display: flex;
	margin: auto;
}
img.amazon {
	display: block;
	margin: auto;
	margin:10px;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/	
.discography {
	margin: auto;
}
.d-content {
	display: block;
	width: 100%;
	margin: auto;
	margin-top: 10px;
	padding: 3px;
	color: #fff;
	background-color: rgba(0,0,0,0.7);
}
.cd-c {
	width: 85%;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	padding: 30px;
	background-color: rgba(255,255,255,0.3);
	box-shadow: 3px 3px 4px #CCC;
}
p.album {
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
	font-size: 0.7rem;
	letter-spacing: 0.2px;
	text-align: left;
}
h4.album-title{
	font-size: 1.3rem;
	color: #b0941e;
	text-shadow: 2px 2px 1px rgba(0,0,0,0.5);
	margin-top: 30px;
	text-align: left;
	letter-spacing: 0.2rem;
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
}
p.price {
	font-size: 0.65rem;
	text-align: left;
}
	
.cd-c p{
	text-align: center;
	letter-spacing: 0.2rem;
	font-size: 0.8rem;
	margin-top: 20px;
	margin-bottom: 20px;
	padding-bottom: 5px;
	text-align: left;
	border-bottom-style: solid;
	border-color: #fff;
	border-width: 0.3px;
}
img.cd-j{
	display: block;
	margin: auto;
}
h3.cd-icon {
	display: flex;
	margin: auto;
}
img.amazon {
	margin: 10px;
}
}
	
/* PROFILE
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.p-content {
	display: flex;
	width: 100%;
	margin: auto;
	background-color: rgba(0,0,0,0.5);
}
.p-content p{
	width: 500px;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
}
img.p-img {
	display: block;
	margin: auto;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
.p-content {
	display: block;
	width: 100%;
	margin: auto;
	padding: 3px;
	background-color: rgba(0,0,0,0.7);
}
.p-content p{
	width: 90%;
	margin: auto;
	margin-top: 50px;
	margin-bottom: 50px;
	font-size: 0.85rem;
	letter-spacing: 0.1rem;
	line-height: 1.9;
}
img.p-img {
	width: 70%;
	height: 70%;
	display: block;
	margin: auto;
}
}

/* SNS
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.SNS {
	width: 100%;
	margin: auto;
	margin-top: 50px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.2rem;
}
.sns-content {
	width: 100%;
	margin-bottom: 50px;
	padding-top: 50px;
	padding: 50px;
	background-color: rgba(0,0,0,0.5);
}
.f-box {
	width: 315px;
	margin: auto;
}
.sns-title {
	margin: 15px;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
.SNS {
	width: 100%;
	margin: auto;
	margin-top: 50px;
}
.sns-content {
	width: 100%;
	margin: auto;
	margin-bottom: 50px;
	padding-top: 50px;
	padding-bottom: 50px;
	background-color: rgba(0,0,0,0.7);
}
.f-box {
	width: 315px;
	margin: auto;
}
.f-box iframe {
	margin: auto;
}
.sns-title {
	margin: 5px;
	text-align: left;
	font-size: 1rem;
}
}

/* MORE
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.more {
	width: 100%;
	margin: auto;
	border-style: solid;
	border-color: #999;
	border-width: 2px;
	text-align: center;
	margin-top: 20px;
}
p.more a{
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1rem;
	padding: 5px;
	letter-spacing: 0.5rem;
}
}

@media screen and (max-width: 479px) { /*ウィンドウ幅が最大479pxまでの場合に適用*/
.more {
	width: 100%;
	margin: auto;
	border-style: solid;
	border-color: #999;
	border-width: 0.7px;
	text-align: center;
	margin-top: 20px;
}
p.more a{
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 0.8rem;
	padding: 5px;
	letter-spacing: 0.7rem;
}
}

/* 問い合わせフォーム
--------------------------- */
@media screen and (min-width: 767px) { /*ウィンドウ幅が767px以上の場合に適用*/
.contact {
	width: 100%;
	height: 1000px;
	margin: auto;
}

}
/* モバイル版
--------------------------- */	
@media (max-width: 600px) {
	/* ヘッダー　*/
.page-header {
	width: 100%;
	height: 30px;
}

}