@-webkit-keyframes loadAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loadAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes scrollMotion {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@keyframes scrollMotion {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  50% {
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  51% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
  100% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
  }
}

@font-face {
  font-family: YakuHanJP;
  font-weight: 400;
  src: url("../common/font/YakuHanJP-Regular.woff") format("woff");
}

@font-face {
  font-family: YakuHanJP;
  font-weight: 700;
  src: url("../common/font/YakuHanJP-Bold.woff") format("woff");
}

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

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

.page {
  background-color: #1e2028;
  color: #ffffff;
  font-family: YakuHanJP, 'Zen Kaku Gothic New', sans-serif;
}

.header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  left: 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}

@media screen and (min-width: 769px) {
  .header {
    height: 140px;
    padding: 0 40px;
  }
}

@media screen and (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0 15px;
  }
}

.header__logo {
  aspect-ratio: 144 / 80;
  margin-top: auto;
}

@media screen and (min-width: 769px) {
  .header__logo {
    width: 144px;
  }
}

@media screen and (max-width: 768px) {
  .header__logo {
    width: 63px;
  }
}

.header__btn {
  aspect-ratio: 35 / 24;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .header__btn {
    width: 35px;
  }
}

@media screen and (max-width: 768px) {
  .header__btn {
    width: 35px;
  }
}

.header__btn .line {
  background-color: #ffffff;
  display: inline-block;
  height: 2px;
  -webkit-transition: .6s ease;
  transition: .6s ease;
  width: 100%;
}

.header__btn.is-open .line {
  left: 50%;
  position: absolute;
  top: 50%;
}

