@charset "UTF-8";
/* 変数 -----------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
html, body {
  height: 100%; }

html {
  font-size: 62.5%; }

body {
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /*font-feature-settings: "palt";*/
  line-height: 1;
  overflow-y: scroll;
  min-width: 320px; }

img {
  height: auto;
  width: 100%;
  max-width: 100%; }

a:link, a:visited, .hover {
  color: #000;
  transition: 0.2s ease-out;
  transition-property: color, opacity;
  text-decoration: underline; }

a:hover, a:active, .hover:hover {
  color: #000;
  opacity: 0.7; }

a:focus {
  outline: none; }

.pc {
  display: none; }

.tb {
  display: none; }

/* wrapper -------------------------------------------------------------------------------------*/
.wrapper {
  margin: 0 auto;
  width: 86%; }

/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/* ヘッダー -------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.header {
  position: relative; }

.header .slide {
  height: 100vh;
  height: 100svh; }

.header .slide li,
.header .logo {
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; }

.header .slide img {
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  max-width: none; }

.header .slide.w img {
  height: auto;
  width: 100%; }

.header .logo {
  display: flex;
  align-items: center;
  opacity: 0;
  text-align: center;
  transition: opacity 0.5s ease-out; }

.header .logo.active {
  opacity: 1; }

.header .logo img {
  max-width: 570px; }

.header .slide li.active:first-child img {
  animation: zoomUpF 7s linear 0s normal both; }

.header .slide li.active img {
  animation: zoomUp 5s linear 0s normal both; }

.header .slide li.active:last-child img {
  animation: zoomUpL 6s linear 0s normal both; }

@keyframes zoomUpF {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  85.7% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2); } }
@keyframes zoomUp {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  90% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1); } }
@keyframes zoomUpL {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1); }
  83.3% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1); } }
.header .text li {
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8em;
  opacity: 0;
  padding: 30px 7%;
  position: absolute;
  top: 50%;
  left: 0;
  text-align: justify;
  transform: translateY(-50%);
  transition: opacity 0.25s linear;
  width: 100%;
  z-index: 100; }

.header .text li:not(:first-child) br {
  display: none; }

.header .text li:first-child {
  background-color: transparent;
  font-size: 2.4rem;
  transition: opacity 0.5s linear;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.45); }

.header .text li:first-child,
.header .text li:last-child {
  text-align: center; }

.header .text li.active {
  opacity: 1; }

/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/* ボディー -------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.main {
  padding: 120px 0; }

.contents {
  text-align: center; }

.text1 .line1 img {
  height: calc(30px * 0.6);
  width: auto; }

.text1 .line2 {
  margin-top: 10px; }

.text1 .line2 img {
  height: calc(40px * 0.6);
  margin-top: 15px;
  width: auto; }

.text2 {
  margin-top: 80px; }

.text2 .year img {
  height: calc(51px * 0.6);
  width: auto; }

.text2 .name {
  margin-top: 15px; }

.text2 .name img {
  width: 320px; }

/*-----------------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
/* Loading --------------------------------------------------------------------------------------*/
/*-----------------------------------------------------------------------------------------------*/
.load {
  display: none; }

.loading {
  height: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000; }

.loading .contents {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%; }

.mask {
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; }

.mask img {
  height: 3840px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 2.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-property: opacity, height, width;
  will-change: transform;
  width: 3840px;
  max-width: none; }

/* active ---------------------------------------------------------------------------------------*/
.stand-by .loading {
  opacity: 1; }

.start .loading .line1,
.start .loading .line2,
.start .loading .text2 {
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
  will-change: transform; }

.move .loading {
  transition: opacity 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  will-change: opacity; }

.move .loading .text {
  transition: transform 0.6s linear;
  will-change: transform; }

.active .load {
  display: block; }

.active .loading {
  opacity: 0;
  pointer-events: none; }

.active .mask {
  pointer-events: none; }

/*-----------------------------------------------------------------------------------------------*/
@media (min-width: 769px) {
  /* wrapper -------------------------------------------------------------------------------------*/
  .wrapper {
    width: 100%; }

  /*-----------------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  /* ヘッダー -------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  .header .text li {
    letter-spacing: 0.12em;
    text-align: center; }

  .header .text li br {
    display: inline !important; }

  /*-----------------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  /* ボディー -------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  .text1 .line2 br {
    display: none; }

  /*-----------------------------------------------------------------------------------------------*/ }
@media (min-width: 1281px) {
  /*-----------------------------------------------------------------------------------------------*/
  /* ヘッダー -------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  .header .text li {
    font-size: 1.75vw; }

  .header .text li:first-child {
    font-size: 2.3125vw; }

  /*-----------------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  /* ボディー -------------------------------------------------------------------------------------*/
  /*-----------------------------------------------------------------------------------------------*/
  .main {
    padding: 15vw 0; }

  .text1 .line1 img {
    height: 1.875vw; }

  .text1 .line2 {
    margin-top: 0.625vw; }

  .text1 .line2 img {
    height: 2.5vw;
    margin-top: 0.9375vw; }

  .text2 {
    margin-top: 5vw; }

  .text2 .year img {
    height: 3.1875vw; }

  .text2 .name {
    margin-top: 0.9375vw; }

  .text2 .name img {
    width: 26.25vw; }

  /*-----------------------------------------------------------------------------------------------*/ }
