@charset "utf-8";
/* CSS Document */
.news {
  font-size: 9pt;
  color: white;
  margin-bottom: 10%;
  display: flex;
  flex-direction: column;
}
.news a {
  padding-top: 15px;
  border-bottom: solid 1px;
  padding-bottom: 2px;
  width: fit-content;
}
.news a:hover{
  opacity: 0.5;
  transition: 0.6s;
}
/* サイト全体のフォント指定 */
body {
  font-family: "hina-mincho", "YuMincho", "Yu Mincho", "Hiragino Mincho ProN", "serif";
  background-color: black;
  /* "YuMincho","Yu Mincho","Hiragino Mincho ProN","serif" */
}
#video-container {
  height: 100vh; /*高さMAXに*/
  position: relative;
}
#video-area {
  position: fixed;
  z-index: -1; /*最背面に設定*/
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow: hidden;
}
/* 画像を暗くするオーバーレイ */
#video-area::before {
  content: '';
  /* ↓暗いオーバーレイを半透明で配置 */
  background-color: rgba(0, 0, 0, 0.2);
  /* ↓全体を覆うように配置 */
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}
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%;
}
.home-kv__logo {
  position: fixed;
  top: 5%;
  left: 5%;
}
.home-kv__logo img {
  max-width: 250px;
}
.home-kv__logo:hover img {
  opacity: 0.5;
  transition: 0.6s;
}
.fadeIn2s-2S {
  animation-name: fadeIn1s;
  animation-delay: 2s;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeIn1s {
  0% {}
  100% {
    opacity: 1;
  }
}
.is-shown .js-fade, .js-fade.is-shown {
  opacity: 1;
}
.home-concept {}
.home-concept__inner {
  z-index: 1;
  right: 10%;
  position: absolute;
}
.leftmenu {
  bottom: 60px;
  left: 100px;
  position: fixed;
}
.box {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.testtest {
  height: 60%;
}
.mannavi {
  height: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mannavi ul {
  list-style: none;
}
.mannavi li {
  padding-bottom: 60px;
}
.mannavi a {
  text-decoration: none;
  position: relative;
  color: #fff;
  font-size: 1.5em;
  border-bottom: 1px solid #6D6D6D;
  display: block;
  padding:0 20px 10px 20px;
}
.mannavi a::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  content: '';
  transition: transform 0.5s ease;
}
.box2 {
  display: flex;
  flex-direction: column;
  padding-bottom: 40%;
}
.home-moji {
  z-index: 1;
  margin: 0 auto;
  padding-bottom: 100px;
}
.home-moji p {
  font-size: 12pt;
  color: white;
  line-height: 2.5;
  text-shadow: 1px 1px 3px #000;
  padding-bottom: 20%;
  letter-spacing: 4pt;
}
.hide {
  opacity: 0;
}
#scrollArea {
  transition: .5s; /* スクロール時に一瞬で消えると物足りないので.hideの処理を0.5秒で行う */
}
.top-navi-box {
  bottom: 60px;
  left: 100px;
  position: fixed;
}
.top-navi01 {}
.top-navi01 ul {
  display: flex;
  margin-bottom: 20px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.top-navi01 li {
  margin-right: 30px;
  writing-mode: vertical-rl;
}
.top-navi01 li a {
  position: relative;
  width: auto;
  color: #fff;
  font-size: 14pt;
  border-right: 1px solid #6D6D6D;
  display: inline-block;
  padding-right: 1px;
}
.top-navi01 a::after {
  position: absolute;
  bottom: 0;
  right: -2px;
  transform: scaleY(0);
  transform-origin: center;
  width: 1.5px;
  height: 100%;
  background-color: #ffffff;
  content: '';
  transition: transform 0.5s ease;
}
.top-navi01 a:hover::after {
  transform: scaleY(1);
}
.top-navi02 {
  width: 100%;
}
.top-navi02 ul {
  display: flex;
}
.top-navi02 li {
  margin-right: 20px;
}
.top-navi02 li a {
  color: #fff;
  font-size: 9pt;
  letter-spacing: 2pt;
}
.top-navi02 li a:hover {
  color: gray;
  transition: 0.6s;
}
.top-bottom {
  margin: 10px 0 0 0;
  color: #fff;
}
.top-navi-left {
  padding-bottom: 10px;
}
.top-navi-right h3 {
  font-size: 13pt;
  letter-spacing: 2pt;
}
.top-navi-left p {
  font-size: 9pt;
  padding-bottom: 2px;
  letter-spacing: 2pt;
}
.top-navi-left a:hover {
  color: gray;
  transition: 0.6s;
}
.top-navi-right p {
  font-size: 9pt;
  padding-top: 10px;
  letter-spacing: 2pt;
}
.top-navi-right a:hover {
  color: gray;
  transition: 0.6s;
}
.top-bottom2 {
  color: white;
  width: 100%;
  padding-top: 20px;
  text-align: right;
}
@media screen and (min-width: 1025px) {
  .pc-none {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sp-none {
    display: none;
  }
  .home-concept {
    /**height: auto;**/
  }
  .home-concept__inner {
    height: auto;
    left: 0;
    right: 0;
  }
  .box {
    height: 100vh;
    padding: 20% 5%;
    justify-content:space-between;
  }
  .callout {
    height: auto;
  }
  .home-kv__logo {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home-kv__logo img {
    max-width: 200px;
  }
  .testtest {
    display: none;
  }
  .mannavi {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .mannavi a {
    font-size: 14pt;
    width: auto;
  }
  .box2 {
    height: auto;
    padding: 0 5%;
  }
  .home-moji {
    padding-top: 10%;
    padding-bottom: 40%;
  }
  .home-moji p {
    font-size: 10pt;
    color: white;
  }
  .top-navi-box {
    position: static;
    padding-bottom: 20%;
  }
  .top-navi01 ul {
    justify-content: center;
  }
  .top-navi01 li {
    padding-bottom: 0px;
  }
  .top-navi01 li a {
    font-size: 14pt;
  }
  .top-navi02 ul {
    justify-content: center;
  }
  .top-navi02 li {
    padding-bottom: 20px;
    margin-right: 10px;
  }
  .top-navi02 li a {
    font-size: 8pt;
    letter-spacing: 0pt;
  }
  .top-navi-right p {
    font-size: 8pt;
    padding-bottom: 5px;
    letter-spacing: 2pt;
  }
  .top-navi-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .top-bottom {
    margin: 30px 0 0 0;
  }
  .top-navi-left h3 {
    font-size: 14pt;
  }
  .top-navi-left p {
    font-size: 8pt;
  }
  .top-navi-bottom2 p {
    font-size: 8pt;
  }
	
	
	
	
	
	
	
	
	
	
  .sp-navi-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
  }
  .sp-navi01 ul {
    display: flex;
  }
  .sp-navi01 li {
    margin: 0 15px;
    writing-mode: vertical-rl;
  }
  .sp-navi01 li a {
    position: relative;
    width: auto;
    font-size: 14pt;
    border-right: 1px solid #6D6D6D;
    display: inline-block;
    padding-right: 1px;
  }
  .sp-navi01 a::after {
    position: absolute;
    bottom: 0;
    right: -2px;
    transform: scaleY(0);
    transform-origin: center;
    width: 1.5px;
    height: 100%;
    background-color: #ffffff;
    content: '';
    transition: transform 0.5s ease;
  }
  .sp-navi01 a:hover::after {
    transform: scaleY(1);
  }
.sp-news {
  font-size: 9pt;
	padding-top:20px;
}
.sp-news a {
  border-bottom: solid 1px;
  padding-bottom: 2px;
  width: fit-content;
}
	
	
	
	
}







@media (hover:hover) {
  .mannavi a:hover::after {
    transform: scaleX(1);
  }
  .subnavi a:hover::after {
    transform: scaleX(1);
  }
}
@media (hover: none) {
  /* hoverが使えない端末 スマホ想定 */
  .mannavi a:active::after {
    transform: scaleX(1);
  }
  .subnavi a:active::after {
    transform: scaleX(1);
  }
}