.header__btn.is-open .line:nth-child(1) {
  left: -5%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.header__btn.is-open .line:nth-child(2) {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}

.header__btn.is-open .line:nth-child(3) {
  left: -5%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.loadingBg {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: 100svh;
  height: 100vh;
  left: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  top: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
  width: 100vw;
  z-index: 999999;
}

.loadingBg__icon {
  aspect-ratio: 144 / 79;
}

@media screen and (min-width: 769px) {
  .loadingBg__icon {
    width: 144px;
  }
}

@media screen and (max-width: 768px) {
  .loadingBg__icon {
    width: calc(281 / 750 * 100vw);
  }
}

.loadingBg__txt {
  color: #333333;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  letter-spacing: .05em;
  line-height: .7;
}

@media screen and (min-width: 769px) {
  .loadingBg__txt {
    font-size: 18px;
    margin-top: 36px;
  }
}

@media screen and (max-width: 768px) {
  .loadingBg__txt {
    font-size: calc(28 / 750 * 100vw);
    margin-top: calc(30 / 750 * 100vw);
  }
}

.loadingBg__txt .dot {
  -webkit-animation-name: loadAnime;
          animation-name: loadAnime;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0, 0, 0, 1);
          animation-timing-function: cubic-bezier(0, 0, 0, 1);
  aspect-ratio: 1 / 1;
  background-color: #333333;
  border-radius: 50%;
  display: inline-block;
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .loadingBg__txt .dot {
    width: 4px;
  }
}

@media screen and (max-width: 768px) {
  .loadingBg__txt .dot {
    width: calc(6 / 750 * 100vw);
  }
}

.loadingBg__txt .dot:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.loadingBg__txt .dot:nth-child(2) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

.loadingBg__txt .dot:nth-child(3) {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}

body.is-loaded .loadingBg {
  opacity: 0;
  pointer-events: none;
}

.contentMenu {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 100svh;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100vw;
}

.contentMenu__inner {
  opacity: 0;
  position: relative;
  -webkit-transition: .4s ease;
  transition: .4s ease;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  .contentMenu__inner {
    height: calc(100% - 280px);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu__inner {
    padding: 0 calc(80 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .contentMenu__item + .contentMenu__item {
    margin-top: 50px;
  }
}

@media screen and (max-width: 768px) {
  .contentMenu__item + .contentMenu__item {
    margin-top: calc(80 / 750 * 100vw);
  }
}

.contentMenu__link {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  line-height: .7;
  position: relative;
}

@media screen and (min-width: 769px) {
  .contentMenu__link {
    font-size: 60px;
  }
  .contentMenu__link:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media screen and (max-width: 768px) {
  .contentMenu__link {
    font-size: calc(80 / 750 * 100vw);
  }
}

.contentMenu__link:before, .contentMenu__link:after {
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
}

.contentMenu__link:before {
  background-color: #ffffff;
}

.contentMenu__link:after {
  background-color: #ce191b;
  -webkit-transform: scaleX(0.3);
          transform: scaleX(0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.contentMenu__bg {
  background-color: #000000;
  height: 100%;
  position: absolute;
  opacity: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: opacity .4s ease, -webkit-transform .6s ease .1s;
  transition: opacity .4s ease, -webkit-transform .6s ease .1s;
  transition: opacity .4s ease, transform .6s ease .1s;
  transition: opacity .4s ease, transform .6s ease .1s, -webkit-transform .6s ease .1s;
  width: 100%;
}

.contentMenu.is-visible {
  pointer-events: auto;
}

.contentMenu.is-visible .contentMenu__bg {
  opacity: 1;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.contentMenu.is-visible .contentMenu__inner {
  opacity: 1;
  -webkit-transition: .4s ease .6s;
  transition: .4s ease .6s;
}

.bgMovie {
  background-color: #1e2028;
  height: 100vh;
  left: 50%;
  width: 100vw;
  overflow: hidden;
  position: fixed;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .bgMovie {
    height: 250vh;
    width: 250vw;
  }
}

@media screen and (max-width: 768px) {
  .bgMovie {
    height: 450vh;
    width: 450vw;
  }
}

.bgMovie__frame {
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  top: 0;
  width: 100%;
  z-index: 2;
}

.bgMovie:before {
  background: url("../imgs/bg-content-01@1.5x.jpg") no-repeat center/cover;
  content: '';
  height: 100%;
  left: 0;
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .6s ease;
  transition: opacity .6s ease;
  width: 100%;
  z-index: 1;
}

.bgMovie.is-playing:before {
  opacity: 0;
}

.bgMovie.is-playing .bgMovie__frame {
  opacity: .4;
}

.contentsBg {
  -webkit-filter: blur(20px);
          filter: blur(20px);
  height: 100vh;
  left: 0;
  mix-blend-mode: multiply;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: opacity .6s ease, -webkit-filter .6s ease;
  transition: opacity .6s ease, -webkit-filter .6s ease;
  transition: opacity .6s ease, filter .6s ease;
  transition: opacity .6s ease, filter .6s ease, -webkit-filter .6s ease;
  width: 100vw;
}

.contentsBg .photo {
  height: 100%;
  -webkit-transition: -webkit-transform 20s ease;
  transition: -webkit-transform 20s ease;
  transition: transform 20s ease;
  transition: transform 20s ease, -webkit-transform 20s ease;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
  width: 100%;
}

.contentsBg .photo__image {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  width: 100%;
}

.contentsBg.is-active {
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}

.contentsBg.is-active .photo {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.generalModal {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  -webkit-transition: opacity .8s ease;
  transition: opacity .8s ease;
  width: 100vw;
  z-index: 99999;
}

.generalModal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.generalModal__bg {
  background-color: rgba(0, 0, 0, 0.6);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.generalModal__inner {
  position: relative;
}

@media screen and (min-width: 769px) {
  .generalModal__inner {
    width: 716px;
    height: 403px;
  }
}

@media screen and (max-width: 768px) {
  .generalModal__inner {
    height: calc(406 / 750 * 100vw);
    width: calc(720 / 750 * 100vw);
  }
}

.generalModal__close {
  aspect-ratio: 1 / 1;
  bottom: calc(100% + 10px);
  position: absolute;
  right: 0;
}

@media screen and (min-width: 769px) {
  .generalModal__close {
    width: 40px;
  }
}

@media screen and (max-width: 768px) {
  .generalModal__close {
    width: calc(60 / 750 * 100vw);
  }
}

.generalModal__close:before, .generalModal__close:after {
  background-color: #ffffff;
  content: '';
  display: block;
  height: 1px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 100%;
}

.generalModal__close:before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.generalModal__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.generalModal__cont {
  height: 100%;
  width: 100%;
}

.generalModal__cont .movieFrame {
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .generalSection {
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1280px;
  }
}

@media screen and (max-width: 768px) {
  .generalSection {
    padding: 0 calc(80 / 750 * 100vw);
  }
}

.generalSection__cont {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

@media screen and (min-width: 769px) {
  .generalSection__cont {
    margin-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  .generalSection__cont {
    margin-top: calc(80 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .generalSection__cont .txtBox {
    width: calc(540 / 1200 * 100%);
  }
}

@media screen and (min-width: 769px) {
  .generalSection__cont .visualBox {
    width: calc(580 / 1200 * 100%);
  }
}

@media screen and (min-width: 769px) {
  .generalSection__cont .visualBox .photo + .photo {
    margin-top: 60px;
  }
}

.generalBtn {
  display: inline-block;
  letter-spacing: .05em;
  line-height: 1;
  position: relative;
}

@media screen and (min-width: 769px) {
  .generalBtn {
    font-size: 24px;
  }
  .generalBtn:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media screen and (max-width: 768px) {
  .generalBtn {
    font-size: calc(32 / 750 * 100vw);
  }
}

.generalBtn .icon {
  aspect-ratio: 1 / 1;
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .generalBtn .icon {
    height: 16px;
    margin-left: 8px;
    width: 16px;
  }
}

@media screen and (max-width: 768px) {
  .generalBtn .icon {
    height: calc(28 / 750 * 100vw);
    margin-left: calc(10 / 750 * 100vw);
    width: calc(28 / 750 * 100vw);
  }
}

.generalBtn:before, .generalBtn:after {
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
}

.generalBtn:before {
  background-color: #ffffff;
}

.generalBtn:after {
  background-color: #ce191b;
  -webkit-transform: scaleX(0.3);
          transform: scaleX(0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.heading {
  font-family: "Roboto", sans-serif;
  letter-spacing: .2em;
}

@media screen and (min-width: 769px) {
  .heading {
    font-size: calc(100 / 1440 * 100vw);
    line-height: .7;
  }
}

@media screen and (max-width: 768px) {
  .heading {
    font-size: calc(100 / 750 * 100vw);
    line-height: calc(120 / 100);
  }
}

.heading .ja {
  display: block;
  letter-spacing: .025em;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .heading .ja {
    font-size: 20px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .heading .ja {
    font-size: calc(28 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .txt {
    font-size: 16px;
    letter-spacing: .05em;
    line-height: calc(2.625);
  }
  .txt:before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 2.625) * 0.5em);
  }
  .txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((1 - 2.625) * 0.5em);
  }
}

@media screen and (max-width: 768px) {
  .txt {
    font-size: calc(24 / 750 * 100vw);
    letter-spacing: .025em;
    line-height: calc(52 / 24);
  }
}

.caption {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .05em;
  line-height: 2.2;
}

.photo {
  position: relative;
}

.photo__image {
  height: auto;
  max-width: 100%;
}

.main {
  position: relative;
  z-index: 1;
}

.mainVisual {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: 100svh;
  height: 100vh;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 100vw;
}

.mainVisual__logo {
  aspect-ratio: 594 / 164;
}

@media screen and (min-width: 769px) {
  .mainVisual__logo {
    width: calc(594 / 1440 * 100vw);
  }
}

@media screen and (max-width: 768px) {
  .mainVisual__logo {
    width: calc(411 / 750 * 100vw);
  }
}

.mainVisual__logo .svgItem {
  fill: transparent;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  -webkit-transition: stroke-dashoffset 2s .5s, fill 1s 2s;
  transition: stroke-dashoffset 2s .5s, fill 1s 2s;
}

.mainVisual__scroll {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  letter-spacing: .05em;
  line-height: .7;
  font-family: "Roboto", sans-serif;
  position: absolute;
}

@media screen and (min-width: 769px) {
  .mainVisual__scroll {
    left: 50%;
    font-size: 18px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}

@media screen and (max-width: 768px) {
  .mainVisual__scroll {
    left: calc(40 / 750 * 100vw);
    font-size: calc(24 / 750 * 100vw);
    padding-bottom: calc(20 / 750 * 100vw);
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}

.mainVisual__scroll .bar {
  background-color: #ffffff;
  position: relative;
  width: 1px;
}

@media screen and (min-width: 769px) {
  .mainVisual__scroll .bar {
    height: 100px;
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .mainVisual__scroll .bar {
    height: calc(100% + (60 / 750 * 100vw));
    margin-left: calc(20 / 750 * 100vw);
    top: calc(20 / 750 * 100vw);
  }
}

.mainVisual__scroll .bar:after {
  -webkit-animation: 3s cubic-bezier(0.9, -0.01, 0.31, 1.01) 0.8s infinite forwards running scrollMotion;
          animation: 3s cubic-bezier(0.9, -0.01, 0.31, 1.01) 0.8s infinite forwards running scrollMotion;
  background-color: #ce191b;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  -webkit-transform-origin: top;
          transform-origin: top;
  top: 0;
  width: 100%;
}

.mainVisual.is-loaded .mainVisual__logo .svgItem {
  fill: #ffffff;
  stroke-dashoffset: 400;
}

.aboutFeature {
  background-color: #1e2028;
  position: relative;
}

@media screen and (min-width: 769px) {
  .aboutFeature {
    padding: 300px 0;
  }
}

@media screen and (max-width: 768px) {
  .aboutFeature {
    padding: calc(140 / 750 * 100vw) 0;
  }
}

@media screen and (max-width: 768px) {
  .aboutFeature .generalSection__cont .visualBox {
    margin: calc(80 / 750 * 100vw) 0 0 calc(-80 / 750 * 100vw);
  }
}

.movieFeature {
  text-align: center;
}

@media screen and (min-width: 769px) {
  .movieFeature {
    padding: 120px 0 250px;
  }
}

@media screen and (max-width: 768px) {
  .movieFeature {
    padding: calc(300 / 750 * 100vw) 0;
  }
}

.movieFeature .generalSection {
  position: relative;
}

@media screen and (max-width: 768px) {
  .movieFeature .generalSection__head {
    position: relative;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  .movieFeature .generalSection__head .heading {
    font-size: calc(90 / 750 * 100vw);
    left: 0;
    line-height: .7;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -20%);
            transform: translate(-50%, -20%);
    -webkit-writing-mode: vertical-lr;
        -ms-writing-mode: tb-lr;
            writing-mode: vertical-lr;
  }
}

.movieFeature .generalSection__cont {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  .movieFeature .generalSection__cont {
    margin-top: 0;
  }
}

@media screen and (min-width: 769px) {
  .movieItem + .generalBtn {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .movieItem + .generalBtn {
    margin-top: calc(60 / 750 * 100vw);
  }
}

.movieItem__btn {
  cursor: pointer;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 769px) {
  .movieItem__btn {
    width: 530px;
  }
  .movieItem__btn:hover .photo__image {
    -webkit-filter: brightness(2);
            filter: brightness(2);
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@media screen and (max-width: 768px) {
  .movieItem__btn {
    margin-right: calc(-80 / 750 * 100vw);
  }
}

.movieItem__btn .photo__image {
  -webkit-transition: .8s ease;
  transition: .8s ease;
  -webkit-transition-property: -webkit-filter, -webkit-transform;
  transition-property: -webkit-filter, -webkit-transform;
  transition-property: filter, transform;
  transition-property: filter, transform, -webkit-filter, -webkit-transform;
}

.movieItem__icon {
  aspect-ratio: 1 / 1;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (min-width: 769px) {
  .movieItem__icon {
    width: 90px;
  }
}

@media screen and (max-width: 768px) {
  .movieItem__icon {
    width: calc(74 / 750 * 100vw);
  }
}

.specFeature {
  background-color: #1e2028;
  position: relative;
}

@media screen and (min-width: 769px) {
  .specFeature {
    padding: 300px 0;
  }
}

@media screen and (max-width: 768px) {
  .specFeature {
    padding: calc(140 / 750 * 100vw) 0;
  }
}

@media screen and (min-width: 769px) {
  .specFeature .generalSection__cont {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (max-width: 768px) {
  .specFeature .generalSection__cont {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .specFeature .generalSection__cont .visualBox {
    margin-right: calc(-80 / 750 * 100vw);
  }
  .specFeature .generalSection__cont .txtBox {
    margin-top: calc(60 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .salesCard {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .salesCard {
    margin-top: calc(60 / 750 * 100vw);
  }
}

.salesCard__txt {
  letter-spacing: .025em;
  line-height: 1;
}

@media screen and (min-width: 769px) {
  .salesCard__txt {
    font-size: 18px;
  }
}

@media screen and (max-width: 768px) {
  .salesCard__txt {
    font-size: calc(28 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .salesCard__txt + .txt {
    margin-top: 40px;
    line-height: calc(1.875);
  }
  .salesCard__txt + .txt:before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.875) * 0.5em);
  }
  .salesCard__txt + .txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((1 - 1.875) * 0.5em);
  }
}

@media screen and (max-width: 768px) {
  .salesCard__txt + .txt {
    margin-top: calc(60 / 750 * 100vw);
    line-height: calc(1.66667);
  }
  .salesCard__txt + .txt:before {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 1.66667) * 0.5em);
  }
  .salesCard__txt + .txt:after {
    content: '';
    display: block;
    height: 0;
    width: 0;
    margin-bottom: calc((1 - 1.66667) * 0.5em);
  }
}

@media screen and (min-width: 769px) {
  .salesCard__txt + .txt + .generalBtn {
    margin-top: 60px;
  }
}

@media screen and (max-width: 768px) {
  .salesCard__txt + .txt + .generalBtn {
    margin-top: calc(60 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .salesCard__txt + .txt + .generalBtn + .caption {
    margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .salesCard__txt + .txt + .generalBtn + .caption {
    margin-top: calc(40 / 750 * 100vw);
  }
}

.sliderFeature {
  background-color: #1e2028;
}

.infiniteSlider {
  pointer-events: none;
}

@media screen and (min-width: 769px) {
  .infiniteSlider {
    height: 240px;
  }
}

@media screen and (max-width: 768px) {
  .infiniteSlider {
    height: calc(130 / 750 * 100vw);
  }
}

.infiniteSlider .swiper-container,
.infiniteSlider .swiper-slide {
  height: 100%;
}

.infiniteSlider .swiper-container .photo,
.infiniteSlider .swiper-container .photo__image,
.infiniteSlider .swiper-slide .photo,
.infiniteSlider .swiper-slide .photo__image {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voiceFeature {
  background-color: #1e2028;
  position: relative;
}

@media screen and (min-width: 769px) {
  .voiceFeature {
    padding: 300px 0;
  }
}

@media screen and (max-width: 768px) {
  .voiceFeature {
    padding: calc(140 / 750 * 100vw) 0;
  }
}

.voiceFeature .generalSection__cont {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 768px) {
  .voiceFeature .generalSection__cont {
    padding-top: calc(470 / 750  * 100vw);
    position: relative;
  }
  .voiceFeature .generalSection__cont .visualBox {
    margin: calc(60 / 750 * 100vw) calc(-40 / 750 * 100vw) 0;
  }
  .voiceFeature .generalSection__cont .visualBox .photo:first-child {
    left: 50%;
    position: absolute;
    top: 0;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .contactFeature {
    padding: 120px 0 180px;
  }
}

@media screen and (max-width: 768px) {
  .contactFeature {
    padding: calc(140 / 750 * 100vw) 0 calc(180 / 750 * 100vw);
  }
}

.contactFeature .generalSection__head {
  text-align: center;
}

.contactFeature .generalSection__cont {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.contactBtn {
  display: inline-block;
  line-height: 1;
  position: relative;
}

@media screen and (min-width: 769px) {
  .contactBtn {
    font-size: 24px;
  }
  .contactBtn:hover:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

@media screen and (max-width: 768px) {
  .contactBtn {
    font-size: calc(36 / 750 * 100vw);
  }
}

@media screen and (min-width: 769px) {
  .contactBtn + .txt {
    margin-top: 60px;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .contactBtn + .txt {
    margin-top: calc(60 / 750 * 100vw);
  }
}

.contactBtn .icon {
  display: inline-block;
}

@media screen and (min-width: 769px) {
  .contactBtn .icon {
    width: 25px;
  }
}

@media screen and (max-width: 768px) {
  .contactBtn .icon {
    width: calc(32 / 750 * 100vw);
  }
}

.contactBtn:before, .contactBtn:after {
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  top: calc(100% + 10px);
  width: 100%;
}

.contactBtn:before {
  background-color: #ffffff;
}

.contactBtn:after {
  background-color: #ce191b;
  -webkit-transform: scaleX(0.3);
          transform: scaleX(0.3);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform .6s ease;
  transition: -webkit-transform .6s ease;
  transition: transform .6s ease;
  transition: transform .6s ease, -webkit-transform .6s ease;
}

.footer {
  background-color: #ffffff;
  position: relative;
}

@media screen and (min-width: 769px) {
  .footer {
    padding: 120px 40px 40px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: calc(80 / 750 * 100vw) calc(40 / 750 * 100vw);
  }
}

.footer__copy {
  color: #cccccc;
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  text-align: right;
}

.svgItem {
  display: block;
  height: 100%;
  width: 100%;
}
/*# sourceMappingURL=style.css.map */