@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    opacity: 0.75;
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
}

body {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 1.4rem; /* =14px */
  font-family: "Josefin Sans", "Noto sans JP", sans-serif;
  background-color: #D9D9D9;
  color: #fff;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
.sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block !important;
  }
}

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

.indent {
  display: inline-block;
}

#wrapper {
  width: 100%;
  height: 100%;
  overflow: auto;
  position: relative;
}

.header {
  position: fixed;
  top: 30px;
  left: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header {
    top: 15px;
    left: 15px;
    gap: 20px;
  }
}
.header__btn {
  width: 55px;
  height: 55px;
  background-image: url("../images/icon-menu.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .header__btn {
    width: 40px;
    height: 40px;
  }
}
.header__text {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .header__text {
    font-size: 2rem;
  }
}

.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
}
.menu__inner {
  width: 100%;
  height: 100%;
  display: flex;
}
.menu__btn {
  position: absolute;
  width: 55px;
  height: 55px;
  background-image: url("../images/icon-menu-close.svg");
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s;
  top: 30px;
  left: 50px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .menu__btn {
    width: 40px;
    height: 40px;
    top: 15px;
    left: 15px;
  }
}
.menu__bg {
  width: 50%;
  height: 100%;
}
.menu__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu__body {
  width: 50%;
  height: 100%;
  flex: 0 0 auto;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  background-position: center;
  padding-bottom: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .menu__body {
    width: 100vw;
  }
}
.menu__list {
  font-size: 2rem;
  font-weight: 500;
  color: #FAFF00;
}
.menu__list li {
  text-align: center;
  line-height: 2;
}
.menu__list li:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .menu__list li {
    font-size: 1.4rem;
  }
}
.menu__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 20px;
}
.menu__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .menu__bottom-inner {
    gap: 30px 14px;
    padding: 0 13px;
    flex-wrap: wrap;
  }
}
.menu__bottom-inner dl {
  width: calc(33.3333333333% - 40px);
}
@media screen and (max-width: 768px) {
  .menu__bottom-inner dl {
    width: calc(50% - 7px);
    max-width: 190px;
  }
}
.menu__bottom-inner .menu__privacy {
  width: calc(33.3333333333% - 40px);
}
@media screen and (max-width: 768px) {
  .menu__bottom-inner .menu__privacy {
    width: calc(50% - 7px);
    max-width: 190px;
  }
}
.menu__bottom-inner .label {
  font-size: 1.6rem;
  padding: 5px 5px 1px;
  border: 1px solid #3C3C43;
  color: #3C3C43;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .menu__bottom-inner .label {
    font-size: 1.2rem;
  }
}
.menu__bottom-inner dd {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .menu__bottom-inner dd {
    margin-top: 10px;
  }
}
.menu__bottom-inner dd a {
  display: block;
  width: 31px;
}
.menu__copyright {
  margin-top: 50px;
  font-size: 1.4rem;
  text-align: center;
  color: #3C3C43;
}
@media screen and (max-width: 768px) {
  .menu__copyright {
    margin-top: 40px;
    font-size: 1rem;
  }
}

.main-nav {
  position: fixed;
  left: 30px;
  bottom: 20px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .main-nav {
    left: 15px;
  }
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 13px;
}
.main-nav__list a {
  display: block;
  width: 10px;
  height: 9px;
  background-image: url("../images/deco-nav-star.svg");
  background-size: contain;
  pointer-events: none;
}
.main-nav__list a.on {
  width: 20px;
  height: 14px;
  background-image: url("../images/deco-nav-logo.svg");
  background-size: contain;
  pointer-events: none;
}

.main-contents {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  z-index: 10;
}

.btn-buy {
  width: 40px;
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .btn-buy {
    width: 35px;
    top: 75px;
  }
}
@media (any-hover: hover) {
  .btn-buy a:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
}

.btn-sampletrack {
  width: 40px;
  position: fixed;
  top: 245px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .btn-sampletrack {
    width: 35px;
    top: 220px;
  }
}
@media (any-hover: hover) {
  .btn-sampletrack a:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
}

.btn-disital {
  width: 40px;
  position: fixed;
  top: 410px;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .btn-disital {
    width: 35px;
    top: 366px;
  }
}
@media (any-hover: hover) {
  .btn-disital a:hover {
    opacity: 1;
    filter: brightness(1.2);
  }
}

