@charset "utf-8";

* {
  -webkit-appearance: none;
}

html {
  width: 100%;
  height: 100%;
  margin:0 auto;
  overflow-y: scroll;
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0;
  color: #333;
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  margin: 0;
}

h2, h3 {
  color: #000;
  opacity: .8;
  font-family: 'Old Standard TT', serif;
}

h2 {
  font-size: 220%;
  margin: 25px 0 10px;
}

p {
  margin: 0;
}

ul,
ol {
  padding: 0;
  margin: 0;  
}

a {
  color: rgba(19,174,103,1);
}

a:hover {
  opacity: .8;
}

.container {
  width: 90%;
  max-width: 1260px;
  margin: 0 auto;
}

.panel {
  display: inline-block;
  vertical-align: top;
}

.blue {
  color: #00afec;
}

.yellow {
  color: #ffe700;
}

.red {
  color: #ea0017;
}

.green {
  color: #00a856;
}

.error {
  color: rgba(215,0,81,1);
  font-size: small;
  margin: 5px 0 0;
}

.center {
  text-align: center;
}

.rotate:hover{
  opacity: 0.8;
  transform: rotate(1deg);
}

.loader_wrap {
  width: 100vw;
  height: 100vh;
  background-color: rgba(0,0,0,1);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  //display: none;
}

.loader_wrap .loading {
  width: 250px;
  height: auto;
  margin: 42vh auto;
  -webkit-animation:blink 1.5s ease-in-out infinite alternate;
  -moz-animation:blink 1.5s ease-in-out infinite alternate;
  animation:blink 1.5s ease-in-out infinite alternate;
}

.loader_wrap .loading img {
  width: 100%;
  height: auto;
}

@-webkit-keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}
@-moz-keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}
@keyframes blink{
  0% {opacity:0;}
  100% {opacity:1;}
}

.underline-move {
  text-decoration: none;
  position: relative;
  display: inline-block;
  padding: 1px 0;
}
.underline-move:hover {
  opacity: .8;
}
.underline-move::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	-webkit-transform: scaleX(0);
	-ms-transform: scaleX(0);
	transform: scaleX(0);
	background-color: rgba(19,174,103,1);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
a.underline-move:hover::after {
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}

.mt15 {
  margin-top: 15px;
}

.mt25 {
  margin-top: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 94%;
  font-size: 100%;
  padding: 8px 3%;
  border: #dedede 1px solid;
  border-radius: 3px;
}

select {
  margin: 0 0 10px;
}

textarea {
  width: 94%;
  min-height: 60px;
  padding: 8px 3%;
  border: #dedede 1px solid;
  border-radius: 3px;
  resize: vertical;
  box-sizing: inherit;
}

textarea.higher {
  min-height: 120px;
}

input[type="submit"] {
  width: 300px;
  font-size: 110%;
  margin: 15px auto 0;
  padding: 16px 5px 14px;
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  letter-spacing: 1px;
  cursor: pointer;
  background-color: rgba(215,0,81,1);
}

input[type="submit"]:hover {
  opacity: .8;
}

#gnavi {
  background-color: rgba(0, 0, 0, .7);
}

#gnavi a {
  width: calc(100% / 5);
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 12px 0 10px;
  text-decoration: none;
  font-size: 110%;
  font-family: 'Old Standard TT', serif;
}

#gnavi a:hover {
  background-color: rgba(0, 0, 0, .4);
}

#profile #gnavi a.profile,
#schedule #gnavi a.schedule,
#discography #gnavi a.discography,
#goods #gnavi a.goods,
#contact #gnavi a.contact {
  background-color: rgba(0, 0, 0, .6);
}

#profile #gnavi a.profile:hover,
#schedule #gnavi a.schedule:hover,
#discography #gnavi a.discography:hover,
#goods #gnavi a.goods:hover,
#contact #gnavi a.contact:hover {
  background-color: rgba(0, 0, 0, .9);
}

#breadcrumb {
  padding: 7px 0 2px;
  background-color: #efefef;
}

#breadcrumb li {
  font-size: .8rem;
}

#breadcrumb li:after {
  content: '>';
  margin: 0 .4em 0;
}

#breadcrumb li:last-child:after {
  content: '';
  margin: 0;
}

article {
  padding: 35px 0 65px;
  background-color: rgba(255, 255, 255, .7);
  overflow: hidden;
}

