/* CSS Document */
/*========== HEADER ==========*/
.pc-none {
  display: none;
}
.rapper {
  width: 100%;
}
/* ヘッダー */
.header {
  background-color: white;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  border-bottom: 1px solid #ccc;
}
.header-inner {
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
/* ヘッダーのロゴ部分 */
.header-title {
  width: 50%;
  margin: 10px auto;
}
.nav__items li a:hover {
  text-decoration: underline #0000FF;
  color: #0000FF;
}
.header-photo {
  width: 100%;
  padding-top: 50px;
}
@media screen and (min-width: 960px) {
  .header-title {
    width: 250px;
  }
}
.header-title img {
  display: block;
  width: 100%;
  height: 100%;
}
/* ヘッダーのナビ部分 */
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(100%);
  background-color: #fff;
  transition: ease .8s;
}
@media screen and (min-width: 960px) {
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
    width: 50%;
  }
}
@media screen and (min-width: 960px) {
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: space-between;
  }
}
.nav-items {
  padding-top: 100px;
  padding-bottom: 50px;
}
@media screen and (min-width: 960px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
/* ナビのリンク */
.menu-list a {
  color: black;
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 24px;
}
.menu-list:last-child a {
  margin-bottom: 0;
}
.menu-list:last-child a:hover {
  margin-bottom: 0;
}
@media screen and (min-width: 960px) {
  .menu-list a {
    margin-bottom: 0;
  }
}
/* ハンバーガーメニュー */
.header-hamburger {
  width: 48px;
  height: 100%;
}
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 960px) {
  .hamburger {
    display: none;
  }
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 8px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}
/*========== contents ==========*/
.contents {
  width: 100%;
}
.contents-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.top-title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 30px 0;
}
.top-info {
  width: 100%;
  max-width: 660px;
  height: 145px;
  overflow: auto;
  border: 1px solid #333;
  padding: 5px;
  margin: 0 auto 50px;
}
dl {
  padding: 5px;
}
dt {
  padding: 0 10px 0 5px;
  width: 120px;
  float: left;
  margin-bottom: 5px;
}
dd {
  margin-bottom: 5px;
}
dd a:hover {
  font-weight: 700;
  color: #0000FF;
  border-bottom: 1px solid #0000FF;
}
.info-list {
  line-height: 30px;
  text-align: center;
  float: right;
  width: 150px;
  margin: 0 0 0 0;
}
.top-01 {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: #223377;
  padding: 10px 0 10px 50px;
}
.top-02 {
  padding: 0 50px;
  font-size: 18px;
  margin: 20px 0 30px 0;
}
.top-03 {
  line-height: 50px;
  font-size: 20px;
  font-weight: bold;
  border: 1px solid #223377;
  border-left: 10px solid #223377;
  padding-left: 30px;
}
.top-04 {
  padding: 0 50px;
  margin: 20px 0 30px 0;
}
.top-teble-1 {
  width: 100%;
  max-width: 500px;
  margin: 20px auto 10px;
}
.top-teble-1 th {
  padding: 5px 0 5px 10px;
  text-align: left;
  width: 30%;
  border: 1px solid #ccc;
}
.top-teble-1 td {
  padding: 5px 0 5px 10px;
  border: 1px solid #ccc;
}
.top-teble-2 {
  width: 100%;
  max-width: 770px;
  margin: 20px auto 30px;
}
.top-teble-2 th {
  padding: 5px 5px 5px 10px;
  text-align: left;
  border: 1px solid #ccc;
}
.top-teble-2 td {
  padding: 5px 5px 5px 10px;
  border: 1px solid #ccc;
}
.top-teble-01 {
  text-align: center;
  width: 25%;
}
.top-teble-03 {
  width: 30%;
}
.top-teble-2 tr:hover th {
  background-color: #E7EDFB;
}
.top-teble-2 tr:hover td {
  background-color: #E7EDFB;
}
.top-05 {
  padding: 0 50px;
  margin-bottom: 30px;
}
.top-06 {
  padding: 0 50px;
  font-size: 18px;
  font-weight: bold;
  margin: 20px 0 5px 0;
}
.top-07 {
  padding: 0 70px;
  margin: 0 0 20px 0;
}
.top-08 {
  padding: 0 50px;
  font-size: 18px;
  margin: 20px 0 20px 0;
}
.foot-bana {
  margin: 50px 0;
}
.foot-bana p {
  width: 228px;
  float: left;
  line-height: 40px;
  text-align: center;
  border: 1px solid #223377;
  margin: 0 10px;
  font-size: 20px;
}
.foot-bana p a {
  color: #223377;
  display: block;
  transition: 0.8s;
}
.foot-bana p a:hover {
  background-color: #223377;
  color: #fff;
}
/*========== FOOTER ==========*/
footer {
  background-color: #223377;
}
.footer-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.footer-navi {
  text-align: center;
  padding: 30px 0 50px;
}
.footer-navi li {
  display: inline;
  padding: 20px;
}
.footer-navi li a {
  color: #fff;
}
.footer-navi li a:hover {
  border-bottom: 1px solid #fff;
  color: #fff;
}
.footer-01 {
  color: #fff;
  font-size: 18px;
  text-align: right;
  margin: 0 70px 0 0;
}
.copyright {
  font-size: 14px;
  text-align: center;
  padding: 50px 0;
  color: #fff;
}
/*========== PAGETOP ==========*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 50px;
  background: #223377;
  opacity: 0.6;
  border-radius: 50%;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 35px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*========== MEMBER ==========*/
