@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap');

/*common*/
html {
    height: 100%;
}

body {
    color: #333;
    font-size: clamp(10px, 16 / 1200 * 100vw, 16px);
    line-height: 1.7;
    line-break: strict;
    word-break: break-all;
    text-align: justify;
    text-justify: distribute;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    position: relative;
}

a:link {
    text-decoration: none;
    color: #ea5971;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
}

a:visited {
    text-decoration: none;
    color: #ea5971;
}

a:hover {
    text-decoration: none;
    opacity: 0.7;
}

p:not(:last-child) {
    margin-bottom: 1.5em;
}

/*PC--------------------------------------------------------------------------------------*/

/*bg*/

.bg{
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: -10;
    background: url("../images/common/bg.jpg") no-repeat top center;
    background-size: cover;
}

/*header*/

.header-bg{
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-wrap {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.header-wrap .header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 58.3333%;
    position: relative;
    width: 100%;
    display: block;
}

.header-wrap .header .logo-pos {
    position: absolute;
    top: 12.857143%;
    left: 11.833333%;
    width: 76.333333%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: logoFadeIn 2s ease 0s 1 normal;
    -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
    z-index: 15;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@-webkit-keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(15%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-wrap .header .logo-pos h1 {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 21.50655%;
    position: relative;
    width: 100%;
    background: url("../images/header/logo.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .west-pos {
    position: absolute;
    top: 49.000000%;
    left: 2.416667%;
    width: 46.833333%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: rwestFadeIn 2s ease 0s 1 normal;
    -webkit-animation: westFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

@keyframes westFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    50% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes westFadeIn {
    0% {
        opacity: 0;
        transform: translateX(15%);
    }

    50% {
        opacity: 0;
        transform: translateX(15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .west-pos .west {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 41.81495%;
    position: relative;
    width: 100%;
    background: url("../images/header/west.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}

.header-wrap .header .east-pos {
    position: absolute;
    top: 49.000000%;
    left: 50.750000%;
    width: 46.833333%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: eastFadeIn 2s ease 0s 1 normal;
    -webkit-animation: eastFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

@keyframes eastFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    50% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@-webkit-keyframes eastFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-15%);
    }

    50% {
        opacity: 0;
        transform: translateX(-15%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.header-wrap .header .east-pos .east {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 41.81495%;
    position: relative;
    width: 100%;
    background: url("../images/header/east.png") no-repeat;
    background-size: cover;
    display: block;
    overflow: hidden;
    text-indent: -9999px;
}


/*contents*/


.content-wrap{
    max-width: 1240px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    box-sizing: border-box;
}

.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1s,visibility 1s, transform 1s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

hr{
    margin: 50px 0;
    border-top: 2px dotted #333;
}

section{
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    padding: 50px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
    -webkit-box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
    box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
}

h2{
    background: #A98657;
    background: linear-gradient(90deg, rgba(169, 134, 87, 0) 0%, rgba(169, 134, 87, 1) 25%, rgba(169, 134, 87, 1) 75%, rgba(169, 134, 87, 0) 100%);
    color: #fff;
    text-align: center;
    padding: 0.5em;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 50px;
}

h3{
    margin: 1.5em 0;
    border-bottom: 1px solid #A98657;
    font-size: 1.1em;
}

dl.ticke-schedule{
    margin: 1.5em auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

dl.ticke-schedule dt{
    width: 10%;
    color: #f60;
}

dl.ticke-schedule dd{
    width: 90%;
    font-weight: bold;
    color: #2976b2;
}

dl.ticke-schedule dd span{
    font-family: 'Oswald', sans-serif;
    vertical-align: baseline;
    font-size: 1.4em;
}

.buy-btn a{
    display: block;
    background: #f60;
    color: #fff;
    padding: 0.3em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    border-radius: 30px;
    margin: 1.5em 0;
}

.buy-btn a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f07a";
    margin-right: 0.5em;
    font-weight: bold;
    color: #000;
    font-size: 1em;
    vertical-align: text-top;
}

ul.artist-wrap{
    list-style: none;
    margin: 0 -1.5% -3% -1.5%;
    display: flex;
    flex-wrap: wrap;
}

ul.artist-wrap li{
    width: 25%;
    padding: 0 1.5%;
    margin-bottom: 3%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

ul.artist-wrap li img{
    width: 100%;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
    -webkit-box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
    box-shadow: 0px 0px 4px rgba(8, 0, 89, 0.8);
}

ul.artist-wrap li h4{
    text-align: center;
    margin: 0.5em 0;
    font-size: 1.1em;
    flex-grow: 1;
}

ul.artist-wrap li h4 span{
    font-size: 0.8em;
    color: #f60;
    font-weight: normal;
}

ul.artist-wrap li .link-wrap{
    display: flex;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
}

ul.artist-wrap li .link-wrap .btn-hp{
    flex: 1;
}

ul.artist-wrap li .btn-hp a{
    display: block;
    background: #ea5971;
    color: #fff;
    padding: 0.3em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

ul.artist-wrap li .btn-hp a::before {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    margin-right: 0.5em;
    font-weight: bold;
    color: #fc0;
    font-size: 1em;
    vertical-align: text-top;
}

ul.artist-wrap li .link-wrap .btn-x{
    width: 50%;
}

ul.artist-wrap li .btn-x a{
    display: block;
    background: #000;
    color: #fff;
    padding: 0.3em;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

ul.artist-wrap li .btn-x a::before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400; /* Brandsは400 */
  content: "\e61b"; /* ← FA6の X(Twitter) のUnicode */
  display: inline-block;
  margin-right: 0.5em;
  color: #fc0;
}

/*footer*/

.footer{
    width: 100%;
    background: rgba(8, 0, 89, 0.8);
    color: #fff;
    padding: 50px 20px;
    box-sizing: border-box;
    text-align: center;
    font-size: 0.9em;
    position: relative;
    z-index: 10;
}

.footer .sns{
    margin-bottom: 1em;
}

.footer .sns ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .sns ul li {
    width: 50px;
    margin: 0 5px;
}

.footer .sns ul li img {
    width: 100%;
}

/*pagetop*/

#page-top {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 60px;
    margin-bottom: 0;
    z-index: 200;
}

#page-top img {
    width: 100%;
}




/*RESPONSIVE--------------------------------------------------------------------------------------*/

@media only screen and (max-width: 1000px) {

    

}

/*MOBILE--------------------------------------------------------------------------------------*/

@media only screen and (max-width: 767px) {


    body {
        font-size: clamp(10px, 14 / 375 * 100vw, 14px);
    }

    span.br::before{
        content: "\A" ;
        white-space: pre ;
        padding-right: 0.5em;
    }

    .header-wrap .header {
    top: 0px;
    left: 0px;
    height: 0;
    padding-top: 120%;
    position: relative;
    width: 100%;
    display: block;
}

.header-wrap .header .logo-pos {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: logoFadeIn 2s ease 0s 1 normal;
    -webkit-animation: logoFadeIn 2s ease 0s 1 normal;
    z-index: 15;
}

.header-wrap .header .west-pos {
    position: absolute;
    top: 35%;
    left: 10%;
    width: 80%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: rwestFadeIn 2s ease 0s 1 normal;
    -webkit-animation: westFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

.header-wrap .header .east-pos {
    position: absolute;
    top: 65%;
    left: 10%;
    width: 80%;
    -webkit-transition: all 500ms 0s ease;
    transition: all 500ms 0s ease;
    animation: eastFadeIn 2s ease 0s 1 normal;
    -webkit-animation: eastFadeIn 2s ease 0s 1 normal;
    z-index: 10;
}

    section{
    background: rgba(255, 255, 255, 0.8);
    margin-bottom: 5vh;
    padding: 5vh 15px;
    border-radius: 10px;
}

h2{
    background: #A98657;
    background: linear-gradient(90deg, rgba(169, 134, 87, 0) 0%, rgba(169, 134, 87, 1) 25%, rgba(169, 134, 87, 1) 75%, rgba(169, 134, 87, 0) 100%);
    color: #fff;
    text-align: center;
    padding: 0.5em;
    -moz-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    -webkit-text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    font-size: 1.2em;
    font-weight: normal;
    margin-bottom: 5vh;
}

ul.artist-wrap{
    list-style: none;
    margin: 0 -2% -3vh -2%;
    display: flex;
    flex-wrap: wrap;
}

ul.artist-wrap li{
    width: 50%;
    padding: 0 2%;
    margin-bottom: 3ch;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

dl.ticke-schedule dt{
    width: 100%;
    color: #f60;
}

dl.ticke-schedule dd{
    width: 100%;
    font-weight: bold;
    color: #2976b2;
}

    .footer{
        width: 100%;
        color: #fff;
        padding: 5vh 15px;
        box-sizing: border-box;
        text-align: center;
        font-size: 0.9em;
    }

    

}
