/* header */
#top-head {
  width: 100%;
  top: 0;
  position: fixed;
  margin-top: 0;
  z-index: 9999;
  background: #fff;
  height: 70px;
  box-shadow: 0px 1px 10px rgba(98, 145, 209, 0);
}
#top-head .logo {
  position: absolute;
  top: 50%;
  -ms-transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
  left: 30px;
  width: 130px;
  z-index: 3;
  line-height: 1;
}
.top-head_wrap {
  position: relative;
  width: 100%;
  height: 70px;
}
.h_sns {
  text-align: right;
  position: absolute;
  top: 10px;
  right: 100px;
  font-size: 2.5rem;
}
.h_sns a {
  color: #008DAC;
  margin: 0 0 0 15px;
}
.h_nav {
  position: absolute;
  top: 38px;
  right: 100px;
  z-index: 4;
  font-weight: 600;
}
.h_nav_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0px auto 0em;
  justify-content: flex-end;
  position: relative;
}
.h_nav_list > li {
  position: relative;
  flex: 0 1 auto;
  justify-content: center;
  padding: 0px 0px 0px 25px;
  font-size: 1.6rem;
  letter-spacing: 2px;
  /*
  font-family: "adobe-caslon-pro", serif;
  font-weight: 700;
	*/
}
.h_nav_list > li i {
  padding: 0 0 2px 5px;
  font-size: 1.3rem;
}
.h_nav_list li.has-child {
  padding: 0 18px 0 25px;
}
.h_nav_list li.has-child::before {
  content: '';
  position: absolute;
  right: 0px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}
