@charset "UTF-8";
/* ログインfixed --------------------------------------------------------------------------*/
#login_fixed {
  width: 340px;
  padding: 20px 20px;
  border: 3px solid #1D425A;
  background: #FFFCEB;
}
#login_fixed .close {
  box-sizing: border-box;
  position: absolute;
  top: -35px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding-top: 3px;
  border: solid 1px #888;
  background-color: #FFF;
  color: #888;
  font-size: 30px;
  line-height: 20px;
  border-radius: 3px;
  text-align: center;
  cursor: pointer;
}
#login_fixed .title h2 {
  position: relative;
  max-width: 225px;
  margin: 20px auto 8px;
}
#login_fixed .title h2::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: calc(50% - 130px);
  width: 260px;
  height: 15px;
  background-image: url(../images/okada_ver/dots_bg.svg);
  background-repeat: repeat-x;
  background-position: left;
  background-size: 9px auto;
  z-index: -1;
}
#login_fixed .title p {
  width: 100%;
  margin: 0 auto;
  color: #000;
  font-size: 14px;
  text-align: center;
}
#login_fixed .login_count {
  max-width: 280px;
  margin: 10px auto;
  box-sizing: border-box;
  background-color: #FFF;
  padding: 20px 20px;
  border-radius: 5px;
}
#login_fixed .login_count li.no_member_regist {
  position: relative;
  margin-bottom: 0;
  padding-left: 30px;
}
#login_fixed .login_count li.no_member_regist em {
  font-size: 14px;
  font-weight: 600;
}
#login_fixed .login_count li.no_member_regist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #4D4D4D;
  background-image: url(../images/okada_ver/login_icon_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .login_count li.no_member_regist p span {
  position: relative;
  display: inline-block;
}
#login_fixed .login_count li.no_member_regist p span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 15px;
  height: 1px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .login_count li.member_only_regist {
  position: relative;
  padding-left: 30px;
}
#login_fixed .login_count li.member_only_regist em {
  color: #C6145A;
  font-size: 14px;
  font-weight: 600;
}
#login_fixed .login_count li.member_only_regist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-color: #C6145A;
  background-image: url(../images/okada_ver/login_icon_02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .login_count li.member_only_regist p span {
  position: relative;
  display: inline-block;
  color: #C6145A;
}
#login_fixed .login_count li.member_only_regist p span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -25px;
  width: 15px;
  height: 1px;
  background-color: #C6145A;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .flex .btn a {
  position: relative;
  display: block;
  padding: 10px 5px;
  color: #FFF;
  transition: 0.3s;
}
#login_fixed .flex .btn a:hover {
  opacity: 0.5;
  transition: 0.3s;
}
#login_fixed .flex .btn.btn_member a {
  background-color: #C6145A;
}
#login_fixed .flex .btn.btn_member a::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 40px;
  width: 1px;
  height: 20px;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .flex .btn.btn_member a::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url(../images/okada_ver/login_icon_03.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
}
#login_fixed .flex .btn.btn_login a::before {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 40px;
  width: 1px;
  height: 20px;
  background-color: #FFF;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px auto;
  border-radius: 25px;
}
#login_fixed .flex .btn.btn_login a::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 11px;
  width: 20px;
  height: 20px;
  background-image: url(../images/okada_ver/login_icon_04.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
}
#login_fixed .login_s-bubble {
  position: absolute;
  top: -63px;
  left: -70px;
  width: 135px;
  z-index: 1;
}
#login_fixed .login_okada {
  position: absolute;
  top: -147px;
  left: calc(50% - 140px);
  width: 280px;
  z-index: 0;
}
#login_fixed .login_okada img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #login_fixed {
    width: 180px;
    padding: 10px 10px;
  }
  #login_fixed .close {
    top: -25px;
    width: 20px;
    height: 20px;
    padding-bottom: 8px;
    font-size: 20px;
    line-height: 0;
  }
  #login_fixed .title h2 {
    position: relative;
    max-width: 130px;
    margin: 10px auto 8px;
  }
  #login_fixed .title h2::before {
    bottom: -3px;
    left: calc(50% - 75px);
    width: 150px;
    height: 30px;
    background-repeat: repeat;
  }
  #login_fixed .login_count {
    margin: 10px auto;
    padding: 10px 15px;
    border-radius: 5px;
  }
  #login_fixed .login_count li.no_member_regist {
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
  #login_fixed .login_count li.no_member_regist em {
    width: 100%;
    padding-left: 22px;
    font-size: 12px;
    text-align: center;
  }
  #login_fixed .login_count li.no_member_regist::before {
    left: calc(50% - 3.2em);
    width: 18px;
    height: 18px;
    background-size: 10px auto;
  }
  #login_fixed .login_count li.no_member_regist p {
    width: 100%;
  }
  #login_fixed .login_count li.no_member_regist p span {
    text-align: center;
  }
  #login_fixed .login_count li.no_member_regist p span::before {
    content: none;
  }
  #login_fixed .login_count li.member_only_regist {
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
  #login_fixed .login_count li.member_only_regist em {
    width: 100%;
    padding-left: 20px;
    font-size: 12px;
    text-align: center;
  }
  #login_fixed .login_count li.member_only_regist::before {
    left: calc(50% - 4.2em);
    width: 18px;
    height: 18px;
    background-size: 10px auto;
  }
  #login_fixed .login_count li.member_only_regist p {
    width: 100%;
  }
  #login_fixed .login_count li.member_only_regist p span {
    position: relative;
    display: inline-block;
    color: #C6145A;
  }
  #login_fixed .login_count li.member_only_regist p span::before {
    content: none;
  }
  #login_fixed .flex .btn a {
    padding: 5px 5px;
  }
  #login_fixed .flex .btn.btn_member a::before {
    content: none;
  }
  #login_fixed .flex .btn.btn_member a::after {
    content: none;
  }
  #login_fixed .flex .btn.btn_login a::before {
    content: none;
  }
  #login_fixed .flex .btn.btn_login a::after {
    content: "";
  }
  #login_fixed .login_s-bubble {
    display: none;
  }
  #login_fixed .login_okada {
    top: -76px;
    left: calc(50% - 70px);
    width: 140px;
  }
}
/*ログイン表示----------------------------*/
#member_info_okada {
  max-width: 1000px;
}
#member_info_okada .title {
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}
#member_info_okada .title h2 {
  position: relative;
  width: 100%;
  margin-bottom: 5px;
  color: #1D425A;
  font-size: 32px;
  font-weight: bold;
}
#member_info_okada .title h2 br {
  display: none;
}
#member_info_okada .title h2:before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: calc(50% - 245px);
  width: 490px;
  height: 20px;
  background-image: url(../images/okada_ver/dots_bg.svg);
  background-repeat: repeat;
  background-position: left;
  background-size: 9px auto;
  z-index: -1;
}
#member_info_okada .title p {
  color: #1D425A;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.4;
}
#member_info_okada .flx_box {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 40px;
  border: 3px solid #1D425A;
  background-color: #FFFCEB;
  border-radius: 10px;
}
#member_info_okada .flx_box .registration {
  box-sizing: border-box;
  width: 295px;
  padding: 22px 30px;
  background-color: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
}
#member_info_okada .flx_box .registration .btn {
  width: 100%;
  margin-top: 10px;
}
#member_info_okada .flx_box .registration .btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background-color: #C6145A;
  color: #FFF;
  font-size: 17px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  border-radius: 5px;
}
#member_info_okada .flx_box .registration .btn a:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background-image: url(../images/okada_ver/login_icon_03.svg);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: 20px auto;
  line-height: 0;
}
#member_info_okada .flx_box .sign_in {
  width: 600px;
}
#member_info_okada .flx_box .sign_in .count {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
}
#member_info_okada .flx_box .sign_in .count .no_member_regist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 295px;
  padding: 5px 20px;
  background-color: #4D4D4D;
  color: #FFF;
  font-weight: bold;
}
#member_info_okada .flx_box .sign_in .count .no_member_regist em {
  position: relative;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.2;
}
#member_info_okada .flx_box .sign_in .count .no_member_regist em::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid #FFF;
  background-image: url(../images/okada_ver/login_icon_01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  border-radius: 25px;
}
#member_info_okada .flx_box .sign_in .count .no_member_regist span {
  display: inline-block;
  margin-right: 3px;
  font-size: 35px;
}
#member_info_okada .flx_box .sign_in .count .member_only_regist {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 295px;
  padding: 5px 20px;
  background-color: #2F77B2;
  color: #FFF;
  font-weight: bold;
}
#member_info_okada .flx_box .sign_in .count .member_only_regist em {
  position: relative;
  padding-left: 40px;
  font-size: 15px;
  line-height: 1.2;
}
#member_info_okada .flx_box .sign_in .count .member_only_regist em::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1px solid #FFF;
  background-image: url(../images/okada_ver/login_icon_02.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px auto;
  border-radius: 25px;
}
#member_info_okada .flx_box .sign_in .count .member_only_regist span {
  display: inline-block;
  margin-right: 3px;
  font-size: 35px;
}
#member_info_okada .flx_box .sign_in .login {
  display: flex;
  flex-wrap: wrap;
}
#member_info_okada .flx_box .sign_in .login .input {
  display: flex;
}
#member_info_okada .flx_box .sign_in .login .input dl {
  width: 210px;
  display: flex;
  margin-right: 7px;
}
#member_info_okada .flx_box .sign_in .login .input dl dt {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  background-color: #274F75;
  color: #FFF;
  font-size: 13px;
  font-weight: nomal;
  line-height: 1;
}
#member_info_okada .flx_box .sign_in .login .input dl dd {
  width: 80%;
  border: 1px solid #D8D8D8;
  background-color: #FFF;
}
#member_info_okada .flx_box .sign_in .login .input dl dd input {
  width: 100%;
  height: 100%;
  border: 0;
  background-color: none;
  border-radius: 0;
}
#member_info_okada .flx_box .sign_in .login .btn_login {
  position: relative;
  width: 165px;
}
#member_info_okada .flx_box .sign_in .login .btn_login:after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  right: 11px;
  width: 20px;
  height: 20px;
  background-image: url(../images/okada_ver/login_icon_04.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px auto;
  z-index: 2;
}
#member_info_okada .flx_box .sign_in .login .btn_login input {
  width: 100%;
  padding: 10px;
  border: 0;
  background-color: #274F75;
  color: #FFF;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}
