@import url('https://fonts.googleapis.com/css2?family=Poiret+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/*=============================================
:root
=============================================*/
:root {
  --bg-color: #fbeee8;
  --primary-color: #b71117;
  --sub-color: #b69173;
  --mq-sm: 450px;

  --easing: cubic-bezier(.2, 1, .2, 1);
  --transition: .8s var(--easing);
  --color-base: #f8f8f8;
  --color-gray: #ddd;
  --color-theme: #f5695f;
  --color-theme-darken: #f12617;
  --box-shadow: .8rem .8rem 1.2rem rgba(0, 0, 0, .05), -.8rem -.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, .08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset .8rem .8rem 1.2rem rgba(0, 0, 0, .05), inset -.8rem -.8rem 1.2rem #fff;
  --box-shadow-dark: .8rem .8rem 1.2rem rgba(0, 0, 0, .1), -.8rem -.8rem 1.2rem rgba(#fff, .2);

  --mv-border: 20px;

}

/*=============================================
common
=============================================*/

body {
  font-family: YakuHanJP_Narrow, "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  /* color: var(--primary-color); */
  color: #000;
  line-height: 1.8;
  background-color: var(--bg-color);
}

html:before {
  height: 8px;
  width: 100vw;
  left: 0;
  top: 0;
}

html:after {
  width: 8px;
  height: 100vh;
  right: 0;
  top: 0;
}

body:before {
  height: 8px;
  width: 100vw;
  bottom: 0;
  left: 0;
}

body:after {
  width: 8px;
  height: 100vh;
  top: 0;
  left: 0;
}

.wrapper {
  position: relative;
  overflow: hidden;
}

.wrapper::before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: url("../images/bg_kazari.svg") no-repeat right top;
  z-index: -1;
}

.en {
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.num {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #000;
}

a:hover {
  text-decoration: none;
}

.content {
  padding: 20px;
  margin: auto;
}

.sub-color {
  color: var(--sub-color);
}

.notice {
  font-size: 14px;
}

.btn-block {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.animate__animated {
  opacity: 0;
}

.komejirushi {
  text-indent: -1em;
  padding-left: 1em;
}

.komejirushi li {
  margin-bottom: .3em;
}

.soon {
  text-align: center;
  font-size: 1.2em;
}

.max-w-md {
  max-width: 800px;
  margin: auto;
}

.max-w-lg {
  max-width: 1280px;
  margin: auto;
}

.list {
  list-style: disc;
  margin-left: 1.2em;
}


@media screen and (min-width:480px) {
  .content {
    padding: 40px;
  }
}



/*=============================================
parts
=============================================*/
/*
title
---------------------------------*/
.title {
  color: var(--primary-color);
  display: grid;
  justify-content: center;
  margin: 20px 0 40px 0;
  text-align: center;
  background-image: url("../images/kazari.svg"), url("../images/kazari_bottom.svg");
  background-position: top center, bottom center;
  background-size: 200px;
  background-repeat: no-repeat;
  padding: 30px 0 30px 0;
}


.title .en {
  font-size: clamp(2.5rem, 2.0455rem + 2.2727vw, 3.75rem);
  line-height: 1;
}

.title .ja {
  font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem);
  margin-top: 5px;
}


.bg-primary-color {
  background-color: var(--primary-color);
  background: url("../images/bg@2x.jpg") no-repeat var(--primary-color) top;
  background-size: 100%;
  color: #fff;
}

.bg-sub-color {
  background-color: var(--sub-color);
  color: #fff;
}

.bg-primary-color .title,
.bg-sub-color .title {
  color: #fff;
  background-image: url("../images/kazari_w.svg"), url("../images/kazari_w_bottom.svg");
}


/*
btn
---------------------------------*/
.btn {
  text-align: center;
}

.btn>a,
.btn>span {
  display: inline-block;
  background-color: var(--sub-color);
  color: #fff;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.5s 0s ease;
}

.btn>a:hover,
.btn>span:hover {
  background-color: var(--primary-color);
}

.btn.--red>a,
.btn.--red>span {
  background-color: var(--primary-color);
}

.btn.--red>a:hover,
.btn.--red>span:hover {
  background-color: #000;
}


/*
modal
---------------------------------*/
.has-modal:hover {
  cursor: pointer;
}

.modal-open {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 50px;
  font-weight: bold;
  color: #fff;
  background: #000;
  margin: auto;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  /* padding: 40px 20px; */
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
}

.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

.modal-container.active {
  opacity: 1;
  visibility: visible;
}

.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 800px;
  width: 90%;
}

.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.modal-content {
  text-align: left;
  background: var(--bg-color);
}

.modal-title {
  font-weight: bold;
  font-size: clamp(1.125rem, 1.0795rem + 0.2273vw, 1.25rem);
}

.modal-content img {
  display: block;
}

.modal-content p {
  padding: 20px;
}

/* .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled{
  display: none;
} */

.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  font-size: 2em;
}


