@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  min-height: 100dvh;
}

.wrap-hidden {
  overflow: hidden;
}

.img-box img {
  width: 100%;
}

.obj-fit img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.h-scale .img-box {
  overflow: hidden;
}
.h-scale .img-box img {
  transition: all 0.3s;
}
.h-scale:hover .img-box img {
  transform: scale(1.1);
}

.inner {
  position: relative;
  width: 85.9788359788vw;
  min-width: 128rem;
  max-width: 140rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .inner {
    width: 80%;
    min-width: 30rem;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
  }
}

.p-top h2,
.p-archive h2 {
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 10rem;
  line-height: 1;
  font-weight: 700;
  color: #001330;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .p-top h2,
  .p-archive h2 {
    font-size: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .p-top h2,
  .p-archive h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
.p-top h2::after,
.p-archive h2::after {
  content: "";
  width: 2px;
  height: 50.4rem;
  background-color: #000;
  position: absolute;
  bottom: -55rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1200px) {
  .p-top h2::after,
  .p-archive h2::after {
    position: static;
  }
}

th {
  font-size: 1.8rem;
  line-height: 1.7;
  letter-spacing: 1px;
}

td,
p,
li,
a {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  td,
  p,
  li,
  a {
    font-size: 1.4rem;
  }
}

.flex {
  display: flex;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

.cs {
  font-family: "Outfit", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 3px;
  text-align: center;
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(3, 36, 86) 0%, rgb(49, 1, 33) 40%, rgb(116, 11, 81) 100%);
}
@media screen and (max-width: 768px) {
  .cs {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.post-card {
  width: calc(33.3333333333% - 2.6666666667rem);
  padding: 2rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 0 25px -8px rgba(0, 0, 0, 0.25);
}
.post-card .img-box {
  aspect-ratio: 1/0.65;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1.8rem;
}
.post-card .ttl {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 768px) {
  .post-card .ttl {
    font-size: 1.6rem;
  }
}
.post-card .txt {
  margin-bottom: 1rem;
}
.post-card .date {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fadeIn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}

.active {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  .animettl h2 {
    text-align: center;
  }
}
.animettl h2 span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .animettl h2 span:first-of-type {
    display: none;
  }
}

.u-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .u-pc {
    display: none !important;
  }
}

.u-pc-inlineblock {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-pc-inlineblock {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp {
    display: block;
  }
}

.u-sp-inlineblock {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inlineblock {
    display: inline-block;
  }
}

.u-sp-inline {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-inline {
    display: inline;
  }
}

.u-align--center {
  text-align: center;
}

.u-md {
  display: none;
}
@media screen and (max-width: 1200px) {
  .u-md {
    display: block;
  }
}

.u-pc-md {
  display: block;
}
@media screen and (max-width: 1200px) {
  .u-pc-md {
    display: none;
  }
}

/*************************************************
header
*************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 0;
  z-index: 999;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  header {
    padding: 1.5rem 0;
  }
}
header.active {
  background-color: #fff;
}
header.active .line::before {
  background-color: #000;
}
header.active nav ul li a {
  color: #000;
}
header.active .sns-icon.black {
  display: flex !important;
}
header.mega-active .sns-icon.black {
  display: flex !important;
}
header .header_inner {
  position: relative;
  width: 96.5608465608vw;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header .header_inner {
    width: 90%;
    justify-content: flex-start;
  }
}
header .header_inner.is-megamenu-icon .hamberger-wrap {
  padding-left: 2.6666666667vw;
}
header .header-menu {
  width: 65%;
  max-width: 90rem;
}
@media screen and (max-width: 1200px) {
  header .header-menu {
    width: 70rem;
  }
}
@media screen and (max-width: 768px) {
  header .header-menu {
    display: none;
  }
}
header nav ul {
  display: flex;
  justify-content: space-between;
}
header nav ul li a {
  font-family: "Outfit", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: #fff;
  transition: all 0.5s;
}
@media screen and (max-width: 1200px) {
  header nav ul li a {
    font-size: 1.4rem;
  }
}
header nav ul li a:hover {
  color: transparent;
  -webkit-background-clip: text;
          background-clip: text;
  background-image: linear-gradient(90deg, rgb(3, 36, 86) 0%, rgb(49, 1, 33) 40%, rgb(116, 11, 81) 100%);
}
header .btn-wrap {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
header .header-btn {
  position: relative;
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  padding: 14px 34px 12px 27px;
  border-radius: 100vmax;
  background-color: #f8e10f;
}
@media screen and (max-width: 768px) {
  header .header-btn {
    font-size: 1.4rem;
    padding: 10px 25px 10px 15px;
  }
}
header .header-btn::before {
  content: "";
  position: absolute;
  top: 1.8rem;
  right: 1.5rem;
  display: inline-block;
  vertical-align: middle;
  color: #000;
  line-height: 1;
  width: 8px;
  aspect-ratio: 1/1;
  border: 2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  header .header-btn::before {
    width: 6px;
    top: 1.4rem;
    right: 1rem;
    border: 1.5px solid currentColor;
    border-left: 0;
    border-bottom: 0;
  }
}
header .sns-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10rem;
  display: flex;
  gap: 3rem;
  align-items: end;
}
@media screen and (max-width: 768px) {
  header .sns-icon {
    right: 0;
    gap: 2rem;
  }
}
header .sns-icon a {
  width: 2.2rem;
}
header .sns-icon a img {
  width: 100%;
}
header .sns-icon.black {
  display: none !important;
}

.hamberger-wrap {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamberger-wrap {
    display: block;
  }
}

.hambager-content {
  position: relative;
  width: 3.5rem;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hambager-content.is-ham-open .hambager .c-line {
  background-color: #000;
}
.hambager-content.is-ham-open .hambager .c-line:first-of-type {
  animation: line1-open var(--navTransition) forwards;
}
.hambager-content.is-ham-open .hambager .c-line:nth-of-type(2) {
  animation: line2-open var(--navTransition) forwards;
}
.hambager-content.is-ham-open .hambager .c-line:last-of-type {
  animation: line3-open var(--navTransition) forwards;
}

:root {
  --navTransition: 0.4s;
}

.hambager {
  width: 100%;
  aspect-ratio: 1/0.5;
  position: relative;
  display: block;
  cursor: pointer;
}
.hambager .c-line {
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .hambager .c-line {
    width: 100%;
    background-color: #fff;
  }
}
.hambager .c-line:first-of-type {
  top: 0;
  animation: line1 var(--navTransition) forwards;
}
.hambager .c-line:nth-of-type(2) {
  top: 50%;
  animation: line2 var(--navTransition) forwards;
}
.hambager .c-line:last-of-type {
  top: 100%;
  animation: line3 var(--navTransition) forwards;
}

header.active .c-line {
  background-color: #000;
}

@keyframes line1 {
  0% {
    top: 50%;
    transform: rotate(45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 0;
  }
}
@keyframes line1-open {
  0% {
    transform: rotate(0);
    top: 0;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(45deg);
  }
}
@keyframes line2 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes line2-open {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes line3 {
  0% {
    top: 50%;
    transform: rotate(-45deg);
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    transform: rotate(0);
    top: 100%;
  }
}
@keyframes line3-open {
  0% {
    transform: rotate(0);
    top: 100%;
  }
  50% {
    transform: rotate(0);
    top: 50%;
  }
  100% {
    top: 50%;
    transform: rotate(-45deg);
  }
}
.mega-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  background-color: #fff;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: 998;
  overflow: hidden;
}
.mega-menu.is-megamenu-open {
  transform: translateX(0);
}
.mega-menu .mega-menu_inner {
  position: relative;
  width: 80%;
  padding-top: 100px;
  margin: 0 auto;
}
.mega-menu .mega-menu_inner::before {
  position: absolute;
  top: 2.5rem;
  right: -15rem;
  content: "";
  width: 120%;
  aspect-ratio: 1/4;
  background: url(../images/bg-img02.svg) no-repeat top/contain;
}
.mega-menu .mega-menu_inner nav ul li {
  margin-bottom: 1rem;
}
.mega-menu .mega-menu_inner nav ul li a {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  letter-spacing: 2px;
}

/*************************************************
footer
*************************************************/
footer {
  background: url(../images/footer.bg.jpg) repeat top/contain;
  padding: 2.1rem 0 1.8rem;
  filter: blur(0);
}
footer .archive-list {
  margin: 3rem 0;
}
footer .archive-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 20rem;
  aspect-ratio: 1/0.18;
  border-radius: 100vmax;
  background-color: rgba(255, 255, 255, 0.9);
  font-size: 1.4rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
footer .archive-list a:hover {
  background-color: #f8e10f;
}
footer p {
  text-align: center;
}
footer p small {
  font-family: "Outfit", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer p small {
    font-size: 1rem;
  }
}

/*************************************************
top
*************************************************/
.side_fix {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
  left: 0;
  top: 50%;
  z-index: 10;
  writing-mode: vertical-rl; /* 縦書き・右→左 */
  text-orientation: upright; /* 縦中横の制御 */
  border-radius: 0 4px 4px 0;
}
.side_fix a {
  font-size: 12px;
  font-weight: bold;
  padding: 10px 6px;
  display: block;
  border-radius: 10px;
}

.mv {
  position: relative;
  width: 100vw;
  height: 100svh;
  max-height: 108rem;
  background-color: #aaa;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mv {
    max-height: 63rem;
  }
}
.mv .img-box {
  height: 100%;
}
.mv .contents {
  position: absolute;
  top: calc(50% + 1.9841269841vw);
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv .kv-image {
  width: 56.2169312169vw;
  margin: 0 auto 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 768px) {
  .mv .kv-image {
    width: 94.6666666667vw;
  }
}
.mv .kv-image img {
  width: 100%;
}
.mv .mv_info {
  position: relative;
  width: 56.2169312169vw;
  max-width: 85rem;
  border: 1px solid #fff;
  border-radius: 9px;
  padding: 2rem 4.6296296296vw 1.5rem;
  background-color: rgba(2, 8, 12, 0.5);
  margin: 0 auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .mv .mv_info {
    width: 85%;
    max-width: 375px;
    padding: 5.3333333333vw 4vw;
  }
}
.mv .mv_info::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 6px;
  content: "ご来場ありがとうございました";
  font-size: 24px;
  font-weight: 600;
  color: #02080c;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 70%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 16px rgba(70, 217, 239, 0.6);
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .mv .mv_info::before {
    width: 95%;
    height: 60%;
    font-size: 18px;
  }
}
.mv .mv_info p {
  color: #fff;
}
.mv .mv_info .place {
  position: relative;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  letter-spacing: 4px;
  line-height: 1.2;
  width: 100%;
  margin: 0 auto 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .place {
    font-size: 1.8rem;
    width: 100%;
    margin-bottom: 3rem;
  }
}
.mv .mv_info .place::before, .mv .mv_info .place::after {
  content: "";
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  bottom: -3.5px;
}
.mv .mv_info .place::before {
  left: 0;
}
.mv .mv_info .place::after {
  right: 0;
}
.mv .mv_info .place span {
  display: inline-block;
  font-size: 2.6rem;
}
@media screen and (max-width: 1200px) {
  .mv .mv_info .place span {
    font-size: 2rem;
  }
}
.mv .mv_info .flex {
  justify-content: center;
  align-items: flex-end;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .flex {
    gap: 1rem;
  }
}
.mv .mv_info .date,
.mv .mv_info .time {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1;
}
.mv .mv_info .date {
  display: flex;
  align-items: baseline;
}
.mv .mv_info .date span {
  display: block;
}
.mv .mv_info .date span:first-of-type {
  font-size: 2.6rem;
  padding-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .date span:first-of-type {
    font-size: 1.6rem;
  }
}
.mv .mv_info .date span:nth-of-type(2n) {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .date span:nth-of-type(2n) {
    font-size: 2.2rem;
  }
}
.mv .mv_info .date span:last-of-type {
  font-size: 3rem;
  padding-left: 1rem;
  padding-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .date span:last-of-type {
    font-size: 1.5rem;
    padding-left: 0.5rem;
    padding-bottom: 2px;
  }
}
.mv .mv_info .time {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time {
    padding-bottom: 2px;
  }
}
.mv .mv_info .time span {
  display: block;
}
.mv .mv_info .time span:first-of-type {
  position: relative;
  font-size: 3.2rem;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time span:first-of-type {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}
.mv .mv_info .time span:first-of-type::before {
  content: "[START]";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -8rem;
  font-size: 1.9rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time span:first-of-type::before {
    top: -1rem;
    left: 0;
    font-size: 1.1rem;
  }
}
.mv .mv_info .time span:nth-of-type(2n) {
  position: relative;
  font-size: 2.4rem;
  line-height: 32px;
  padding-left: 8rem;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time span:nth-of-type(2n) {
    font-size: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1em;
    padding-left: 1rem;
  }
}
.mv .mv_info .time span:nth-of-type(2n)::before {
  content: "[OPEN]";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 1rem;
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time span:nth-of-type(2n)::before {
    top: -1rem;
    left: 1rem;
    font-size: 1.1rem;
  }
}
.mv .mv_info .time span:nth-of-type(3n) {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .mv .mv_info .time span:nth-of-type(3n) {
    font-size: 1.1rem;
  }
}
.mv .btn-wrap {
  width: 29.7619047619vw;
  max-width: 40rem;
  display: flex;
  gap: 2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap {
    width: 80vw;
    aspect-ratio: 1/0.2;
    flex-direction: column;
    gap: 1rem;
  }
}
.mv .btn-wrap .btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  aspect-ratio: 1/0.2;
  background-color: #fce000;
  border-radius: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: #001330;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn {
    border-radius: 7px;
    aspect-ratio: 1/0.24;
    font-size: 4.2666666667vw;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  }
}
.mv .btn-wrap .btn.nikonama {
  background-color: #fff;
  box-shadow: 0 0 25px rgba(70, 217, 239, 0.8);
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn.nikonama {
    box-shadow: 0 0 15px rgba(70, 217, 239, 0.6);
  }
}
.mv .btn-wrap .btn.nikonama span {
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn.nikonama span {
    font-size: 2.9333333333vw;
  }
}
.mv .btn-wrap .btn span {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn span {
    font-size: 3.2vw;
    font-weight: 800;
  }
}
.mv .btn-wrap .btn::before, .mv .btn-wrap .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 13px solid #001330;
  border-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn::before, .mv .btn-wrap .btn::after {
    bottom: 4.8vw;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-top: 8px solid #001330;
  }
}
.mv .btn-wrap .btn::before {
  left: 4rem;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn::before {
    left: 5.3333333333vw;
  }
}
.mv .btn-wrap .btn::after {
  right: 4rem;
}
@media screen and (max-width: 768px) {
  .mv .btn-wrap .btn::after {
    right: 5.3333333333vw;
  }
}

