@charset "UTF-8";
/* CSS Document */
#mypage {
  font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
  font-weight: 100;
  font-size: 16px;
}
.mypage_header {
  background: #333;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}
.mypage_header i {
  font-size: 16px;
  margin-right: 5px;
}
.mypage_header img {
  background: #ED1E79;
  padding: 5px 30px;
  border-radius: 100px;
  height: 30px;
  width: auto;
}
.login_wrap {
  background: #FDE4EF;
  padding: 5%;
  text-align: center;
  border-radius: 8px;
  margin-bottom: 30px;
}
.mypage_title {
  position: relative;
  display: inline-block;
  margin-bottom: 2em;
}
.mypage_title:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -15px; /*線の上下位置*/
  display: inline-block;
  width: 60px; /*線の長さ*/
  height: 5px; /*線の太さ*/
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); /*位置調整*/
  background-color: #ED1E79; /*線の色*/
  border-radius: 2px; /*線の丸み*/
}
.title_img_01 {
  width: 150px;
}
.title_img_02 {
  width: 220px;
}
.login_wrap form {
  width: 60%;
  margin: auto;
}
#mypage label {
  display: block;
}
#mypage input[type="text"], #mypage input[type="password"], #mypage input[type="tel"], #mypage input[type="email"], #mypage input[type="password"] {
  width: 100%;
  border: none;
  padding: 15px 10px;
  text-align: left;
}
#mypage input[type="image"] {
  max-width: 100%;
}
.submit_btn {
  width: 300px;
  margin: 0 auto 20px;
}
.entry_title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
.entry_title::before, .entry_title::after {
  content: '';
  flex-grow: 1; /* 余白を分け与える */
  height: 3px;
  background: #ED1E79;
}
.tokuten_wrap {
  background: url("../images/mypage/pink_bg.gif") repeat;
  padding: 4rem 0;
  text-align: center;
}
.register_wrap {
  background: #f4f4f4;
  padding: 5%;
  border-radius: 8px;
  margin-bottom: 30px;
}
.register_wrap dl {
  border-bottom: dotted 1px #666;
}
.register_wrap dt {
  width: 30%;
  display: inline-block;
}
.register_wrap dt span {
  color: #ED1E79;
}
.register_wrap dd {
  width: 69%;
  margin-bottom: 0;
  vertical-align: middle;
  display: inline-block;
}
.input_s {
  width: 100px !important;
}
.mypage_sub_title {
  border-bottom: dotted 1px #666;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.mypage_sub_title i {
  font-size: 26px;
  margin-right: 5px;
  vertical-align: middle;
}
.submit_txt_btn {
  display: inline-block;
  padding: 0.5em 1em;
  border-radius: 100px;
  color: #fff;
  background-color: #ed1e79;
  font-size: 18px;
  border-radius: 50px;
  box-shadow: 0px 5px 0px 0px rgba(160, 4, 73, 1);
  border: none;
  min-width: 300px;
}
.submit_txt_btn:hover {
  /*ボタンを押したとき*/
  -webkit-transform: translateY(4px);
  transform: translateY(4px); /*下に動く*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2); /*影を小さく*/
  border-bottom: none;
}
.mypage_back_btn {
  background: #4D4D4D !important;
  text-align: center;
  display: block;
  color: #fff;
  margin: auto;
  width: 300px;
  font-size: 18px;
  border-radius: 100px;
  padding: 10px;
}
.mypage_back_btn:hover {
  color: #fff;
  text-decoration: none;
  background: #999;
}
.submit_btn2 {
  background: #ED1E79;
  color: #fff;
  font-size: 22px;
  padding: 1rem;
  border: none;
  text-align: center;
}
.select_item{
	padding: 7px;
}
/*==========================
PC common
==============================*/
@media screen and (min-width: 768px) {
  .mypage_wrap {
    padding: 3rem 0;
    width: 850px;
    margin: auto;
  }
}
/*--------------------------------------------------------
モバイル用レイアウト667px以下
--------------------------------------------------------*/
@media only screen and (max-width : 667px) {
  #mypage {
    font-size: 15px;
  }
  .mypage_header {
    padding: 0;
    position: relative;
    margin-bottom: 10px;
  }
  .login_wrap form {
    width: 100%;
  }
  .mypage_header img {
    border-radius: 0;
    margin-right: -10px;
    height: auto;
    width: 100%;
    padding: 8px 10px;
  }
  .submit_btn {
    width: 90%;
  }
  .mypage_title {
    margin-bottom: 1.5em;
  }
  .register_wrap dt, .register_wrap dd {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
  .register_wrap {
    padding: 7%;
  }
  .title_img_02 {
    width: 180px;
  }
  .submit_txt_btn {
    font-size: 17px;
  }
  #mypage input[type="submit"] {
  padding: 5% 10%;
  width: 100%;
}
}