.btn-next {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
  font-size: 2rem;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .btn-next {
    bottom: 12px;
  }
}
.btn-next.back {
  position: absolute;
}
.btn-next.yellow {
  color: #FAFF00;
}
.btn-next img {
  margin-top: -3px;
  width: 26px;
}

.btn-next-fixed .btn-next__icon {
  margin-top: -3px;
  display: block;
  width: 26px;
  height: 26px;
  position: relative;
}
.btn-next-fixed img {
  margin-top: 0;
  width: 26px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.15s;
}
.btn-next-fixed .btn-next__img01 {
  opacity: 0;
}
.btn-next-fixed .btn-next__img02 {
  opacity: 1;
}
.btn-next-fixed.active .btn-next__img01 {
  opacity: 1;
}
.btn-next-fixed.active .btn-next__img02 {
  opacity: 0;
}

.copy-top {
  width: 257px;
  position: fixed;
  top: 26px;
  right: 29px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .copy-top {
    width: 150px;
    top: 18px;
    right: 15px;
  }
}

.mv {
  width: 100vw;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.mv__bg {
  width: 100vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.mv__bg > picture {
  width: 100%;
  height: 100%;
}
.mv__bg > picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 30%;
     object-position: center 30%;
}
.mv__box {
  min-width: 750px;
  max-height: 90vh;
  border: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 50px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .mv__box {
    min-width: auto;
    width: 95vw;
    padding: 40px 10px;
  }
}
.mv__box p {
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mv__box p {
    text-align: left;
    font-size: 1.4rem;
  }
}
.mv__box a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  color: #fff;
  background-color: #b24f61;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .mv__box a {
    word-break: break-all;
  }
}
.mv__bg-img {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__bg-img {
    width: 100%;
    height: 50%;
  }
}
.mv__bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv__bg-img01 {
  -o-object-position: center;
     object-position: center;
}
.mv__bg-img02 {
  -o-object-position: left center;
     object-position: left center;
}
.mv h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  max-width: 601px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv h1 {
    max-width: 280px;
    transform: translate(-50%, -37%);
  }
}

