@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;600;700&family=Roboto:wght@400;500;700&display=swap");
:root {
  --base: #fff;
}

/*-- リセット --*/
h1,
h2,
h3,
h4,
h5,
p,
b,
dt,
dd,
li,
span,
a,
strong {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  min-height: 0%;
  vertical-align: top;
}

figure {
  width: 100%;
  min-height: 0%;
  line-height: 0;
  margin: 0 auto;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  backface-visibility: hidden;
  transition: 0.3s;
}
a img {
  display: inline-block;
}

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

html {
  font-size: 62.5%;
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  margin: 0;
  padding: 0;
  background: #000;
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt";
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  text-align: center;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  body {
    overflow: hidden;
    overflow-y: scroll;
  }
}

input,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.pc {
  display: block;
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media only screen and (max-width: 1600px) {
  .tab {
    display: block;
  }
}

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

.inline-pc {
  display: inline;
}
@media only screen and (max-width: 767px) {
  .inline-pc {
    display: none;
  }
}

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

.ff-tsukugo {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
}

.ff-lat {
  font-family: "Lato", sans-serif;
}

.l-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 9rem;
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 6.4rem;
  }
}
.l-header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.9rem;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-header__container {
    padding: 0 3.64rem 0 1rem;
  }
}
.l-header__logo {
  width: 31.715rem;
}
@media only screen and (max-width: 767px) {
  .l-header__logo {
    width: 20.58rem;
  }
}
.l-header__logo_link {
  display: block;
}
.l-header__img {
  width: 15.289rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .l-header__img {
    width: 8.664rem;
    position: static;
    transform: translate(0, 0);
  }
}

.l-footer {
  padding: 6rem 0 3rem;
}
.l-footer__copy {
  line-height: 1.4;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  color: #FFF;
}

.l-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 3rem;
  }
}
.l-container--ptn1 {
  max-width: 147rem;
}
.l-container--ptn2 {
  max-width: 100rem;
}

