@charset "UTF-8"; /* 文字コードの指定 */

body {
  font-family: 'Noto sans JP', sans-serif;
  line-height: 1.6;
  letter-spacing: .1em;
  color: #fff;
  background-color: #071e3d;
  max-width: 100%;

}
a {
  color: #e9e9e9;
  text-decoration: none;
}
a:hover {
  color: deepskyblue;
}
small {
  font-size: .75rem;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

h1,h2,h3,h4,li,a,p {
  color: rgb(191, 234, 251);
}
/* <!-- \₍ᐢ⓿ᴥ⓿ᐢ₎へっだー₍^⩌ᴥ⩌^₎/ --> */
.header {
  max-width: 100%;
}
.header-top {
  position: fixed;
  width: 100%;
  background-color: #071e3d;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding: 1.45rem .5rem 0;
}
/* カートボタン、ハンバーガーボタン */
.left-button,
.hamburger-button {
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  padding: 0.875rem;
  line-height: 0;
  background-color: #e9e9e9;
  border-radius: 50%;
  color: #071e3d;
}

/* twitterボタン */
.left-button  {
  /* left: 0.937rem; */
  font-size: 1.25rem;
  background-color: #1c5095;
  background-color: #e9e9e9;
}
.left-button a {
  color: #071e3d;
}
.left-button a:hover {
  color: deepskyblue;
}
.left-button:hover  {
  /* background-color: #1c5095; */
  color: deepskyblue;
  background-color: #071e3d;
}

/* ハンバーガーボタン */
.hamburger-button {
  /* right: 0.937rem; */
  font-size: 1.75rem;
}
.hamburger-button:hover {
  color: deepskyblue;
  background-color: #071e3d;
}

.header-main-img {
  position: relative;
  width: 100%;
  height: 100vh;
  /* 背景画像 */
  background-image: url("./images/background-img/background-img002.png");
  background-position: center;
  background-size: cover;
}
.header-container {
  width: 100vw;
  max-width: 100%;
}

/* キャッチコピー */
.catch {
  position: absolute;
  width: 100%;
  padding-top: 1.5rem;
  padding-left: 2rem;
  text-align: center;
  top: 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* left: 10%; */
  font-family: 'Noto Serif JP', serif;
  font-size: 1.5rem;
  letter-spacing: 0.187rem;
  color: #e9e9e9;
  /* background-color: #ffffff; */
  /* text-align: left; */
}

/* ハンバーガーメニュー */
.hamburger-menu {
  position: fixed;
  top: 5rem;
  left: 0;
  z-index: 1000;
  width: 100vw;
  height: calc(100vh - 5rem);
  background-color: #071e3d;
  opacity: .9;
  /* 右からスライドイン */
  transform: translateX(100%);
  /* 左からスライドイン */
  /* transform: translateX(-100%); */
  /* 上からスライドイン */
  /* transform: translateY(-100%); */
  /* 下からスライドイン */
  /* transform: translateY(100%); */
  transition: all 0.6s;
}

/* スライドイン後の位置の指定 */
.hamburger-menu-active {
  /* 左・右からスライドインさせる場合 */
  transform: translateX(0);
  /* 上・下からスライドインさせる場合 */
  /* transform: translateY(0); */
}

.hamburger-menu-list {
  width: 80%;
  padding: 0 10%;
  margin: 1.75rem auto;
  font-family: 'Noto Serif JP', serif;
  font-size: 1.75rem;
  text-align: left;
  list-style: none;
}

.hamburger-menu-list li {
  margin-bottom: 0.625rem;
}








/* ------------------------------ */
/* -- \₍ᐢ⓿ᴥ⓿ᐢ₎フッター₍^⩌ᴥ⩌^₎/ -- */
/* ---------------------------- */
footer {
  border-top: 1px solid #0e3466;
  padding: 1.875rem 0;
  text-align: center;
}
/* フッターコンテナ */
footer .container {
  width: 80%;
  margin: auto;
}

footer .contact {
  padding: 0;
  margin: 1.875rem 0 2.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4.125rem;
}

footer .contact li {
  list-style: none;
}
footer .contact a {
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  font-size: 1.687rem;
  line-height: 0;
  color: #fff;
  text-align: center;
  background-color: #071e3d;
  border-radius: 50%;
}

footer .contact a:hover {
  background-color: #1c5095;
}

footer .contact .twitter a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.375rem;
  line-height: 1.875rem;
  color: deepskyblue;
}
footer .contact .coin a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  line-height: 1.875rem;
  color: lightyellow;
}

footer .footer-link {
  display: flex;
  column-gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.875rem;
  margin-bottom: 0.875rem;
  font-size: 0.875rem;
  list-style: none;
}
.footer-link a {
  color: turquoise;
}
.footer_copyright {
  color: cornflowerblue;
}
