/**********************font***************************/
@charset "utf-8";
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c");
.round {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro",
    "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "M PLUS Rounded 1c", sans-serif;
}
.wrapper {
  max-width: 100vw;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /*	box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
	-webkit-transition-property: all;
	transition-property: all;
	-webkit-transition-delay: .3s;
	transition-delay: .3s;
	-webkit-transition-duration: .5s;
	transition-duration: .5s;*/
}

@media screen and (max-width: 999.98px) {
  .wrapper {
    overflow-x: hidden;
    z-index: 1;
  }
  .menu-global-container {
    margin-top: 15vh;
  }
}

@media screen and (min-width: 1000px) {
  .drawer-menu {
    width: 100%;
    background-color: #fff;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 9999;
  }
  .menu-global-container {
    height: 100%;
  }
  .menu {
    max-width: 1200px;
    margin: 0 3rem 0 auto;
    text-align: right;
    height: 100%;
  }

  .menu-item {
    display: inline-block;
    padding: 25px 0 15px;
    text-align: center;
    font-size: 1.5rem;
    height: 100%;
  }

  .menu-item a {
    color: #212126;
    border-left: 1px solid #212126;
    padding: 0 10px;
  }
  .menu-item a:hover {
    text-decoration: none;
  }
  .menu-item:last-child a {
    border-right: 1px solid #212126;
  }

  .current_page_item a,
  .current-menu-item a {
    color: #1458E4;
  }

  .check,
  .menu-btn {
    display: none;
  }
}

  @media screen and (max-width: 999.98px) {
    .drawer-menu {
      box-sizing: border-box;
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: 30%;
      min-width: 300px;
      height: 100%;
      padding: 50px 0;
      background: #0464E1;
      background: -moz-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
      background: -webkit-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
      background: -o-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
      background: linear-gradient(to top right, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
      transition-property: all;
      transition-duration: 0.5s;
      transition-delay: 0s;
      transform-origin: right center;
      transform: perspective(500px) rotateY(-90deg);
      opacity: 0;
      z-index: 9990!important;
    }

    .drawer-menu .menu {
      overflow-y: auto;
      height: 100%;
    }

    .menu-item {
      display: block;
      font-size: 1.6rem;
    }

    .drawer-menu li {
      text-align: center;
    }

    .drawer-menu li a {
      display: block;
      height: 50px;
      line-height: 50px;
      font-size: 14px;
      color: #fff;
      transition: all 0.8s;
    }

    .drawer-menu li a:hover {
      color: #1a1e24;
      background: #fff;
    }

    /* ------------------------------------------------ checkbox */
    .check {
      display: none;
    }

    /* ------------------------------------------------ menu button */
    .menu-btn {
      position: absolute;
      display: block;
      top: 10px;
      right: 15px;
      width: 50px;
      height: 50px;
      font-size: 10px;
      text-align: center;
      cursor: pointer;
      z-index: 9999;
      border-radius: 3px;
      border: 2px solid #212126;
      background: #fff;
    }

    .bar {
      position: absolute;
      top: 12px;
      left: 8px;
      display: block;
      width: 30px;
      height: 3px;
      background: #212126;
      transition: all 0.5s;
      transform-origin: left top;
    }

    .bar.middle {
      top: 22px;
      opacity: 1;
    }

    .bar.bottom {
      top: 32px;
      transform-origin: left bottom;
    }

    .menu-btn__text {
      position: absolute;
      bottom: -5px;
      left: 0;
      right: 0;
      margin: auto;
      color: #fff;
      transition: all 0.5s;
      display: block;
      visibility: visible;
      opacity: 1;
      text-shadow: 1px 1px #666;
      text-align: center;
    }

    .menu-btn:hover .bar {
      background: #999;
    }

    .menu-btn:hover .menu-btn__text {
      color: #999;
    }

    .close-menu {
      position: fixed;
      top: 0;
      right: 30%;
      width: 100%;
      height: 100vh;
      background: rgba(0, 0, 0, 0);
      transition-property: all;
      transition-duration: 0.3s;
      transition-delay: 0s;
      visibility: hidden;
      opacity: 0;
    }

    /* ------------------------------------------------ checked */
    .check:checked ~ .drawer-menu {
      transition-delay: 0.3s;
      transform: none;
      opacity: 1;
      z-index: 2;
    }

    .check:checked ~ .contents {
      transition-delay: 0s;
      transform: translateX(-300px);
    }

    .check:checked ~ .menu-btn .menu-btn__text {
      visibility: hidden;
      opacity: 0;
    }

    .check:checked ~ .menu-btn .bar.top {
      width: 30px;
      top: 11px;
      left: 14px;
      transform: rotate(45deg);
    }

    .check:checked ~ .menu-btn .bar.middle {
      opacity: 0;
    }

    .check:checked ~ .menu-btn .bar.bottom {
      width: 30px;
      top: 32px;
      left: 13px;
      transform: rotate(-45deg);
    }

    .check:checked ~ .close-menu {
      transition-duration: 1s;
      transition-delay: 0.3s;
      background: rgba(0, 0, 0, 0.5);
      visibility: visible;
      opacity: 1;
      z-index: 3;
    }
}
.section__link a {
  margin-right: 2rem;
}
.section__link a:first-of-type {
  margin-top: .5rem;
}
.section__footermenu {
  background: #F2F2F2;
  padding: 1rem 0;
}
#menu-footer .menu-item {
  padding: 1rem 0;
  font-size: 1.2rem;
}
#menu-footer .current-menu-item a {
  color: inherit;
}
footer {
  background: #212126;
}
footer small {
  display: block;
  text-align: center;
  color: #fff;
  padding: 1rem 0;
  font-size: 1rem;
}
#menu-footer .menu-item:first-of-type  a{
  border-left: none;
}
#menu-footer .menu-item:last-of-type  a{
  border-right: none;
}

