@charset "UTF-8";
/* common */
body {
  padding: 0;
  background: #594432 url(../img/common/bg.png) repeat 0 0;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
  font-size: 14px;
}
a {
  color: #2a73ca;
  cursor: pointer;
}
a:link,
a:visited {
  text-decoration: none;
}
a:hover,
a:active {
  color: #8B572A;
  text-decoration: none;
}
a:hover,
li:hover,
input,
button,
label:hover,
select {
  -webkit-transition: 0.3s ease-out !important;
  -moz-transition: 0.3s ease-out !important;
  -ms-transition: 0.3s ease-out !important;
  transition: 0.3s ease-out !important;
}
blockquote {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 40px;
  border: none;
  box-sizing: border-box;
  font-style: italic;
  color: #666;
  font-size: 12px;
}
blockquote:before{
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -8px;
  vertical-align: middle;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 72px;
  line-height: 1;
}
blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.6;
}
blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
ul, ol, li, h1, h2, h3{
  margin: 0;
  padding: 0;
}
ul, ol {list-style-type: none;}
.logo {
  width: 160px;
  margin: 0 auto;
  padding: 10px 0;
}
.logo a,
.logo a:hover {
  color: #fff;
}
h3 {
  margin-bottom: 30px;
  padding: 12px 0;
  border-top: 3px double #0c3d77;
  border-bottom: 3px double #0c3d77;
  font-family: 'Alegreya';
  color: #0c3d77;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
h4 {
  color: #8B572A;
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
.bold {
  font-weight: bold;
}
.highlight {
  color: #b22222;
}
.underline {
  text-decoration: underline;
}
.al-c { text-align: center; }
.al-l { text-align: left; }
.al-r { text-align: right; }
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
/* smartphone */
@media screen and (min-width: 768px) {
  .pc-only { display: block; }
  .sp-only { display: none; }
  .sp_br { display: none; } 
}

@media screen and (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
  .sp_br { display: block; }
  .sp_none { display: none; }
}
/* global menu */
#menu .menu-inner {
  position: relative;
}
#menu ul li a.selected {
  border-bottom: 2px solid #fff;
}
#menu ul .btn-sns {
  position: absolute;
  right: 0;
}
#menu ul .btn-sns a {
  width: 24px;
  font-size: 12px;
  margin: 0 8px !important;
  padding: 0 !important;
  display: inline-block;
}
#menu .btn-sns a:hover {
  border-bottom: none;
  opacity: 0.9;
}
@media (max-width: 767px) {
  header {
    margin-bottom: 40px;
    background-color: rgba(89,68,50,1);
  }
  header .logo {
    width: 120px;
    padding: 10px 0;
  }
  #menu .btn-sns {
    left: 0;
    right: 0;
  margin:auto;
    padding-top: 0.75rem;
  }
  #menu ul li a.selected {
    border-bottom: none;
  }
}
/* language setting */
.lang {
  position: absolute;
  top: 0;
  right: 2%;
  text-align: center;
}
.lang a {
  display: inline-block;
  width: 52px;
  height: 40px;
  line-height: 40px;
  background-color: #0c3d77;
  box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  color: #fff;
  font-family: 'Alegreya';
  font-size: 8px;
}
.lang a::after {
  position: absolute;
  top: 40px;
  left: 0;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 16px 26px 0 26px;
  border-color: #0c3d77 transparent transparent transparent;
}
.lang_sp {
  display: none !important;
}
@media (max-width: 767px) {
  .lang {
    display: none;
  }
  .lang_sp {
    display: block !important;
    padding-top: 80px;
  }
  .lang_sp a {
    color: #fff;
  }
  .lang_sp a:hover {
    color: #fff;
    opacity: 0.9;
  }
}
/* contents common */
#contentsArea .box {
  margin: 0 0 30px;
  padding: 30px;
  background-color: rgba(255,255,255,1);
  box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  color: #333;
}
[data-lang="ja"] #contentsArea .box p {
    text-align: justify;
    text-justify: inter-ideograph;
}
[data-lang="en"] #contentsArea .box p {
    text-align: justify;
    text-justify: inter-word;
}
@media (max-width: 767px) {
  #contentsArea .box {
    padding: 24px;
  }
}
#contentsArea .box dt {
  margin-bottom: 8px;
}
#contentsArea .box dd {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ccc;
}
#contentsArea .box dd:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.icon-new {
  padding: 1px 3px;
  background-color: #D74A4A;
  color: #fff;
  font-size: 11px;
}
/* footer */
footer {
  padding-top: 20px;
  color: #fff;
  font-size: 0.7rem;
}
.footer-nav {
  padding-bottom: 10px;
}
.footer-nav li {
  display: inline;
}
.footer-nav li a {
  padding: 0 8px;
  color: #fff;
  text-decoration: underline;
}
#footer-copyright {
  text-align: right;
}
@media (max-width: 767px) {
  footer,
  #footer-copyright {
    text-align: center;
  }
}
/* btn-pagetop*/
.btn-pagetop {
  position: fixed;
  bottom: 12px;
  right: 12px;
  line-height: 0;
}
.btn-pagetop a {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 8px 0;
  background: #0c3d77;
  outline: 0;
  box-shadow: 0 3px 6px rgba(0,0,0,.3),0 3px 6px rgba(0,0,0,.23);
  text-align: center;
}
.btn-pagetop a {
  color: #fff;
  font-size: 2rem;
}
.btn-pagetop a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .btn-pagetop {
    bottom: 0;
    right: 0;
  }
}
/* top page*/
#index #mainArea {
  position: relative;
  min-height: 400px;
  background: url(../img/img-main.png) no-repeat center center;
  background-size: cover;
}
#index #mainArea h1 {
  position: absolute;
  top: 44%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 229px;
}
#index #mainArea .main-catch {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Salsa', cursive;
  font-size: 24px;
  text-align: center;
  color: #D0C6AB;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
