@charset "UTF-8";
/**
 * SCSS Information
 * ===============================================================
 *
 * File name: _module.scss
 * Summary:   モジュール用スタイル
 *
 * -----------------------------------
 *
 * TOC:
 *     =1    modules
 *
 * ===============================================================
*/
/** =1
 * ========================================
 * modules
 * ========================================
 */
.mvVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mvContentsWrapper {
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.mvLogoImg {
  width: 150px;
  margin-bottom: 10vh;
}
.mvH2 {
  font-size: 5.8rem;
  letter-spacing: 1.5rem;
}

@media screen and (max-width: 767px) {
  .mvLogoImg {
    width: 100px;
  }
  .mvH2 {
    font-size: 2.2rem;
    letter-spacing: 0.5rem;
  }
}

.titleH3 {
  margin-bottom: 15px;
  font-size: 3.6rem;
  letter-spacing: 1.3rem;
}

@media screen and (max-width: 767px) {
  .titleH3 {
    font-size: 1.8rem;
    letter-spacing: 0.5rem;
  }
}

/*
* iframe
* ----------------------------------
*/
.iframeWrapper {
  position: relative;
  width: 100%;
  padding-top: 46.25%;
}
.iframeWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

@media screen and (max-width: 767px) {
  .iframeWrapper {
    padding-top: 80.25%;
  }
}

/*
* pagetop
* ----------------------------------
*/
.pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 10;
}
.pagetop a {
  display: block;
  height: 90px;
  padding: 0 20px;
  writing-mode: vertical-rl;
  font-size: 10px;
  font-size: 1rem;
  color: #000;
}
.pagetop a.scrolled {
  display: none;
  text-align: right;
}
.pagetop a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  width: 1px;
  height: 100%;
  background: #000;
}
.pagetop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 28px;
  width: 12px;
  height: 1px;
  background: #000;
  transform: rotate(-60deg);
  transform-origin: left bottom;
}
.pagetop a.scrolled::after {
  bottom: auto;
  top: 0;
  background: #000;
  transform: rotate(60deg);
}
.pagetop a.scrolled span::before {
  visibility: visible;
  content: "";
  position: absolute;
  top: 0;
  right: 32px;
  height: 1px;
  width: 16px;
  background: #000;
}

@media screen and (max-width: 999px) {
}

@media screen and (max-width: 767px) {
}

/*ハンバーガーメニュー ここから*/
.navHandler {
  position: absolute;
  right: 0;
  top: 8px;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.navHandler a {
  color: #000;
}
.is-menuOpened .navHandler a {
  color: #fff;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menu-trigger {
  position: relative;
  width: 30px;
  height: 22px;
}
.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 10px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

/*エフェクト用*/
.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}

/*ハンバーガーメニュー ここまで*/