.wrapper__nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  height: 70px;
}
.wrapper__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1rem;
  font-size: 2rem;
  
}
.wrapper__logo a {
  color: #212126;
  width: 150px;
}
.wrapper__logo a:hover {
  text-decoration: none;
}
.wrapper__btn {
  margin-bottom: .8rem;
  margin-right: .8rem;
}
.btn__contact {
  width: 160px;
  height: 45px;
  line-height: 50px;
  margin-top: auto;
  position: relative;
  padding-right: 1rem;
  font-size: 1.5rem;
}
.btn__contact::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  color: #fff;
  margin-right: .8rem;
}
.btn__contact::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-45%);
}
.btn__assessment {
  background: #212126;
  color: #fff;
  width: 170px;
  position: relative;
  height: 45px;
  line-height: 50px;
  margin-top: auto;
  margin-right: .5rem;
  font-size: 1.5rem;
}
.btn__assessment span {
  font-size: 1rem;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96%;
  height: 2em;
  line-height: 1.5em;
  color: #CC0000;
  border: 2px solid #cc0000;
  border-radius: 0.5rem;
  background: #fff;
  font-weight: bold;
}
.btn__assessment::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\e3af";
  color: #fff;
  margin-right: .8rem;
}
.btn__assessment::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f105";
  color: #fff;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-47%);
}
.btn__assessment:hover,
.btn__contact:hover {
  text-decoration: none;
  color: #fff;
}
  #menu-footer {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
