@charset "UTF-8";
h3, h4, h5, p, th, td {
  color: #909090;
}

a {
  text-decoration: none;
  color: #707070;
}

table {
  border-spacing: 0;
}

.base-container {
  padding: 0 15px;
}

.display-none {
  display: none;
}

.point-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 45px;
}

.point-text__mark {
  background: #f7cd3d;
  font-size: 12px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 1px #fff;
  text-align: center;
  margin-left: 5px;
  color: #fff;
}

.point-text__num {
  font-size: 13px;
  margin-left: 2px;
}

header {
  background: #FD8E7F;
  padding: 20px 0 10px;
}

.header-logo {
  width: 100px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  position: relative;
  z-index: 2;
  width: 48px;
  height: 100%;
  margin: 0 0 0 auto;
  display: block;
  /* ハンバーガーメニューの線 */
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: relative;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.hamburger.active span {
  background-color: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 7px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -13px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #fff;
  -webkit-transition: ease .4s;
  transition: ease .4s;
  z-index: 1;
  /* ハンバーガーメニュークリック後のスタイル */
}

.nav__title {
  background: #FD8E7F;
  padding: 7px;
}

.nav__title--text {
  color: #fff;
  text-align: center;
}

.nav__list {
  padding: 0;
  list-style: none;
}

.nav__list--item {
  border-bottom: solid 1px #dadada;
}

.nav input[type="submit"] {
  border: none;
  background: none;
  color: #707070;
  font-size: 16px;
}

.nav.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.nav-content {
  display: block;
  padding: 20px;
}

.nav-recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-recommend .point-text__mark {
  padding-top: 1px;
  border: none;
}

.nav-recommend .point-text__num {
  color: #ecb81b;
}

.userform {
  background: #FD8E7F;
  height: calc(100vh - 58px);
  padding: 150px 20px 0;
}

.userform__title {
  color: #fff;
  margin: 0;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
}

.userform__text {
  text-align: center;
  color: #ececec;
  margin: 50px 0 5px;
  font-size: 14px;
}

.userform__link {
  text-align: center;
  color: #ececec;
  display: block;
  text-decoration: underline;
  font-size: 14px;
}

.userform form div {
  margin-bottom: 20px;
}

.userform form div label {
  color: #fff;
  margin-bottom: 5px;
  display: block;
  font-size: 14px;
}

.userform form div input {
  width: 100%;
  height: 40px;
  border: solid 1px #fff;
  background: rgba(255, 255, 255, 0.6);
  padding: 0 10px;
}

.userform form div input:focus {
  outline: none;
}

.userform input[type="submit"] {
  width: 300px;
  background: none;
  border: solid 3px #fff;
  padding: 13px;
  color: #fff;
  margin: 0 auto;
  display: block;
  margin-top: 20px;
}

.logout-text {
  color: #fff;
  font-weight: normal;
  text-align: center;
}

.registration-form {
  background: #FD8E7F;
  padding: 30px 20px 60px;
}

.registration-form__box {
  background: #ffffffde;
  padding: 40px 20px;
  border-radius: 10px;
}

.registration-form__box--title {
  color: #FD8E7F;
  margin: 0;
  text-align: center;
}

.registration-form__box--ja {
  color: #FD8E7F;
  font-weight: normal;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 8px;
}

.registration-form__box form label {
  width: 100%;
  display: block;
  color: #7c6e6e;
  font-weight: bold;
  margin-bottom: 4px;
}

.registration-form__box form input {
  width: 100%;
  height: 40px;
  border: solid 1px #ebcfcc;
  background: rgba(255, 255, 255, 0.6);
  padding: 0 10px;
}

.registration-form__box form input:focus {
  outline: none;
}

.registration-form__box form .helptext {
  font-size: 12px;
}

.registration-form__box form ul {
  padding-left: 16px;
  color: #909090;
}

.registration-form__box form ul li {
  font-size: 12px;
}

.registration-form__box form ul.errorlist {
  color: #ff3333;
}

.registration-form__box form button[type="submit"] {
  width: 300px;
  background: #fbb3b3;
  border: none;
  padding: 13px;
  color: #fff;
  margin: 0 auto;
  display: block;
  margin-top: 30px;
}

.registration-form__box--text {
  text-align: center;
  color: #979797;
  margin: 50px 0 5px;
  font-size: 14px;
}

.registration-form__box--link {
  text-align: center;
  color: #979797;
  display: block;
  text-decoration: underline;
  font-size: 14px;
}

.account-area {
  padding: 15px 15px 0;
}

.account-area__title {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 0;
  color: #e98996;
}

.account-area__edit {
  font-size: 10px;
  margin: 0 0 0 auto;
  display: block;
  width: 120px;
  text-align: center;
  background: #cccccc;
  padding: 5px;
  border-radius: 4px;
  color: #fff;
}

.account-area__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.account-area__top--img {
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.account-area__top--name {
  margin-left: 10px;
}

.account-area__point {
  background: #e1b7bd;
  padding: 13px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.account-area__point--title {
  color: #fff;
  margin: 0;
  border-bottom: solid 1px #fff;
  padding: 10px;
}

.account-area__point--num {
  color: #fff;
  margin: 0;
  padding: 10px;
}

.account-area__point--num span {
  font-size: 30px;
  margin-right: 5px;
}

.account-edit-area {
  padding: 15px 15px 0;
}

.account-edit-area__title {
  margin: 0;
  margin-top: 10px;
  margin-bottom: 0;
  color: #e98996;
}

.account-edit-area__currentimg {
  width: 100px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
  margin-top: -10px;
  margin-bottom: 30px;
}

.account-edit-area__add label {
  margin-bottom: 5px;
  display: block;
  color: #909090;
}

.account-edit-area__add input[type="file"] {
  color: #909090;
  font-size: 14px;
}

.account-edit-area__add input[type="file"]::file-selector-button {
  color: #4c4c4c;
}

.display-none {
  display: none;
}

.add-btn {
  background: #fd8e7f;
  padding: 10px 16px;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: block;
  font-size: 20px;
  color: #fff;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
/*# sourceMappingURL=common.css.map */