@charset "utf-8";
:root {
  --poppins: "poppins", sans-serif;
  --new_spirit: "new-spirit", serif;
  --color-base: #121212;
  --color-green: #447658;
  --color-red: #E61F21;
  --color-bg01: #F7EFE9;
  --inner-space: 5%;
  --inner-width: 90%;
}
body {
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
	line-height: 1.7;
	position: relative;
	color: var(--color-base);
	font-family: "Noto Sans JP",sans-serif;
	font-weight: 400;
	text-align: left;
}
body.hidden {
  overflow: hidden;
}
a {color: inherit;text-decoration: none;}
.nosp {display: none !important;}
img {max-width: 100%;height: auto;}
input, select {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid #000;
  border-radius: 0px;
}
.bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background: var(--color-bg01);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../img/bg.png) repeat center/638px 375px;
  opacity: .1;
  mix-blend-mode: multiply;
  z-index: 3;
}
.bg span {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  min-width: 100%;
  width: 100%;
  height: 100%;
  margin: auto;
  border-left: 1px solid var(--color-base);
  border-right: 1px solid var(--color-base);
  background: var(--color-bg01);
}
.new_spirit {
  font-family: "new-spirit", serif;
  font-weight: 700;
  font-style: normal;
}
.poppins {
  font-family: "poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: var(--color-green);
  border-radius: 10px;
}
.contents main section {
  margin-bottom: 80px;
}
.contents {
  width: 100%;
  position: relative;
  z-index: 4;
}
.link {
  width: 80%;
  margin: 0 auto 50px;
}
.link ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}
.link ul li {
  width: 22%;
  text-align: center;
  line-height: 1.3;
  font-size: 10px;
  color: var(--color-bg01);
}
.link ul li a::before {
  content: "";
  display: block;
  margin: 0 auto 5px;
  width: 80%;
  padding: 40% 0;
}
.link ul li.instagram a::before {
  background: url(../img/icon_instagram_invert.svg) no-repeat center/contain;
}
.link ul li.youtube a::before {
  background: url(../img/icon_youtube_invert.svg) no-repeat center/contain;
}
.link ul li.x a::before {
  background: url(../img/icon_x_invert.svg) no-repeat center/contain;
}
.link span {
  display: block;
  text-align: center;
  margin-bottom: 5px;
}
.link span a {
  font-size: 15px;
  font-weight: bold;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--color-bg01);
}
.link span a::after {
  content: "";
  width: .8em;
  height: .8em;
  background: url(../img/icon_outlink_invert.svg) no-repeat center/contain;
  margin-left: 15px;
}
.heading {
  font-size: 42px;
  font-weight: bold;
  font-family: var(--new_spirit);
  margin-bottom: 20px;
  line-height: 1.2;
}
.contents_slider {
  margin-bottom: 100px;
  margin-top: -27vw;
  position: relative;
}
.contents_slider .arrow {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 57vw;
  left: 5vw;
  margin: auto;
  background: url(../img/icon_arrow.svg) no-repeat center/contain;
  z-index: 10;
  cursor: pointer;
}
.contents_slider .arrow.next {
  left: auto;
  right: 5vw;
  transform: scale(-1,1);
}
.contents_slider .contents_slider_item {
  margin: 0 5px;
  transition: .3s;
  transform: scale(1);
  height: auto !important;
  padding-top: 27vw;
}
.contents_slider .contents_slider_item:not(.slick-center) {
  transform: scale(.9);
}
.contents_slider.no-slide .contents_slider_item {
  padding-top: 26.5vw;
  transform: scale(1);
  width: 81%;
  margin: auto;
}
.contents_slider .contents_slider_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.contents_slider .contents_slider_item .image {
  display: block;
  width: 100%;
  padding: 49.84% 0;
  background: #DDDDDD;
  border: 1px solid var(--color-base);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.contents_slider .contents_slider_item .image img {
  width: calc(100% + 1.5px);
  max-width: none;
  height: calc(100% + 1.5px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  object-fit: cover;
}
.contents_slider .contents_slider_item .image span {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 150%;
}
.contents_slider .contents_slider_item .name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  background: rgb(18, 18, 18, 0.3);
  transition: .3s;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal .modal_inner {
  max-width: 570px;
  width: 98%;
  max-height: 95vh;
  margin: auto;
  background: var(--color-bg01);
  position: relative;
  padding: 50px 0;
}
.modal .modal_inner .inbox {
  width: calc(var(--inner-width) + 30px);
  margin: auto;
  overflow-y: auto;
  height: calc(95vh - 100px);
  padding: 10px;
}
.modal .modal_inner .inbox .close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.modal .modal_inner .inbox .close::before,
.modal .modal_inner .inbox .close::after {
  content: "";
  width: 90%;
  height: 2px;
  background: var(--color-base);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(35deg);
}
.modal .modal_inner .inbox .close::after {
  transform: rotate(-35deg);
}
.modal .modal_inner .inbox .modal_image {
  width: 100%;
  padding: 50% 0;
  background: #e4dfdb;
  border: 2px solid var(--color-base);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.modal .modal_inner .inbox .modal_image img {
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  object-fit: contain;
}
.modal .modal_inner .inbox .modal_image span {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 150%;
}
.modal .modal_inner .inbox .modal_text strong {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  display: block;
}
/*==================================================
$aside
==================================================*/
aside {
  display: none;
}
/*==================================================
$header
==================================================*/
header {
  max-width: 96%;
  margin: auto;
  padding: 20px 0 0;
}
header .title {
  font-weight: bold;
  line-height: 1;
  padding: 25px 0 0;
  border-top: 3px solid #000;
  position: relative;
}
header .title::before {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  top: 3px;
  left: 0;
  right: 0;
  margin: auto;
}
header .title span {
  font-size: 34px;
  font-family: var(--poppins);
  width: 100%;
  display: block;
  text-align: center;
}
header .title .br {
  display: inline;
  content: " ";
}
header .title strong {
  font-size: 90px;
  font-family: var(--new_spirit);
  display: block;
  text-align: center;
}
header .title + span {
  display: block;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--poppins);
  letter-spacing: 0.2em;
  border-bottom: 1px solid #000;
  margin-top: -5px;
  padding-bottom: 20px;
  position: relative;
}
header .title + span::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  margin: auto;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
header nav ul::before {
  content: "";
  width: 1px;
  height: 50%;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
header nav ul li {
  width: 50%;
}
header nav ul li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: bold;
  font-family: var(--new_spirit);
  padding: 10px 5px;
}
/*==================================================
$main_slider
==================================================*/
.main_slider_wrap .main_slider .main_slider_item {
  height: auto !important;
}
/*==================================================
$counter
==================================================*/
.counter {
  width: var(--inner-width);
  margin: -60px auto 0;
  border-radius: 100px;
  background: var(--color-bg01);
  border: 2px solid var(--color-base);
  padding: 20px 0;
  position: relative;
  box-shadow: 3px 4px 0 var(--color-base);
  margin-bottom: 52vw !important;
}
.counter::after {
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  border: 1px solid var(--color-base);
  border-radius: 100px;
}
.counter::before {
  content: "";
  width: 100%;
  padding: 27.3% 0;
  background: url(../img/left_sp.gif) no-repeat center/50%;
  position: absolute;
  bottom: -54vw;
  left: 0;
  right: 0;
  margin: auto;
  border-bottom: 1px solid var(--color-base);
}
.counter .inbox {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
.counter .inbox .mark {
  width: 65px;
}
.counter .inbox p {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.counter .inbox p .balloon {
  width: 70px;
  height: 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: url(../img/icon_balloon_r.svg) no-repeat center/contain;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  color: var(--color-bg01);
  padding-right: 10px;
}
.counter .inbox p .days {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-family: var(--new_spirit);
  width: 155px;
}
.counter .inbox p .days strong {
  color: var(--color-red);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 1;
}
.counter .inbox p .days strong .count {
  font-size: 52px;
  text-align: center;
  width: 75px;
  display: block;
}
.counter .inbox p .days strong .day {
  font-size: 26px;
  display: block;
}
.counter .inbox p .days>span {
  width: 100%;
  text-align: center;
  background: var(--color-red);
  color: var(--color-bg01);
  height: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
.counter .inbox p .days>span::before,
.counter .inbox p .days>span::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent transparent var(--color-bg01);
  border-width: 11px 0px 11px 7px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto;
}
.counter .inbox p .days>span::after {
  left: auto;
  right: -1px;
  transform: scale(-1,1);
}
.counter .days .opening {
  font-size: 270%;
  font-weight: bold;
  font-family: 'Noto Sans JP';
  margin-bottom: 10px;
}
/*==================================================
$live
==================================================*/
.live {
  padding: 10vw 0;
  width: var(--inner-width);
  margin: auto;
  border-bottom: 1px solid var(--color-base);
}
.live ul li {
  position: relative;
}
.live ul li:not(:last-child) {
  margin-bottom: 30px;
}
.live ul li .balloon {
  position: absolute;
  top: -30px;
  right: 20px;
  margin: auto;
  width: 100px;
  height: 105px;
  background: url(../img/icon_balloon_g.svg) no-repeat center/contain;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  color: var(--color-bg01);
  font-size: 20px;
  font-weight: bold;
  z-index: 2;
  padding-bottom: 10px;
  line-height: 1.2;
  pointer-events: none;
}
.live ul li .image {
  display: block;
  width: 100%;
  padding: 45% 0;
  background: #DDDDDD;
  border: 1px solid var(--color-base);
  overflow: hidden;
  margin-bottom: 20px;
  position: relative;
}
.live ul li .image img {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  object-fit: contain;
}
.live ul li .name {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
}
.live ul li .period {
  padding: 3px 15px;
  border-radius: 100px;
  background: var(--color-green);
  color: var(--color-bg01);
  margin-bottom: 10px;
  display: inline-block;
}
/*==================================================
$release
==================================================*/
.release {
  padding: 0;
}
.release .heading {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.release .contents_slider::before {
  content: "";
  width: 37vw;
  height: 97vw;
  background: url(../img/deco_release.png) no-repeat center/contain;
  position: absolute;
  top: 5vw;
  right: 3vw;
  pointer-events: none;
  z-index: -1;
  transition: .2s;
}
.release .contents_slider::after {
  content: "";
  width: 25vw;
  height: 8vw;
  background: url(../img/deco_rerease_front.png) no-repeat center/contain;
  position: absolute;
  top: 22vw;
  right: 7vw;
  pointer-events: none;
  transition: .2s;
}
.release .contents_slider_item .info {
  margin-bottom: 10px;
}
.release .contents_slider_item .info span {
  display: inline-block;
}
.release .contents_slider_item .period {
  padding: 3px 15px;
  border-radius: 100px;
  background: var(--color-green);
  color: var(--color-bg01);
  margin-bottom: 5px;
}
.analog {
  position: relative;
  padding-top: 50vw;
}
.analog::before {
  content: "";
  width: 80vw;
  height: 100vw;
  position: absolute;
  top: 100px;
  left: -80vw;
  background: url(../img/right_sp.png) no-repeat center left/contain;
  pointer-events: none;
  transition: 1s ease-in-out;
  transform: scale(.9);
}
.analog.on::before {
  top: 0;
  left: 0;
  transform: scale(1);
}
.analog .heading {
  font-size: 26px;
  text-align: center;
}
/*==================================================
$live
==================================================*/
.share {
  margin-bottom: 20px;
}
.share strong {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  font-family: var(--new_spirit);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.share strong::before,
.share strong::after {
  content: "";
  width: 2px;
  height: 1em;
  background: var(--color-base);
  margin: 0 0.5em;
  transform: rotate(-30deg);
}
.share strong::after {
  transform: rotate(30deg);
}
.share ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.share ul li {
  width: 13vw;
  height: 13vw;
  margin: 0 15px;
}
.share ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.totop {
  max-width: 162px;
  width: 80%;
  margin: auto;
}
.footer_under {
  background: var(--color-green);
  padding: 30px 0;
}
.footer_under .copy {
  font-size: 10px;
  font-weight: bold;
  color: var(--color-bg01);
  text-align: center;
  display: block;
}

/* 20250704 */
header nav ul li {
  width: 33%;
  position: relative;
  font-size: 14px;
}
header nav ul li:not(:first-child)::before {
  content: "";
  width: 1px;
  height: 50%;
  background: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
header nav ul li a {
  font-size: 14px;
}
header nav ul::before {
  display: none;
}
.release {
  padding-top: 15%;
  margin-top: -13%;
  position: relative;
}
.release + .release::before {
  content: "";
  width: var(--inner-width);
  height: 1px;
  background: var(--color-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}