article .main {
  width: 70%;
}

article .main .more {
  clear: both;
  text-align: center;
  padding: 40px 0 0;
}

article .main .more a {
  width: 40%;
  display: inline-block;
  color: #fff;
  font-size: 85%;
  padding: 18px 8px 14px;
  text-decoration: none;
  background-color: rgba(0, 0, 0, .8);
  border-bottom: 4px solid #ccc;
  border-radius: 3px;
}

article .sub {
  width: 25%;
  margin: 0 0 0 5%;
}

article .sub .content {
  margin: 0 0 30px;
}

article .sub .catch {
  width: 100%;
}

article .sub #sns .icon {
  width: calc(100% / 5);
  text-align: center;
  position: relative;
}

article .sub #sns .icon a {
  display: block;
}

article .sub #sns .icon img {
  width: 80%;
}

.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.pagetop i {
  color: #888;
  font-size: 280%;
  display: block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  opacity: .8;
}

#powerTip {
  font-size: 80%!important;
  opacity: .9!important;
}

footer {
  color: #fff;
  text-align: center;
  padding: 30px 0;
  background-color: rgba(0, 0, 0, .8);
}

footer nav {
  margin: 0 0 15px;
}

footer nav a {
  color: #fff;
  font-size: 85%;
  margin: 0 5px;
}

/*
 ** home
 */
#home header {
 width: 100%;
 min-height: 600px;
 background: linear-gradient(-45deg, rgba(4, 114, 124, 0.2), rgba(17, 66, 99, 0.4));
 position: relative;
 padding: 0!important;
}

#home header video {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  background: url('../images#home/kv.png') no-repeat;
  background-size: cover;
}

#home header #logo {
  position: absolute;
  z-index: 2;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#home article .tour {
  margin: 0 0 15px;
  display: block;
}

#home article .tour img {
  width: 100%;
}

#home article .tour.sp {
  display: none;
}

#home article .main #twitter,
#home article .main #youtube {
  padding: 30px 30px;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 5px;
  overflow: hidden;
}

#home article .main #twitter iframe {
  height: 700px!important;
  border: solid 1px #ccc!important;
}

#home article .main #twitter iframe .timeline-Tweet-text {
  font-size: 80%!important;
}

#home article .main #youtube div {
  width: calc((100% - 12%) / 3);
  margin: 10px 2%;
  float: left;
}

#home article .main #youtube div iframe {
  width: 100%;
}

#home article .main #youtube div p {
  color: #888;
  font-size: 80%;
}

#home article .sub {
  margin-top: 84px;
}

/*
 ** other
 */
header {
  padding: 28px 0 22px;
  background: rgba(0, 0, 0, .9);
}

header #logo {
  width: 16%;
  margin: 0 auto;
}

header #logo img {
  width: 100%;
  height: auto;
}

article h1 {
  font-size: 260%;
  color: #000;
  opacity: .8;
  font-family: 'Old Standard TT', serif;
  margin: 0 0 15px;
}

article h1 small {
  font-size: 50%;
}

article .sub {
  margin-top: 20px;
}

/*
 ** profile
 */
#profile article .kv {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

#profile article p {
  font-size: 90%;
  margin: 0 0 1.5ex;
}

#profile article p.first {
  color: #fff;
  font-size: 110%;
  line-height: 1.7;
  background-color: #000;
  padding: 14px 16px;
}

#profile article p.year {
  font-size: 100%;
  margin: 25px 0 10px;
  padding: 3px 10px;
  border-left: solid 8px #ccc;
  background-color: #efefef;
}

#profile article .member img {
  width: 100%;
  height: auto;
  margin: 0 0 20px;
}

#profile article .members {
  width: 100%;
}

#profile article .members a {
  /*width: calc(94% / 4); 4分割*/
  width: calc(94.42% / 3);
  margin: 0 2% 0 0;
  position: relative;
}

#profile article .members a:last-child {
  margin: 0;
}

#profile article .members a img {
  width: 100%;
  height: auto;
}

#profile article .members a h3 {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, .8);
}

#profile article .members .akashi h3 {
  border-bottom: solid 3px #00afec;
}

#profile article .members .kanasa h3 {
  border-bottom: solid 3px #ffe700;
}

#profile article .members .akino h3 {
  border-bottom: solid 3px #ea0017;
}

#profile article .members .aiki h3 {
  border-bottom: solid 3px #00a856;
}