@media (max-width: 767px) {
  #index #mainArea {
    background: none;
    min-height: auto;
  }
  #index #mainArea .bx-wrapper {
  position: relative;
  background-color: transparent;
  margin: 0px auto;
  border: none;
  box-shadow: none;
  }
  #index #mainArea .bx-wrapper .bx-pager {
    position: absolute;
    bottom: 12px;
    right: 12px;
    text-align: right;
  }
  #index #mainArea .bx-wrapper .bx-pager.bx-default-pager a {
    border-radius: 0;
    background-color: #ccc;
  } 
  #index #mainArea .bx-wrapper .bx-pager.bx-default-pager a.active {
    background-color: #0c3d77;
  }
  #index #mainArea h1 {
    top: 44%;
    width: 35%;
    max-width: 200px;
  }
  #index #mainArea .main-catch {
    top: 60%;
    width: 88%;
    font-size: 18px;
  }
}
#index h2 {
  margin-bottom: 30px;
  padding: 12px 0;
  border-top: 3px double #0c3d77;
  border-bottom: 3px double #0c3d77;
  color: #0c3d77;
  font-size: 20px;
  font-family: 'Alegreya';
  font-weight: normal;
  text-shadow: none;
  text-align: center;
}
#contentsArea h1 {
  margin-bottom: 60px;
  color: #fff;
  font-family: 'Alegreya';
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 0px 4px rgba(0,0,0,0.5);
}
@media (max-width: 767px) {
  #contentsArea h1 {
    margin-bottom: 40px;
  }
}
#contentsArea .box .schedule {
  line-height: 1.6;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #ccc;
}
#contentsArea .box .schedule:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
#contentsArea .box .schedule .ttl i {
  padding-right: 10px;
  color: #8B572A;
}
#contentsArea .box .schedule li span {
  display: inline-block;
  width: 48px;
}
#contentsArea .box .schedule li span.glyphicon {
  width: 16px;
}
#contentsArea .news dt span {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 4px;
  background-color: #b22222;
  color: #fff;
  font-size: 9px;
}
.top-about .pic {
  float: right;
  width: 49%;
  margin: 0 0 16px 20px;
}
@media (max-width: 480px) {
  .top-about .pic {
    width: 100%;
  }
}
.btn-contact {
  text-align: center;
}
.btn-contact a {
  width: 100%;
  display: inline-block;
  padding: 20px 0;
  background-color: #0c3d77;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
}
.btn-contact a:hover {
  opacity: 0.9;
}
.btn-contact a .fa-envelope-o {
  padding-right: 12px;
  font-weight: bold;
  vertical-align: middle;
}
/* about page */
.bio {
  position: relative;
}
.bio ul {
  margin: 0 0 0 80px;
  padding: 10px 0;
  border-left: 2px solid #0c3d77;
}
.bio ul li {
  position: relative;
  margin: 0 0 20px 20px;
  padding-right: 20px;
}
.bio ul li:last-child {
  margin-bottom: 0;
}
.bio .year {
  position: absolute;
  left: -80px;
  color: #0c3d77;
  font-size: 16px;
}
.bio .circle {
  display: inline-block;
  position: absolute;
  top: 4px;
  left: -27px;
  width: 12px;
  height: 12px;
  border: 2px solid #0c3d77;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 480px) {
  .bio ul {
    margin: 0 0 0 60px;
  }
  .bio ul li {
    padding-right: 0;
  }
}
/* discography page */
.disco-list ul {
  margin: 12px 0;
}
/* lylics page */
.letter_search p {
  margin-bottom: 20px;
  text-align: center;
}
.letter_search a {
  display: inline-block;
  width: 32px;
  height: 32px;
  font-size: 1.2em;
}
.letter_search a:hover {
  text-decoration: underline;
}
.lyrics_middle .lyrics_en {
  text-align: right;
}
.lyrics_bottom {
  margin-bottom: 40px;
  text-align: center;
  font-size: 0.8em;
  color: #999;
}
#lyrics_en .lyrics_en {
    text-align: center;
  }
