@charset "utf-8";

.page-user{
  padding-top: 80px;
  max-width: 896px;
  margin: 0 auto;
}
.page-user *{
  letter-spacing: 0;
}
.page-user.mypage{
  min-height: 540px;
}

.logo-title{
  width: 300px;
  margin: 0 auto 45px;
}
.logo-title span{
  display: block;
  font-size: 3.2rem;
  text-align: center;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .page-user{
    padding: 40px 30px 0;
  }
  .logo-title{
    width: 197px;
    margin: 0 auto 25px;
  }
  .logo-title span{
    font-size: 2.4rem;
  }
}

/*登録テーブル*/
.regist-table{
  width: 100%;
  background: #F0F0F0;
  padding: 0 30px;
}
.regist-table .box{
  display: flex;
  padding: 0;
  border-bottom: 1px solid #fff;
}
.regist-table .box:last-child{
  border-bottom: none;
}
/*title*/
.regist-table .column{
  padding: 35px 0 30px;
  width: 270px;
  font-weight: bold;
  font-size: 1.8rem;
}
.regist-table .column span{
  font-size: 1.2rem;
  line-height: 1;
  background: #BFBFBF;
  border-radius: 5px;
  color: #fff;
  padding: 2px 6px;
  margin-left: 10px;
}
.regist-table .column span.req{
  background: #F02800;
}
.regist-table .input{
  width: calc(100% - 270px);
}
@media screen and (max-width: 767px) {
  .regist-table{
    padding: 0 20px;
  }
  .regist-table .box{
    flex-direction: column;
  }
  /*title*/
  .regist-table .column{
    padding: 17px 0px 0;
    width: 100%;
    font-size: 1.4rem;
  }
  .regist-table .column span{
    font-size: 1.0rem;
    color: #fff;
    padding: 2px 4px;
  }
  .regist-table .column span.req{
    background: #F02800;
  }
  .regist-table .input{
    width: 100%;
  }
}

