
.border-title {
  margin-bottom: 25px;
}

.mypage table th{
  width: 207px;
}

.mypage table th sup{
  color: #EA4889;
}
@media screen and (max-width: 768px) {
  .mypage table th {
    width: 100%;
  }
}

/*underline*/
.uline{
  text-decoration: underline;
}
.contents{
  padding-top: 85px;
}
.contents .home-area{
  margin-top: 0;
  width: calc(100% - 40px);
  padding-top: 70px;
  border-radius: 24px;
  text-align: left;
}
.contents p.small{
  font-size: 1.4rem;
}

.resist_confirm input:disabled {
  opacity: 1;
}

.resist_confirm input[type="radio"]:disabled,
.resist_confirm input[type="checkbox"]:disabled {
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .contents{
    padding-top: 45px;
  }
  .contents .home-area{
    padding-top: 15px;
    border-radius: 12px;
  }
  .home-bg{
    padding-left: 0;
    padding-right: 0px;
  }

}
/*check box*/
.check_box{
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 0;
}

.check_box span {
  padding-left: 30px;
  display: inline-block;
  font-weight: normal;
  color: #030303 !important;
}

.check_box input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.check_box span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  margin-top: 5px;
  width: 19px;
  height: 19px;
  border-radius: 3px;
  background: #fff;
  border: 1px solid #707070;
}

.check_box input:checked+span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 8px;
  width: 7px;
  height: 11px;
  border-right: 3px solid #1f3965;
  border-bottom: 3px solid #1f3965;
  transform: rotate(45deg);
  box-sizing: border-box;
}

.check_box input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

/*radio*/
.radio_box_list{
  display: flex;
  gap:30px;
}

.radio_box{
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 0;
}

.radio_box span{
  position: relative;
  padding-left: 30px;
  display: inline-block;
  font-weight: normal;
  color: #030303 !important;
}

