@charset "UTF-8";
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (max-width: 1170px) {
  html {
    font-size: 1.3675213675vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Exo", sans-serif;
  font-weight: 400;
  color: #000;
  background-color: gray;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-footer {
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding-bottom: 1.25rem;
  }
}

.l-inner {
  width: min(1150px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
    max-width: 600px;
  }
}

.l-section-title {
  margin-bottom: 4.375rem;
}
@media screen and (max-width: 767px) {
  .l-section-title {
    margin-bottom: 2.8125rem;
  }
}

.l-section {
  padding: 8.75rem 0 8.125rem;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding: 3.125rem 0 4.6875rem;
  }
}

.c-btn {
  background-color: #00FFF5;
  border: none;
  color: #000;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 1.3125rem 4.25rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 1rem;
    padding: 1.25rem 2.5625rem;
  }
}

.c-btn:hover {
  background-color: #0056b3;
}

.c-btn.c-btn--header {
  font-size: 0.9375rem;
  padding: 0.9375rem 2.5rem;
}

.c-btn.c-btn--cta {
  font-size: 1.125rem;
  padding: 1.3125rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-btn.c-btn--cta {
    font-size: 1rem;
    padding: 1.25rem 2.5625rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn.c-btn--footer {
    font-size: 1rem;
    width: min(100%, 600px);
  }
}

.c-column2 {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column2 {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.25rem;
  }
}

.c-column2--gap60 {
  gap: 3.75rem;
}
@media screen and (max-width: 767px) {
  .c-column2--gap60 {
    gap: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-column2--gapSp20 {
    gap: 1.25rem;
  }
}

.c-column3 {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-column4 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 767px) {
  .c-column4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .c-column4--sp2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.c-hoverRun {
  text-decoration: none;
  color: black;
  background-image: linear-gradient(90deg, black, black);
  background-repeat: no-repeat;
  display: inline;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.5s;
}

@media screen and (min-width: 768px) {
  .c-hoverRun:hover {
    background-size: 100% 1px;
  }
}
.c-imgHover {
  position: relative;
}

.c-imgHover img {
  width: 10%;
  transition: 0.5s opacity;
}

.c-imgHover img:nth-of-type(2) {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s opacity;
}

@media screen and (min-width: 768px) {
  .c-imgHover:hover img:nth-of-type(1) {
    opacity: 0;
    transition: 0.5s opacity;
  }
  .c-imgHover:hover img:nth-of-type(2) {
    opacity: 1;
    transition: 0.5s opacity;
  }
}
.c-link {
  position: relative;
  line-height: 1;
}

.c-link::after {
  position: absolute;
  content: "";
  width: 1em;
  height: 1em;
  right: -1em;
  top: 0.3em;
  background: url(../images/common/dummy.jpg) center center/contain no-repeat;
}

.c-section-border-top {
  background: url(../images/top/section-border-black.png) top right/26.875rem 2.5rem no-repeat;
  height: 2.5rem;
  padding-top: 2.5rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-border-top {
    height: 1.875rem;
    background-size: 12.5rem 1.875rem;
    padding-top: 1.875rem;
    margin-top: -1.875rem;
  }
}

.c-section-border-bottom {
  background: url(../images/top/section-border-black.png) bottom right/26.875rem 2.5rem no-repeat;
  height: 2.5rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-section-border-bottom {
    height: 1.875rem;
    background-size: 12.5rem 1.875rem;
    padding-top: 1.875rem;
    margin-bottom: -1.875rem;
  }
}

.c-section-border-top--color-main {
  background: url(../images/top/section-border-main-color.png) top right/26.875rem 2.5rem no-repeat;
  height: 2.5rem;
  padding-top: 2.5rem;
  margin-top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .c-section-border-top--color-main {
    height: 1.875rem;
    background-size: 12.5rem 1.875rem;
    padding-top: 1.875rem;
    margin-top: -1.875rem;
  }
}

.c-section-border-bottom--color-main {
  background: url(../images/top/section-border-main-color.png) bottom right/26.875rem 2.5rem no-repeat;
  height: 2.5rem;
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-section-border-bottom--color-main {
    height: 1.875rem;
    background-size: 12.5rem 1.875rem;
    padding-top: 1.875rem;
    margin-bottom: -1.875rem;
  }
}

.c-section-title {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: #00FFF5;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 3.125rem;
  }
}

.c-section-title.c-section-title--black {
  color: #000;
}

.c-section-title::before {
  position: absolute;
  content: "";
  width: 5rem;
  height: 0.5rem;
  background-color: #00FFF5;
  left: 0;
  bottom: -1.875rem;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    width: 3.75rem;
    height: 0.375rem;
    bottom: -0.9375rem;
  }
}

.c-section-title.c-section-title--black::before {
  background-color: #000;
}

.c-title {
  font-size: 1.5rem;
  color: green;
}
@media screen and (max-width: 1199px) {
  .c-title {
    color: blue;
  }
}
@media screen and (max-width: 999px) {
  .c-title {
    color: red;
  }
}
@media screen and (max-width: 767px) {
  .c-title {
    color: black;
  }
}

.c-underBar {
  position: relative;
  display: inline-block;
}
.c-underBar::before {
  background-color: #333;
  bottom: 0;
  content: "";
  height: 1px;
  left: 50%;
  opacity: 1;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.5s;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .c-underBar:hover:before {
    opacity: 0;
    transition: 0.5s all;
  }
}
/* オーディオボタン
---------------------------------------------------- */
#audio-area {
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
  position: absolute;
  top: 5.875rem;
  right: 1.875rem;
}
@media screen and (max-width: 767px) {
  #audio-area {
    top: 4.125rem;
    right: 1.25rem;
  }
}