/*=============================================
loading
=============================================*/

.loading {
  background-color: var(--primary-color);
  position: fixed;
  width: 100%;
  height: 100vh;
  display: grid;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loading>div {
  max-width: 60vw;
  margin: auto;
}


.blur_animation {
  animation: blur .5s both ease-in;
}

@keyframes blur {
  0% {
    filter: blur(0px);
  }

  100% {
    filter: blur(20px);
  }
}


/*=============================================
header
=============================================*/
header {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99;
  padding: 15px;
}

.header {
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}

.header::before {
  content: "";
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  right: 10px;
  top: 10px;
  position: absolute;
}


.header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 80;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  opacity: 0;
  visibility: hidden;
}


.header__nav.open {
  left: 0;
  opacity: 1;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  visibility: visible;
}

.header__nav nav {
  text-align: center;
  font-size: 1.2em;
  height: 100vh;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
}

.header__nav nav li {
  margin-bottom: 1rem;
  display: grid;
}

.header__nav nav li a {
  text-decoration: none;
  color: #fff;
  line-height: 1.4;
}

.header__nav nav span {
  display: block;
}

.header__nav nav .en {
  font-size: clamp(1.5rem, 1.3636rem + 0.6818vw, 1.875rem);
}

.header__nav nav .ja {
  font-size: clamp(0.875rem, 0.8295rem + 0.2273vw, 1rem);
}

.header__nav .menu__sns {
  color: #fff;
  margin-top: 2rem;
}

.header__hamburger {
  width: 60px;
  height: 60px;
  position: absolute;
  border: 0;
  right: -7px;
  top: -5px;
  font-size: 3rem;
  z-index: 99;
  position: relative;
}

.header__hamburger:hover {
  cursor: pointer;
}

.header__hamburger span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 1rem;
  background: var(--primary-color);
  background: var(--bg-color);
  width: 45%;
}

.header__hamburger span:nth-of-type(1) {
  top: 18px;
}

.header__hamburger span:nth-of-type(2) {
  top: 28px;
}

.header__hamburger span:nth-of-type(3) {
  top: 38px;
}

.header__hamburger.open span:nth-of-type(1) {
  top: 22px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
  background-color: #fff;
}

.header__hamburger.open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.open span:nth-of-type(3) {
  top: 34px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
  background-color: #fff;
}

/*=============================================
footer
=============================================*/
footer {
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  padding: 40px;
  padding-bottom: 70px;
  text-align: center;
}

footer a {
  color: #fff;
}

.footer__caption {
  font-size: 0.7em;
  line-height: 1.4;
}

@media screen and (min-width:480px) {
  footer {
    padding-bottom: 40px;
  }
}

/*=============================================
mv
=============================================*/
.mv {
  position: relative;
  background-color: var(--primary-color);
  position: relative;
  width: 100%;
  overflow: hidden;
}

.mv img {
  display: block;
}

.mv__title {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  opacity: 0;
}

.mv__title img {
  width: 100%;
}

.mv__illust {
  margin-bottom: 0;
  width: auto;
  overflow: hidden;
}

.mv.active .mv__illust {
  animation: mv__illust 2.5s ease forwards;
}

.mv.active .mv__title {
  animation: mv__title 0.8s 1.5s ease forwards;
}

@keyframes mv__illust {
  from {
    transform: scale(1.8);
    filter: blur(20px);
    opacity: 0;
  }

  to {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }
}

@keyframes mv__title {
  from {
    filter: blur(20px);
    opacity: 0;
  }

  to {
    filter: blur(0px);
    opacity: 1;
  }
}