#member_info_okada .flx_box .sign_in .login .btn_login input:hover {
  opacity: 0.7;
  transition: 0.3s;
}
#member_info_okada .flx_box .sign_in .login .reissue {
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
}
#member_info_okada .flx_box .okada_s {
  position: absolute;
  top: -176px;
  left: 55px;
  width: 300px;
}
#member_info_okada .flx_box .okada_s img {
  width: 100%;
}
#member_info_okada .flx_box .login_s-bubble {
  position: absolute;
  top: -60px;
  left: -45px;
  width: 135px;
}

@media (max-width: 751px) {
  #member_info_okada {
    max-width: 90%;
    margin: 0 auto;
  }
  #member_info_okada .title {
    width: 100%;
    margin-bottom: 170px;
  }
  #member_info_okada .title h2 {
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 1.2;
  }
  #member_info_okada .title h2 br {
    display: block;
  }
  #member_info_okada .title h2:before {
    left: calc(50% - 155px);
    bottom: 0;
    width: 315px;
    height: 40px;
  }
  #member_info_okada .flx_box {
    flex-wrap: wrap;
    padding: 20px;
  }
  #member_info_okada .flx_box .registration {
    width: 100%;
    margin-bottom: 10px;
    padding: 20px;
    text-align: center;
  }
  #member_info_okada .flx_box .sign_in {
    width: 100%;
  }
  #member_info_okada .flx_box .sign_in .count {
    flex-wrap: wrap;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px solid #000;
  }
  #member_info_okada .flx_box .sign_in .count .no_member_regist {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 15px;
  }
  #member_info_okada .flx_box .sign_in .count .no_member_regist em {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #FFF;
    text-align: center;
  }
  #member_info_okada .flx_box .sign_in .count .no_member_regist em br {
    display: none;
  }
  #member_info_okada .flx_box .sign_in .count .no_member_regist em::before {
    top: calc(50% - 15px);
    left: calc(50% - 5.5em);
    width: 26px;
    height: 26px;
    background-size: 14px auto;
  }
  #member_info_okada .flx_box .sign_in .count .member_only_regist {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
    padding: 5px 15px;
  }
  #member_info_okada .flx_box .sign_in .count .member_only_regist em {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #FFF;
    text-align: center;
  }
  #member_info_okada .flx_box .sign_in .count .member_only_regist em br {
    display: none;
  }
  #member_info_okada .flx_box .sign_in .count .member_only_regist em::before {
    top: calc(50% - 15px);
    left: calc(50% - 5.5em);
    width: 26px;
    height: 26px;
    background-size: 14px auto;
  }
  #member_info_okada .flx_box .sign_in .login {
    flex-wrap: wrap;
  }
  #member_info_okada .flx_box .sign_in .login .input {
    flex-wrap: wrap;
    width: 100%;
  }
  #member_info_okada .flx_box .sign_in .login .input dl {
    width: 100%;
    height: 35px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  #member_info_okada .flx_box .sign_in .login .input dl dt {
    justify-content: center;
    width: 20%;
    padding: 8px 10px;
    font-size: 13px;
  }
  #member_info_okada .flx_box .sign_in .login .input dl dd {
    width: 80%;
  }
  #member_info_okada .flx_box .sign_in .login .btn_login {
    width: 165px;
    margin: 10px auto;
  }
  #member_info_okada .flx_box .sign_in .login .reissue {
    text-align: center;
  }
  #member_info_okada .flx_box .okada_s {
    position: absolute;
    top: -130px;
    left: calc(50% - 110px);
    width: 220px;
  }
  #member_info_okada .flx_box .okada_s img {
    width: 100%;
  }
  #member_info_okada .flx_box .login_s-bubble {
    position: absolute;
    top: -60px;
    left: -15px;
    width: 120px;
  }
}
/*# sourceMappingURL=login_okada.css.map */