#audio-area .audio:hover {
  opacity: 0.6;
}

.audio__btn {
  display: flex;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2307692308;
  color: #BFBFBF;
}

.audio__btn img {
  width: 0.9375rem;
  height: auto;
  margin-left: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .p-cta.l-section {
    padding-top: 4.5rem;
  }
}

.p-cta__copy {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.09375;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .p-cta__copy {
    font-size: 2rem;
    line-height: 1;
  }
}

.p-cta__btn {
  margin-top: 1.25rem;
  text-align: center;
}
.p-footer {
  background-color: #000;
}

.p-footer__inner {
  width: 99.711%;
  max-width: 86.25rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    display: block;
    text-align: center;
  }
}

.p-footer__wrapper {
  display: flex;
  flex-direction: row;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__wrapper {
    max-width: 305px;
    width: 100%;
    margin-inline: auto;
  }
}

.p-footer__item {
  display: flex;
  align-items: center;
}

.p-footer__item.p-footer__item--meta-icon {
  padding-top: 0.5625rem;
}

.no_svg {
  width: 6.25rem;
}

.p-footer__item.p-footer__item--x-icon a {
  text-decoration: none;
}
.p-footer__item.p-footer__item--x-icon a span {
  display: flex;
  background-color: black;
  color: white;
  border: none;
  padding: 0.1875rem 1.25rem;
  border-radius: 1.25rem;
  align-items: center;
  cursor: pointer;
  font-size: 0.875rem;
}
.p-footer__item.p-footer__item--x-icon a span span {
  display: none;
}
.p-footer__item.p-footer__item--x-icon a span img {
  width: 1.25rem;
  height: 1.25rem;
}

.p-footer__item.p-footer__item--line-icon a {
  text-decoration: none;
  height: inherit;
}
.p-footer__item.p-footer__item--line-icon a span {
  display: flex;
  padding: 0;
  cursor: pointer;
  border: none;
  border-radius: 0.3125rem;
}
.p-footer__item.p-footer__item--line-icon a span img {
  width: 1.875rem;
  aspect-ratio: 30/30;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.p-footer__text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-footer__text {
    font-size: 0.6875rem;
    margin: 1.875rem 0 2.75rem;
    text-align: center;
    display: block;
  }
}

.p-top-header {
  height: 6.25rem;
  position: fixed;
  width: 100%;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .p-top-header {
    height: 3.75rem;
  }
}

.p-top-header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  padding: 0 1.875rem;
  width: 100%;
  max-width: 90rem;
}
@media screen and (max-width: 767px) {
  .p-top-header__inner {
    padding: 0 0 0 1.25rem;
  }
}

.p-top-header__logo {
  height: inherit;
  width: 10.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-header__logo {
    width: 7.5rem;
  }
}