@media (max-width: 991px)  {
  .lyrics_area {
    font-size: 13px;
  }
}
@media (max-width: 767px) {
  .lyrics_area {
    font-size: 12px;
  }
  .lyrics_middle .lyrics_en {
    text-align: left;
  }
  .letter_search a {
    font-size: 1em;
  }
  #lyrics_en .lyrics_en {
    text-align: left;
  }
}

/* setlist page */
.setlist-year li {
  text-align: center;
}
.setlist-year li a {
  display: inline-block;
  width: 100%;
  height: 36px;
  line-height: 36px;
  margin-bottom: 12px;
  background-color: #fff;
  color: #0c3d77;
  box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
.setlist-year li a:hover,
.setlist-year li.active a {
  background-color: #0c3d77;
  color: #fff;
}
.setlist-year li.active {
  position: relative;
}
.setlist-year li.active a::after {
  position: absolute;
  top: 0;
  right: -16px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 16px;
  border-color: rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) #0c3d77;
}
#contentsArea .setlist-area .box {
  margin: 0 0 20px;
  padding: 40px;
}
.setlist-area h3 {
  line-height: 1.6;
  text-align: left;
  font-size: 15px;
  font-weight: bold;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", 'hiragino kaku gothic pro', meiryo, 'ms pgothic', sans-serif;
}
.setlist-area ol {
  list-style-type: decimal;
  margin: 0 0 20px 15px;
}
.setlist-area ol li {
  margin-bottom: 4px;
}
.setlist-area .cover {
  margin: 0;
  text-align: left;
  font-size: 0.9em;
  font-style: italic;
}
/*.setlist-area .col-lg-7 {
  padding-left: 40px;
}*/
.setlist-area .set {
  margin-bottom: 4px;
  text-decoration: underline;
}
.setlist-area img {
  /*max-width: 240px;*/
  padding: 4px;
  border: 1px solid #ccc;
}
@media (min-width: 992px) {
	.setlist-area .col-lg-7 {
		max-width: 60%;
		flex: 0 0 60%;
	}
	.setlist-area .col-lg-5 {
		max-width: 40%;
		flex: 0 0 40%;
		text-align: right;
	}
}
.stageset {
  display: flex;
  justify-content: space-between;
}
.stageset > div {
  width: 49%;
}
.setlist_guiter {
  background-color: #fff;
}
#setlist_before .setlist-area > div {
  margin-bottom: 40px;
}
#setlist_before .setlist-area .box {
  width: 49%;
  padding: 28px;
}
#setlist_before .setlist-area .ttl_year {
  padding: 12px 20px;
  background-color: #0c3d77;
  color: #fff;
  box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -webkit-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
  -moz-box-shadow: 0px 0px 10px rgba(0,0,0,.5);
}
#setlist_before .setlist-area img {
  max-width: 100%;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .setlist-area img {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .setlist-year li {
    display: inline;
    margin-right: 8px;
  }
  .setlist-year li a {
    width: 56px;
  }
  .setlist-year li.active a::after {
    content: none;
  }
  #contentsArea .setlist-area .box  {
    width: 100%;
    padding: 24px;
  }
  .setlist-area .box .col-xs-12:last-child {
    text-align: center;
  }
  .stageset{
    display: block;
  }
  .stageset > div {
    width: 100%;
  }
}
/* gear page */
.gear-list {
  text-align: center;
}
.gear-list h3 {
  margin-top: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}
.gear-list img {
  margin-bottom: 12px;
}
.gear-list .box p {
  min-height: 32px;
  margin-bottom: 0;
  color: #666;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 480px)  {
  .gear-list .box p span {
    height: auto;
  }
}
/* sitemap page */
.sitemap ul li {
  margin-bottom: 12px;
}
.sitemap ul li:before {
  content:"-";
  padding-right: 8px;
}


