@charset "UTF-8";
/** {
  outline: 0.5px red solid;
}*/

/* 全体のスクロールバー */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
/* スクロールバーのレール部分 */
::-webkit-scrollbar-track {
  background-color: rgba(121, 121, 121, 0.1);
}
/* スクロールバーのつまみ部分 */
::-webkit-scrollbar-thumb {
  background-color:rgba(221, 221, 221, 0.5);
}

/* 遷移時のフェードイン */
main {
  animation: fadein 1.5s forwards;
}
@keyframes fadein {
0% {opacity: 0}
100% {opacity: 1}
}/* 遷移時のフェードインここまで */

/* 画面全体の設定 */
body {
  font-family: "Arial", "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
  color:#707070;
  height: 100vh;
  height: 100dvh;
  overflow-y: hidden;
  position: fixed;
}
.langzh {
  font-family: 'Noto Sans SC', sans-serif;
}
.wrap {
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  background: url(../image/background.png) fixed no-repeat center/cover;
  position: relative;
  }

/* header設定 */
header {
  width: 100vw;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.headerWrap {
  width: 90%;
  font-size: 18px;
  color: #707070;
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  margin: 0 auto;
}
h1 {
  display: flex;
}
h1 img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
header ul {
  display: flex;
  justify-content: space-between;
}
header ul li {
  list-style: none;
}
.menu {
  width: 50%;
  height: auto;
  margin-left: 8vw;
  justify-content: space-around;
}

/* menuアンダーライン */
.menu a {
  text-decoration: none;
}
.menu a:hover {
  text-decoration: underline;
}

/* 言語切り替え */
.lang {
  font-size: 12px;
  margin-left: 3vw;
}
.hideButton {
  display: none;
}

/* 横スクロール表示部分 */
main {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  text-align: center;
  position: fixed;
  color: #000;
}
/* 表示中ページのタイトル表示 */
h2 {
  height: 48px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
h2 img {
  height: 48px;
  width: auto;
}

.page {
  height: 60vh;
  height: 60dvh;
  width: 90vw;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -15%);
}

/* メインコンテンツ部分 */

/* 左側 主に画像 高さなど適宜調整してください */
.pageLeft {
  width: 40vw;
  height: auto;
}

/* 右側 主に画像 高さなど適宜調整してください */
.pageText {
  width: 40vw;
  height: auto;
}

/* footer設定 */
footer {
  width: 100vw;
  position: fixed;
  bottom: 8px;
  z-index: 999;
}
.footerContents {
  width: 80%;
  font-family: Arial, Helvetica, sans-serif;
  color: #707070;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin: 0 auto;

}
.adress {
  display: flex;
  align-items: flex-end;
}
.snsLink {
  width: 100px;
  display: flex;
  justify-content: space-between;
  margin-left: 20px;
}
footer img {
  width: 20px;
  height: auto;
}


/* 狭画面 */
@media screen and (max-width:960px) {
  /* ヘッダーメニュー位置調整 */
  .headerWrap {
    display: block;
    position: relative;
  }
  .menu {
    margin: 8px auto 0;
  }
  .lang {
    position: absolute;
    right: 0;
    top: 24px;
  }
  h2 img {
    height: 40px;
  }
}

/* スマホ版 */
@media screen and (max-width:640px) {
  /* 近いので一時リンクOFF */
  h1 a {
    pointer-events: none;
  }

  .headerWrap {
    width: 90vw;
    padding-top: 32px;
  }
  .lang {
    top: 12px;
  }
  h1 {
    justify-content: center;
  }
  .menu {
    width: 85vw;
    font-size: 16px;
  }

  /* 横スクロールで入ってくる部分 */
  h2 img {
    height: 32px;
  }

  /* メインコンテンツ部分 */
  .page {
    display: block;
    width: 100vw;
    height: auto;
    margin: 20px auto 0;
  }

  /* 上側 主に画像が入ります */
  .pageLeft {
    margin: 0 auto;
  }

  /* 下側 主にテキストが入ります */
  .pageText {
    margin: 0 auto;
  }

  /* footer */
  footer {
    height: 10vh;
    height: 10dvh;
    border-top: solid 0.5px #707070;
    padding-top: 5px;
  }
  .footerContents, .adress {
    display: block;
    text-align: center;
  }
  .adress small {
    display: block;
    margin-bottom: 5px;
  }  
  .snsLink {
    width: 100px;
    margin: 0 auto;
  }
}