/*=============================================
introduction
=============================================*/
.introduction {
  margin: auto;
  position: relative;
  z-index: 1;
  /* background: url("../images/bg_ongaku.png") left top;
  background-size: 200%; */
}

.introduction__video {
  max-width: 1000px;
  padding: 5%;
  margin: auto;
}

.introduction__iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.introduction__video iframe {
  width: 100%;
  height: 100%;
}

/* @media (min-width: 480px) {
  .introduction {
    background-size: 100%;
    background-repeat:  no-repeat;
    background-position: center bottom;
  }
} */

/*=============================================
movie
=============================================*/
.movie {
  position: relative;
}

.movie a {
  text-decoration: none;
}

.movie h3 {
  color: var(--primary-color);
  text-align: center;
  margin-top: 5px;
}

.movie h4 {
  font-size: 0.8em;
  color: var(--primary-color);
  text-align: center;
}

.movie img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.swiper-pagination {
  z-index: auto;
  position: relative;
  margin-top: 20px;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  border: solid 1px var(--primary-color);
}

.swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}

/*=============================================
release
=============================================*/
.release {
  margin: auto;
}

.release__lineup {
  display: grid;
  justify-content: center;
  gap: 40px;
}

.release__cd {
  background-color: var(--primary-color);
  /* background: linear-gradient(90deg, rgba(183,17,23,1) 79%, rgba(238,108,34,1) 100%); */
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.release__cd.--gold {
  background-color: var(--sub-color);
}

.release__lineup img {
  display: block;
}

.release__info {
  padding: 20px;
  height: 100%;
  color: #fff;
}

/* .release__border{
  border-left: solid 1px #fff;
  padding-left: 10px;
} */

.release__type {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  gap: 10px;
  border: double 4px #fff;
  border-left: none;
  border-right: none;
}

.release__type.--flex-start {
  justify-content: flex-start;
  border: none;
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
}

.release__lineup h3 {
  font-weight: bold;
  font-family: '游明朝', 'Yu Mincho', YuMincho, 'Hiragino Mincho Pro', serif;
  font-size: clamp(1.5rem, 1.2500rem + 1.2500vw, 1.625rem);
  color: #fff;
  display: flex;
  align-items: center;
}

.release__lineup h3 img {
  margin-right: 5px;
}

.release__code {
  font-size: 0.8em;
}

.release__label span {
  border-radius: 100px;
  padding: 5px 10px;
  font-family: sans-serif;
  background-color: #fff;
  background-color: var(--sub-color);
  color: #fff;
  font-size: 0.9em;
}

.release__cd.--gold .release__label span {
  background-color: var(--primary-color);
  color: #fff;
}

.release__price .num {
  font-size: 1.4em;
}

.release__price .tax {
  font-size: 0.7em;
  margin-left: 5px;
}

.release__text {
  font-size: 0.9em;
  margin-top: 10px;
}

.release__hinban {
  font-family: sans-serif;
  font-size: 0.8em;
  margin-bottom: 10px;
}

.release__list li {
  margin-bottom: 5px;
  position: relative;
  padding-left: 25px;
}

.release__list li::before {
  content: '\f699';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 0;
  left: 0;
}

.release__special {
  border: solid 1px #fff;
  padding: 20px;
  margin-top: 30px;
}

.release__special h4 {
  font-size: 1.2em;
}

.release__box {
  width: 80%;
  margin: 10px auto;
}

.release__goods {
  margin: auto;
  margin-top: 10px;
  max-width: 200px;
}

.release__notice {
  text-align: center;
  margin-top: 5px;
}

.release__tokuten_old {
  text-align: center;
  margin: 40px 0 30px 0;
  font-weight: bold;
  color: var(--primary-color);
  border: double 4px var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.release__tokuten {
  margin: 40px 0 30px 0;
  border: double 4px var(--primary-color);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
}

.release__tokuten h3{
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 5px;
}


.release__tokuten-modal h4{
  font-size: 1.2em;
  margin-top: 20px;
  color: var(--sub-color);
  font-weight: bold;
}

@media (min-width: 600px) and (max-width: 960px) {
  .release__cd {
    display: grid;
    grid-template-columns: 45% 1fr;
    border-radius: 0 10px 10px 0;
  }
}

@media (min-width: 961px) {
  .release__lineup {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .release__tokuten-info{
    text-align: center;
  }
  }



/*=============================================
event
=============================================*/
.event {
  background-image: url("../images/bg_event.jpg");
  background-color: #4a1a1c;
}

.event .title {
  color: var(--sub-color);
  background-image: url("../images/kazari.svg"), url("../images/kazari_bottom.svg");
}

.event a {
  color: #fff;
  word-break: break-all;
}

.event h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--sub-color);
}

.event h3 i {
  color: var(--sub-color);
}

.event__info {
  font-weight: bold;
}


.event__block {
  display: grid;
  justify-content: center;
  gap: 40px;
}

.event__li {
  padding: 20px;
  border: double 4px var(--sub-color);
  color: #000;
  border-radius: 5px;
  background-color: rgb(0 0 0 / .5);
  color: #fff;
  font-size: 0.95em;
}

.event__li h4 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 5px;
  color: #fff;
  text-align: center;
  background-color: var(--sub-color);
  padding: 0 5px;
  border-radius: 3px;
}