.about {
  height: 100%;
  display: flex;
  position: relative;
}
.about__inner {
  width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__inner {
    width: auto;
  }
}
.about__tieup {
  display: inline-block;
  padding: 3px 10px 0;
  margin-bottom: 5px;
  background-color: #FAFF00;
  color: #999593;
}
.about__body {
  width: 50%;
  height: 100%;
  flex: 0 0 auto;
  padding: 0 5px;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__body {
    width: 100vw;
  }
}
.about__body-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.about__copy {
  max-height: 100%;
  overflow: auto;
  width: -moz-fit-content;
  width: fit-content;
  color: #FAFF00;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__copy {
    font-size: 1.1rem;
    line-height: 1.4;
  }
}
.about__copy02 {
  font-size: 2.8rem;
}
.about__copy02 .bold {
  font-weight: bold;
}
.about__body-img01 {
  max-width: 355px;
  width: 49.3055555556%;
  height: 248px;
  position: absolute;
  top: 19.4711538462%;
  left: 13.75%;
}
@media screen and (max-width: 768px) {
  .about__body-img01 {
    height: 150px;
  }
}
.about__body-img01 img {
  height: 100%;
  width: auto;
  max-inline-size: none;
  position: absolute;
  top: 0;
  left: calc(50% - 444px);
}
@media screen and (max-width: 768px) {
  .about__body-img01 img {
    left: calc(50% - 268px);
  }
}
.about__body-img02 {
  max-width: 355px;
  width: 49.3055555556%;
  height: 248px;
  position: absolute;
  bottom: 14.5432692308%;
  right: 8.75%;
}
@media screen and (max-width: 768px) {
  .about__body-img02 {
    height: 150px;
  }
}
.about__body-img02 img {
  height: 100%;
  width: auto;
  max-inline-size: none;
  position: absolute;
  top: 0;
  left: calc(50% - 444px);
}
@media screen and (max-width: 768px) {
  .about__body-img02 img {
    left: calc(50% - 268px);
  }
}
.about__bg {
  width: 50%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .about__bg {
    width: 100vw;
  }
}
.about__bg video {
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__bg-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: center;
}
.about__bg-disital {
  width: 50vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__bg-disital {
    width: 100vw;
  }
}
.about__disital {
  width: 100vw;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__disital {
    width: 200vw;
  }
}
.about__disital-bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.about__disital-bg::after {
  content: "";
  width: calc(100% - 66px);
  height: calc(100% - 26px);
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .about__disital-bg::after {
    width: calc(100% - 30px);
    height: calc(100% - 20px);
  }
}
.about__disital-bg picture {
  width: auto;
  height: 100%;
}
.about__disital-bg picture img {
  width: auto;
  height: 100%;
  max-inline-size: none;
}
.about__disital-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 925px;
  width: calc(100% - 100px);
  z-index: 6;
}
@media screen and (max-width: 768px) {
  .about__disital-logo {
    max-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
  }
}
.about__disital-box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .about__disital-box {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.about__disital-box-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__disital-box-img {
    padding: 0 20px 0 35px;
  }
}
.about__disital-box-caution {
  display: block;
  text-align: center;
  margin: 10px 0 0;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .about__disital-box-caution {
    font-size: 1.2rem;
  }
}
.about__disital-box-link {
  width: 55%;
  position: absolute;
  bottom: 23px;
  right: 0;
}
.about__disital-box-link > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.about__disital-box-link > div a {
  display: block;
  width: calc(50% - 5px);
  filter: drop-shadow(2px 2px 0 #b24f61);
}
.about__disital-box-link > a {
  display: block;
  filter: drop-shadow(2px 2px 0 #b24f61);
}
.about__disital-box-link > a:not(:first-of-type) {
  margin-top: 10px;
}
.about__disital-box-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 27px;
}
@media screen and (max-width: 768px) {
  .about__disital-box-bottom {
    flex-direction: block;
    gap: 0;
    width: 100vw;
    margin-top: 0;
    padding: 20px 35px 20px 20px;
  }
}
@media screen and (max-width: 768px) {
  .about__disital-box-bottom > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .about__disital-box-bottom-link {
    display: block;
    filter: drop-shadow(2px 2px 0 #b24f61);
  }
}
@media screen and (max-width: 768px) {
  .about__disital-box-bottom-link:not(:first-of-type) {
    margin-top: 9px;
  }
}
.about__disital-box-bottom a {
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .about__disital-box-bottom a {
    max-width: auto;
  }
}
.about__disital-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 0;
  font-size: 1rem;
  color: #fff;
  line-height: 1.75;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about__disital-link {
    font-size: 1rem;
    margin: 20px 0;
  }
}
.about__disital-link a {
  text-decoration: underline;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .about__disital-link a {
    font-size: 1rem;
  }
}
.about__disital-movie {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 15px auto 0;
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .about__disital-movie {
    font-size: 1.2rem;
    margin-top: 20px;
  }
}
.about__disital-movie .top {
  display: block;
  text-align: center;
  font-weight: bold;
  font-size: 1.6rem;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .about__disital-movie .top {
    font-size: 1.4rem;
  }
}
.about__disital-movie .date02 {
  letter-spacing: 0.09em;
}
@media screen and (max-width: 768px) {
  .about__disital-link-low {
    display: block;
    margin-top: 10px;
  }
}
.about__disital-link-low .large {
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about__disital-link-low .large {
    font-size: 1.6rem;
  }
}
.about__disital-link-low .middle {
  font-size: 2rem;
  padding-left: 5px;
}
@media screen and (max-width: 768px) {
  .about__disital-link-low .middle {
    font-size: 1.4rem;
  }
}

.about-digital-outer {
  display: flex;
  background-image: url("../images/disital-outer-bg-right.webp");
  background-repeat: repeat;
  background-size: contain;
}

.disital-info {
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: 1;
  padding: 20px 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .disital-info {
    padding: 0;
  }
}
.disital-info__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 950px;
  max-height: 100%;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .disital-info__inner {
    gap: 15px;
    max-width: auto;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .disital-info__inner > div {
    width: 100vw;
    padding: 0 30px;
  }
}
.disital-info__inner > div:first-of-type {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .disital-info__inner > div:first-of-type {
    flex-direction: column;
  }
}
.disital-info__inner > div:nth-of-type(2) .disital-info__box {
  width: calc(50% - 20px);
}
@media screen and (max-width: 768px) {
  .disital-info__inner > div:nth-of-type(2) .disital-info__box {
    width: 100%;
  }
}
.disital-info__box {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .disital-info__box {
    width: 100%;
  }
}
.disital-info__box p {
  font-size: 1.1rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .disital-info__box p {
    font-size: 1rem;
  }
}
.disital-info__img {
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .disital-info__img {
    width: 60%;
    margin: 0 auto 10px;
  }
}

.product {
  height: 100%;
  padding: 0 180px;
  background-image: url("../images/bg-products.webp");
  background-size: cover;
  background-position: left center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .product {
    padding: 0 100px;
  }
}
.product__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.product__list {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
.product__item {
  height: 100%;
  max-height: 90vh;
  max-height: 90dvh;
  overflow: auto;
  width: 630px;
}
@media screen and (max-width: 768px) {
  .product__item {
    width: 95vw;
  }
}
.product__item-inner {
  padding: 30px 30px;
  background-color: rgba(217, 217, 217, 0.8);
  color: #3C3C43;
  position: relative;
}
@media screen and (max-width: 768px) {
  .product__item-inner {
    padding: 10px 10px;
  }
}
.product__item-top {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 503px;
}
@media screen and (max-width: 768px) {
  .product__item-top {
    min-width: auto;
    gap: 10px;
  }
}
.product__item-top > img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .product__item-top > img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .product__label-bottom02 {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product__label-bottom > span:first-of-type {
  flex: 0 0 auto;
}
.product__label-bottom > span .small {
  display: block;
  font-size: 1.2rem;
  margin-top: 2px;
  padding-left: 1em;
  text-indent: -1em;
}
.product__top-body {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 0.7333333333;
}
@media screen and (max-width: 768px) {
  .product__top-body {
    font-size: 1.4rem;
  }
}
.product__top-body p {
  margin-top: 6px;
}
.product__top-body .weight {
  font-weight: 600;
}
.product__top-body .large {
  font-size: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .product__top-body .large {
    font-size: 1.6rem;
  }
}
.product__top-body .large .large {
  font-size: 3.2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .product__top-body .large .large {
    font-size: 2rem;
  }
}
.product__top-body .medium {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .product__top-body .medium {
    font-size: 1.2rem;
  }
}
.product__top-body .bottom {
  display: block;
  font-weight: normal;
  font-size: 1.4rem;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .product__top-body .bottom {
    font-size: 1rem;
    margin-top: 4px;
    display: inline-block;
  }
}
.product__label {
  display: inline-block;
  min-width: 106px;
  text-align: center;
  background-color: #3C3C43;
  color: #D9D9D9;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 7px 15px 3px;
}
@media screen and (max-width: 768px) {
  .product__label {
    font-size: 1.2rem;
    padding: 4px 10px 2px;
  }
}
.product__item-body {
  padding: 20px 5px 0;
}
@media screen and (max-width: 768px) {
  .product__item-body {
    padding: 10px 0 0;
  }
}
.product__item-body dl {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .product__item-body dl {
    margin-top: 10px;
  }
}
.product__item-body dl dt {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .product__item-body dl dt {
    font-size: 1.2rem;
  }
}
.product__item-body dl dd {
  font-size: 1.2rem;
  padding: 5px 0 0 10px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .product__item-body dl dd {
    padding: 0 0 0;
  }
}
.product__item-middle {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .product__item-middle {
    flex-direction: column;
    gap: 10px;
  }
}
.product__item-middle dl {
  margin-top: 0;
}
.product__caution {
  margin-top: 20px;
  font-size: 1.2rem;
  text-indent: -1em;
  padding-left: 1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .product__caution {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  .product__caution-indent {
    display: block;
    padding-left: 4.25em;
  }
}
.product__img-area {
  max-height: 90dvh;
  overflow: auto;
  margin-left: 100px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .product__img-area {
    flex: 0 0 auto;
    width: 70vw;
  }
}
.product__img-area > div:not(:first-of-type) {
  margin-top: 30px;
}
.product__img-area img {
  width: 500px;
}
@media screen and (max-width: 768px) {
  .product__img-area img {
    width: 100%;
  }
}
.product__img-area span {
  display: block;
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
  font-size: 1.4rem;
  color: #FAFF00;
}
.product__tokuten-area {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.product__tokuten-area dl {
  margin-top: 0;
  flex: 0 0 auto;
}
.product__tokuten {
  width: 150px;
  display: block;
}
@media screen and (max-width: 768px) {
  .product__tokuten {
    max-width: 30%;
  }
}
@media screen and (max-width: 768px) {
  .product .tiara-list {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .product .tiara-list > div {
    width: 50%;
  }
}
.product .tiara-list span {
  display: block;
}
.product__campaign {
  width: 900px;
  margin-right: 180px;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .product__campaign {
    width: 100vw;
    padding: 0 40px 0 0;
    margin-right: 0;
  }
}
.product__campaign-inner {
  height: 100%;
  max-height: 90vh;
}
@media screen and (max-width: 768px) {
  .product__campaign-inner {
    max-height: 95vh;
  }
}
.product__campaign-inner > img {
  width: 500px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .product__campaign-inner > img {
    width: 100%;
    margin-bottom: 20px;
  }
}
.product__campaign p {
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .product__campaign p {
    text-align: left;
    font-size: 1.2rem;
    line-height: 2;
  }
}
.product__campaign .btn-modal-open {
  margin: 30px auto 0;
  display: block;
  text-align: center;
  padding: 10px 50px 5px;
  border: 1px solid #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .product__campaign .btn-modal-open {
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product .info-song-outer {
    display: flex;
    align-items: flex-start;
    gap: 5px;
  }
}
@media screen and (max-width: 768px) {
  .product .info-title {
    flex: 0 0 auto;
    width: 8.5em;
  }
}
.product .info-song {
  display: block;
  font-size: 1rem;
  text-indent: -3em;
  padding-left: 3.5em;
}
@media screen and (max-width: 768px) {
  .product .info-song {
    font-size: 0.8em;
    text-indent: -3em;
    padding-left: 3em;
    padding-top: 2px;
  }
}
.product .info-song span {
  display: block;
}

.reservation {
  width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .reservation {
    width: auto;
    max-width: auto;
    padding: 0;
  }
}
.reservation__bg {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .reservation__bg {
    width: 100vw;
  }
}
.reservation__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: right center;
}
.reservation__body {
  width: 50%;
  flex: 0 0 auto;
  height: 100%;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .reservation__body {
    width: 100vw;
  }
}
.reservation__list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  width: 421px;
}
@media screen and (max-width: 768px) {
  .reservation__list {
    gap: 5px;
    width: 305px;
  }
}
.reservation__list li {
  max-width: 202px;
}
@media screen and (max-width: 768px) {
  .reservation__list li {
    max-width: 150px;
  }
}

.sns {
  width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sns {
    width: auto;
  }
}
.sns__bg {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sns__bg {
    width: 100vw;
  }
}
.sns__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: right center;
}
.sns__body {
  width: 50%;
  flex: 0 0 auto;
  height: 100%;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #3C3C43;
}
@media screen and (max-width: 768px) {
  .sns__body {
    width: 100vw;
  }
}
.sns__body .label {
  font-size: 1.6rem;
  padding: 5px 5px 1px;
  border: 1px solid #3C3C43;
  min-width: 190px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sns__body .label {
    font-size: 1.2rem;
  }
}
.sns__body dl:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sns__body dl:not(:first-of-type) {
    margin-top: 20px;
  }
}
.sns__body dl dd {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sns__body dl dd {
    margin-top: 10px;
  }
}
.sns__body dl a {
  display: block;
  width: 31px;
}
.sns__bottom {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .sns__bottom {
    margin-top: 20px;
  }
}
.sns__copyright {
  margin-top: 56px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .sns__copyright {
    margin-top: 40px;
    font-size: 1rem;
  }
}

.sample-track {
  width: 100vw;
  height: 100%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sample-track {
    width: auto;
    max-width: auto;
    padding: 0;
  }
}
.sample-track__bg {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sample-track__bg {
    width: 100vw;
  }
}
.sample-track__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: right center;
}
.sample-track__body {
  width: 50%;
  flex: 0 0 auto;
  height: 100%;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .sample-track__body {
    width: 100vw;
  }
}
.sample-track__list {
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .sample-track__list {
    width: 80%;
  }
}
.sample-track__list li {
  border-bottom: 1px solid #3C3C43;
}
.sample-track__list li button {
  display: block;
  text-align: left;
  color: #3c3c43;
  width: 100%;
  font-size: 1.8rem;
  background-color: #D9D9D9;
  padding: 14px 34px 9px 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sample-track__list li button {
    font-size: 1.4rem;
  }
}
.sample-track__list li button::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("../images/icon-play.svg");
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.sample-track__list li button.on::after {
  background-image: url("../images/icon-stop.svg");
}

.area-movie {
  height: 100%;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .area-movie {
    width: auto;
    max-width: auto;
    padding: 0;
  }
}
.area-movie__bg {
  width: 50vw;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .area-movie__bg {
    width: 100vw;
  }
}
.area-movie__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  background-position: right center;
}
.area-movie__body-outer {
  width: 1300px;
  padding: 0 100px;
  gap: 30px;
  height: 100%;
  background-image: url("../images/bg-body.webp");
  background-size: cover;
  display: flex;
}
@media screen and (max-width: 768px) {
  .area-movie__body-outer {
    width: auto;
    padding: 0;
    gap: 0;
  }
}
.area-movie__body {
  width: 50%;
  flex: 0 0 auto;
  height: 100%;
  background-position: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .area-movie__body {
    width: 100vw;
  }
}
.area-movie__body:first-of-type {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .area-movie__body:first-of-type {
    width: 100vw;
  }
}
.area-movie__body:nth-of-type(2) {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .area-movie__body:nth-of-type(2) {
    width: 100vw;
  }
}
.area-movie__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 10px;
  max-height: 100vh;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  .area-movie__list {
    width: 90%;
  }
}
.area-movie__list li {
  width: calc(50% - 5px);
}
.area-movie__list li:first-of-type {
  width: 100%;
}
.area-movie__list li.area-movie__list02-item {
  width: 100%;
}
.area-movie__list li button {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
  position: relative;
}
.area-movie__list li button::after {
  content: "";
  width: 60px;
  height: 60px;
  background-image: url("../images/btn_play.webp");
  background-size: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .area-movie__list li button::after {
    width: 30px;
    height: 30px;
  }
}
.area-movie__list li button img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.area-movie__list02 {
  gap: 38px;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: space-between;
}