.p-top-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-top-header__nav {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-top-header__nav ul {
  display: flex;
  justify-content: space-between;
  margin-right: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-top-header__nav ul {
    margin-right: 0.625rem;
  }
}

.p-top-header__nav-item {
  height: inherit;
  letter-spacing: 0.1em;
}
.p-top-header__nav-item a {
  height: inherit;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  padding: 2.3125rem 0.9375rem;
  text-transform: uppercase;
  color: #00FFF5;
}
@media screen and (max-width: 767px) {
  .p-top-header__nav-item a {
    font-size: 0.8125rem;
    letter-spacing: 0;
    padding: 1.46875rem 0.625rem;
  }
}

.p-movie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url('./videos/mv-bg-movie.mp4" type="video/mp4') no-repeat center center/cover;
}

#bg-movie {
  position: relative;
  height: 100vh;
}

#bg-video-area {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}

#bg-video {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}

#bg-video-area::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.5) 50%);
  background-size: 4px 4px;
}

.p-mv {
  height: 100vh;
}

.p-mv__inner.l-inner {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-mv__inner.l-inner {
    padding: 0 2.5rem;
  }
}

.p-mv__wrap {
  display: flex;
  align-items: center;
  height: inherit;
}

.p-mv__body {
  margin-right: auto;
  max-width: 37.5rem;
}

.p-mv__title {
  font-size: 8.75rem;
  font-weight: 600;
  line-height: 0.9;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 4.75rem;
    letter-spacing: 0.05em;
    line-height: 0.9;
  }
}

.p-mv__body span {
  margin-bottom: 1.875rem;
  display: block;
  text-transform: uppercase;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.2em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-mv__body span {
    font-size: 1.375rem;
    margin-left: 0.4375rem;
    margin-bottom: 1.25rem;
  }
}

.p-mv__sub-title {
  margin-top: 0.625rem;
  font-size: 2.125rem;
  font-weight: 500;
  letter-spacing: 1em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-mv__sub-title {
    font-size: 1.375rem;
    letter-spacing: 0.6em;
  }
}

.p-mv__btn {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__btn {
    margin-top: 2rem;
  }
}

/* 横に流れるテキストの実装
---------------------------------------------------- */
.p-mv__news-inner {
  margin-top: -4.5rem;
  position: relative;
  padding: 0 1.875rem;
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-mv__news-inner {
    margin-top: -4.8125rem;
    padding: 0 1.25rem;
  }
}

.p-mv__news-body {
  margin-left: auto;
  align-items: center;
  background: #000;
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 22.5rem;
  white-space: nowrap;
  z-index: 1;
  border: 1px solid #00FFF5;
}
@media screen and (max-width: 767px) {
  .p-mv__news-body {
    max-width: 12.5rem;
  }
}

.p-mv__news-text {
  animation: flowing 5s linear infinite;
  font-size: 0.875rem;
  transform: translateX(100%);
  line-height: 1;
  margin: 0;
  padding: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-mv__news-text {
    font-size: 0.75rem;
  }
}

.p-mv__news-text li {
  display: inline-block;
  padding-right: 0.625rem;
  padding-left: 23.125rem;
  color: #00FFF5;
  font-weight: 700;
  line-height: 1;
}

.p-mv__news-text li span {
  color: #fff;
  margin-right: 1.25rem;
}