@media screen and (max-width: 999.98px) {
  .wrapper__nav {
    width: 100%;
    justify-content: space-between;
    padding-right: 7rem;
  }
  #menu-footer .menu-item {
    display: inline-block;
    padding: 20px 0;
    text-align: center;
    font-size: 1.4rem;
  }
  #menu-footer .current-menu-item a {
    color: inherit;
  }
  #menu-footer .menu-item a {
    color: #212126;
    border-left: 1px solid #212126;
    padding: 0 8px;
  }
}
@media screen and (max-width: 599.98px) {

  .btn__contact,
  .btn__assessment{
    width: 60px;
    height: 52px;
    font-size: 1.2rem;
    padding-right: 0;
    line-height: 65px;
  }
  .btn__contact::before,
  .btn__assessment::before{
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .btn__contact::after,
  .btn__assessment::after{
    content: none;
  }
}
@media screen and (max-width: 399.98px) {
  .wrapper__logo a {
    width: 115px;
    font-size: 1.4rem;
  }
}
.btn__tel {
  position: fixed;
  bottom: 11vh;
  height: 195px;
  background: #0464E1;
  background: -moz-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
  background: -webkit-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
  background: -o-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
  background: linear-gradient(to top right, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
  cursor: pointer;
  box-shadow: 0 0 13px rgba(0, 0, 0, .1);
}
.btn__tel a {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn__tel a div {
  justify-content: center;
  align-items: center;
}
.btn__tel .fa-phone {
  color: #fff;
  display: block;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 120%;
}
.btn__tel-text01 {
  color: #fff;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: .18em;
  border-top: 1px solid #fff;
  padding-top: 1.5rem;
}
.btn__tel-text02 {
  color: #fff;
  font-size: 1.2rem;
  display: none;
}
.btn__tel-num {
  color: #fff;
  display: none;
}
.btn__tel:hover {
  opacity: 1;
  background: #212126;
}

.btn__tel a:hover {
  opacity: 1;
  text-decoration: none;
}
.fade_off {
    right: -17rem;
    transition: right 1s;
}

.fade_in {
    right: 0;
    transition: right 1s;
}
@media screen and (min-width: 1000px) {
  .btn__tel a{
    pointer-events: none;
  }
  .btn__tel.is-active {
    width: 17rem;
  }
  .btn__tel.is-active div {
    border-bottom: 1px solid #fff;
    padding-bottom: 1rem;
  }
  .btn__tel.is-active .fa-phone {
    margin-bottom: 0;
    padding-bottom: 0;
    margin-right: .5rem;
  }
  .btn__tel.is-active .btn__tel-num {
    display: block;
  }
  .btn__tel.is-active .btn__tel-text01 {
    writing-mode: horizontal-tb;
    text-align: center;
    border-top: none;
    font-size: 1.6rem;
  }
  .btn__tel.is-active .btn__tel-text02 {
    display: block;
    margin-top: 1rem;
  }
}

/* 会員登録 */

.button_div input.buttons {
  display: block;
  width: 100%;
  cursor: pointer;
  padding: 1rem 0;
  margin: 4rem auto 0;
  background: #0464E1;
  color: #fff;
  border: none;
  background: linear-gradient(to top right, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
}

#wpmem_login legend,
#wpmem_reg legend {
  display: none;
}
#wpmem_reg {
	width: 100%!important;
}
#wpmem_reg .req-text {
	margin: 0 0 2rem 0!important;
}
#wpmem_login label, #wpmem_reg label {
	display: inline-block!important;
	margin-bottom: 1rem;
}
.div_text a {
	display: inline-block;
}
.div_radio label {
	padding: 0 20px 0 10px;
	margin-bottom: 0!important;
}
#wpmem_reg .req {
	color: #fff!important;
}
#wpmem_reg .req::after {
	content:"必須";
	display: inline-block;
	font-size: 70%;
	color: #fff;
	padding: .5rem;
	background: #0464E1;
    background: -moz-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
    background: -webkit-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
    background: -o-linear-gradient(bottom left, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
    background: linear-gradient(to top right, #3FACFD 0%, #0F71E6 65%, #0464E1 100%);
	
}
.membership-registration_contents {
	background: #fff;
    box-shadow: 0 0 13px rgba(0, 0, 0, 10%);
	padding: 2rem;
}