@charset "UTF-8";
/* CSS Document */
/*ボックスモデルの計算方法変更*/
* {
  box-sizing: border-box;
}
body {
  font-family: 'YuGothic', 'Yu Gothic medium', 'Hiragino Sans', 'Meiryo', 'sans-serif', 'Times New Roman', "serif";
  line-height: 1.7;
  background-color: #000; /*下地の白が出ないように*/
}

/*WP記事用のスタイル設定*/
body > div.main > p{
	color:#fff;
}


/*ヘッダー部分-----------------------------------
----------------------------------------------*/
nav {
  background-color: transparent;
  width: 100%;
  height: 4rem;
  position: fixed;
  z-index: 999;
  display: fixed;
}
nav h1 {
  margin-right: auto; /* ロゴを左端に寄せる */
  max-width: 200px; /* ロゴの最大幅を設定 */
  max-height: 40px; /* ロゴの最大高さを設定 */
}
.logo img {
  width: 100%;
}
nav ul {
  width: 60%;
  color: #fff;
  list-style-type: none;
  display: block; /*モバイルファーストで通常はメニューをブロック表示で縦積み*/
}
nav li a {
  display: block; /* ブロック要素として配置 */
  text-decoration: none; /* リンクの下線を削除 */
  color: #fff;
  width: auto; /*中のフォントサイズで可変*/
  text-align: center;
  margin-right: .1rem;
}
nav li:last-child {
  margin-right: 0;
}
/*ハンバーガメニュー-----------------------*/
/*ボタン外側*/
.openbtn {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  background-color: transparent;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background-color: #fff;
  width: 55%;
}
.openbtn span:nth-of-type(1) {
  top: 13px;
}
.openbtn span:nth-of-type(2) {
  top: 19px;
}
.openbtn span:nth-of-type(3) {
  top: 25px;
}
.openbtn span:nth-of-type(3)::after {
  /*3つめの要素のafterにmenu表示を指定*/
  content: "Menu";
  position: absolute;
  top: 5px;
  left: -2px;
  color: #fff;
  font-size: .6rem;
  text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、MenuがCloseに変更*/
.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
.openbtn.active span:nth-of-type(3)::after {
  /*3つ目の要素のafterにcloseを表示*/
  content: "Close";
  transform: translateY(0) rotate(-45deg);
  top: 5px;
  left: 4px;
}
/* SP用のスタイル-----------------------------
------------------------------------------*/
.menu-list ul {
  display: none; /*SPメニューは初期状態では非表示*/
}
.menu-list.panelactive ul {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  display: block;
  z-index: 10;
  margin: 0 auto;
  font-size: 1.5rem;
  background-color: #111;
}
nav ul li a {
  position: relative; /*テキストの基点とするためにrelative指定*/
  overflow: hidden; /*はみ出る要素を隠す*/
  padding: 2rem 3rem;
}
nav li span {
  position: absolute; /*絶対配置でテキストの位置を指定*/
  left: 50%;
  top: 0;
  transition: all .5s; /*アニメーションの指定*/
  transform: translate(-50%, 0);
  display: block; /*ブロック要素にして透過なし、テキスト折り返しなし*/
  opacity: 1;
  white-space: nowrap;
}
nav li span:nth-child(2) {
  opacity: 0; /*透明にする*/
  transform: translate(-50%, 100%); /*X方向に-50%,Y方向に100%*/
}
/* PC用のスタイル-----------------------------
------------------------------------------*/
@media screen and (min-width:769px) {
  .openbtn {
    display: none; /* ハンバーガーボタンは非表示*/
  }
  nav {
    width: 100%;
    display: flex;
  }
  nav ul {
    width: 60%;
    height: 100%;
    color: #fff;
    list-style-type: none;
    display: flex; /*PC表示で横並べ*/ ;
  }
  .menu-list ul {
    display: flex;
  }
  /*ホバー時に日本語表記になる設定----------------------------------------*/
  nav ul li a {
    position: relative; /*テキストの基点とするためにrelative指定*/
    overflow: hidden; /*はみ出る要素を隠す*/
    padding: 2rem 3rem;
  }
  nav li span {
    position: absolute; /*絶対配置でテキストの位置を指定*/
    left: 50%;
    top: 0;
    transition: all .5s; /*アニメーションの指定*/
    transform: translate(-50%, 0);
    display: block; /*ブロック要素にして透過なし、テキスト折り返しなし*/
    opacity: 1;
    white-space: nowrap;
  }
  nav li span:nth-child(2) {
    opacity: 0; /*透明にする*/
    transform: translate(-50%, 100%); /*X方向に-50%,Y方向に100%*/
  }
  /*hoverでテキストが入れ替わる設定*/
  nav li:hover span:nth-child(1) {
    opacity: 0;
    /*X方向に-50%,Y方向に-100%*/
    transform: translate(-50%, -100%);
  }
  nav li:hover span:nth-child(2) {
    background-color: #fff;
    color: #000;
    opacity: 1; /*不透明にする*/
    /*X方向に-50%、Y方向に0*/
    transform: translate(-50%, 0);
  }
}
/*トップビュービデオコンテナ-----------------------------------------------
-------------------------------------------------------------------*/
/*ブラウザ幅いっぱいで位置固定*/
.video-wrapper {
  width: 100%;
  position: fixed;
}
/*背景動画のドットフィルター ---------------------------------------------
-------------------------------------------------------------------*/
.video-wrapper:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*背景動画に薄い黒フィルターを載せる-------------------------*/
  background-color: rgba(0, 0, 0, .5);
  /*ドットフィルター--------------------------------------*/
  background-image: radial-gradient(black 20%, transparent 20%), /*ドット2つを作成*/ radial-gradient(black 20%, transparent 20%);
  background-size: 6px 6px; /*ドット一つは6px*/
  background-position: 0 0, 3px 3px; /*2行目は3pxずつずらす*/
  z-index: 1; /*フィルターはビデオよりも前面に*/
}
video {
  width: 100%; /*背景ビデオはブラウザ幅いっぱいに広がる*/
}
/*ファーストビューキャッチ-----------------------------------
-------------------------------------------------------*/
.video-catch {
  position: absolute;
  bottom: .25rem;
  left: .5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  z-index: 10;
}
.video-catch:nth-of-type(1), .video-catch:nth-of-type(2) {
  margin: 1rem;
}
@media(min-width:769px) {
  .video-catch {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    z-index: 10;
  }
}
/*メインコンテンツモバイルファースト---------------------------
-----------------------------------------------------*/
.main-container {
  width: 100%;
  position: absolute;
  top: 100vh;
  z-index: 50;
}
.title-box {
  /*	background-color:red;*/
  background-color: rgba(0, 0, 0, 0.85);
}
h2 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  /*  background-color: rgba(0, 0, 0, 0.85);*/
  padding-top: 4rem;
}
/*装飾の下線*/
h2::after {
  content: '';
  width: 2rem;
  height: 0.25rem;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  bottom: -1rem;
  left: calc(50% - 1rem);
}
/*========= スクロールダウンのためのCSS ===============*/
/*スクロールダウン全体の場所*/
.scrolldown {
  position: absolute;
  top: 1%;
  right: 5%;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 1s ease-in-out infinite;
}
/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    top: 1%;
  }
  50% {
    top: 3%;
  }
  100% {
    top: 1%;
  }
}
/*Scrollテキストの描写*/
.scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  top: -100px;
  /*テキストの形状*/
  color: #fff;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