.h_nav_list li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 32px;
  left: 51%;
  transform: translate(-50%, 0%);
  z-index: 4;
  background: #008dac;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all .3s;
}
/*hoverしたら表示*/
.h_nav_list li.has-child:hover > ul, .h_nav_list li.has-child ul li:hover > ul, .h_nav_list li.has-child:active > ul, .h_nav_list li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
.h_nav_list li.has-child ul li a {
  display: block;
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  line-height: 50px;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
}
.h_nav_list li.has-child ul li:last-child > a {
  border-bottom: none;
}
.h_nav_list li.has-child ul li a:hover, .h_nav_list li.has-child ul li a:active {
  background: #005085;
}
/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: absolute;
  z-index: 9999; /*ボタンを最前面に*/
  top: 10px;
  right: 25px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  right: 25%;
  height: 2px;
  border-radius: 5px;
  background-color: #008DAC;
  width: 50%;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 25px;
}
.openbtn span:nth-of-type(3) {
  top: 35px;
}
/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
.openbtn.active {}
.openbtn.active span {
  background-color: #fff;
}
.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) {
  display: none;
}
.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*========= ナビゲーションのためのCSS ===============*/
#gnav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 9998;
  /*ナビのスタート位置と形状*/
  top: -220%;
  right: 0%;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: linear-gradient(90deg, #EFF7FA 0%, #EFF7FA 30%, #008DAC 30%, #008DAC 100%);
  /*動き*/
  transition: all 0.6s;
}
#gnav::before {
  position: absolute;
  bottom: 30px;
  right: 50px;
  content: '';
  display: block;
  width: 150px;
  height: 200px;
  background-image: url("/img/common/mascot01.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
/*アクティブクラスがついたら位置を0に*/
#gnav.panelactive {
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#gnav.panelactive #gnav-inner {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
.gnav_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: center;
  align-items: center;
  flex-direction: row-reverse;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gnav_left {
  width: 17%;
  margin: 0 3% 0 10%;
  text-align: left;
}
.gnav_l_list {
  margin: 2em auto 0;
}
.gnav_l_list a {
  display: block;
}
.gnav_l_list > li {
  border-bottom: 1px solid #008DAC;
  padding: 18px 0;
  position: relative;
}
.gnav_l_list > li::before {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #008DAC;
  transition: ease .2s;
}
.gnav_l_list > li:hover::before {
  right: -5px;
}
.gnav_l_list > li:last-child::before {
  content: '\f061';
  transform: rotate(-45deg);
  top: calc(50% - 15px);
}
.gnav_l_list > li:last-child:hover::before {
  top: calc(50% - 18px);
}
.gnav_l_list > li:nth-child(3)::before {
  display: none;
}
.gnav_l_list > li span {
  display: block;
  color: #008DAC;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}
.gnav_l_list > li i {
  padding: 0 0 0 10px;
  font-size: 2rem;
}
.gnav_l_list_accordion summary {
  position: relative;
  cursor: pointer;
  display: block;
}
.gnav_l_list_accordion summary::-webkit-details-marker {
  display: none;
}
.gnav_l_list_accordion summary::after {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  content: '\2b';
  font-family: FontAwesome;
  font-weight: 400;
  color: #008DAC;
  transition: transform .3s;
}
.gnav_l_list_accordion[open] summary::after {
  content: '\f068';
}
.gnav_l_list_accordion ul {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0.5em auto 0;
  ;
  transition: transform .5s, opacity .5s;
}
.gnav_l_list_accordion[open] ul {
  transform: none;
  opacity: 1;
}
.gnav_l_list_accordion ul li {
  position: relative;
  padding: 3px 0 3px 20px;
}
.gnav_l_list_accordion ul li::before {
  position: absolute;
  top: 3px;
  left: 0;
  content: 'ー';
  color: #008DAC;
}
a.gnav_l_pp {
  display: inline-block;
  font-size: 1.3rem;
  margin: 3em auto 0;
  text-decoration: underline;
}
a.gnav_l_pp:hover {
  text-decoration: none;
}
.gnav_right {
  width: 55%;
  margin: 0 10% 0 5%;
}
.gnav_r_logo {
  display: none;
}
.gnav_r_list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0em auto 0em;
  justify-content: space-between;
}
.gnav_r_list li {
  background: #fff;
  border-radius: 20px;
  margin: 1em 10px 0em;
  width: calc(100% / 2 - 20px);
  padding: 40px 0;
  position: relative;
  transition: ease .2s;
}
.gnav_r_list li:hover {
  background: #EFF7FA;
}
.gnav_r_list li::before {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate(0%, -50%);
  content: '\f054';
  font-family: FontAwesome;
  font-weight: 400;
  color: #008DAC;
  transition: ease .2s;
}
.gnav_r_list li:hover::before {
  right: 15px;
}
.gnav_r_list li:nth-child(2)::before {
  content: '\f061';
  transform: rotate(-45deg);
  top: calc(50% - 15px);
}
.gnav_r_list li:nth-child(2):hover::before {
  top: calc(50% - 18px);
}
.gnav_r_list li a {
  display: block;
}
.gnav_r_list li img {
  display: block;
  margin: auto;
  width: 120px;
}
.gnav_r_list li p {
  margin: 2em auto 0;
}
.gnav_r_list li p span {
  display: block;
  color: #008DAC;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}
.gnav_r_list li p i {
  font-size: 1.8rem;
  padding: 0 0 0 10px;
}
.gnav_left .gnav_contact {
  display: none;
}
.gnav_contact_btn {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 3em auto 0em;
  justify-content: center;
  align-items: center;
}
.gnav_contact_btn li {
  width: 300px;
  margin: 0 10px;
}
.gnav_contact_btn li .footer_btn {
  width: 300px;
}
.gnav_contact_btn li .footer_btn.vleague {
  padding: 13px 0px 13px 0px;
  margin: 0;
}
.gnav_sns {
  margin: 2em auto 0;
}
.gnav_sns p {
  color: #fff;
  font-family: effra, sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 2px;
}
.gnav_sns div {
  font-size: 3rem;
}
.gnav_sns div a {
  margin: 0 8px;
  color: #fff;
}
@media screen and (max-width: 1100px) {
  .h_nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #top-head {
    position: fixed;
    min-width: 200px;
  }
  .h_sns {
    top: 20px;
    right: 70px;
    font-size: 2rem;
  }
  .h_sns a {
    margin: 0 0 0 10px;
  }
  .h_nav {
    display: none;
  }
  #top-head .logo {
    top: 50%;
    left: 10px;
    width: 120px;
  }
  /*========= ボタンのためのCSS ===============*/
  .openbtn {
    top: 10px;
    right: 5px;
  }
  /*========= ナビゲーションのためのCSS ===============*/
  #gnav {
    top: -500%;
    background: #EFF7FA;
  }
  #gnav::before {
    display: none;
  }
  .gnav_wrap {
    margin: 0em auto !important;
    position: relative;
    top: 0;
    left: 0;
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
    display: block;
  }
  .gnav_left {
    width: 80%;
    max-width: 280px;
    margin: 0 auto 10em;
  }
  .gnav_l_logo {
    display: none;
  }
  .gnav_l_list {
    margin: 2em auto 0;
  }
  .gnav_l_list > li {
    padding: 15px 0;
  }
  .gnav_l_list > li:last-child::before {
    top: calc(50% - 15px);
  }
  .gnav_l_list > li:last-child:hover::before {
    top: calc(50% - 18px);
  }
  .gnav_l_list > li span {
    font-size: 2.2rem;
  }
  .gnav_l_list > li i {
    font-size: 1.8rem;
  }
  a.gnav_l_pp {
    font-size: 1.2rem;
    margin: 3em auto 0;
  }
  .gnav_right {
    width: 100%;
    margin: 0 auto;
    background: #008DAC;
    padding: 3em 0;
  }
  .gnav_r_logo {
    display: block;
    max-width: 150px;
    margin: auto;
  }
  .gnav_r_list {
    width: 90%;
    margin: 1em auto 0em;
  }
  .gnav_r_list li {
    border-radius: 10px;
    margin: 1em 7px 0em;
    width: calc(100% / 2 - 14px);
    padding: 20px 0 0;
  }
  .gnav_r_list li::before {
    right: 10px;
  }
  .gnav_r_list li:hover::before {
    right: 5px;
  }
  .gnav_r_list li img {
    width: 60px;
  }
  .gnav_r_list li p {
    margin: 0 auto;
    height: 75px;
    display: grid;
    place-items: center;
    place-content: center;
  }
  .gnav_r_list li p span {
    font-size: 2rem;
  }
  .gnav_r_list li p i {
    font-size: 1.5rem;
    padding: 0 0 0 5px;
  }
  .gnav_right .gnav_contact {
    display: none;
  }
  .gnav_left .gnav_contact {
    display: block;
    text-align: center;
  }
  .gnav_contact_btn {
    display: block;
    margin: 3em auto 0em;
  }
  .gnav_contact_btn li .footer_btn {
    width: 250px;
  }
  .gnav_contact_btn li {
    width: 250px;
    margin: 0.5em auto 0;
  }
  .gnav_sns {
    margin: 2em auto 0;
  }
  .gnav_sns p {
    color: #008DAC;
    font-size: 1.6rem;
  }
  .gnav_sns div {
    font-size: 2.5rem;
  }
  .gnav_sns div a {
    color: #008DAC;
  }
}
@media (max-height: 1000px) {
  /* 高さ500px以下の場合 */
  .gnav_wrap {
    margin: 5em auto;
    position: relative;
    top: 0;
    left: 0;
    -ms-transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }
}