@keyframes flowing {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* スクロールダウン表示の実装
---------------------------------------------------- */
.p-mv__scrolldown2 {
  position: absolute;
  bottom: 0.75rem;
  left: 1.25rem;
}

.p-mv__scrolldown2 span {
  position: absolute;
  left: 0.625rem;
  bottom: 0.625rem;
  color: #00FFF5;
  font-size: 0.8125rem;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.p-mv__scrolldown2:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -0.25rem;
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: #00FFF5;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}

@keyframes circlemove {
  0% {
    bottom: 2.8125rem;
  }
  100% {
    bottom: -0.3125rem;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.p-mv__scrolldown2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0.125rem;
  height: 3.125rem;
  background: #00FFF5;
}

.p-story {
  background: url(../images/top/story-bg.webp) center center/cover no-repeat;
  position: relative;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .p-story.l-section {
    padding-bottom: 3.125rem;
  }
}

.p-story::before {
  content: "";
  position: relative;
  top: 0;
  right: 0;
}

.p-story__body {
  display: flex;
  gap: 5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-story__body {
    display: block;
  }
}

.p-story__body + .p-story__body {
  margin-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-story__body + .p-story__body {
    margin-top: 3.75rem;
  }
}

.p-story__body.p-story__body--even {
  flex-direction: row-reverse;
}

.p-story__content {
  width: 54.0540540541%;
}
@media screen and (max-width: 767px) {
  .p-story__content {
    width: 100%;
  }
}

.p-story__title {
  font-size: 2rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-story__title {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-story__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .p-story__text {
    margin-top: 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.8;
  }
}

.p-story__img {
  width: 38.7387387387%;
  aspect-ratio: 500/430;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  box-shadow: 0.4375rem 0.4375rem 0 #00FFF5;
  transform: skew(-2deg);
}
@media screen and (max-width: 767px) {
  .p-story__img {
    margin-top: 1.875rem;
    transform: skew(0);
    width: 100%;
  }
}

.p-story__body--even .p-story__img {
  box-shadow: -0.4375rem 0.4375rem 0 #00FFF5;
}

.p-trailer {
  background-color: #00FFF5;
}

@media screen and (max-width: 767px) {
  .p-trailer.l-section {
    padding-bottom: 2.6875rem;
  }
}

.p-trailer__video {
  aspect-ratio: 560/315;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-trailer__video iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.p-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.u-font14 {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .u-font14 {
    font-size: 0.625rem;
  }
}

.u-font16 {
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .u-font16 {
    font-size: 0.75rem;
  }
}

.u-font18 {
  font-size: 1.125rem;
}

.u-font20 {
  font-size: 1.25rem;
}

.u-font22 {
  font-size: 1.375rem;
}

.u-font24 {
  font-size: 1.5rem;
}

.u-font28 {
  font-size: 1.625rem;
}

.u-font32 {
  font-size: 2rem;
}

.u-font40 {
  font-size: 2.5rem;
}

.u-hover {
  transition: opacity 0.5s;
}

.u-hover:hover {
  opacity: 0.6;
  transition: opacity 0.5s;
}

.u-lh10 {
  line-height: 1;
}

.u-lh13 {
  line-height: 1.3;
}

.u-lh15 {
  line-height: 1.5;
}

.u-lh16 {
  line-height: 1.6;
}

.u-lh20 {
  line-height: 2;
}

/* ローディング画面背景 */
.u-loading {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}

.atom-spinner, .atom-spinner * {
  box-sizing: border-box;
}

.atom-spinner {
  height: 60px;
  width: 60px;
  overflow: hidden;
}

.atom-spinner .spinner-inner {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}

.atom-spinner .spinner-circle {
  display: block;
  position: absolute;
  color: #00FFF5;
  font-size: 14.4px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.atom-spinner .spinner-line {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  animation-duration: 1s;
  border-left-width: 2.4px;
  border-top-width: 2.4px;
  border-left-color: #00FFF5;
  border-left-style: solid;
  border-top-style: solid;
  border-top-color: transparent;
}

.atom-spinner .spinner-line:nth-child(1) {
  animation: atom-spinner-animation-1 1s linear infinite;
  transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
}

.atom-spinner .spinner-line:nth-child(2) {
  animation: atom-spinner-animation-2 1s linear infinite;
  transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
}

.atom-spinner .spinner-line:nth-child(3) {
  animation: atom-spinner-animation-3 1s linear infinite;
  transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
}

@keyframes atom-spinner-animation-1 {
  0% {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(120deg) rotateX(66deg) rotateZ(360deg);
  }
}
@keyframes atom-spinner-animation-2 {
  0% {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(240deg) rotateX(66deg) rotateZ(360deg);
  }
}
@keyframes atom-spinner-animation-3 {
  0% {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) rotateX(66deg) rotateZ(360deg);
  }
}
.u-ls05 {
  letter-spacing: 0.05em;
}

.u-ls10 {
  letter-spacing: 0.1em;
}

.u-ls15 {
  letter-spacing: 0.15em;
}

.u-ls20 {
  letter-spacing: 0.2em;
}

.u-mt10 {
  margin-top: 10px !important;
  margin-top: 0.625rem !important;
}

.u-mt20 {
  margin-top: 20px !important;
  margin-top: 1.25rem !important;
}

.u-mt30 {
  margin-top: 30px !important;
  margin-top: 1.875rem !important;
}

.u-mt40 {
  margin-top: 40px !important;
  margin-top: 2.5rem !important;
}

.u-mt50 {
  margin-top: 50px !important;
  margin-top: 3.125rem !important;
}

.u-mt60 {
  margin-top: 60px !important;
  margin-top: 3.75rem !important;
}

.u-mt70 {
  margin-top: 70px !important;
  margin-top: 4.375rem !important;
}

.u-mt80 {
  margin-top: 80px !important;
  margin-top: 5rem !important;
}

.u-mt90 {
  margin-top: 90px !important;
  margin-top: 5.625rem !important;
}

.u-mt100 {
  margin-top: 100px !important;
  margin-top: 6.25rem !important;
}

.u-mt110 {
  margin-top: 110px !important;
  margin-top: 6.875rem !important;
}

.u-mt120 {
  margin-top: 120px !important;
  margin-top: 7.5rem !important;
}

.u-mt130 {
  margin-top: 130px !important;
  margin-top: 8.125rem !important;
}

.u-mt140 {
  margin-top: 140px !important;
  margin-top: 8.75rem !important;
}

.u-mt150 {
  margin-top: 150px !important;
  margin-top: 9.375rem !important;
}

.u-mt160 {
  margin-top: 160px !important;
  margin-top: 10rem !important;
}

.u-mt170 {
  margin-top: 170px !important;
  margin-top: 10.625rem !important;
}

.u-mt180 {
  margin-top: 180px !important;
  margin-top: 11.25rem !important;
}

.u-mt190 {
  margin-top: 190px !important;
  margin-top: 11.875rem !important;
}

.u-mt200 {
  margin-top: 200px !important;
  margin-top: 12.5rem !important;
}

@media screen and (max-width: 767px) {
  .u-mtSp10 {
    margin-top: 10px !important;
    margin-top: 0.625rem !important;
  }
  .u-mtSp20 {
    margin-top: 20px !important;
    margin-top: 1.25rem !important;
  }
  .u-mtSp30 {
    margin-top: 30px !important;
    margin-top: 1.875rem !important;
  }
  .u-mtSp40 {
    margin-top: 40px !important;
    margin-top: 2.5rem !important;
  }
  .u-mtSp50 {
    margin-top: 50px !important;
    margin-top: 3.125rem !important;
  }
  .u-mtSp60 {
    margin-top: 60px !important;
    margin-top: 3.75rem !important;
  }
  .u-mtSp70 {
    margin-top: 70px !important;
    margin-top: 4.375rem !important;
  }
  .u-mtSp80 {
    margin-top: 80px !important;
    margin-top: 5rem !important;
  }
  .u-mtSp90 {
    margin-top: 90px !important;
    margin-top: 5.625rem !important;
  }
  .u-mtSp100 {
    margin-top: 100px !important;
    margin-top: 6.25rem !important;
  }
  .u-mtSp110 {
    margin-top: 110px !important;
    margin-top: 6.875rem !important;
  }
  .u-mtSp120 {
    margin-top: 120px !important;
    margin-top: 7.5rem !important;
  }
  .u-mtSp130 {
    margin-top: 130px !important;
    margin-top: 8.125rem !important;
  }
  .u-mtSp140 {
    margin-top: 140px !important;
    margin-top: 8.75rem !important;
  }
  .u-mtSp150 {
    margin-top: 150px !important;
    margin-top: 9.375rem !important;
  }
  .u-mtSp160 {
    margin-top: 160px !important;
    margin-top: 10rem !important;
  }
  .u-mtSp170 {
    margin-top: 170px !important;
    margin-top: 10.625rem !important;
  }
  .u-mtSp180 {
    margin-top: 180px !important;
    margin-top: 11.25rem !important;
  }
  .u-mtSp190 {
    margin-top: 190px !important;
    margin-top: 11.875rem !important;
  }
  .u-mtSp200 {
    margin-top: 200px !important;
    margin-top: 12.5rem !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-shadow {
  box-shadow: 0 0 13px rgba(255, 0, 0, 0.5);
}

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

.u-textLeft {
  text-align: Left !important;
}

.u-textCenter {
  text-align: Center !important;
}

.u-textRight {
  text-align: Right !important;
}

.u-textJustify {
  text-align: Justify !important;
}

@media screen and (max-width: 767px) {
  .u-textMdLeft {
    text-align: Left !important;
  }
  .u-textMdCenter {
    text-align: Center !important;
  }
  .u-textMdRight {
    text-align: Right !important;
  }
  .u-textMdJustify {
    text-align: Justify !important;
  }
}
.u-w300 {
  font-weight: 300;
}

.u-w400 {
  font-weight: 400;
}

.u-w500 {
  font-weight: 500;
}

.u-w600 {
  font-weight: 600;
}

.u-w700 {
  font-weight: 700;
}

.u-w900 {
  font-weight: 900;
}
/*# sourceMappingURL=style.css.map */