.head-ttl {
  position: absolute;
  top: -13.7rem;
  writing-mode: vertical-lr;
}
@media screen and (max-width: 768px) {
  .head-ttl {
    position: static;
    writing-mode: horizontal-tb;
  }
}

.top_concept {
  padding: 24.2rem 0 18.4rem;
}
@media screen and (max-width: 1200px) {
  .top_concept {
    padding: 19.2rem 0 10.4rem;
  }
}
@media screen and (max-width: 768px) {
  .top_concept {
    padding: 8rem 0 5rem;
  }
}
.top_concept .inner::before {
  position: absolute;
  top: -156.5rem;
  right: -14.7rem;
  content: "";
  width: 52.6rem;
  aspect-ratio: 1/5.5;
  background: url(../images/bg-img02.svg) no-repeat center/contain;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .top_concept .inner::before {
    top: -253.3333333333vw;
    right: -40vw;
    width: 80vw;
  }
}
.top_concept .head-ttl {
  right: 0;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .top_concept .head-ttl {
    margin-bottom: 8rem;
  }
}
@media screen and (max-width: 768px) {
  .top_concept .head-ttl h2 {
    mix-blend-mode: exclusion;
  }
}
.top_concept .head-ttl h2::after {
  content: "";
  height: 30rem;
  bottom: -35rem;
}
.top_concept .box {
  position: relative;
  width: 76.0582010582vw;
  aspect-ratio: 1/0.47;
  border-top-right-radius: 19.5767195767vw;
  border-bottom-right-radius: 19.5767195767vw;
  background: url(../images/bg-img01.jpg) no-repeat center/cover;
  margin-left: calc((100vw - 100%) / 2 * -1);
}
@media screen and (max-width: 1200px) {
  .top_concept .box {
    aspect-ratio: 1/0.55;
  }
}
@media screen and (max-width: 768px) {
  .top_concept .box {
    width: 96vw;
    max-width: 67rem;
    aspect-ratio: 1/1;
    border-top-right-radius: 100vmax;
    border-bottom-right-radius: 100vmax;
  }
}
.top_concept .box::before {
  content: "";
  width: 33.7301587302vw;
  aspect-ratio: 1/0.48;
  background: url(../images/txt-fuuryu.svg) no-repeat center/contain;
  position: absolute;
  top: -6.9444444444vw;
  left: -1rem;
  mix-blend-mode: difference;
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .top_concept .box::before {
    width: 53.3333333333vw;
    max-width: 250px;
    top: min(-8vw, -50px);
    left: -2.6666666667vw;
  }
}
.top_concept .box p {
  position: relative;
  mix-blend-mode: exclusion;
  color: #fff;
  padding-left: 6.6137566138vw;
  font-size: clamp(1.6rem, 1.8518518519vw, 3rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 3px;
}
@media screen and (max-width: 1200px) {
  .top_concept .box p {
    line-height: 1.7;
  }
}
@media screen and (max-width: 768px) {
  .top_concept .box p {
    font-family: YakuHanJP, "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: clamp(1.4rem, 3.7333333333vw, 2.4rem);
    padding-left: 2.6666666667vw;
  }
}
.top_concept .box p:first-of-type {
  padding-top: 6.6137566138vw;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .top_concept .box p:first-of-type {
    padding-top: 11rem;
  }
}
@media screen and (max-width: 768px) {
  .top_concept .box p:first-of-type {
    padding-top: 13.8666666667vw;
  }
}
.top_concept .box p span {
  font-size: clamp(2.4rem, 2.6455026455vw, 4.5rem);
}
@media screen and (max-width: 768px) {
  .top_concept .box p span {
    font-size: clamp(1.8rem, 5.3333333333vw, 4rem);
  }
}

.top_artist {
  padding: 11.6rem 0 30rem;
  background-color: #fff;
}
@media screen and (max-width: 1200px) {
  .top_artist {
    padding: 11.6rem 0 6rem;
  }
}
@media screen and (max-width: 768px) {
  .top_artist {
    padding: 4rem 0rem 8rem;
  }
}
.top_artist .head-ttl {
  left: 0;
}
@media screen and (max-width: 768px) {
  .top_artist .head-ttl {
    left: -2.6666666667vw;
  }
}
.top_artist .head-ttl h2::after {
  height: 20rem;
  bottom: -25rem;
}
.top_artist .inner {
  padding-top: 11.6rem;
}
@media screen and (max-width: 1200px) {
  .top_artist .inner {
    padding-top: 0;
  }
}
.top_artist .inner > p {
  width: 98rem;
  margin: 0 auto 2rem;
  font-size: 3.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top_artist .inner > p {
    width: 100%;
    font-size: 2.4rem;
    text-align: center;
  }
}
.top_artist .cs {
  margin: 10rem 0 30rem;
}
@media screen and (max-width: 768px) {
  .top_artist .cs {
    margin: 10rem 0 10rem;
  }
}
.top_artist .andmore {
  text-align: center;
  font-weight: 600;
}

.artist-list {
  position: relative;
  width: 98rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  row-gap: 6rem;
  margin-bottom: 6rem;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .artist-list {
    width: 80%;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .artist-list {
    width: 100%;
    row-gap: 4rem;
    margin-bottom: 4rem;
  }
}
.artist-list li {
  width: calc(33.3333333333% - 2.6666666667rem);
}
@media screen and (max-width: 1200px) {
  .artist-list li {
    width: calc(50% - 1rem);
    max-width: 40rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .artist-list li {
    width: 90%;
    margin: 0 auto;
  }
}
.artist-list li .img-box {
  width: 100%;
  aspect-ratio: 1/0.85;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.artist-list li p {
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
}
.artist-list li p span {
  font-size: 1.4rem;
}
.artist-list li.new {
  position: relative;
}
.artist-list li.new::after {
  position: absolute;
  top: -2rem;
  left: -1.5rem;
  content: "new!";
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #001330;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fce000;
  rotate: -15deg;
}
@media screen and (max-width: 768px) {
  .artist-list li.new::after {
    left: auto;
    right: -1.5rem;
    width: 6rem;
    font-size: 15px;
  }
}

.top_about {
  padding: 15rem 0;
  background: url(../images/bg-img01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .top_about {
    padding: 8rem 0;
  }
}
.top_about .cs {
  color: #fff;
  margin: 10rem 0 40rem;
}
@media screen and (max-width: 1200px) {
  .top_about .cs {
    margin: 10rem 0 25rem;
  }
}
@media screen and (max-width: 768px) {
  .top_about .cs {
    margin: 5rem 0 12rem;
  }
}
.top_about .block {
  position: relative;
}
.top_about .block h2 {
  mix-blend-mode: exclusion;
  color: #fff;
}
.top_about .block h2::before {
  background-color: #fff;
  mix-blend-mode: exclusion;
}
.top_about .block h2::after {
  background-color: #fff;
  mix-blend-mode: exclusion;
}
.top_about .block:last-of-type {
  padding-top: 0rem;
}
.top_about .block:last-of-type .head-ttl {
  top: -34rem;
  left: 0;
}
.top_about .block:last-of-type .head-ttl h2::after {
  height: 40rem;
  bottom: -45rem;
}
.top_about .block:last-of-type .about-table {
  width: 96rem;
  margin: 0 auto;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 8rem 5rem;
}
@media screen and (max-width: 1200px) {
  .top_about .block:last-of-type .about-table {
    width: 80%;
    padding: 3.5rem 4rem 5rem;
  }
}
@media screen and (max-width: 768px) {
  .top_about .block:last-of-type .about-table {
    width: 100%;
    max-width: 60rem;
    padding: 2rem 1.5rem 3rem;
  }
}
.top_about .block:last-of-type .about-table table {
  width: 100%;
}
.top_about .block:last-of-type .about-table table tr th,
.top_about .block:last-of-type .about-table table tr td {
  padding: 2.5rem 1.8rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .top_about .block:last-of-type .about-table table tr th,
  .top_about .block:last-of-type .about-table table tr td {
    display: block;
    border-bottom: none;
  }
}
.top_about .block:last-of-type .about-table table tr th {
  width: 20%;
}
@media screen and (max-width: 1200px) {
  .top_about .block:last-of-type .about-table table tr th {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .top_about .block:last-of-type .about-table table tr th {
    width: 100%;
    padding-bottom: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .top_about .block:last-of-type .about-table table tr td {
    padding-top: 0.75rem;
    border-bottom: 1px solid #fff;
  }
}

.archive_wrap,
.top_news {
  position: relative;
  padding: 19.4rem 0 4rem;
  background-color: #f6f6f6;
}
@media screen and (max-width: 768px) {
  .archive_wrap,
  .top_news {
    padding: 15rem 0 0;
  }
}
.archive_wrap::before,
.top_news::before {
  content: "";
  width: 289.4rem;
  aspect-ratio: 1/0.18;
  background: url(../images/bg-img02-b.svg) no-repeat center/contain;
  position: absolute;
  top: 1.4rem;
  right: 47rem;
}
@media screen and (max-width: 768px) {
  .archive_wrap::before,
  .top_news::before {
    width: 480vw;
    top: -10rem;
    right: 6rem;
  }
}
.archive_wrap .head-ttl,
.top_news .head-ttl {
  right: 0;
}
.archive_wrap .head-ttl h2::after,
.top_news .head-ttl h2::after {
  content: "";
  height: 25rem;
  bottom: -30rem;
}
.archive_wrap .card-list,
.top_news .card-list {
  width: 98rem;
  margin: 0 auto 5.5rem;
}
@media screen and (max-width: 1200px) {
  .archive_wrap .card-list,
  .top_news .card-list {
    width: 80%;
    gap: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .archive_wrap .card-list,
  .top_news .card-list {
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .archive_wrap .card-list .post-card,
  .top_news .card-list .post-card {
    width: calc(50% - 1rem);
  }
}
@media screen and (max-width: 768px) {
  .archive_wrap .card-list .post-card,
  .top_news .card-list .post-card {
    width: 90%;
    max-width: 40rem;
    margin: 0 auto;
  }
}
.archive_wrap .btn,
.top_news .btn {
  display: flex;
  justify-content: flex-end;
  padding-right: calc((100% - 98rem) / 2);
}
@media screen and (max-width: 768px) {
  .archive_wrap .btn,
  .top_news .btn {
    width: 90%;
    margin: 0 auto;
  }
}
.archive_wrap .btn a,
.top_news .btn a {
  font-family: "Outfit", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #001330;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.top_ticket {
  padding: 10.5rem 0 10rem;
  background: url(../images/bg-img01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .top_ticket {
    padding: 8rem 0 10rem;
  }
}
.top_ticket .inner {
  padding-top: 15rem;
  margin-top: -15rem;
}
@media screen and (max-width: 768px) {
  .top_ticket .inner {
    padding-top: 10rem;
    margin-top: -10rem;
  }
}
.top_ticket .head-ttl {
  top: -10.5rem;
  left: 0;
}
.top_ticket h2 {
  mix-blend-mode: exclusion;
  color: #fff;
}
.top_ticket h2::before {
  background-color: #fff;
  mix-blend-mode: exclusion;
}
.top_ticket h2::after {
  background-color: #fff;
  mix-blend-mode: exclusion;
  height: 23rem;
  bottom: -28rem;
}
.top_ticket .box {
  width: 102rem;
  margin: 0 auto;
  padding: 10rem 0 6.3rem;
  background-color: #fff;
  border-radius: 1rem;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .top_ticket .box {
    width: 80%;
    padding: 4.7rem 0 4.3rem;
  }
}
@media screen and (max-width: 768px) {
  .top_ticket .box {
    width: 100%;
    max-width: 60rem;
    padding: 5rem 1rem;
  }
}
.top_ticket .box h3 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2.6rem;
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3 {
    font-size: 2rem;
    max-width: 40rem;
    margin: 0 auto 2.6rem;
  }
}
.top_ticket .box h3::before, .top_ticket .box h3::after {
  content: "";
  width: 2px;
  height: 4rem;
  background-color: #000;
  position: absolute;
  bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3::before, .top_ticket .box h3::after {
    height: 3rem;
  }
}
.top_ticket .box h3::before {
  left: 32rem;
  transform: rotate(-30deg);
}
@media screen and (max-width: 1200px) {
  .top_ticket .box h3::before {
    left: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3::before {
    left: 4rem;
  }
}
.top_ticket .box h3::after {
  right: 32rem;
  transform: rotate(30deg);
}
@media screen and (max-width: 1200px) {
  .top_ticket .box h3::after {
    right: 16rem;
  }
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3::after {
    right: 4rem;
  }
}
.top_ticket .box h3 span {
  font-family: "Outfit", sans-serif;
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3 span {
    font-size: 2.4rem;
  }
}
.top_ticket .box h3 img {
  width: 11.2rem;
  aspect-ratio: 1/1;
  position: absolute;
  top: -8rem;
  left: 33rem;
}
@media screen and (max-width: 768px) {
  .top_ticket .box h3 img {
    width: 7rem;
    top: -4.5rem;
    left: 3rem;
  }
}
.top_ticket .box .txt {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .top_ticket .box .txt {
    font-size: 1.5rem;
    margin-bottom: 7rem;
  }
}
@media screen and (max-width: 768px) {
  .top_ticket .box .txt {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
}
.top_ticket .box .ticket-btn {
  position: relative;
  width: 73.4rem;
  aspect-ratio: 1/0.16;
  margin: 0 auto 3rem;
}
@media screen and (max-width: 1200px) {
  .top_ticket .box .ticket-btn {
    width: 50rem;
  }
}
@media screen and (max-width: 768px) {
  .top_ticket .box .ticket-btn {
    width: 100%;
    max-width: 40rem;
    aspect-ratio: 1/0.25;
    margin-bottom: 2rem;
  }
}
.top_ticket .box .ticket-btn a {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #f8e10f;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 2.4rem;
  font-weight: 600;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .top_ticket .box .ticket-btn a {
    font-size: 1.6rem;
    text-align: center;
    padding-top: 0.5rem;
  }
}
.top_ticket .box .ticket-btn a::before {
  content: "";
  width: 100%;
  height: 95%;
  border-radius: 1rem;
  background-color: #d6c20c;
  position: absolute;
  top: 1.2rem;
  left: 0;
  transition: all 0.3s;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .top_ticket .box .ticket-btn a::before {
    top: 0.8rem;
  }
}
.top_ticket .box .ticket-btn a span {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .top_ticket .box .ticket-btn a span {
    font-size: 1.2rem;
  }
}

.top_access {
  padding-top: 16rem;
}
@media screen and (max-width: 768px) {
  .top_access {
    padding-top: 10rem;
  }
}
.top_access .inner {
  padding-top: 10.6rem;
}
@media screen and (max-width: 1200px) {
  .top_access .inner {
    padding-top: 0;
  }
}
.top_access .head-ttl {
  left: 0;
}
.top_access h2::after {
  height: 35rem;
  bottom: -40rem;
}
.top_access .flex {
  justify-content: space-between;
  width: 107.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  .top_access .flex {
    width: 80%;
    flex-direction: column;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top_access .flex {
    width: 100%;
    max-width: 60rem;
    gap: 0;
  }
}
.top_access .left {
  width: 50rem;
  padding-left: 3.2rem;
  border-left: 2px solid #333;
}
@media screen and (max-width: 1200px) {
  .top_access .left {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top_access .left {
    padding-left: 0;
    border-left: none;
  }
}
.top_access .left .box {
  padding: 3rem 0 4rem;
}
@media screen and (max-width: 768px) {
  .top_access .left .box {
    padding: 2rem 0;
  }
}
.top_access .left .box h3 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 3px;
  margin-bottom: 1.1rem;
}
.top_access .left .box p {
  letter-spacing: 0;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .top_access .left .box p:last-of-type {
    margin-bottom: 0;
  }
}
.top_access .left .box p .spa01 {
  font-weight: 600;
}
.top_access .left .box p .spa02 {
  font-size: 1.4rem;
}
.top_access .left .box p .spa03 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.top_access .left .box div {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.top_access .left .box div a {
  text-decoration: underline;
}
.top_access .left .box div:first-of-type {
  margin-bottom: 1rem;
}
.top_access .left .box:first-of-type p {
  margin-bottom: 3rem;
}
.top_access .left .box:not(:last-of-type) {
  border-bottom: 1px solid #000;
}
.top_access .right {
  width: 52rem;
}
@media screen and (max-width: 1200px) {
  .top_access .right {
    width: 100%;
  }
}
.top_access .right .map {
  aspect-ratio: 1/1.42;
}
@media screen and (max-width: 1200px) {
  .top_access .right .map {
    aspect-ratio: 1/0.6;
  }
}
@media screen and (max-width: 768px) {
  .top_access .right .map {
    aspect-ratio: 1/0.8;
  }
}

.top_notes {
  padding-top: 24rem;
}
@media screen and (max-width: 768px) {
  .top_notes {
    padding-top: 12rem;
  }
}
.top_notes .head-ttl {
  right: 0;
}
.top_notes h2::after {
  height: 35rem;
  bottom: -40rem;
}
.top_notes .note {
  width: 103.3rem;
  margin: 0 auto 3rem;
  font-size: 1.8rem;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .top_notes .note {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top_notes .note {
    width: 100%;
    max-width: 60rem;
    font-size: 1.4rem;
    margin: 0 auto 2rem;
  }
}
.top_notes .box {
  width: 103.3rem;
  background-color: #f5f5f5;
  border-radius: 1rem;
  margin: 0 auto 10rem;
  padding: 4.3rem 8.7rem 2.5rem 5.4rem;
}
@media screen and (max-width: 1200px) {
  .top_notes .box {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top_notes .box {
    width: 100%;
    max-width: 60rem;
    padding: 3rem 1.5rem;
    margin-bottom: 8rem;
  }
}
.top_notes .box h3 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.5;
  background-color: #fff;
  border-radius: 0.6rem;
  padding: 1.5rem 2.5rem;
  margin-bottom: 2rem;
}
.top_notes .box h4 {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 15px;
}
.top_notes .box h4::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 5px;
  height: 100%;
  background-color: #000;
}
.top_notes .box p {
  margin-bottom: 2rem;
}
.top_notes .box ul {
  list-style: disc;
  padding-left: 2rem;
}
.top_notes .box ul li {
  margin-bottom: 2rem;
  letter-spacing: 0;
}
.top_notes .box ul li span {
  font-size: 90%;
}
.top_notes .box ul li a {
  text-decoration: underline;
  font-weight: 600;
  color: #001330;
}

.top_contact {
  margin-bottom: 30rem;
}
@media screen and (max-width: 768px) {
  .top_contact {
    margin-bottom: 20rem;
  }
}
.top_contact h2 {
  text-align: center;
  font-size: 6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .top_contact h2 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top_contact h2 span:first-of-type {
    display: inline-block !important;
  }
}
.top_contact h2::after {
  width: 0;
}
.top_contact a {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .top_contact a {
    font-size: 1.5rem;
  }
}

.youtube-wrap {
  padding-top: 10rem;
  margin-top: -10rem;
  padding-bottom: 18rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .youtube-wrap {
    padding-bottom: 10rem;
  }
}
.youtube-wrap .youtube {
  width: 100%;
  max-width: 98rem;
  aspect-ratio: 16/9;
  margin: 0 auto 4rem;
}
.youtube-wrap p {
  max-width: 98rem;
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: 1px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .youtube-wrap p {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}
.youtube-wrap p span {
  font-size: 1.4rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .youtube-wrap p span {
    display: block;
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.modal-overlay {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80vw;
  max-width: 1100px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  padding: 2rem;
  background-color: #000;
  background: url(../images/mv.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .modal-content {
    padding: 1rem;
    width: 100vw;
    background-size: cover;
  }
}
.modal-content > div {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16/9;
}

.modal-close {
  position: absolute;
  top: -4rem;
  right: -4rem;
  background: none;
  border: none;
  font-size: 4rem;
  line-height: 1;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-close {
    right: 0;
  }
}

.top_stream {
  background-color: #f6f6f6;
  padding: 10rem 0 28rem;
}
@media screen and (max-width: 768px) {
  .top_stream {
    padding: 7rem 0 8rem;
  }
}
.top_stream h2 {
  margin-left: -1rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 768px) {
  .top_stream h2 {
    margin-bottom: 3rem;
  }
}
.top_stream h2::after {
  width: 40rem;
  height: 2px;
  bottom: auto;
  top: 50%;
  left: 45%;
  transform: translateY(-50%);
}
.top_stream .banner-wrap {
  max-width: 100rem;
  margin: 0 auto;
  transition: all 0.3s;
}
.top_stream .banner-wrap:hover {
  transform: scale(1.02);
}

/*************************************************
  下層ページ
*************************************************/
.under-mv {
  position: relative;
  aspect-ratio: 1/0.3;
}
@media screen and (max-width: 768px) {
  .under-mv {
    aspect-ratio: 1/0.7;
  }
}
.under-mv .img-box {
  height: 100%;
}
.under-mv h1 {
  width: 100%;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -53%);
  font-family: "Outfit", sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .under-mv h1 {
    font-size: 3.2rem;
  }
}

/*************************************************
  NEWS-一覧
*************************************************/
@media screen and (max-width: 768px) {
  .p-archive h2 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-archive .archive_wrap {
    padding-top: 6rem;
  }
}
.p-archive .archive_wrap .inner {
  min-height: 85rem;
}
@media screen and (max-width: 768px) {
  .p-archive .archive_wrap .inner {
    min-height: 55rem;
  }
}

/*************************************************
  NEWS-詳細
*************************************************/
@media screen and (max-width: 768px) {
  .p-single h1 {
    width: 90%;
    font-size: 2.4rem;
    text-align: left;
  }
}
.p-single .inner {
  padding: 10rem 0;
}
@media screen and (max-width: 768px) {
  .p-single .inner {
    padding: 6rem 0;
  }
}
.p-single .contents {
  max-width: 1100px;
  margin: 0 auto 10rem;
}
.p-single .contents h2 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  color: #001330;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents h2 {
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
}
.p-single .contents h3 {
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  color: #001330;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents h3 {
    font-size: 1.8rem;
  }
}
.p-single .contents h3 a {
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  color: inherit;
}
.p-single .contents p {
  margin-bottom: 2rem;
  line-height: 2;
}
.p-single .contents p span {
  font-size: 80%;
}
.p-single .contents a {
  color: #001330;
  font-weight: 600;
  text-decoration: underline;
}
.p-single .contents .flex {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents .flex {
    flex-direction: column;
    gap: 2rem;
  }
}
.p-single .contents .flex .img-box img {
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
}
.p-single .contents ul.notes li {
  position: relative;
  padding-left: 2rem;
}
.p-single .contents ul.notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.p-single .contents .img-block {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 4rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents .img-block {
    margin-bottom: 2rem;
  }
}
.p-single .contents .img-block.goods {
  max-width: none;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents .img-block.goods {
    margin-top: 2rem;
  }
}
.p-single .contents .img-block img {
  width: 100%;
}
.p-single .contents table {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 6rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents table {
    margin-bottom: 3rem;
  }
}
.p-single .contents table tr th,
.p-single .contents table tr td {
  padding: 2.5rem 1.8rem;
  border-bottom: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-single .contents table tr th,
  .p-single .contents table tr td {
    display: block;
    border-bottom: none;
    padding: 2rem 0;
  }
}
.p-single .contents table tr th {
  width: 20%;
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents table tr th {
    width: 100%;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .p-single .contents table tr td {
    padding-top: 0.5rem;
    border-bottom: 1px solid #000;
  }
}
.p-single .contents ul li {
  margin-bottom: 1rem;
}
.p-single .contents ul li:last-of-type {
  margin-bottom: 0;
}
.p-single .contents iframe {
  width: 100% !important;
}
.p-single .contents .spacer {
  width: 100%;
  height: 10rem;
}
@media screen and (max-width: 768px) {
  .p-single .contents .spacer {
    height: 5rem !important;
  }
}

/*************************************************
  プライバシーポリシー
*************************************************/
@media screen and (max-width: 768px) {
  .p-policy h1 {
    font-size: 3.2rem;
    text-align: center;
  }
}
.p-policy .block {
  margin-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  .p-policy .block {
    margin-bottom: 5rem;
  }
}
.p-policy .block h2 {
  text-align: left !important;
  margin-bottom: 3rem !important;
}
@media screen and (max-width: 768px) {
  .p-policy .block h2 {
    margin-bottom: 2rem !important;
  }
}
.p-policy .block ul {
  padding-left: 2rem;
  list-style: disc;
  margin-bottom: 4rem;
  margin-top: 2rem;
}
.p-policy .block ul li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.p-policy .block p:last-of-type {
  margin-bottom: 0;
}
.p-policy .address {
  text-align: right;
}

/*************************************************
2025年ティザー用
*************************************************/
/**
 * Swiper 8.1.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 25, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #232215;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
  border: 1px solid #232215;
}

button.swiper-pagination-bullet {
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: 1px solid #232215;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-next + .swiper-slide,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  backface-visibility: hidden;
  overflow: hidden;
}