.radio_box input{
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

/* 外側の円 */
.radio_box input:checked + span::after,
.radio_box span::before{
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  border: 1px solid #707070;
  border-radius: 50%;
  background: #fff;
  box-sizing: border-box;
}

/* 選択時の内側の円 */
.radio_box input:checked + span::after{
  background: #707070;
  transform: scale(0.6);
}

/*ボタン*/
.button{
  display: block;
  width: 320px;
  background: #EA4889;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 25px;
  padding: 12px 20px 14px;
  margin: 0 auto 20px;
  border: none;
}
.button_s{
  display: block;
  width: 194px;
  background: #EA4889;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  border-radius: 25px;
  padding: 12px 20px 14px;
  border: none;
}

/*header*/
header.simple{
  display: block;
}
header.simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.simple nav{
  position: static;
  display: flex;
  padding-right: 120px;
}

header.simple .menu{
  display: flex;
  justify-content: flex-end;
}

header.simple .menu>li{
  padding-left: 36px;
}
header.simple .menu>li>a{
  white-space: nowrap;
  color: #000;
}

header.simple .menu2{
  position: absolute;
  right:0;
  padding-right: 20px;
}

header.simple .menu2>li{
  padding-left: 36px;
}

header.simple .menu2>li>a{
  color: #1983AC;
  white-space: nowrap;
  font-weight: bold;
}

header.simple .header_block2{
  text-align: right;
  background: #E8EBEF;
  font-size: 1.5rem;
  height: 35px;
  padding-top: 6px;
  padding-right: 40px;
}

header.simple .header_block2 a{
  text-decoration: underline;
}
#menu_button {
  display: none;
}
@media screen and (max-width: 1024px) {

  #menu_button {
    position: fixed;
    display: block;
    right: 0px;
    top: 15px;
    cursor: pointer;
    height: 40px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    caret-color: transparent;
  }

  #menu_button>div{
    position: relative;
    width: 29px;
    height: 22px;
    cursor: pointer;
    margin-top: 0px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    transform: rotate(0deg);
    z-index: 101;
  }

  #menu_button>div>div {
    width: 100%;
    height: 4px;
    background: #030303;
    position: absolute;
    transition: all 0.3s;
    z-index: 110;
  }

  #menu_button>div>div:nth-child(1) {
    top: 0%;
    left: 0px;
    -webkit-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
  }

 #menu_button>div>div:nth-child(2) {
    top: 50%;
    margin-top: -2px;
    left: 0px;
  }

 #menu_button>div>div:nth-child(3) {
    bottom: 0%;
    left: 0px;
    transform: translate(0%, 0%);
  }

  .header.active #menu_button>div>div:nth-child(1) {
    top: 50%;
    margin-left: 0px;
    transform: translate(0, -50%) rotate(45deg);
  }

  .header.active #menu_button>div>div:nth-child(2) {
    opacity: 0;
  }

  .header.active #menu_button>div>div:nth-child(3) {
    top: 50%;
    margin-left: 0px;
    transform: translate(0, -50%) rotate(-45deg);
  }

  header.simple nav {
    display: block;
    position: fixed;
    top: 72px;
    width: 267px;
    right: -267px;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    z-index: 100;
    background: #fff;
  }

  header.simple nav{ transition: right 0.19s ease-out; }
  header.simple.ready nav{ display: block;}
  header.simple.ready.active nav{
    opacity: 1;
    visibility: visible;
    right: 0px;
    box-shadow: 2px 5px 10px 0px rgba(0, 0, 0, 0.1);
  }

  header.simple.ready nav.slide{
    display: block;
    opacity: 1;
  }

  header.simple.ready nav{
    right: -267px;
    display: block;
  }

  header.simple .nav .menu {
    display: block;
    padding-top: 100px;
  }

  header.simple .menu>li>a {
    display: flex;
    padding-bottom: 1em;
    margin-bottom: 30px;
    font-size: 1.8rem;
  }

  header.simple .menu2 {
    position: absolute;
    right: 35px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {

  #menu_button {
    top: 5px;
  }
  header.simple .nav .menu {
    padding-top: 50px;
  }

  header.simple .menu>li>a {
    padding-bottom: 1em;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  header.simple nav {
    top: 50px;
    height: calc(100vh - 50px);
    height: calc(100dvh - 50px);
  }
}


/*共通ブロック*/
.cmn_block_wrap{
  max-width: 860px;
  margin: 80px auto;
}
.cmn_block_wrap .home-area {
  margin-top: 0px;
}

.cmn_block_wrap .cmn_block_head{
  margin-bottom: -20px;
  z-index: 10;
  font-size: 2.6rem;
  position: relative;
}

.cmn_block{
  max-width: 860px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.cmn_block_head{
  position: relative;
  height: 68px;
  border-radius: 12px 12px 0px 0px;
  background: #1983ac;
  text-align: center;
  padding: 15px 0;
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
}

.cmn_block_head.bg_clr2{
  background: #1F3965;
}

.cmn_block_head .open{
  position: absolute;
  right: 15px;
  top: calc(50% - 16px);
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  padding: 0.1em 1em 0.2em;
  background: #FF0000;
  border-radius: 5px;
}

.cmn_block .body{
  border-radius: 0px 0px 12px 12px;
  background: #fff;
  padding: 20px 20px 20px;
}

.cmn_block_wrap,
.home-area {
  position: relative;
  width: calc(100% - 20px);
}

.cmn_block_wrap .home-area{
  width: 100%;
}

@media screen and (max-width: 768px) {
  .cmn_block_wrap {
    margin: 30px auto;
  }
  .cmn_block_wrap .cmn_block_head {
    margin-bottom: -2px;
    font-size: 2.2rem;
  }

  .cmn_block_head{
    height: auto;
    padding: 12px 0;
    font-size: 2rem;
  }

  .cmn_block_head .open{
    right: -5px;
    top: -11px;
    font-size: 1.4rem;
  }
}

/*共通ブロック2*/
.cmn_block2{
  max-width: 1600px;
  width: calc(100% - 40px);
  height: 360px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.cmn_block2 .ttl{
  font-family: Montserrat;
  font-weight: bold;
  font-size: 3.9rem;
  line-height: 1;
  text-align: center;
  color: #107ea9;
  margin-bottom: 10px;
}

.cmn_block2 .button1{
  width: 158px;
  height: 32px;
  line-height: 32px;
  border-radius: 3px;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  color: #3e3e3e;
  background: linear-gradient(#fbfbfb 0%, #e1e1e1 100%);
  border: 1px solid #bcbbbb;
  margin: 0 auto;
  display: block;
}

.userinfo_change,
.top_index{
  display: flex;
  flex-direction: column;
  gap:50px;
  width: 100%;
  text-align: center;
}

.top_index .msg1{
  margin-bottom: 17px;
}
.top_index .msg2{
  margin-bottom: 14px;
}

.cancel{
  appearance: none;
  -webkit-appearance: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  line-height: inherit;
  cursor: pointer;
  display: flex;
  text-align: center;
  font-weight: bold;
  width: 100%;
  max-width: none;
  font-size: 1.8rem;
  color: #1983AC;
  justify-content: center;
}

.form2{
  display: flex;
  flex-wrap:wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.verification_area .input_code_box{
  margin-top: 25px;
  margin-bottom: 15px;
}

.verification_area .input_code::placeholder{
  color: #ccc;
}

.verification_area .input_code{
  width: 174px;
  height: 40px;
  background: #fff;
  border: 3px solid #ccc;
  border-radius: 0;
}

.verification_area .input_code{
  font-size: 1.6rem;
}


/*登録ユーザー*/
.user_table_wrap{
  overflow-x: auto;
  min-height: 280px;
}
.user_table{
  width:100%;
  border-collapse:collapse;
  font-size:1.4rem;
}

.user_table th{
  padding:14px 16px;
  border-bottom: 1px solid #cecece;
  background:#fff;
  white-space:nowrap;
  font-size: 1.6rem;
  color: #030303;
  text-align: center;
  font-weight: normal;
}

.user_table td{
  padding:14px 16px;
  border-bottom:1px solid #eee;
  font-size: 1.4rem;
}

.user_table th:nth-child(1){
  width: 180px;
}

.user_table th:nth-child(2){
  width: 230px;
}

.user_table th:nth-child(3){
  width: 135px;
}

.user_table th:nth-child(4){
  width: 60px;
}

.user_table th:nth-child(5){
  width: 110px;
  text-align:left;
}

.user_table td:nth-child(3),
.user_table td:nth-child(4){
  text-align:center;
}

.user_table td img{
  display:block;
}

.user_table td .icon_check{
  margin: 0 auto;
  width: 19px;
  display: block;
}

.user_table td .more_menu {
  position: absolute;
  width: 130px;
  height: 83px;
  right: 47px;
  top: 11px;
  padding: 5px 0;
  border-radius: 5px;
  background: #fff;
  display: none;
  box-shadow: 1px 1px 8px rgba(0, 0, 0, 0.16);
  z-index: 10;
}

.user_table td .more_menu .btn{
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  line-height: 1;
  padding: 5px 16px;
  display: block;
  width: auto;
  font-size: 1.4rem;
  text-align: left;
  color: #030303;
}
/* .user_table tbody:has(tr:nth-child(5)) tr:nth-last-child(2) .more_menu{ */

.user_table tbody:has(tr:nth-child(3)) tr:last-child .more_menu{
  top:auto;
  bottom:20px;
}

.user_table td .status{
  color: #ea4889;
}
.user_table td .status.active{
  color:#0085c7;
}

.user_table td .action_icons{
  position: relative;
  display:flex;
  align-items:center;
  gap:12px;
}

.user_table td .icon_edit,
.user_table td .icon_btn{
  display:flex;
  justify-content:center;
  align-items:center;
  justify-content: center;
  width:24px;
  height:24px;
  padding:0;
  border:0;
  background:none;
  cursor:pointer;
}

.user_table td .icon_btn{
  border-radius: 50%;
}

.user_table td .icon_btn.active{
  background: #ECECEC;
}

.user_table td .icon_btn img{
  width:4px;
  height:18px;
}


@media screen and (max-width: 600px) {
  /*登録ユーザー*/
  .user_table{
    width: 600px;
    margin-bottom: 60px;
  }

  .user_table td .more_menu {
    right: 27px;
    top: 15px;
  }

}

/*ユーザーを追加*/
.home-area .head{
  position: relative;
}

.home-area .head .add_user{
  position: absolute;
  right: 0;
  top:8px;
  display: flex;
  align-items: center;
  gap:10px;
  font-weight: bold;
  font-size: 1.6rem;
  text-align: left;
  color: #1983ac;
}

.home-area .head .add_user .icon_plus{
  width: 29px;
}

@media screen and (max-width: 768px) {
  .home-area .head .add_user{
    top:3px;
    gap:5px;
  }

  .home-area .head .add_user .icon_plus{
    width: 25px;
  }

}

