@charset "UTF-8";
/* CSS Document */
*, *:before, *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
  -webkit-box-sizing: border-box;
}
.body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-align: center;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  background: url("img/background_img.png");
  overflow-x: hidden;
  max-width: 100%;
  color: #404038;
  font-size: 1.4rem;
  line-height: 2.8rem;
}
@media(min-width:400px) {
  .body {
    font-size: 1.8rem;
  }
}
h1 {
  font-size: 6.0rem;
  font-weight: 500;
}
.tour_title h1 {
  font-size: 5.0rem;
}
@media(max-width:400px) {
  h1 {
    font-size: 3.0rem;
  }
  .tour_title h1 {
    font-size: 3.5rem;
  }
}
h2 {
  font-size: 2.5rem;
  font-family: "Futura";
  font-weight: 600;
  color: #00565F;
  letter-spacing: 0.3rem;
  text-align: center;
  padding: 4.0rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
h2::before, h2::after {
  content: "";
  flex-grow: 1;
  border-top: 2px solid #D9A840;
}
.tickets_inner h2::before, .tickets_inner h2::after {
  border-top: 2px solid #fff;
}
.artist_inner h2::before, .artist_inner h2::after {
  border-top: 2px solid #fff;
}
.links_inner h2::before, .links_inner h2::after {
  border-top: 2px solid #00565F;
}
h2:before {
  margin-right: 2.0rem;
}
h2:after {
  margin-left: 2.0rem;
}
h3 {
  color: #fff;
  font-family: "Futura";
  font-size: 3.0rem;
  letter-spacing: 0.3rem;
  padding: 0.3rem 2.0rem;
}
h4 {
  font-size: 3.0rem;
  line-height: 4.0rem;
  font-family: "Futura","Osaka-mono", "MS Gothic", "monospace";
  letter-spacing: 0.3rem;
}
.japan h4 {
  color: #00565F;
}
.taiwan h4 {
  color: #E87679;
}
@media(min-width:400px) {
  h2 {
    font-size: 4.0rem;
	line-height: 6.0rem;
  }
  h4 {
    font-size: 4.0rem;
    line-height: 6.0rem;
    letter-spacing: 0.5rem;
  }
}
/*ボタン設定*/
/*
.btn, a.btn, button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
}
*/

/*modal*/

.modal{
display: none;
height: 100vh;
position: fixed;
top: 0;
width: 100%;
z-index: 999999;
}
.close-btn{
text-align: right;
text-decoration: none;
font-size: 3.0rem;
color: #666;
}
.modal-bg{
background: rgba(0,0,0,0.5);
height: 100vh;
position: absolute;
width: 100%;
}
.modal-box{
background: #fff;
left: 50%;
padding: 16px;
position: absolute;
top: 50%;
transform: translate(-50%,-50%);
width: 65%;
}
.artist_message_img{
	max-width: 600px;
	max-height: 50%;
	margin: 0 auto;
}
.artist_message_img p{
	padding: 2.0rem;
	letter-spacing: 0.5rem;
	font-weight: 500;
}
.artist_message_img img{
	width: 60%;
	height: 60%;
}
@media(max-width:800px){
.modal-box{
width: 100%;
}
.artist_message_img{
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}
.artist_message_img img{
	width: 100%;
	height: 100%;
}
}