#profile.member article .kv {
  margin: 0 0 25px;
}

#profile.member.akashi article .kv {
  border-bottom: solid 5px #00afec;
}

#profile.member.kanasa article .kv {
  border-bottom: solid 5px #ffe700;
}

#profile.member.akino article .kv {
  border-bottom: solid 5px #ea0017;
}

#profile.member.aiki article .kv {
  border-bottom: solid 5px #00a856;
}

#profile.member article .text ul {
  padding: 0 0 0 1.2em;
  margin: 0 0 20px;
}

#profile.member article .text ul li {
  margin: 0 0 5px;
}

#profile.member article .text p {
  line-height: 1.7;
}

/*
 ** schedule
 */
#schedule article h1 + div p:first-child {
  margin: 0 0 30px;
}

#schedule article .tour img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

#schedule article .tour {
  margin: 0 0 15px;
  display: block;
}

#schedule article .tour.sp {
  display: none;
}

#schedule article iframe {
  width: 100%;
  margin: 20px 0 0;
}

/*
 ** discography
 */
#discography article .media #tabs a {
  width: 20%;
  text-align: center;
  padding: 10px 4px;
  border: solid 1px #555;
  margin: 20px 0 0;
  text-decoration: none;
  color: #000;
}

#discography article .media #tabs a:hover {
  background-color: #ddd;
}

#discography article .media #tabs a.selected {
  color: #fff;
  background-color: #555;
}

#discography article .media #tabs a.selected:hover {
  background-color: #333!important;
  cursor: default;
}

#discography article .media .content {
  padding: 15px 20px;
  border: solid 3px #555;
  overflow: hidden;
}

#discography article .media .content .page_links a {
  color: #555;
  margin: 0 8px 0 0;
}

#discography article .media .content h3 {
  padding: 5px 10px;
  margin: 22px 0;
  background-color: #eee;
}

#discography article .media .content .cd {
  font-size: 80%;
  margin: 0 0 25px;
  padding: 0 0 25px;
  border-bottom: dotted 1px #ccc;
}

#discography article .media .content .cd div {
  box-sizing: border-box;
}

#discography article .media .content .cd ul,
#discography article .media .content .cd ol {
  padding: 0 0 0 1em;
}

#discography article .media .content .cd div:first-child {
  width: 160px;
}

#discography article .media .content .cd div:first-child img {
  width: 100%; 
  height: auto;
}

#discography article .media .content .cd div:nth-child(2) {
  width: 35%;
  padding: 0 0 0 25px;
}

#discography article .media .content .cd div:nth-child(2) h4 {
  font-size: 110%;
}

#discography article .media .content .cd div:nth-child(2) h4 + small {
  display: inline-block;
  margin: 0 0 15px;
}

#discography article .media .content .cd div:nth-child(3) {
  width: calc(65% - 160px);
  padding: 0 0 0 25px;
}

#discography article .media .content .cd div:nth-child(3) p {
  margin: 0 0 15px;
}

#discography article .media .content .cd .link {
  text-align: center;
  padding: 16px 0 0; 
  font-size: 80%;
}

#discography article .media .content .cd .link a {
  color: #333;
  padding: 8px 16px;
  background-color: #ccc;
  text-decoration: none;
  display: inline-block;
}

#discography article .main #youtube div {
  width: calc((100% - 8%) / 2);
  margin: 10px 2%;
  float: left;
}

#discography article .main #youtube div iframe {
  width: 100%;
  min-height: 250px;
}

#discography article .main #youtube div p {
  color: #888;
  font-size: 80%;
}

/*
 ** contact
 */
#contact article .required {
  color: #ea0017;
  font-size: 80%;
}

#contact article h2 {
  font-size: 140%;
  padding: 5px 12px;
  margin: 50px 0 20px;
  background-color: #ddd;
}

#contact article .fan p {
  margin: 0 0 2ex;
}

#contact article .fan .address {
  font-size: 110%;
  padding: 5px 8px;
  border: solid 3px #ccc;
  text-align: center;
  line-height: 2;
}

#contact article .news .icon {
  width: 25%;
  text-align: center;
  margin: 2ex 0 0;
}

#contact article .news .icon img {
  width: 50%;
}

#contact article form {
  margin: 2ex 0 0;
}

#contact article form table {
  width: 100%;
  border-collapse: collapse;
  font-size: 90%;
}