/*input*/
.regist-table .input{
  padding: 30px 0 0 8px;
}
.regist-table .input-parts{
  position: relative;
}
.regist-table .input-parts .key{
  position: absolute;
  top: -22px;
  left: 0;
  font-size: 1.2rem;
  letter-spacing: -1px;
}
.regist-table input,
.regist-table textarea{
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  border: 1px solid #000;
  border-radius: 2px;
  padding: 0 40px 0 10px;
}
.regist-table textarea{
  padding: 5px 40px 5px 10px;
  height: 140px;
  resize:vertical;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.regist-table textarea::-webkit-scrollbar{
  display: none;
}
.regist-table select{
  width: 100%;
  height: 40px;
  font-size: 1.6rem;
  border: 1px solid #000;
  border-radius: 2px;
  padding: 0 40px 0 10px;
  appearance: none;
}
.regist-table select option {
  color: #fff;
  background-color: #2C2C2C;
  font-size: 1.6rem;
}
.regist-table input:disabled{
  background: #f7f7f7;
  color: #000;
  border: 1px solid #bfbfbf;
}
.regist-table .input-parts.ok input,
.regist-table .input-parts.ok select,
.regist-table .input-parts.ok textarea{
  border: 2px solid #0075C2;
}
.regist-table .input-parts.ng input,
.regist-table .input-parts.ng select,
.regist-table .input-parts.ng textarea{
  border: 2px solid #F02800;
  background: rgba(240,40,0, 0.1);
}
.regist-table .input-parts.select::after{
  content: "";
  position: absolute;
  right: 11px;
  top: 14px;
  width: 15px;
  height: 13px;
  background: url("../svg/select.svg") no-repeat;
  background-size: 100%;
  user-select: none;
  pointer-events: none;
}
.regist-table .input-parts.ok::after{
  content: "";
  position: absolute;
  right: 11px;
  top: 12px;
  width: 17px;
  height: 11px;
  border-left: 2px solid #0075C2;
  border-bottom: 2px solid #0075C2;
  background: none;
  transform: rotate(-45deg);
  user-select: none;
  pointer-events: none;
}
.regist-table .input-parts.ng::after{
  display: none;
}
.regist-table .input-parts.select.ng::after{
  display: block;
}
.regist-table input::placeholder {
  color: #bfbfbf;
  font-size: 1.6rem;
}
.regist-table .error-box{
  min-height: 30px;
}
.regist-table .error-box .error{
  font-size: 1.2rem;
  line-height: 1.1;
  color: #F02800;
}
.regist-table .input-flex{
  display: flex;
  gap: 18px;
}
.regist-table .input-flex>div{
  width: calc((100% - 18px) / 2);
}
.regist-table .input-flex.line3>div{
  width: calc((100% - 36px) / 3);
}
@media screen and (max-width: 767px) {
  .regist-table .input{
    padding: 5px 0 0;
  }
  .regist-table .input-parts{
    position: relative;
  }
  .regist-table .input-parts .key{
    position: relative;
    top: 0;
    font-size: 1.0rem;
    display: block;
  }
  .regist-table input{
    padding: 0 30px 0 10px;
  }
  .regist-table textarea{
    padding: 3px 30px 3px 10px;
    height: 80px;
  }
  .regist-table input:disabled{
    font-size: 1.4rem;
  }
  .regist-table .input-parts.select::after{
    top: auto;
    bottom: 13px;
  }
  .regist-table .input-parts.ok::after{
    right: 10px;
    top: auto;
    bottom: 18px;
    width: 14px;
    height: 9px;
  }
  .regist-table .error-box .error{
    font-size: 1.0rem;
  }
  .regist-table .input-flex{
    gap: 10px;
  }
  .regist-table .input-flex>div{
    width: calc((100% - 10px) / 2);
  }
  .regist-table .input-flex.line3>div{
    width: calc((100% - 20px) / 3);
  }
}

/*ボタン*/
.regist-button-area{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}
.regist-button-area.confirm>*{
  width: calc((100% - 20px) / 2);
}
.button-regist{
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  width: 100%;
  border-radius: 30px;
  border: 2px solid #0075C2;
  background: #fff;
  font-size: 2.8rem;
  line-height: 1;
  font-weight: bold;
  color: #0075C2;
  transition: all 0.5s ease;
  padding: 14px;
}
.button-regist.on{
  color: #fff;
  background: #0075C2;
}
.button-regist:hover{
  background: #D9F0FF;
}
.button-regist.on:hover{
  background: #025083;
  border-color: #025083;
}
@media screen and (max-width: 767px) {
  .regist-button-area{
    gap: 10px;
    margin-top: 30px;
  }
  .button-regist{
    max-width: 280px;
    border-radius: 22px;
    font-size: 1.9rem;
    padding: 10px 0 11px;
  }
}
/*radio*/
.regist-table .input-radio input{
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.regist-table .input-radio{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  padding-top: 5px;
}
.regist-table .input-radio label{
  position: relative;
  cursor: pointer;
}
.regist-table .input-radio label span{
  display: inline-block;
  padding-left: 25px;
  font-size: 1.6rem;
}
.regist-table .input-radio label span::before{
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #333;
  border-radius: 2px;
}
.regist-table .input-radio label input:checked + span::before{
  background: #333;
}
.regist-table .input-radio label input:checked + span::after{
  content: "";
  position: absolute;
  left: 3px;
  top: 7px;
  width: 14px;
  height: 9px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  background: none;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .regist-table .input-radio label span{
    font-size: 1.4rem;
  }
}

.regist-table .confirm-box{
  width: 100%;
  font-size: 1.6rem;
  padding: 6px 10px;
  min-height: 40px;
  background: #f7f7f7;
  color: #000;
  border: 1px solid #bfbfbf;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .regist-table .confirm-box{
    font-size: 1.4rem;
    padding: 8px 10px 7px;
  }
}

.complete-title{
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 15px;
}
.complete-message{
  font-size: 2.0rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-user.complete,
  .page-user.mypage{
    min-height: 400px;
    height: calc(100vh - 350px);
  }
  .complete-title{
    font-size: 2.4rem;
  }
  .complete-message{
    font-size: 1.4rem;
  }
}

.link-list{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  gap: 25px;
}
.link-list a{
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #707070;
}
.link-list a:hover{
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .link-list{
    margin-top: 30px;
    gap: 20px;
  }
  .link-list a{
    font-size: 1.4rem;
  }
}

.mypage-list{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mypage-list li{
  background: #F0F0F0;
}
.mypage-list li a{
  position: relative;
  display: block;
  font-size: 1.8rem;
  line-height: 2.0rem;
  font-weight: bold;
  padding: 27px 74px 27px 30px;
}
.mypage-list li a::after{
  content: "";
  width: 42px;
  height: 42px;
  background: url("../svg/mypage-link.svg") no-repeat;
  background-size: 42px;
  position: absolute;
  right: 15px;
  top: 16px;
}
@media screen and (max-width: 767px) {
  .mypage-list li a{
    font-size: 1.4rem;
    line-height: 1.6rem;
    padding: 17px 50px 17px 20px;
  }
  .mypage-list li a::after{
    width: 30px;
    height: 30px;
    background: url("../svg/mypage-link.svg") no-repeat;
    background-size: 30px;
    right: 12px;
    top: 10px;
  }
}

.password-eyes{
  position: absolute;
  background: url("../svg/pass.svg") no-repeat;
  background-size: 100%;
  width: 35px;
  height: 24px;
  right: 10px;
  top: 8px;
  cursor: pointer;
}
.password-eyes.on{
  background: url("../svg/pass_on.svg") no-repeat;
  background-size: 100%;
  top: 10px;
}