/* 矢印の描写 */
.scrolldown:before {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -70px;
  right: -6px;
  /*矢印の形状*/
  width: 2px;
  height: 20px;
  background: #999;
  transform: skewX(-31deg);
}
.scrolldown:after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -150px;
  right: 0;
  /*矢印の形状*/
  width: 2px;
  height: 100px;
  background: #eee;
}
/*SP表示では縦積み*/
.content {
  width: 100%;
  padding: 5%;
  color: #fff;
}
.content-reverse {
  display: flex;
  flex-direction: column-reverse;
  background-color: rgba(0, 0, 0, 0.85);
}
.content-first, .content-second {
  margin: 0 auto;
}
.content img {
  width: 100%;
}
.content p {
  margin: 1rem auto;
}
/*詳細ボタン------------------------------------
---------------------------------------------*/
.view-more {
  width: 12rem;
  padding: .75rem;
  text-align: center;
  margin: 0 auto;
}
.btn-view-more {
  position: relative;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 1rem;
}
.btn-view-more:hover {
  border-color: transparent1;
}
/*メインコンテンツPC用のスタイル-----------------------------
-----------------------------------------------------*/
@media(min-width:769px) {
  .main-container {
    width: 100%;
  }
  h2 {
    font-size: 2rem;
  }
  .content {
    width: 100%;
    display: flex;
    justify-content: space-around;
  }
  .content {
    display: flex;
    color: #fff;
  }
  .content-reverse {
    flex-direction: row;
    background-color: rgba(0, 0, 0, 0.85);
  }
  /*  .content:nth-of-type(3) , .content:nth-of-type(5){
    background-color: transparent;
    color: #fff;
  }*/
  .content-first, .content-second {
    width: 40%;
    margin: auto;
  }
}
/*表のスタイル*/
table {
  borde-collapse: collapse;
  margin: 0 auto 2rem;
}
th, td {
  border: 1px #fff solid;
  text-align: center;
}
td {
  vertical-align: middle;
}
iframe {
  width: 100%;
}
/*フッター-------------------------------------------
---------------------------------------------------*/
/*全体の設定----------------------------------*/
.footer-wrapper {
  background-color: #333;
  color: #fff;
  padding: .75rem;
}
.footer-box ul {
  width: 50%;
}
.footer-box li {
  text-align: center;
}
.footer-logo {
  width: 40%;
}
.footer-logo img {
  width: 100%;
}
/*SP表示で縦積みを中央揃え*/
.footer-box ul, .footer-logo {
  margin: 0 auto 1rem;
}
.copy-right {
  text-align: center;
}
/*PC用の設定------------------------------------*/
@media(min-width:769px) {
 

	.footer-box{
    display: flex;
    justify-content: space-between;
  }
	
  .footer-wrapper ul {
    width: 8rem;
  }
  .footer-box li {
    text-align: start;
  }
  .footer-logo {
    width: 12rem;
  }
  /*PC表示で横並べのためにmarginをクリア*/
  .footer-box ul, .footer-logo {
    margin: 0;
  }
}
/*下層ページのCSS*/
/*ファーストビュー写真*/
.ft_img {
  width: 100%;
}
.fv_img img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  filter: grayscale(0); /* 最初はグレースケールなし */
  transition: filter 0.5s ease; /* フィルターの変化をアニメーション化 */
}
/* main-containerが半分までスクロールされた時のスタイル */
.main-container.scrolled .fv-img {
  filter: grayscale(100%); /* グレースケールを100%に変更 */
}
/*about*/
.about-container {
  top: 70vh;
}
.lower-text {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.85);
}
h3 {
  color: #fff;
  padding: 1rem;
  font-size: 1.5rem;
  text-align: center;
}
.lower-text ul li {
  text-align: center;
  font-size: 1.175rem;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1rem 0 0;
}
/*main-containerスライドインアニメーション*/
.content.delighter {
  opacity: 0;
  transform: translateY(20px);
  transition: all 500ms ease;
}
.content.delighter.started {
  background-color: rgba(0, 0, 0, 0.85);
  opacity: 1;
  transform: none;
}
.content.content-reverse.delighter.started {
  background-color: rgba(0, 0, 0, .5);
}