#contact article form table th,
#contact article form table td {
  width: 70%;
  padding: 8px 12px;
  text-align: left;
  border: solid 1px #ccc;
}

#contact article form table th {
  width: 30%;
  background-color: #eee;
}

#contact article form table th small {
  color: #666;
}

#contact article form table input[type="text"].short {
  width: 20%;
}

#contact article form table input[type="text"].half {
  width: 50%;
}

#contact article form table select {
  padding: 5px 8px;
  font-size: 120%;
}

#contact article form table textarea {
  height: 300px;
}

#contact article form table .caution {
  color: #666;
  font-size: 85%;
  margin: 6px 0 0;
}

#contact article .privacy {
  margin: 20px 0 0;
}

#contact article #return_form input[type="submit"] {
  background: none;
  color: #333;
  text-decoration: underline;
}

#contact article .thanks,
#contact article .sorry {
  display: none;
}

#contact article .failed.sorry {
  display: block;
}

#contact article .thanks.success {
  display: block;
}

/*
 ** kawamitsu
 */
#kawamitsu header .container {
  padding: 190px 0;
  background: url('../images/kawamitsu/kv.png') center center no-repeat #000;
}

#kawamitsu header #logo {
  width: 40%;
  margin: 0 auto;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, .9);
}

#kawamitsu header #logo img {
  width: 100%;
}

#kawamitsu #gnavi {
  background-color: #000;
}

#kawamitsu #gnavi a {
  width: calc(100% / 3);
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  box-sizing: border-box;
  padding: 12px 0 10px;
  text-decoration: none;
  font-size: 110%;
}

#kawamitsu article h2 {
  font-size: 180%;
}

#kawamitsu article dl dt {
  width: calc(100% - 20px);
  border-left: solid 5px #000;
  padding: 6px 10px;
  background-color: #eee;
}

#kawamitsu article dl dd {
  margin: 0 0 25px;
  padding: 10px 10px;
}

#kawamitsu article ol {
  padding: 0 1em;
}

#kawamitsu article .artist {
  width: calc((100% - 30px) / 3);
  margin: 0 15px 0 0;
  color: #333;
  text-decoration: none;
}

#kawamitsu article .artist:last-child {
  margin: 0;
}

#kawamitsu article .artist img {
  width: 100%;
  height: auto;
}

#kawamitsu article .btn {
  width: 30%;
  padding: 14px 20px;
  margin: 30px auto 0;
  border-radius: 5px;
  color: #fff;
  background-color: #333;
  text-decoration: none;
  display: block;
  text-align: center;
}

/*
 ** tour 
 */
#tour .kv {
  width: 100%;
  height: auto;
  display: block;
}

#tour .time {
  text-align: center;
  color: #fff;
  background-color: #ea0017;
  padding: 10px 12px 14px;
  font-weight: bold;
}

#tour .time .ttl {
  color: #fff;
  margin: 10px 0 0; 
  opacity: 1;
}

#tour .time .yyc-day,
#tour .time .yyc-hou,
#tour .time .yyc-min,
#tour .time .yyc-sec {
  color: #fff;
  font-size: 380%;
  text-shadow: 3px 3px 2px rgba(0, 0, 0, .4);
}

#tour .time .yyc-day-text,
#tour .time .yyc-hou-text,
#tour .time .yyc-min-text,
#tour .time .yyc-sec-text {
  color: #fff;
  font-size: 90%;
  margin: 0 12px 0 4px;
  font-weight: normal;
}

#tour .yycountdown-box {
  text-align: center;
  margin: 0 0 10px;
  color: #000000;
}

#tour iframe {
  width: 100%;
  height: auto;
  min-height: 400px;
  margin: 15px 0;
}

#tour .schedules .schedule {
  width: 48%;
  margin: 0 0 30px;
  padding: 8px 32px;
  display: inline-block;
  vertical-align: top;
  border: solid 4px #000;
  box-sizing: border-box;
}

#tour .schedules .schedule:nth-child(odd) {
  margin: 0 4% 30px 0;
}

#tour .schedules .schedule .date {
  font-weight: bold;
  text-align: center;
  padding: 20px 12px;
  font-size: 300%;
  line-height: .8;
}

#tour .schedules .schedule .date span {
  font-size: 40%;
}

