@charset "utf-8";

/* ==============================
  soles official
  StyleSheet
============================== */

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}
body {
  background-color: #ffaa00;
  font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
  word-break: break-all;
  overflow-wrap: break-word;
}
h1,h2,h3,h4,h5,h6 {
  font-weight: 900;
  line-height: 2.0;
}
h2 {
  font-size: 5.0rem;
  text-transform: uppercase;
}
h3 {
  font-size: 3.0rem;
  text-transform: uppercase;
  text-align: right;
  border-bottom: 5px solid #000;
  margin: 0.3em 0;
}
h3 > span::before {
  content: " | ";
}
h4 {
  font-size: 1.8rem;
  line-height: 1.2;
  padding: 1.0rem 0;
}
main p + *,main dl + * {
  margin-top: 0.5em;
}
dl dt {
  font-weight: normal;
}
dl dd {
  font-weight: 900;
}
:focus {
  outline: none;
}

main a:not(nav a) {
  border-bottom: 1px dashed #444;
}


img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
img[src$="logo.svg"] {
  animation-name: logoAnimation;
  animation-delay: 5s;
  animation-duration: 15s;
  animation-iteration-count: infinite;
}

del {
  text-decoration-color: #f00;
  text-decoration-thickness: 2px;
}

@keyframes logoAnimation {
  0% {
    transform:translate(0, 0) rotate(0deg);
  }
  15% {
    transform:translate(3px, -3px) rotate(-1deg);
    opacity: 0.3;
  }
  25% {
    transform:translate(-3, -3px) rotate(-1deg);
    opacity: 1.0;
  }
  50% {
    transform:translate(0, 3px) rotate(0deg);
  }
  75% {
    transform:translate(0, 0) rotate(1deg);
    opacity: 0.7;
  }
  100% {
    transform:translate(0, 0) rotate(0deg);
    opacity: 1.0;
  }
}

.button {
  display: block;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 0.5em;
  margin-top: 0.5em;
  border: none;
}
.note {
  background-color: rgba(0, 0, 0, 0.0);
  padding: 0.8em;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  font-size: 1.4rem;
  margin-top: 1.0em;
}
.photo {
  text-align: center;
}

nav {
  padding: 2.0rem 0;
}
nav ul {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
}

main .contentsGrid {
  display: grid;
  gap: 4.0rem;
}
main .sectionGrid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat( auto-fit, minmax(256.5px,1fr) );
}

.snsLink {
  display: flex;
  justify-content: center;
  padding-bottom: 2.0rem;
  font-size: 2.0rem;
}
.snsLink li a {
  margin: 0 2.0rem;
}

/* Layout
============================== */
.inner {
/*  background-color:rgba(0,0,255,0.1);*/
  padding: 0 2.0rem;
}

header,footer {
  background-color: #000;
  color: #fff;
  text-align: center;
}
header {
  padding-top: 2.0rem;
  height: auto;
  display: grid;
  align-items: center;
}

main {
  background-color: #fff;
  color: #000;
  padding-bottom: 2.5rem;
  margin-bottom: 150px;
}
main::after {
  content: "";
  background-image: url(../images/bg-flower.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -9999;
}
footer {
  padding-bottom: 3.0rem;
}

/* Home */
/*
#home header {
  height: 80vh;
}
*/
#home #article p em {
  display: block;
  text-align: center;
  margin: 1.0em 0;
  font-size: 2.2rem;
  color: #000;
  font-weight: bold;
  font-family: serif;
  letter-spacing: -0.02em;
}
#home #article dl dd {
  margin-bottom: 0.5em;
}


/* Live */
#live section > dl {
  display: grid;
  grid-template-columns: 5em 1fr;
}
#live section > dl + * {
  border-top: 1px solid #000;
  padding-top: 0.5em;
}
#live time::after {
  content: " || ";
}
#live .actList li {
  display: inline;
}
#live .actList li + li::before {
  content: " / ";
}
#live dl.ticket dd ul li span::before {
  content: "\0a5";
}
#live dl.ticket dd ul li::before {
  text-transform: uppercase;
  font-size: 0.8em;
  padding-right: 0.5em;
}
#live dl.ticket dd ul li.adv::before {
  content: "adv";
}
#live dl.ticket dd ul li.door::before {
  content: "door";
}
#live dl.ticket dd ul li span::after {
  content: "+ 1Drink";
  padding-left: 0.5em;
}
#live dl.opst {
  grid-template-columns: repeat(4, 5em);
}
.eplus {
  background-color: #f16baa;
  border-radius: 20px;
}
.wildSide {
  background-color: #000;
  color: #DC0000;
  border-radius: 20px;
}


/* Music */
#music .number {
  font-weight: bold;
  font-size: 2.0rem;
  display: block;
}
#music .track {
  list-style: decimal-leading-zero;
  padding-left: 2.0em;
}
#music .track > li + * {
  margin-top: 0.4em;
}
#music .track .commentary {
  display: flex;
  font-size: 1.5rem;
}
#music .track .commentary dt::after {
  content: "：";
}
#music .track .commentary dd:not(:first-of-type)::before {
  content: "／";
}
#music .track .commentary dd a {
  font-weight: normal;
}
#music .track .commentary dd a:hover {
  text-decoration: none;
}


/* Video */
#video .sectionGrid .number,#video .title {
  font-weight: bold;
  font-size: 2.0rem;
  display: block;
}
#video .sectionGrid .photo a {
  display: block;
  position: relative;
  border: none;
}
#video .sectionGrid .photo a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../video/images/play-off.webp);
  background-size: cover;
  position: absolute;
  transition: 0.3s;
}
#video .sectionGrid .photo a:hover::before {
  background-image: url(../video/images/play-on.webp);
}
#newMV h4 {
  font-size: 2.4rem;
}
.youTube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youTube iframe {
  width: 100%;
  height: 100%;
}

/* Store */
#store .price,#store .size {
  display: flex;
}
#store .price dt::after,
#store .size dt::after {
  content: " :";
  padding-right: 0.3em;
}

/* contact */
#contact form {
  margin-top: 3.0rem;
}
#contact form > label {
  display: block;
  font-weight: 900;
}
#contact form > label + * {
  margin-top: 2.0rem;
}
#contact textarea {
  resize: none;
  height: 9em;
}
#contact form label input[type="text"],
#contact form label input[type="email"],
#contact textarea {
  display: block;
  width: 100%;
  background-color: #eee;
  padding: 5px 10px;
  margin-top: 5px;
  border-radius: 5px;
  font-weight: normal;
}
#contact form label input[type="text"]:focus,
#contact form label input[type="email"]:focus,
#contact textarea:focus {
  box-shadow: 0 0 10px rgb(0 0 0 / 30%) inset;
}
input[type="submit"] {
  display: block;
  border: 1px solid #000;
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 10px;
}

@media (min-width:600px) {
  img[src$="logo.svg"] {
    width: 500px;
  }
  .inner {
    max-width: 840px;
    margin: 0 auto;
  }
  #home #article p em {
    font-size: 4.0rem;
  }
}