@charset "UTF-8";
/*====================================
======================================

　Foundation/_mixin.scss


======================================
====================================*/
/*
■メディアクエリー　ブレイクポイント
====================================*/
@import url("https://fonts.googleapis.com/css2?family=Yanone+Kaffeesatz:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap");
/*////////////////////////////////////////
//// TOP Setting /////////////////////
////////////////////////////////////////*/
.Loading {
  width: 100vw;
  height: 100vh;
  background-color: #990000;
  position: absolute;
  z-index: 10;
}
.Loading__50th {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 25%;
}
.Loading__logo {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 8%;
}

.Sidebar {
  width: 100%;
  display: flex;
  flex-flow: column;
  height: 100vh;
}
.Sidebar__logoWrap {
  position: relative;
  width: 100%;
  background-color: #880000;
  height: 30%;
}
.Sidebar__logoWrap:before {
  content: "";
  display: block;
  padding-top: 100%; /* 高さを幅の100%に固定 */
}
.Sidebar__logoWrap::after {
  content: "";
  width: 96%;
  height: 95%;
  border: 1px solid #fff;
  position: absolute;
  top: 2%;
  left: 2%;
}
.Sidebar__logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 40%;
}
.Sidebar__menu {
  width: 100%;
  height: 70%;
  display: flex;
  flex-direction: column;
}
.Sidebar__item {
  width: 100%;
  height: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-color: #880000;
  transition: height 0.3s ease-out;
}
.Sidebar__item a {
  width: 100%;
  height: 100%;
}
.Sidebar__itemText {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 200px;
  height: 24px;
  font-size: 16px;
  text-align: center;
  color: white;
}
.Sidebar__itemBg {
  opacity: 0.3;
  transition: all 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Top {
  display: flex;
  width: 100vw;
}
.Top__left {
  width: 80%;
  position: relative;
  overflow: hidden;
}
.Top__left__img {
  width: 100%;
  transform: scale(1.2);
  transition: 4s;
  position: relative;
  z-index: -10;
}
.Top__left__img.active {
  transform: scale(1);
}
.Top__right {
  width: 20%;
  min-width: 250px;
}
.Top__headding {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
  width: 50vh;
  opacity: 0;
  transition: 3s;
  transform: translateY(20px);
}
.Top__headding.active {
  opacity: 1;
  transition-delay: 3s;
  transform: translateY(0px);
}
.Top__bg {
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.Top__swiper {
  height: 100vh;
}
.Top__swiper img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px){
  .Loading__50th {
    width: 50%;
  }
  .Loading__logo {
    top: 30%;
    width: 20%;
  }
  .Sidebar__logoWrap {
    outline: none;
    height: 15vh;
  }
  .Sidebar__logoWrap::after {
    display: none;
  }
  .Sidebar__logo {
    width: 30%;
  }
  .Sidebar__menu {
    height: 100%;
  }
  .Top {
    flex-direction: column;
  }
  .Top__left {
    width: 100%;
    height: 62vh;
  }
  .Top__right {
    width: 100%;
  }
  .Top__headding {
    width: 50%;
  }
  .Top__bg {
    height: 85%;
  }
  .Top__swiper {
    height: 62vh;
  }
}
@media screen and (min-width: 769px){
  .Sidebar__item:hover {
    cursor: pointer;
    height: 50%;
  }
  .Sidebar__item:hover .Sidebar__itemBg {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px){
  .Top__left {
    width: 70%;
  }
  .Top__right {
    width: 30%;
  }
}