.event__li h5 {
  font-size: 1.4em;
  color: var(--sub-color);
  line-height: 1;
  margin: 10px 0;
}

.event__li h5 span {
  font-size: 0.7em;
}

.event__li p {
  line-height: 1.6;
}

.event__marker {
  background: linear-gradient(transparent 50%, #d9d6ec 50%);
}

.modal {
  font-size: 15px;
  display: none;
}

.event .modal h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 20px;
  color: var(--sub-color);
  border: solid 1px var(--sub-color);
  border-left: none;
  border-right: none;
  padding: 3px 0;
}

.event .modal h5 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--sub-color);
}

.event__modal-main{
  margin-top: 30px;
  padding: 15px;
  border: double 4px var(--sub-color);
  border-radius: 5px;
  background-color: rgb(0 0 0 / .5);
  color: #fff;
}

.event .underline{
  background-color: rgba(212, 160, 105, 0.5);
}

.event__animate{
  border-top: solid 1px var(--sub-color);
  padding-top: 60px;
  margin-top: 60px;
}

.event__animate-info{
  color: var(--sub-color);
  margin-bottom: 20px;
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
}

@media (min-width: 768px) {
  .event__block {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .event__modal-main{
    padding: 30px;
  }
  .event__modal-main .btn{
    text-align: left;
  }
}

/*=============================================
event_article
=============================================*/
.event-article section {
  background-color: #fff;
  padding: 20px;
  color: #000;
}

.event-article h3 {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 20px;
}

.event-article h4 {
  background-color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  margin-bottom: 20px;
}

.event-article h4:not(:first-of-type) {
  margin-top: 30px;
}

.event-article__item li {
  margin-bottom: 5px;
}

.event-article__item span {
  font-size: 0.8em;
  color: var(--primary-color);
  font-weight: bold;
  display: block;
  text-indent: 1em;
}

.event-article .komejirushi {
  font-size: 0.9em;
}

.event-article dl {
  margin-bottom: 30px;
  border-left: solid 4px var(--primary-color);
  padding-left: 10px;
}

.event-article dt {
  color: var(--primary-color);
  margin-bottom: 5px;
  border-bottom: dotted 1px var(--primary-color);
  padding-bottom: 5px;
  font-weight: bold;
}


/*=============================================
track
=============================================*/

.track__num {
  font-size: clamp(1.25rem, 0.7500rem + 2.5000vw, 1.5rem);
}

.track__title {
  font-size: clamp(1.125rem, 0.8750rem + 1.2500vw, 1.25rem);
  font-size: clamp(1rem, 0.9545rem + 0.2273vw, 1.125rem);
}

.track__new {
  background-color: #fff;
  color: var(--primary-color);
  font-size: 0.8em;
  padding: 3px 5px;
  border-radius: 5px;
  margin-left: 10px;
  margin-top: -2px;
}

.track__list dd {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: dotted 1px #fff;
  font-size: clamp(0.875rem, 0.7500rem + 0.6250vw, 0.9375rem);
}

.track__more {
  font-size: 1.8em;
}

.track__fukidashi {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  padding: 5px 10px;
  border: 2px solid #ffffff;
  border-radius: 8px;
  background-color: #ffffff;
  color: var(--primary-color);
}

.track__fukidashi::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-style: solid;
  border-width: 10px 10px 10px 10px;
  border-color: transparent transparent #ffffff;
  translate: -50% -100%;
}


