@keyframes arrow-next {
  0% {
    transform: translateX(-110%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(110%);
  }
}
@keyframes arrow-prev {
  0% {
    transform: translateX(110%);
  }
  50% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-110%);
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
}
@media screen and (max-width: 1300px) {
  body {
    font-size: calc(16vw / 1300 * 100);
  }
}
@media screen and (max-width: 750px) {
  body {
    font-size: calc(24vw / 750 * 100);
  }
}

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

a img {
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.3, 0.4, 0.1, 1);
}
a img:hover {
  opacity: 0.6;
  transform: scale(1.03);
}

.main {
  text-align: center;
}

.inner {
  max-width: 1300px;
  width: calc(1300vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .inner {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .inner {
    max-width: 750px;
  }
}

.movie-head, .package-head, .products-sub-head, .products-head, .fv-head {
  font-size: 20px;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1300px) {
  .movie-head, .package-head, .products-sub-head, .products-head, .fv-head {
    font-size: calc(20vw / 1300 * 100);
  }
}
.movie-head::after, .package-head::after, .products-sub-head::after, .products-head::after, .fv-head::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10%;
  width: 100%;
  height: 1px;
  background-color: #000;
}
@media screen and (max-width: 750px) {
  .movie-head, .package-head, .products-sub-head, .products-head, .fv-head {
    font-size: calc(30vw / 750 * 100);
  }
}

.package-cv-btn, .products-cv-btn {
  max-width: 252px;
  width: calc(252vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .package-cv-btn, .products-cv-btn {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .package-cv-btn, .products-cv-btn {
    width: calc(420vw / 750 * 100);
  }
}

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

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

.scroll-fadein {
  opacity: 0;
}
.scroll-fadein.show {
  animation: fadein 0.5s ease-in-out forwards;
  animation-delay: 0s;
}

.delay-1.show {
  animation-delay: 0.5s;
}

.delay-2.show {
  animation-delay: 1s;
}

.delay-3.show {
  animation-delay: 1.5s;
}

.acc-btn {
  max-width: 500px;
  width: calc(500vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.3, 0.4, 0.1, 1);
  position: relative;
}
@media screen and (max-width: 750px) {
  .acc-btn {
    max-width: none;
  }
}
.acc-btn:hover {
  opacity: 0.6;
  transform: scale(1.03);
}
.acc-btn::after {
  content: "";
  display: block;
  max-width: 14px;
  width: calc(14vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  max-height: 8px;
  height: calc(8vw / 1300 * 100);
  background-image: url(../img/pc/btn_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 9%;
  transform: translateY(-50%);
  transition: 0.5s;
}
@media screen and (max-width: 750px) {
  .acc-btn::after {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .acc-btn::after {
    max-height: none;
  }
}
.acc-btn.acc-show::after {
  transform: translateY(-50%) rotate(-180deg);
}
@media screen and (max-width: 750px) {
  .acc-btn {
    width: calc(630vw / 750 * 100);
  }
  .acc-btn::after {
    background-image: url(../img/sp/btn_arrow.png);
    width: calc(24vw / 750 * 100);
    height: calc(13vw / 750 * 100);
  }
}

.acc-contents {
  display: none;
  opacity: 0;
  transition: opacity 1s;
}
.acc-contents.acc-show {
  opacity: 1;
}

.modal {
  display: flex;
  align-items: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 10;
}
.modal .inner {
  max-width: 408px;
  width: calc(408vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media screen and (max-width: 750px) {
  .modal .inner {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .modal .inner {
    width: calc(620vw / 750 * 100);
  }
}

.modal-movie {
  cursor: pointer;
  width: 100%;
}

.moda-close {
  max-width: 20px;
  width: calc(20vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.3, 0.4, 0.1, 1);
  position: absolute;
  top: 0%;
  right: -8%;
}
@media screen and (max-width: 750px) {
  .moda-close {
    max-width: none;
  }
}
.moda-close:hover {
  opacity: 0.6;
  transform: scale(1.03);
}
@media screen and (max-width: 750px) {
  .moda-close {
    width: calc(30vw / 750 * 100);
  }
}

.fv-area {
  max-height: 1109px;
  height: calc(1109vw / 1300 * 100);
  width: 100%;
  background-image: url(../img/pc/fv.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .fv-area {
    max-height: none;
  }
}
@media screen and (max-width: 750px) {
  .fv-area {
    height: calc(1417vw / 750 * 100);
    background-image: url(../img/sp/fv.png);
  }
}

.fv-head {
  margin-top: 660px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1300px) {
  .fv-head {
    margin-top: calc(660vw / 1300 * 100);
    margin-bottom: calc(100vw / 1300 * 100);
  }
}
@media screen and (max-width: 750px) {
  .fv-head {
    margin: calc(650vw / 750 * 100) auto calc(85vw / 750 * 100);
  }
}

.fv-text {
  margin-bottom: 2em;
}

.fv-person {
  max-width: 530px;
  width: calc(530vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .fv-person {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .fv-person {
    width: 100%;
  }
}

.products {
  margin: 215px auto 0px auto;
}
@media screen and (max-width: 1300px) {
  .products {
    margin: calc(215vw / 1300 * 100) auto calc(0vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products {
    margin-top: calc(320vw / 750 * 100);
  }
}

.products-head {
  margin: 0px auto 90px auto;
}
@media screen and (max-width: 1300px) {
  .products-head {
    margin: calc(0vw / 1300 * 100) auto calc(90vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products-head {
    margin-bottom: calc(110vw / 750 * 100);
  }
}

.products-cv-area {
  position: relative;
}
@media screen and (max-width: 750px) {
  .products-cv-area {
    width: calc(630vw / 750 * 100);
    margin: 0 auto;
  }
}

.products-slider {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 750px) {
  .products-slider {
    display: block;
  }
}

.products-cv-le_sel,
.products-cv-sol {
  max-width: 530px;
  width: calc(530vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 750px) {
  .products-cv-le_sel,
.products-cv-sol {
    max-width: none;
  }
}
@media screen and (max-width: 750px) {
  .products-cv-le_sel,
.products-cv-sol {
    width: calc(630vw / 750 * 100);
  }
}

.products-cv-btn-sol {
  max-width: 312px;
  width: calc(312vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  margin: 0px auto 25px auto;
}
@media screen and (max-width: 750px) {
  .products-cv-btn-sol {
    max-width: none;
  }
}
@media screen and (max-width: 1300px) {
  .products-cv-btn-sol {
    margin: calc(0vw / 1300 * 100) auto calc(25vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products-cv-btn-sol {
    width: calc(492vw / 750 * 100);
    margin-bottom: calc(25vw / 750 * 100);
  }
}

.products-sub-head {
  margin-top: 165px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1300px) {
  .products-sub-head {
    margin-top: calc(165vw / 1300 * 100);
    margin-bottom: calc(50vw / 1300 * 100);
  }
}
@media screen and (max-width: 750px) {
  .products-sub-head {
    margin: calc(200vw / 750 * 100) auto calc(50vw / 750 * 100);
  }
}

.products-le_sel {
  margin-top: 55px;
  margin-bottom: 53px;
}
@media screen and (max-width: 1300px) {
  .products-le_sel {
    margin-top: calc(55vw / 1300 * 100);
    margin-bottom: calc(53vw / 1300 * 100);
  }
}
@media screen and (max-width: 750px) {
  .products-le_sel {
    margin: calc(55vw / 750 * 100) auto calc(70vw / 750 * 100);
  }
}

.products-le_sel-point {
  padding-top: 135px;
  padding-bottom: 215px;
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .products-le_sel-point {
    padding-top: calc(135vw / 1300 * 100);
    padding-bottom: calc(215vw / 1300 * 100);
  }
}
.products-le_sel-point.acc-show {
  background-image: url(../img/pc/products_le_sel_point_bg.jpg);
}
.products-le_sel-point li {
  max-width: 894px;
  width: calc(894vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  margin: 0px auto 45px auto;
}
@media screen and (max-width: 750px) {
  .products-le_sel-point li {
    max-width: none;
  }
}
@media screen and (max-width: 1300px) {
  .products-le_sel-point li {
    margin: calc(0vw / 1300 * 100) auto calc(45vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products-le_sel-point {
    padding: calc(135vw / 750 * 100) 0 calc(280vw / 750 * 100);
    max-width: none;
  }
  .products-le_sel-point.acc-show {
    background-image: url(../img/sp/products_le_sel_point_bg.jpg);
  }
  .products-le_sel-point li {
    width: 100%;
    margin-bottom: calc(60vw / 750 * 100);
  }
  .products-le_sel-point li:last-child() {
    margin-bottom: 0;
  }
}

.products-sol {
  margin: 0px auto 165px auto;
}
@media screen and (max-width: 1300px) {
  .products-sol {
    margin: calc(0vw / 1300 * 100) auto calc(165vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products-sol {
    margin-bottom: calc(320vw / 750 * 100);
  }
}

.products-sol-point {
  padding-top: 135px;
  padding-bottom: 100px;
  max-width: 1480px;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1300px) {
  .products-sol-point {
    padding-top: calc(135vw / 1300 * 100);
    padding-bottom: calc(100vw / 1300 * 100);
  }
}
.products-sol-point.acc-show {
  background-image: url(../img/pc/products_sol_point_bg.jpg);
}
.products-sol-point li {
  max-width: 894px;
  width: calc(894vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  margin: 0px auto 45px auto;
}
@media screen and (max-width: 750px) {
  .products-sol-point li {
    max-width: none;
  }
}
@media screen and (max-width: 1300px) {
  .products-sol-point li {
    margin: calc(0vw / 1300 * 100) auto calc(45vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .products-sol-point {
    padding: calc(135vw / 750 * 100) 0 calc(100vw / 750 * 100);
    max-width: none;
  }
  .products-sol-point.acc-show {
    background-image: url(../img/sp/products_sol_point_bg.jpg);
  }
  .products-sol-point li {
    width: 100%;
    margin-bottom: calc(60vw / 750 * 100);
  }
  .products-sol-point li:last-child() {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 750px) {
  .products-slider-controls {
    overflow: hidden;
  }
}

@media screen and (max-width: 750px) {
  .tns-nav {
    position: absolute;
    bottom: 35%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1;
  }
}

@media screen and (max-width: 750px) {
  .tns-nav > [aria-controls] {
    width: calc(30vw / 750 * 100);
    height: calc(30vw / 750 * 100);
    margin: 0 calc(5vw / 750 * 100);
    padding: 0;
    border: 0;
    border-radius: 30px;
    background-color: #d6d6d6;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 750px) {
  .tns-nav > .tns-nav-active {
    background-color: #ffc3c3;
  }
}

.package-head {
  margin: 0px auto 110px auto;
}
@media screen and (max-width: 1300px) {
  .package-head {
    margin: calc(0vw / 1300 * 100) auto calc(110vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .package-head {
    margin-bottom: calc(110vw / 750 * 100);
  }
}

.package-details {
  max-width: 786px;
  width: calc(786vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  margin: 0px auto 40px auto;
}
@media screen and (max-width: 750px) {
  .package-details {
    max-width: none;
  }
}
@media screen and (max-width: 1300px) {
  .package-details {
    margin: calc(0vw / 1300 * 100) auto calc(40vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .package-details {
    width: calc(750vw / 750 * 100);
    margin-bottom: calc(80vw / 750 * 100);
  }
}

.movie {
  margin-top: 180px;
  margin-bottom: 100px;
}
@media screen and (max-width: 1300px) {
  .movie {
    margin-top: calc(180vw / 1300 * 100);
    margin-bottom: calc(100vw / 1300 * 100);
  }
}
@media screen and (max-width: 750px) {
  .movie {
    margin: calc(320vw / 750 * 100) auto calc(100vw / 750 * 100);
  }
}

.movie-head {
  margin: 0px auto 120px auto;
}
@media screen and (max-width: 1300px) {
  .movie-head {
    margin: calc(0vw / 1300 * 100) auto calc(120vw / 1300 * 100) auto;
  }
}
@media screen and (max-width: 750px) {
  .movie-head {
    margin-bottom: calc(120vw / 750 * 100);
  }
}

.movie-poster {
  max-width: 408px;
  width: calc(408vw / 1300 * 100);
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.3, 0.4, 0.1, 1);
}
@media screen and (max-width: 750px) {
  .movie-poster {
    max-width: none;
  }
}
.movie-poster:hover {
  opacity: 0.6;
  transform: scale(1.03);
}
@media screen and (max-width: 750px) {
  .movie-poster {
    width: calc(510vw / 750 * 100);
  }
}

/*# sourceMappingURL=style.css.map */
