@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
.left {
  transform: translateX(50px);
  opacity: 0;
}
.left.animationActive {
  transform: translateX(0);
  transition: all 1s ease 0.4s;
  opacity: 1;
}
.right {
  transform: translateX(-50px);
  opacity: 0;
}
@media (max-width: 880px) {
  .right {
    transform: translateY(50px);
  }
}
.right.animationActive {
  transform: translateX(0);
  transition: all 1s ease;
  opacity: 1;
}
@media (max-width: 880px) {
  .right.animationActive {
    transform: translateY(0);
  }
}

.bottom {
  transform: translateY(50px);
  opacity: 0;
}
.bottom.animationActive {
  transform: translateY(0);
  transition: all 0.7s ease;
  opacity: 1;
}

.bottom-nomal {
  transform: translateY(50px);
  opacity: 0;
}
.bottom-nomal.animationActive {
  transform: translateY(0);
  transition: all 0.7s ease 0.2s;
  opacity: 1;
}

.fade {
  opacity: 0;
  transform: translateY(15px);
}
.fade.animationActive {
  transform: translateY(0);
  transition: all 0.8s ease 0.4s;
  opacity: 1;
}

.clip-to-right {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: all 0.3s ease 0.5s;
}
.clip-to-right.animationActive {
  -webkit-clip-path: inset(0% 0% 0% 0%);
  clip-path: inset(0% 0% 0% 0%);
  transition: all 0.3s ease 0.5s;
}