.modal-movie {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
}
.modal-movie__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.8);
  cursor: pointer;
}
.modal-movie.landscape .modal-movie__body {
  aspect-ratio: 16/9;
  height: auto;
  width: 1000px;
}
@media screen and (max-width: 768px) {
  .modal-movie.landscape .modal-movie__body {
    width: 95vw;
    max-width: 95vw;
  }
}
.modal-movie__body {
  max-width: 90vw;
  max-height: 95vh;
  height: 1000px;
  aspect-ratio: 9/16;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .modal-movie__body {
    height: auto;
    width: 80vw;
  }
}
.modal-movie__body iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-movie__close {
  width: 50px;
  position: absolute;
  top: 15px;
  right: 15px;
}

.opening {
  width: 100vw;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.opening__bg {
  width: 100%;
  height: 100%;
  position: relative;
}
.opening__bg::after {
  content: "";
  width: calc(100% - 66px);
  height: calc(100% - 46px);
  border: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .opening__bg::after {
    width: calc(100% - 30px);
    height: calc(100% - 20px);
  }
}
.opening__bg picture {
  width: 100%;
  height: 100%;
}
.opening__bg picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.opening__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1092px;
  width: calc(100% - 126px);
}
@media screen and (max-width: 768px) {
  .opening__logo {
    max-width: 359px;
    width: calc(100% - 80px);
  }
}

.modal-campaign {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  display: none;
}
.modal-campaign__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal-campaign__close {
  width: 55px;
  position: absolute;
  top: 10px;
  right: 20px;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .modal-campaign__close {
    width: 30px;
  }
}
.modal-campaign__close img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7470%) hue-rotate(272deg) brightness(108%) contrast(108%);
}
.modal-campaign__body {
  max-width: 90%;
  max-height: 95%;
  height: 100%;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .modal-campaign__body {
    width: 90%;
  }
}
.modal-campaign__body > div {
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 60px 30px;
}
@media screen and (max-width: 768px) {
  .modal-campaign__body > div {
    padding: 60px 20px;
  }
}
.modal-campaign__body > div p {
  color: #3C3C43;
  font-size: 1.4rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .modal-campaign__body > div p {
    font-size: 1.2rem;
    line-height: 2;
  }
}
.modal-campaign .bold {
  font-weight: bold;
}/*# sourceMappingURL=base.css.map */