.member-box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px;
}
.member-01 {
  text-align: right;
  margin: 10px 10px 10px 0;
}
.member-02 {
  margin: 0 0 10px 20px;
}
.member-02 span {
  color: #C00003;
  font-weight: bold;
}
.member-03 {
  text-align: right;
  margin: 0 20px 10px 0;
  color: #223377;
}
.member-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.member-table tr:hover th {
  background-color: #E7EDFB;
}
.member-table tr:hover td {
  background-color: #E7EDFB;
}
.member-table th {
  padding: 5px;
  border: 1px solid #ccc;
  text-align: left;
}
.member-table td {
  padding: 5px;
  border: 1px solid #ccc;
}
.member-tbl-01 {
  width: 35%;
  text-align: center;
}
.member-tbl-02 {
  width: 24%;
}
.member-table a {
  color: #223377;
  text-decoration: underline #223377;
}
/*========== MEMBERSHIP ==========*/
.membership-01 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
}
.membership-02 {
  margin-bottom: 20px;
  padding: 0 100px;
}
.membership-03 {
  background: linear-gradient(transparent 0%, #ffff66 0%);
}
.membership-04 {
  color: #BC0003;
  margin-bottom: 30px;
  padding: 0 100px;
}
.membership-05 {
  line-height: 60px;
  font-size: 20px;
  color: #fff;
  font-weight: bold;
  background-color: #223377;
  text-align: center;
  margin-bottom: 20px;
}
.membership-06 {
  text-align: center;
  margin: 20px 0;
  color: #BC0003;
  font-size: 18px;
}
.membership-info {
  margin: 0 auto 10px;
  border: 1px solid #ccc;
  text-align: left;
  font-size: 1em;
  overflow: auto;
  width: 100%;
  max-width: 798px;
  height: 140px;
  background-color: #fcfcfc;
}
.membership-info-01 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 18px;
}
.membership-info-02 {
  padding: 10px 10px 5px;
}
.membership-info-03 {
  padding: 0px 30px 10px;
}
.privacy-check {
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  color: #BC0003;
}
.membership-07 {
  padding: 0 100px;
  margin-bottom: 20px;
}
.membership-07 span {
  color: #BC0003;
}
.membership-08 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 18px;
}
.membership-08 a {
  color: #0000FF;
  border-bottom: 1px solid #0000FF;
  padding-bottom: 3px;
}
.membership-08 a:hover {
  font-weight: bold;
}
.membership-09 {
  padding: 0 0 5px 100px;
  font-weight: bold;
}
.membership-10 {
  text-align: center;
  margin: 30px 0;
}
/*========== YURYO ==========*/
.yuryo-box-1 {
  width: 100%;
  max-width: 780px;
  margin: 20px auto;
}
.yuryo-01 {
  float: left;
  width: 100%;
  max-width: 350px;
  margin: 0 20px;
}
.yuryo-box-2 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
}
.yuryo-02 {
  text-align: center;
  font-size: 20px;
  margin: 0 0 20px;
}
.yuryo-03 {
  font-size: 18px;
  margin-bottom: 10px;
}
.yuryo-04 {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 20px;
}
/*========== CONTACT ==========*/
#formWrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 50px;
}
table.formTable {
  width: 100%;
  margin: 0 auto;
}
table.formTable td, table.formTable th {
  border: 1px solid #ccc;
  padding: 10px;
}
table.formTable th {
  width: 35%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}
p.error_messe {
  margin: 5px 0;
  color: red;
}
.input-error {
  text-align: center;
  margin: 30px 0;
}
.send {
  text-align: center;
  margin-bottom: 20px;
}
.contact-01 {
  font-size: 14px;
  margin: 0 0 5px 10px;
}
.contact-02 {
  font-size: 14px;
  color: #C00003;
  padding-left: 10px;
}
.button {
  margin: 20px 0;
}
.submit, .reset {
  width: 200px;
  border: 1px solid #555;
  line-height: 40px;
  cursor: pointer;
  background-color: #efefef;
  ;
  transition: .5s;
  font-size: 18px;
}
.reset {
  margin-left: 20px;
}
.submit:hover, .reset:hover {
  background-color: #fff;
}
.thanks-01 {
  text-align: center;
  margin: 0px 0 50px 0;
  font-size: 18px;
}
.thanks-02 {
  font-size: 18px;
  text-align: right;
  margin: 0 80px 100px 0;
}