.clip-to-right_longer {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
.clip-to-right_longer.animationActive {
  animation: clip-to-right_longer 0.5s ease forwards;
}

@keyframes clip-to-right_longer {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  100% {
    -webkit-clip-path: inset(0% 0% 0% 0%);
            clip-path: inset(0% 0% 0% 0%);
  }
}
.ani_bg-gray,
.ani_bg-red {
  position: relative;
  display: inline-block;
}
.ani_bg-gray::before, .ani_bg-gray::after,
.ani_bg-red::before,
.ani_bg-red::after {
  opacity: 0;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #999;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  transition: all 0.3s ease;
  transform: scaleX(0);
}
.ani_bg-gray::after,
.ani_bg-red::after {
  z-index: 1;
  opacity: 1;
}
.ani_bg-gray.animationActive::before, .ani_bg-gray.animationActive::after,
.ani_bg-red.animationActive::before,
.ani_bg-red.animationActive::after {
  animation: bg 0.9s ease forwards;
}

.ani_bg-red::before, .ani_bg-red::after {
  background-color: #ed1c24;
  height: 100%;
}

@keyframes bg {
  0% {
    transform-origin: left top;
    opacity: 0;
    transform: scaleX(0);
  }
  30% {
    transform-origin: left top;
    transform: scaleX(1);
    opacity: 1;
  }
  60% {
    transform-origin: right top;
    transform: scaleX(1);
  }
  100% {
    transform-origin: right top;
    transform: scaleX(0);
    opacity: 1;
  }
}
@font-face {
  font-family: "Ogg-Regular";
  src: url("../font/Ogg-Regular.woff") format("woff");
}
@font-face {
  font-family: "din1451altG";
  src: url("../font/din1451altG.woff") format("woff");
}
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: clip;
  transition: all 0.8s ease-in-out;
  font-feature-settings: "palt";
}
@media (max-width: 880px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

img {
  width: 100%;
  display: block;
  border: none;
  vertical-align: bottom;
  margin: 0;
  padding: 0;
  -webkit-backface-visibility: hidden;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer {
  margin-top: auto;
}

.font-en {
  font-family: Ogg-Regular;
}

.font-gothic {
  font-family: din1451altG;
}

.color-red {
  color: #ed1c24;
}

.cap {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.2;
}
@media (max-width: 880px) {
  .cap {
    font-size: 1.1rem;
  }
}
@media print {
  .cap {
    color: #000;
  }
}

.inner {
  width: 787px;
  margin: 0 auto;
}
@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

.txt-j {
  text-align: justify;
}

@media (max-width: 880px) {
  .pc {
    display: none;
  }
}
@media print {
  .pc {
    display: block;
  }
}

@media (max-width: 1000px) {
  .tab {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 880px) {
  .sp {
    display: block;
  }
}
@media print {
  .sp {
    display: none;
  }
}

.btn_more a {
  font-size: 1.5rem;
  letter-spacing: 0.2rem;
  display: block;
  width: 100%;
  padding-bottom: 4px;
  padding-top: 5px;
  border-bottom: 1.5px solid #ed1c24;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}

.btn_black,
.btn_red {
  border-radius: 1000px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 880px) {
  .btn_black,
  .btn_red {
    width: 100%;
  }
}
.btn_black a,
.btn_red a {
  width: 100%;
  padding: 12px 5px;
}
.btn_black .arr-nomal::before, .btn_black .arr-nomal::after,
.btn_red .arr-nomal::before,
.btn_red .arr-nomal::after {
  right: 20px;
}

.btn_black {
  border: 1px solid #000;
}

.btn_red {
  border: 1px solid #ed1c24;
  color: #ed1c24;
}
.btn_red .arr-nomal::before {
  background: #ed1c24;
}
.btn_red .arr-nomal::after {
  border-top: 1px solid #ed1c24;
  border-right: 1px solid #ed1c24;
}

.arr-nomal {
  position: relative;
  display: block;
}
.arr-nomal::before, .arr-nomal::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3px;
  margin-right: 0;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  vertical-align: middle;
}
.arr-nomal::before {
  left: 4px;
  width: 8px;
  height: 1px;
  background-color: #040000;
}
.arr-nomal::after {
  left: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #040000;
  border-right: 1px solid #040000;
  transform: rotate(45deg);
}

.arr-nomal_circle {
  position: absolute;
  top: 6px;
  right: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #040000;
  border-radius: 50%;
}
.arr-nomal_circle::before, .arr-nomal_circle::after {
  position: absolute;
  right: 4px;
  margin-right: auto;
}
@media (max-width: 880px) {
  .arr-nomal_circle::before, .arr-nomal_circle::after {
    right: 3px;
  }
}
.arr-nomal_circle::before {
  left: 4px;
  width: 6px;
}
.arr-nomal_circle::after {
  left: 4px;
  width: 5px;
  height: 5px;
}

.ttl_red-tra {
  margin-bottom: 40px;
}
@media (max-width: 880px) {
  .ttl_red-tra {
    margin-bottom: 25px;
  }
}
.ttl_red-tra .en {
  font-size: 4.5rem;
  letter-spacing: 0.6rem;
  position: relative;
}
@media (max-width: 880px) {
  .ttl_red-tra .en {
    margin-left: 12px;
    line-height: 1.4;
  }
}
.ttl_red-tra .en::before {
  content: "";
  display: block;
  background-image: url(../images/common/deco_red-trapezoid.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -20px;
  margin: auto;
}
@media (max-width: 880px) {
  .ttl_red-tra .en::before {
    left: -18px;
  }
}
.ttl_red-tra .jp {
  letter-spacing: 1rem;
  font-size: 1.1rem;
}

.swiper-button_wrap {
  display: flex;
  margin-right: 0;
  margin-left: auto;
  position: relative;
  left: -50px;
}
@media (max-width: 1200px) {
  .swiper-button_wrap {
    left: 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #fff;
  border-radius: 1000px;
  width: 50px;
  height: 50px;
  position: inherit;
  margin-top: 10px;
  margin-right: 30px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "";
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "";
}

.swiper-button-prev {
  position: relative;
  display: block;
}
.swiper-button-prev::before, .swiper-button-prev::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.swiper-button-prev::before {
  left: 0px;
  width: 15px;
  height: 1px;
  background: #040000;
}
.swiper-button-prev::after {
  left: -4px;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #040000;
  border-left: 1px solid #040000;
  transform: rotate(45deg);
}

.swiper-button-next {
  position: relative;
  display: block;
}
.swiper-button-next::before, .swiper-button-next::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.swiper-button-next::before {
  left: 0px;
  width: 15px;
  height: 1px;
  background: #040000;
}
.swiper-button-next::after {
  left: 4px;
  width: 7px;
  height: 7px;
  border-top: 1px solid #040000;
  border-right: 1px solid #040000;
  transform: rotate(45deg);
}

.swiper-button-prev,
.swiper-button-next {
  transition: all 0.3 ease;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #000;
  transition: all 0.3 ease;
}
.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  background-color: #fff;
}

.swiper-button-prev:hover::after {
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}

.swiper-button-next:hover::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.swiper-button-disabled {
  opacity: 0.4;
}

/*== ボタン共通設定 */
.btn {
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*アニメーションの指定*/
  transition: ease 0.2s;
}

/*== 背景が流れる（左から右） */
.bgleft:before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  /*色や形状*/
  background: #ed1c24; /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  background: #000; /* 帯の色 */
}

.bgleft-red:before {
  background: #ed1c24; /*背景色*/
}

.bgleft-black:before {
  background: #000; /*背景色*/
}

.bgleft-gray:before {
  background: #797979; /*背景色*/
  opacity: 0.5;
}

/*hoverした際の形状*/
.bgleft:hover {
  color: #fff;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, color 0.25s ease-in-out 0.2s;
}
.bgleft:hover .arr-nomal::before {
  background: #fff;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, background-color 0.25s ease-in-out 0.2s;
}
.bgleft:hover .arr-nomal::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, border-top 0.25s ease-in-out 0.2s, border-right 0.25s ease-in-out 0.2s;
}
.bgleft:hover .arr-nomal_circle {
  border: 1px solid #fff;
  transition: all 0.25s ease-in-out 0.2s;
}

.bgleft:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
}

.bgleft {
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, color 0.25s ease-in-out 0.2s;
}
.bgleft .arr-nomal::before {
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, background-color 0.25s ease-in-out 0.2s;
}
.bgleft .arr-nomal::after {
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, border-top 0.25s ease-in-out 0.2s, border-right 0.25s ease-in-out 0.2s;
}

#background-dots_wrap #video {
  position: fixed;
  z-index: 1;
  width: 100%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  filter: brightness(106%);
}
@media (max-width: 880px) {
  #background-dots_wrap #video {
    width: auto;
    height: 100vh;
    opacity: 0.4;
    filter: brightness(100%) saturate(120%);
  }
}

#Wrap {
  position: relative;
  z-index: 3;
}

.ani_dia-gray {
  width: 26vw;
  height: 120vh;
  position: absolute;
  top: 0;
  left: -2vw;
  overflow: hidden;
  transform: skewX(-43deg);
}
@media (max-width: 880px) {
  .ani_dia-gray {
    width: 80vw;
    left: -73vw;
  }
}

.ani_dia-gray::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  background-color: #f2f2f2;
  animation: diagonal-grow 0.5s forwards;
}

@keyframes diagonal-grow {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}
#Wrap:has(.sticky_wrap) {
  overflow-x: visible;
}

.sticky_wrap {
  z-index: 1000;
  top: 0;
  left: 0;
}

.up-scro {
  background-color: #fff;
  position: sticky !important;
  z-index: 9999;
}
.up-scro .btn {
  z-index: 9999;
}

.page404 {
  text-align: center;
  padding: 250px 0px 200px;
}
.page404 .caution {
  font-size: 2rem;
  margin-bottom: 30px;
}
.page404 .btn {
  max-width: 350px;
  width: 85%;
  padding: 15px 5px;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-weight: bold;
}/*# sourceMappingURL=common.css.map */