body {
  font-family: 'Noto Sans JP',
    sans-serif,
    'Hiragino Kaku Gothic ProN',
    'ヒラギノ角ゴ ProN W3',
    'Helvetica Neue',
    Arial,
    'Hiragino Sans',
    'Meiryo';
}

/* ページ内ヘッダー */
.bl_mp_header {
  padding: 8px 20px;
  background-color: #000;
  color: #fff;
  border-top: 2px solid #fff;
}

.bl_mp_header_title {
  font-size: 18px;
  font-weight: lighter;
  padding-left: 8px;
}

.bl_mp_sub_header {
  padding: 8px 16px;
  background-color: #333;
  color: #fff;
}

.bl_mp {
  padding: 0 25px;
  margin-bottom: 60px;
}

/* 登録ステップ系 */
.bl_step {
  margin-top: 40px;
  text-align: center;
}

/* 入力系 */
.bl_mp_item {
  margin-top: 30px;
}

.bl_mp_password_wrap {
  position: relative;
}

.el_mp_password_toggle {
  position: absolute;
  top: 10px;
  right: 15px;
  margin: auto;
  height: 30px;
  width: 30px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

.el_mp_password_toggle img {
  width: 100%;
  height: auto;
}

.bl_mp_item label {
  display: inline-block;
  margin-bottom: 2px;
}

.el_mp_input {
  width: 100%;
  padding: 10px;
  border: 2px solid #999;
  border-radius: 8px;
  font-size: 15px;
  z-index: 2;
}

.bl_mp_code {
  width: 90%;
  height: 60px;
  position: relative;
  margin: 8px auto 0;
  max-width: 325px;
}

.bl_mp_code_boxes {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  height: 100%;
}

.bl_mp_code_boxes span {
  border: 1px solid #999;
  border-radius: 6px;
  font-size: 40px;
  width: 40px;
  text-align: center;
  align-content: center;
}

.bl_mp_code_boxes span.active_span {
  border-color: #e61e82;
  /* background-color: #fce4ec; */
} 

.el_mp_code {
  position: absolute;
  inset: 0; /* 全面に広げる */
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-size: 40px;
  letter-spacing: 40px; /* ← 文字間をスペース分空ける */
  color: transparent; /* ← 文字だけ消す */
  caret-color: transparent; /* ← キャレットの色を指定 */
}

.el_mp_select::before {
  right: 0;
  display: inline-block;
  width: 30px;
  height: 100%;
  border-radius: 0 8px 8px 0;
  background-color: #999;
  content: "";
  z-index: 2;
  position: absolute;
  pointer-events: none;
}

.el_mp_select {
  position: relative;
}

.bl_mp_birthday {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.el_mp_birthyear,
.el_mp_birthmonth {
  position: relative;
  width: 45%;
}

.el_mp_select::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 10px;
  height: 10px;
  width: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  z-index: 3;
  pointer-events: none;
}

.el_mp_select select {
  width: 100%;
  border: 2px solid #999;
  border-radius: 8px;
  background: #fff;
  padding: 14px 10px;
  color: #000000;
}

.bl_mp_btn_line {
  text-align: center;
  margin-top: 40px;
}

.bl_mp_btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #e61e82;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 70%;
  font-size: 15px;
}

.btn_disabled {
  background-color: #999;
  cursor: not-allowed;
}

.bl_mp_check {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
}

.bl_mp_check .el_mp_check {
  width: 16px;
  height: 16px;
}

.bl_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  align-content: center;
  display: none;
  z-index: 1000;
}

.el_modal {
  background: #fff;
  max-width: 450px;
  height: 80%;
  width: 90%;
  margin: auto;
  border-radius: 10px;
  overflow-y: scroll;
}

.el_modal_content {
  padding-bottom: 20px;
}

/* メッセージ系 */
.bl_mp_msg {
  margin-top: 50px;
  text-align: center;
}

.bl_mp_login_msg {
  margin-top: 50px;
  text-align: center;
}

.bl_mp_complete_msg {
  margin-top: 50px;
  margin-top: 50px;
  text-align: center;
}

.bl_mp_terms_msg {
  font-size: 14px;
}

.el_mp_terms {
  color: #e61e82;
  text-decoration: underline;
  cursor: pointer;
}

