@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #202056; /* 文字カラー紺色 */
  font-family: "ヒラギノ角ゴシック", 'Montserrat', sans-serif;
  font-size: 1.6em;
  line-height: 1.7;
  background: repeating-linear-gradient(135deg, #fff, #fff 1px, #f7f7f9 2px, #f7f7f9 8px);
  text-align: center;
}
section h2 {
  font-weight: normal;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
ul li {
  list-style: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.section {
  margin-bottom: 50px;
}
.title-img {
  margin-bottom: 2em;
}
/*=== コンテンツの開始位置 ===*/
main {
  padding-top: 155px;
}
a:hover {
  opacity: 0.8;
}
#point,#table,#news,#info {
    padding-top: 150px;
    margin-top: -150px;
}
/*////////////////////////////

header

////////////////////////////*/
/*=== ヘッダーロゴデザイン ===*/
h1 {
  font-weight: 600;
  text-align: center;
}
h1 span {
  font-size: 3.0rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
  }
  h1 span {
    font-size: 2.4rem;
    vertical-align: middle;
  }
}
/*=== ヘッダーデザイン ===*/
#header {
  /*レイアウトCSS*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  /*レイアウトCSS*/
  background: #fff;
  color: #202056;
  text-align: center;
  padding: 0.8em;
  box-shadow:
    0 1.9px 2.5px rgba(0, 0, 0, 0.057), 0 4px 4px rgba(0, 0, 0, 0.060), 0 8px 6px rgba(0, 0, 0, 0.070);
}
.header-wrapper {
  max-width: 1160px;
  margin: 0 auto;
}
.header_pcheader {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#g-nav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-top: 1em;
}
#g-nav ul li {
  flex-grow: 1;
  font-size: 1.6rem;
  font-weight: 300;
}
#g-nav ul li + li {
  border-left: 1px solid #b6b6c8;
}
/* ホバーデザイン */
#g-nav a:after {
  position: absolute;
  left: -5px;
  bottom: -20px;
  display: block;
  content: "";
  width: 0%;
  height: 2px;
  background: #5cbd95;
  transition: all 0.2s cubic-bezier(1, 1, 0.8, 1);
}
#g-nav a {
  position: relative;
}
#g-nav a:hover:after {
  width: 115%;
}
/*　ハンバーガーメニュー　*/
@media screen and (max-width: 767px) {
  /*========= ナビゲーションのためのCSS ===============*/
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    right: -120%;
    width: 80%;
    height: 100vh; /*ナビの高さ*/
    background: #202056;
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    right: 0;
  }
  /*ナビゲーション*/
  #g-nav ul {
    margin: 0.5em;
    margin-top: 3.5em;
    z-index: 999;
    display: block;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    text-align: left;
    border-bottom: solid 1px #fff;
  }
  #g-nav li a {
    color: #fff;
    padding: 10px;
    padding-left: 27px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  #g-nav li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #ffffff;
    border-right: solid 1px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    margin: 1.4em;
    margin-left: 0.5em;
}
  #g-nav ul li + li {
  border-left: none;
}
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #202056;
    border-radius: 3px;
  }
  /*×に変化*/
  .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    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: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  /*=== コンテンツの開始位置 ===*/
  main {
    padding-top: 81px;
  }
  #g-nav a:hover:after {
  width: 0%;
}
}
/*//////////////////////////////////////

　footer

//////////////////////////////////////*/
.footer {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 6.5em;
  background: #fff;
}
.footer-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding-bottom: 1em;
}
.footer-wrapper p {
  text-align: right;
  margin-right: 1em;
}
small {
  font-size: 1.2rem;
  color: #b6b6c8;
}
@media screen and (min-width: 768px) {
  .footer-wrapper img {
    width: 85px;
  }
  .pc-none {
    display: none;
  }
  .footer {
    margin: 0 0.5em;
  }
}