@charset "UTF-8";
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: backwards;
          animation-fill-mode: backwards;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

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

@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /*アニメーション変化時間 ※デフォルト*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 1s;
          animation-duration: 1s; /*アニメーション変化時間 ※デフォルト*/
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards; /*アニメーションの開始と終了時の状態を指定*/
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

input[type=checkbox],
input[type=radio] {
  all: revert;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

textarea {
  white-space: revert;
}

a {
  cursor: pointer;
}

html {
  font-size: 62.5%;
}
html body {
  font-family: "Roboto", "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
html body p {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.2rem;
  color: #000;
  font-feature-settings: “palt”;
  -webkit-font-feature-settings: "palt";
}
@media screen and (max-width: 768px) {
  html body p {
    font-size: 1.4rem;
  }
}
html body .hover {
  opacity: 0.5;
}
html .p_teaser p {
  line-height: 2;
  letter-spacing: 0.2rem;
}

.l-main {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

.l-container {
  width: 100rem;
}
@media screen and (max-width: 768px) {
  .l-container {
    width: 100%;
    padding: 0 4rem;
  }
}

.l-container_s {
  width: 80rem;
}
@media screen and (max-width: 768px) {
  .l-container_s {
    width: 100%;
    padding: 0 4rem;
  }
}

.l-container_l {
  width: 120rem;
}
@media screen and (max-width: 768px) {
  .l-container_l {
    width: 100%;
    padding: 0 4rem;
  }
}

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

.fadeDown {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s; /*アニメーション変化時間 ※デフォルト*/
}

.fadeIn {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.p_teaser::before {
  content: "";
  position: fixed;
  background-image: url(../../img/common/bg.png);
  background-size: cover;
  width: 100vw;
  height: 100vh;
}
.p_teaser main {
  position: relative;
  width: 100vw;
  height: 100vh;
}
.p_teaser .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 48%;
  height: 427px;
  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;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .p_teaser .wrap {
    padding: 0 12%;
    width: 100%;
  }
}
.p_teaser .wrap * {
  margin: 0 auto;
}
.p_teaser .wrap .svgall {
  width: 16rem;
  margin: 0 auto;
}
@media screen and (max-width: 450px) {
  .p_teaser .wrap .svgall {
    width: 38vw;
  }
}
.p_teaser .wrap .comingSoon
 {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .p_teaser .wrap .comingSoon
 {
    width: 75vw;
  }
}
.p_teaser .wrap .comingSoon
 + p {
  text-align: center;
}
.p_teaser .copy {
  position: absolute;
  bottom: 7vh;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p_teaser .copy {
    font-size: 1rem;
  }
}