.bl_mp_pw_msg {
  font-size: 14px;
  margin: 25px 15px;
}

.err_msg {
  /* text-align: center; */
  color: red;
  margin: 2px 0;
  /* margin-top: 20px; */
}

.err_msg_large {
  text-align: center;
  color: red;
  margin: 20px 0;
}

/* リンク系 */
.bl_mp_links {
  margin-top: 30px;
  text-align: center;
  font-size: 15px;
}

.el_mp_link {
  display: inline-block;
  margin-bottom: 5px;
  color: #000;
  text-decoration: underline;
}

.el_mp_link::before {
  content: ">> ";
}

.bl_mp_menu {
  display: flex;
  flex-direction: column;
}

.el_mp_menu {
  display: block;
  padding: 15px 25px;
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid #999;
}

.el_mp_menu::after {
  content: ">";
  float: right;
  color: #999;
}

/* TOPページの連携サービス */
.bl_reg_plan {
  background: rgba(230, 30, 130, 0.3);
  padding: 15px 35px;
}

.bl_reg_plan:not(:last-child) {
  border-bottom: 2px solid #999;
}

.bl_unreg_plan {
  background: #dcdcdc;
  padding: 15px 35px;
}

.el_plan_top {
  display: flex;
  justify-content: space-between;
}

.el_plan_top_left {
  width: 50%;
}

.el_plan_top_right {
  width: 40%;
  padding: 10px 25px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
}

.el_plan_price {
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

.el_plan_mng_btn {
  margin-top: 6px;
  padding: 4px 16px;
  background-color: #707070;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.el_plan_register_btn {
  margin-top: 6px;
  padding: 4px 16px;
  background-color: #e61e82;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
}

.el_plan_name {
  font-weight: bold;
  font-size: 18px;
}

.bl_unreg_plan .el_plan_name {
  color: #e61e82;
}

.el_plan_overview {
  font-size: 12px;
  margin-top: 16px;
}

.el_plan_bottom {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #999;
}

.el_plan_bottom li {
  list-style: none;
  font-size: 12px;
}

/* プラン詳細モーダル */
.el_plan_modal {
  /* background: #fff;
  max-width: 450px; */
  height: 50%;
  /* width: 90%;
  margin: auto;
  border-radius: 10px;
  overflow-y: scroll; */
}

.el_plan_modal_title {
  text-align: center;
  padding: 10px 0;
  background: #e61e82;
  color: #fff;
}

.el_plan_modal_text {
  text-align: center;
  margin: 30px;
  font-size: 18px;
  font-weight: bold;
}

.el_plan_modal_btn {
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  border: 1px solid #333;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
}

.el_plan_modal_btn a {
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
  position: relative;
}

.el_plan_modal_btn a::after {
  content: ">";
  position: absolute;
  right: 7px;
  color: #999;
}

.el_plan_modal_body {
  margin: 20px;
}

.el_plan_modal_close {
  text-decoration: underline;
  cursor: pointer;
}

/* 外部リンクページ */
.el_ext_link_head {
  margin: 20px 0 10px;
}
.el_ext_link {
  margin: 5px 10px 0;
}

.el_ext_link img {
  width: 100%;
}

/* 利用規約ページ */
.bl_mp_terms_title {
  text-align: center;
  margin-top: 50px;
}

.bl_mp_terms_list {
  margin: 0 30px;
}

.bl_mp_terms_item {
  list-style: none;
}

.bl_mp_terms_label {
  margin-top: 40px;
  font-size: 16px;
  font-weight: bold;
}

.bl_mp_terms_content {
  margin-top: 20px;
  font-size: 12px;
}

/* コピーライトページ */
.bl_mp_copy_title {
  text-align: center;
  margin-top: 50px;
}

.bl_mp_copy_content {
  margin-top: 20px;
  font-size: 12px;
}

/* プライバシーポリシーページ */
.bl_mp_privacy_title {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.bl_mp_privacy_mh {
  background: #404040;
  color: #fff;
  padding: 5px 0px 5px 20px;
}

.bl_mp_privacy_sh {
  margin: 20px 20px 0;
}

.bl_mp_privacy_content {
  margin: 20px;
  font-size: 12px;
}