.l-list {
  padding: 6rem 0 0;
}
.l-list__grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .l-list__grid {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 0.6rem;
         column-gap: 0.6rem;
  }
}
.l-list__item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #FFF;
}
.l-list__item.current .l-list__item_image {
  position: relative;
}
.l-list__item.current .l-list__item_image::before, .l-list__item.current .l-list__item_image::after {
  content: "";
  position: absolute;
}
.l-list__item.current .l-list__item_image::before {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
}
.l-list__item.current .l-list__item_image::after {
  width: 4.8rem;
  height: 4.8rem;
  background: url(../img/icon_playing.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-list__item_image {
  flex-grow: 0;
}
.l-list__item_content {
  flex-grow: 1;
  /*display: flex;*/
  flex-direction: column;
  justify-content: space-between;
  padding: 0.6rem 0 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .l-list__item_content {
    padding: 0.4rem 0 0;
  }
}
.l-list__item_title {
  margin: 0 0 0.6rem;
  line-height: 1.4285714286;
  font-size: 1.4rem;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .l-list__item_title {
    margin-bottom: 0.7rem;
    font-size: 1.2rem;
  }
}
.l-list__item_name {
  line-height: 1.4545454545;
  font-size: 1.4rem;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .l-list__item_name {
    font-size: 1rem;
  }
}

.l-movie {
  padding: 0;
  background: url(../img/mv_bg.webp) 50% 50% no-repeat;
  background-size: cover;
}
.l-movie__wrap {
  width: 100%;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 767px) {
  .l-movie__wrap {
    aspect-ratio: 1/1;
  }
}
.l-movie__wrap .video-js {
  width: 100%;
  height: 100%;
}
.l-movie__wrap video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.l-movie__caption {
  display: none;
  padding: 1.63rem 0 0;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .l-movie__caption {
    padding: 1.4rem 0 0;
    text-align: left;
  }
}
.l-movie__title {
  margin: 0 0 0.5rem;
  line-height: 1.4444444444;
  font-size: 1.8rem;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .l-movie__title {
    margin-bottom: 1rem;
    line-height: 1.4705882353;
    font-size: 1.7rem;
  }
}
.l-movie__name {
  line-height: 1.4166666667;
  font-size: 1.2rem;
  font-weight: 300;
}

.c-title--ptn1--top{
  margin: 0 auto 3.4rem;
  padding: 0 0 1.1rem;
  position: relative;
  line-height: 1.5789473684;
  letter-spacing: 0.1em;
  font-size: 1.9rem;
  font-weight: 400;
  position: relative;
}

.c-title--ptn1--top:after {
content: "";
  width: 2.4rem;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.c-title--ptn1 {
  margin: 0 auto 3.4rem;
  padding: 1.4rem 0 1.1rem;
  position: relative;
  line-height: 1.5789473684;
  letter-spacing: 0.1em;
  font-size: 1.9rem;
  font-weight: 400;
  background: #303030;
  position: relative;
}
.c-title--ptn1:after {
  border-right: solid 2px #fff;
  border-top: solid 2px #fff;
  content: "";
  display: block;
  height: 8px;
  position: absolute;
  right: 25px;
  transition: transform .3s ease-in-out, top .3s ease-in-out;
  width: 8px;
  top: 45%;
  transform: rotate(-45deg);
  /*content: "";
  width: 2.4rem;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);*/
}
@media only screen and (max-width: 767px) {
  .c-title--ptn1--top,
  .c-title--ptn1 {
    margin-bottom: 4rem;
    padding-bottom: 0.97rem;
    font-size: 1.6rem;
  }
}

.p-home-mv {
  padding: 8rem 0;
  background: url(../img/mv_bg.webp) 50% 50% no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .p-home-mv {
    padding: 2.9rem 0 3rem;
  }
}
.p-home-mv__content {
  max-width: 81rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 767px) {
  .p-home-mv__content {
    padding: 0;
  }
}
.p-home-mv__lead {
  margin: 0 auto 7.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
  font-size: 1.6rem;
  font-weight: 300;
}
@media only screen and (max-width: 767px) {
  .p-home-mv__lead {
    width: calc(100% - 6rem);
    margin: 0 auto 3rem;
    line-height: 1.8571428571;
    text-align: left;
    font-size: 1.4rem;
  }
}
.p-home-mv__carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 4rem;
       column-gap: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-home-mv__carousel {
    display: block;
  }
  .p-home-mv__carousel_item {
    width: 20rem;
  }
}
.p-home-mv__carousel_title {
  margin: 0 auto;
  padding: 0 0 1.17rem;
  position: relative;
  line-height: 1.578947368;
  letter-spacing: 0.1em;
  font-size: 1.9rem;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .p-home-mv__carousel_title {
    padding-bottom: 0.87rem;
    line-height: 1.625;
    font-size: 1.6rem;
  }
}
.p-home-mv__carousel_title::after {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: #FFF;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.p-home-mv__carousel_image {
  height: 10.13rem;
  position: relative;
}
.p-home-mv__carousel_image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-home-mv__carousel_image-wifi img {
  width: 5.2rem;
}
.p-home-mv__carousel_image-360 img {
  width: 7.743rem;
}
.p-home-mv__carousel_image-sound img {
  width: 4.933rem;
}
.p-home-mv__carousel_lead {
  margin: 0 auto;
  line-height: 1.6428571429;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  font-weight: 100;
}
@media only screen and (max-width: 767px) {
  .p-home-mv__carousel_lead {
    line-height: 1.5833333333;
    font-size: 1.2rem;
  }
}
.p-home-mv__carousel .slick-arrow {
  width: 3.6rem;
  height: 3.6rem;
  background: url(../img/slick-arrow.svg) 50% 50% no-repeat;
  background-size: 100%;
  position: absolute;
  top: 50%;
}
.p-home-mv__carousel .slick-arrow.slick-prev {
  left: 3rem;
  transform: translateY(-50%);
}
.p-home-mv__carousel .slick-arrow.slick-next {
  right: 3rem;
  transform: translateY(-50%) scaleX(-1);
}
/*# sourceMappingURL=maps/style.css.map */

.btn-back {
  padding: 4rem 0 6rem;
}


@media only screen and (max-width: 767px){
  .btn-back a{
    padding: 1.4rem 8rem;
  }
}

.btn-back a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  text-decoration: none;
  background: transparent;
  padding: 1.4rem 8rem;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  transition: .3s;
  background: url(../img/back_arrow.svg) 96% 50% no-repeat;
}
.btn-back a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #F069A1;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.btn-back a:hover {
  color: #fff;
  border: 1px solid #F069A1;
}
.btn-back a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.l-list__grid {
    height: auto;
  opacity: 1;
}

.l-list__grid.is-close {
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition-duration: 0.4s;
}
.c-title--ptn1.is-active::after {
    top: 38%;
  transform: rotate(135deg);
}