@charset "UTF-8";

:root {
  --color-font-base: #ffffff;
  --color-font-base02: #ffffff;
  --color-font-link: #ffffff;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-blue: #002a5c;
  --color-gold: #c3965f;
}

.l-ot2026-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
}
.l-ot2026-header__inner {
  max-width: 100%;
  width: 100%;
  margin: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-header {
    position: static;
  }
  .l-ot2026-header__inner {
    height: auto;
  }
}

.l-ot2026-nav {
  position: relative;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  height: 101px;
  top: 0;
  left: 0;
  z-index: 2;
  overflow: hidden;
  grid-column: 1/2;
  grid-row: 2/3;
  transition: height 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.l-ot2026-nav::before, .l-ot2026-nav::after {
  content: "";
  position: absolute;
  display: block;
}
.l-ot2026-nav::before {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  background-image: url("../img/bg_base_pc.jpg");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-nav::before {
    background-image: url("../img/bg_base_sp.jpg");
  }
}
.l-ot2026-nav::after {
  width: calc(100vw + 20px);
  height: calc(100% + 20px);
  top: -10px;
  left: -10px;
  background-color: #fff;
}
.l-ot2026-nav__list {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 1;
}
.l-ot2026-nav__list--single .l-ot2026-nav__item {
  max-width: 100%;
}
.l-ot2026-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  background-clip: padding-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-right: 1px solid rgba(255, 255, 255, 0.4);
  overflow: hidden;
}
.l-ot2026-nav__link::before {
  content: "";
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.l-ot2026-nav__link .l-ot2026-nav__text {
  transition: 0.3s;
}
@media only screen and (min-width: 767px) {
  .l-ot2026-nav__link:hover, .l-ot2026-nav__link:active {
    text-decoration: none;
  }
  .l-ot2026-nav__link:hover .l-ot2026-nav__text, .l-ot2026-nav__link:active .l-ot2026-nav__text {
    transform: scale(1.2);
    transition: 0.3s;
  }
  .l-ot2026-nav__link:hover .l-ot2026-nav__text::before, .l-ot2026-nav__link:active .l-ot2026-nav__text::before {
    width: 100%;
    right: 0;
    right: auto;
    transition: width 0.2s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
  }
}
.l-ot2026-nav__link--toback .l-ot2026-nav__icon,
.l-ot2026-nav__link--toback .l-ot2026-nav__text {
  transform: translateX(-23px);
}
.l-ot2026-nav__item {
  max-width: 50%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.l-ot2026-nav__item:last-child .l-ot2026-nav__link {
  border-right: 0;
}
.l-ot2026-nav__item.is-current .l-ot2026-nav__link::before {
  display: block;
  background-color: #e60013;
  opacity: 1;
}
.l-ot2026-nav__item.is-current .l-ot2026-nav__text {
  letter-spacing: 0.2em;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-nav__item.is-current .l-ot2026-nav__text {
    letter-spacing: 0.18em;
  }
}
.l-ot2026-nav__item.is-current .l-ot2026-nav__text::before {
  display: none;
}
.l-ot2026-nav__text {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.2em;
  transform: translateX(1px);
  position: relative;
  transition: letter-spacing 0.5s cubic-bezier(0.87, 0, 0.13, 1);
}
.l-ot2026-nav__text::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background-color: #fff;
  opacity: 0.4;
  transition: width 0.2s cubic-bezier(0.76, 0, 0.24, 1) 0.2s;
}
.l-ot2026-nav__icon {
  display: flex;
  position: relative;
  padding-right: 20px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.l-ot2026-nav__icon-inner {
  display: block;
  transform: rotate(180deg);
}
@media only screen and (max-width: 767px) {
  .l-ot2026-nav {
    grid-column: 1/2;
    grid-row: 2/3;
    padding-left: 70px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .l-ot2026-nav__list {
    height: calc(100% - 35px);
  }
  .l-ot2026-nav__link--toback .l-ot2026-nav__icon,
  .l-ot2026-nav__link--toback .l-ot2026-nav__text {
    transform: translateX(-6px);
  }
  .l-ot2026-nav__text {
    font-size: 1.4rem;
    letter-spacing: 0.18em;
  }
  .l-ot2026-nav__icon {
    padding-right: 10px;
    height: 9px;
  }
  .l-ot2026-nav__icon-inner > svg {
    max-height: 9px;
    transform: translateY(1.5px);
  }
}

.l-ot2026 {
  position: relative;
}
.l-ot2026::before, .l-ot2026::after {
  content: "";
  position: fixed;
  display: block;
}
.l-ot2026::before {
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100vw;
  height: 100vh;
  z-index: -10;
  background-image: url("../images/bg_pc.jpg");
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .l-ot2026::before {
    background-image: url("../images/bg_sp.jpg");
  }
}

.l-ot2026-outer {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 101px calc(100% - 101px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.l-ot2026-outer__head {
  grid-column: 1/2;
  grid-row: 1/2;
  max-width: 101px;
  width: 100%;
  position: relative;
  z-index: 3;
  background-clip: padding-box;
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.l-ot2026-outer__body {
  grid-column: 2/3;
  grid-row: 1/2;
  max-width: 100%;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-outer {
    max-width: 100%;
    width: 100%;
    grid-template-columns: 100%;
  }
  .l-ot2026-outer__head {
    grid-column: 1/2;
    height: 100px;
    max-width: 70px;
    border-bottom: 0;
    border-right: 0;
  }
  .l-ot2026-outer__body {
    grid-column: 1/2;
    display: block;
  }
}

.l-ot2026-main {
  grid-column: 1/2;
  grid-row: 2/3;
  transition: padding-top 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.l-ot2026-main::before {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  position: absolute;
  will-change: transform;
  top: 90px;
  left: 0;
  background-color: #000000;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-main {
    grid-column: 1/2;
    grid-row: 2/4;
    padding-top: 0;
  }
}
.l-ot2026-main.js-opning .l-ot2026-content {
  transform: translateY(40px);
  will-change: transform;
}
.l-ot2026-main.is-active::before {
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}
.l-ot2026-main.is-active .l-ot2026-content {
  transform: translateY(0);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
}

.l-ot2026-footer {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .l-ot2026-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@keyframes scrollBtn {
  0% {
    transform: translate(-50%, 0);
  }
  45% {
    transform: translate(-50%, -10px);
  }
  55% {
    transform: translate(-50%, -10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
@keyframes headLoopPc {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -483px;
  }
}
@keyframes headLoopSp {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -307px;
  }
}
@keyframes outerNoiz {
  0% {
    transform: translate(0);
    background-position: 0;
  }
  5% {
    transform: translate(2px, 5px);
  }
  10% {
    transform: translate(0);
  }
  15% {
    transform: translate(-2px, -5px);
  }
  20% {
    transform: translate(0);
  }
  25% {
    transform: translate(-2px, 5px);
  }
  30% {
    transform: translate(0);
  }
  35% {
    transform: translate(2px, -5px);
  }
  40% {
    transform: translate(0);
  }
  45% {
    transform: translate(-5px, -2px);
  }
  50% {
    transform: translate(0);
  }
  55% {
    transform: translate(2px, 5px);
  }
  60% {
    transform: translate(0);
  }
  65% {
    transform: translate(-2px, -5px);
  }
  70% {
    transform: translate(0);
  }
  75% {
    transform: translate(-2px, 5px);
  }
  80% {
    transform: translate(0);
  }
  85% {
    transform: translate(2px, -5px);
  }
  90% {
    transform: translate(0);
  }
  95% {
    transform: translate(-5px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
.p-ot2026-header-logo {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 101px;
  height: 101px;
  padding: 10px;
  background-clip: padding-box;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: height 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
@media only screen and (max-width: 767px) {
  .p-ot2026-header-logo {
    width: auto;
    border-bottom: 0;
    position: fixed;
    width: 70px;
    height: 100px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
  }
}

.p-ot2026-header-pctitle {
  height: calc(100vh - 101px);
  position: relative;
}
.p-ot2026-header-pctitle__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-ot2026-header-pctitle__content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -5px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.p-ot2026-header-pctitle__main, .p-ot2026-header-pctitle__sub {
  display: block;
  text-align: center;
  flex-shrink: 0;
  font-size: 2.2rem;
  letter-spacing: 0.5rem;
}
.p-ot2026-header-pctitle__main {
  font-weight: 900;
  margin-bottom: 10px;
}
.p-ot2026-header-pctitle__main span {
  text-orientation: upright;
  letter-spacing: 0.3rem;
}
.p-ot2026-header-pctitle__sub {
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .p-ot2026-header-pctitle {
    display: none;
  }
}

.p-ot2026-header-sptitle {
  display: none;
}
@media only screen and (max-width: 767px) {
  .p-ot2026-header-sptitle {
    grid-column: 1/2;
    display: block;
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  }
  .p-ot2026-header-sptitle__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 35px;
  }
  .p-ot2026-header-sptitle__content {
    display: flex;
    justify-content: center;
    align-content: center;
    margin-left: -5px;
  }
  .p-ot2026-header-sptitle__main, .p-ot2026-header-sptitle__sub {
    display: block;
    text-align: center;
    flex-shrink: 0;
    transform: scale(1.15, 1);
  }
  .p-ot2026-header-sptitle__main {
    font-weight: 900;
    letter-spacing: 0.065em;
    margin-right: 16px;
    font-size: 1.2rem;
  }
  .p-ot2026-header-sptitle__sub {
    font-weight: 500;
    letter-spacing: 0.065em;
    font-size: 1.2rem;
    margin-left: 0;
  }
}

.c-footer__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-footer__social-item {
  width: 30px;
}
@media screen and (min-width: 751px) {
  .c-footer__social-item {
    width: 32px;
  }
}

.c-footer__social-item + .c-footer__social-item {
  margin-left: 25px;
}
.c-footer__social-link {
  display: block;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s, -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
}
@media screen and (min-width: 751px) {
  .c-footer__social-link:hover {
    -webkit-transform: scale(1.2);
        -ms-transform: scale(1.2);
            transform: scale(1.2);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}

.c-footer__link {
  margin-top: 20px;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-footer__link {
    margin-top: 30px;
  }
}

.c-footer__link-item {
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.c-footer__link-item a {
  display: inline-block;
}
.c-footer__link-item a:hover {
  text-decoration: none;
}
@media screen and (min-width: 751px) {
  .c-footer__link-item {
    font-size: 50px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}

.c-footer__link-item--ja {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (min-width: 751px) {
  .c-footer__link-item--ja {
    font-size: 40px;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
@media screen and (max-width: 750px) {
  .c-footer__link-item + .c-footer__link-item {
    margin-top: 17px;
  }
}
@media screen and (min-width: 751px) {
  .c-footer__link-item + .c-footer__link-item {
    margin-top: 30px;
  }
}

.c-footer__link-link {
  display: block;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  transition: transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s, -webkit-transform 0.8s cubic-bezier(0.24, 0.63, 0.42, 0.98) 0s;
  font-family: cheddar-gothic-stencil, sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 751px) {
  .c-footer__link-link:hover {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}

.c-footer__copy {
  margin-top: 20px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 751px) {
  .c-footer__copy {
    margin-top: 41px;
    font-size: 12px;
    letter-spacing: 0;
    line-height: 1;
  }
}