/*=============================================
special
=============================================*/
.special__text {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.special__shop-list {
  display: grid;
  gap: 20px;
}

.special__shop {
  position: relative;
  padding: 30px;
  border: double 4px var(--sub-color);
  border-radius: 10px;
}

.special__shop::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #fff;
  /* border: solid 40px transparent;
  border-image-source: url("../images/border.svg");
  border-image-slice: 150;
  border-image-repeat: stretch; */
  left: 0;
  top: 0;
  z-index: -1;
}

.special__shop-list > section{
  overflow: hidden;
}

.special__shop{
  overflow: hidden;
  position: relative;
}

.special__swiper{
  text-align: center;
  margin: auto;
  color: var(--sub-color);
  font-size: 0.8em;
  margin-bottom: 20px;
}

.special__shop h3 {
  color: var(--sub-color);
  font-weight: bold;
  font-size: clamp(1.25rem, 0.7500rem + 2.5000vw, 1.5rem);
  margin-bottom: 10px;
  line-height: 1.4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.special__shop h3 span {
  font-size: clamp(0.875rem, 0.6250rem + 1.2500vw, 1rem);
  display: block;
  font-weight: normal;
}

.special__link {
  display: grid;
  gap: 10px;
  margin-top: 20px;
  height: 100%;
}

.special__link a {
  display: block;
  padding-right: 10px;
  padding-left: 10px;
}


@media (min-width: 480px) {
  .special__link {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (min-width: 1000px) {
  .special__shop-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .special__shop-list>section {
    display: grid;
  }

  .special__link {
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
  }

  .special__shop::before {
    border-width: 40px;
    border-image-slice: 120;
  }
}



/*=============================================
shop
=============================================*/
.shop {
  margin-top: 40px;
}

.shop__god {
  margin: auto;
  text-align: center;
}

.shop__list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  margin: auto;
  margin-top: 20px;
  max-width: 800px;
}

@media (min-width: 768px) {
  .shop__list {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============================================
tour
=============================================*/
.tour h3 {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: dashed var(--primary-color) 1px;
  border-left: solid 5px var(--primary-color);
  padding-left: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tour h4 {
  color: var(--primary-color);
  font-weight: bold;
}

.tour .btn {
  margin-top: 10px;
  margin-bottom: 20px;
}

.tour .grid {
  text-align: center;
}

.tour .end{
  text-decoration: line-through;
}

@media (min-width: 768px) {
  .tour .grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    align-items: center;
  }
}

/*=============================================
artist
=============================================*/
.artist section {
  display: grid;
  gap: 20px;
}

.artist h3 {
  color: #fff;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.artist__sns {
  display: flex;
  justify-content: center;
  gap: 20px;
  text-align: center;
  font-size: 1.5em;
  padding-bottom: 30px;
}

.artist__sns a {
  color: #fff;
  text-decoration: none;
}

.artist__sns span {
  display: block;
  font-size: 0.6em;
  margin-top: -10px;
}

@media (min-width: 768px) {
  /* .artist section {
    grid-template-columns: 300px 1fr;
    gap: 5%;
  } */

  .artist__sns {
    justify-content: start;
  }
}

/*=============================================
PAGETOP
=============================================*/
#page-top {
  position: fixed;
  width: 120px;
  height: 120px;
  right: -60px;
  bottom: -60px;
  display: grid;
  justify-content: center;
  align-items: center;
  z-index: 2;
  opacity: 0;
  transform: translateY(100px);
  background-color: var(--primary-color);
  padding: 5px;
  text-align: center;
  border-radius: 50%;
}

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

#page-top a {
  text-decoration: none;
  position: absolute;
  left: 10px;
  top: 5px;
  display: block;
  padding: 20px;
}

#page-top i {
  display: block;
}

#page-top span {
  display: block;
  font-size: .5em;
  line-height: 1.2;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

/*=============================================
sp-size
=============================================*/

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}