#tour .schedules .schedule .title {
  font-weight: bold;
  text-align: center;
  font-size: 120%;
  margin: 0 0 15px;
  color: #ea0017;
}

#tour .schedules .schedule ul {
  padding: 15px 12px 15px 2em;
  background-color: #eee;
}

#tour .schedules .schedule ul li {
  line-height: 1.8;
}

#tour .schedules .schedule ul li:first-child {
  font-weight: bold;
}

#tour .schedules .schedule .sale {
  font-size: 90%;
  margin: 20px auto;
}

#tour .schedules .schedule .btn {
  color: #fff;
  width: calc(100% - 16px);
  text-align: center;
  margin: 20px auto;
  padding: 14px 8px;
  display: block;
  background-color: #333;
  text-decoration: none;
}

#tour .schedules .schedule.end {
  opacity: .4;
}

#tour .schedules .schedule.end .btn {
  color: #333;
  background-color: #fff;
  cursor: default;
}

#tour #album,
#tour #movie {
  margin: 35px 0 0;
  border-top: dotted 3px #ccc;
}

#tour #album div {
  width: 50%;
  margin: 20px 0 0;
}

#tour #album div img {
  width: 80%;
  height: auto;
}

#tour #album div ol {
  padding: 0 0 0 1.5em;
}

#tour #album div ol li {
  margin: 0 0 10px;
  font-size: 110%;
}

@media screen and (max-width: 780px) {
  #gnavi a {
    font-size: 100%;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 180%;
    text-align: center;
  }

  .container {
    width: 94%;
  }

  #gnavi a {
    width: calc(100% / 2);
  }

  #gnavi a:nth-child(4) {
    display: none;
  }

  article {
    padding: 15px 0 35px;
    background-color: rgba(255, 255, 255, .7);
    overflow: hidden;
  }

  article .main .more a {
    width: 80%;
  }

  article .main {
    width: 100%;
  }
  
  article .sub {
    width: 100%;
    margin: 20px 0;
  }

  #home header {
   width: 100%;
   min-height: auto;
   display: inline-grid;
  }

  #home header video {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: auto;
    background: url('../images#home/kv.png') no-repeat;
    background-size: cover;
  }

  #home header #logo {
    bottom: -15%;
  }

  #home header #logo img {
    width: 100%;
    height: auto;
  }

  #home article .main #twitter,
  #home article .main #youtube {
    padding: 15px 10px;
  }

  #home article .main #youtube div {
    width: calc((100% - 8%) / 2);
    margin: 10px 2%;
    float: left;
  }

  #home article .sub {
    margin-top: 30px;
  }

  header #logo {
    width: 40%;
    margin: 0 auto;
  }
  
  header #logo img {
    width: 100%;
    height: auto;
  }

  article h1 {
    font-size: 200%;
  }

  .pagetop {
    bottom: 10px;
    right: 10px;
  }

  /*
   ** schedule
   */

  /*
   ** discography
   */
  #discography article .media .content .cd div:first-child {
    width: 100%;
    text-align: center;
    margin: 0 0 15px;
  }

  #discography article .media .content .cd div:first-child img {
    width: 50%; 
    height: auto;
  }
  
  #discography article .media .content .cd div:nth-child(2),
  #discography article .media .content .cd div:nth-child(3) {
    width: 100%;
    padding: 0;
    margin: 0 0 15px;
  }
  
  #discography article .main #youtube div {
    width: 100%;
    float: none;
    margin: 0 0 15px;
  }

  /*
   ** contact
   */
  #contact article form table th,
  #contact article form table td {
    width: calc(100% - 24px);
    display: block;
    padding: 8px 12px;
    text-align: left;
    border: solid 1px #ccc;
  }
  
  #contact article form table td input[type="text"] {
    width: calc(100% - 16px)!important;
    padding: 5px 8px!important;
    font-size: 120%;
  }
  
  #contact article form table td textarea {
    font-size: 120%;
  }

  /*
   ** kawamitsu
   */
  #kawamitsu header {
    padding: 10px 0;
  }

  #kawamitsu header .container {
    padding: 100px 0;
    background-size: cover;
  }

  #kawamitsu #gnavi a {
    font-size: 80%;
  }

  #kawamitsu article .artist {
    width: 100%;
    margin: 0 0 15px;
  }

  #kawamitsu article .btn {
    width: 80%;
  }

  #kawamitsu article #contact + div {
    margin: 0 0 20px!important;
  }
}

