﻿@charset "utf-8";

/*--------------------------------------

  アカウント作成

---------------------------------------*/
html {
    overflow-x: hidden;
}
body {
    padding-bottom: 0;
    overflow: hidden;
}
/*ヘッダー*/
#regist_header {
    width: 100%;
}
#regist_header #top_bar {
    border-bottom: solid 4px #f9e3ed;
    background: #fa628b;
}
#regist_header #top_bar svg.logo {
    float: left;
    width: 68px;
    height: 26px;
    margin: 2px 10px 0 0;
}
#regist_header #top_bar a.ev_logo {
    float: left;
    width: 68px;
    height: 26px;
    margin: 2px 10px 0 0;
}
#regist_header #top_bar h1 {
    margin: 5px 0 9px;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 300;
}
#regist_header #top_bar h1 a {
    color: #fff;
}
#regist {
    position: relative;
}
#regist::before {
    position: absolute;
    top: -50px;
    right: -260px;
    content: url(/pc/img/regist/bg_resist.png);
}
#regist h2 {
    line-height: 1.1;
    margin-top: 10px;
    color: #ff64aa;
    text-align: left;
    font-size: 6rem;
}
#regist h2 .logo {
    width: 400px;
    margin-left: -10px;
    margin-bottom: -20px;
}
#regist .count {
    position: absolute;
    top: 12px;
    left: 490px;
    width: 150px;
    line-height: 1.2;
    text-align: center;
}
#regist .count strong {
    color: #e40044;
    font-size: 2.4rem;
    font-weight: bold;
}
#regist .count strong span {
    font-size: 1.4rem;
}
/*フォーム*/
#regist .entry_form {
    width: 540px;
    margin-top: 40px;
    margin-bottom: 80px;
    padding: 30px;
    border: solid 2px rgba(0, 0, 0, .1);
    border-radius: 10px;
    background: rgba(255, 255, 255, .7);
    position: relative;
}
#regist .entry_form > label {
}
#regist .entry_form i {
    display: inline-block;
    width: 130px;
    text-align: right;
}
#regist .entry_form .error_txt {
    /*margin-left: 80px;*/
    margin-left: 140px;
}
#regist .entry_form .select_box option:nth-of-type(1) {
    display: none;
}
#regist .entry_form .select_box {
    margin-right: 10px;
}
#regist .entry_form .photo {
    position: absolute;
    top: 42px;
    right: 30px;
    text-align: center;
}
#regist .entry_form .photo a.plus {
    display: table-cell;
    width: 120px;
    height: 160px;
    border: solid 3px #dcdcdc;
    color: #666;
    vertical-align: middle;
}
#regist .entry_form .photo a.plus svg {
    display: block;
    width: 70px;
    height: 70px;
    margin: -10px auto 0 auto;
}
#regist .entry_form .photo a.plus:hover {
    border-color: #f9628a;
    color: #f9628a;
}
#regist .entry_form .photo a.plus:hover svg {
    fill: #f9628a;
}
#regist .entry_form .photo .registered img {
    display: block;
    width: 120px;
}
#regist .entry_form .photo .registered a {
    display: inline-block;
    margin: 10px 0;
    text-decoration: underline;
}
#regist .entry_form .photo .registered a:hover {
    text-decoration: none;
}
#regist .entry_form .select_box #address {
    min-width: 100px;
}
#regist .auto {
    margin: 20px auto;
    text-align: center;
}
#regist .auto label:hover {
    color: #979797;
}
#regist .auto a {
    text-decoration: underline;
}
#regist .auto a:hover {
    text-decoration: none;
}
#regist .bt_regist {
    margin: 24px auto 12px;
    text-align: center;
}
#regist .bt_regist i {
    display: block;
}

/*--------------------------------------

  プロセス

---------------------------------------*/
.process {
    width: 100%;
    margin: 40px 0;
    border: solid 2px #fff;
    border-radius: 6px;
    background: #fff;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, .1);
}
.process li {
    position: relative;
    float: left;
    width: 34%;
    height: 60px;
    line-height: 1;
    padding: 20px;
    text-align: center;
    background: #dcdcdc;
    color: #979797;
    font-size: 1.8rem;
}
.process li::after,
.process li::before { 
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -32px;
    border-top: 32px solid transparent;
    border-bottom: 32px solid transparent;
    border-left: 20px solid;
    right: -20px
}
.process li::after {
    z-index: 2;
    border-left-color: #ddd;
}
.process li::before {
    border-left-color: #fff;
    right: -22px;
    z-index: 1;
}
.process li:nth-child(1) {
    width: 32%;
    border-radius: 4px 0 0 4px;
}
.process li:nth-last-child(1) {
    border-radius: 0 4px 4px 0;
}
.process li:nth-last-child(1)::after,
.process li:nth-last-child(1)::before {
    border: none;
}
.process li.current {
    background: #48cfdb;
    color: #fff;
}
.process li.current::after {
    border-left-color: #48cfdb;
}

/*--------------------------------------

  送信しました

---------------------------------------*/
#sent {
    padding-bottom: 200px;
}
#sent h3 {
    margin: 60px 0 0 0;
    text-align: center;
}
#sent h3 b {
    display: block;
    margin-top: 30px;
    padding-right: 10px;
    color: #666;
    font-size: 4rem;
}
#sent .disc {
    text-align: center;
}
#sent .disc.box_border {
    width: 680px;
    margin: 60px auto;
    text-align: left;
}
#sent .disc ul {
    margin-top: 10px;
}
#sent .disc ul li {
    padding-left: 1em;
    text-indent: -1em;
}
#sent .disc ul li input {
    width: 7em;
}
#sent .disc ul li:before {
    content: "・";
}
#sent .disc ul li input:nth-child(2) {
    width: 8.4em;
}
#sent .bt_resend {
    text-align: center;
}
#sent .bt_resend button {
    margin-bottom: 40px;    
}
#sent .bt_resend a {
    display: inline-block;
}
#sent .bt_resend a:hover {
    text-decoration: underline;
}

/*--------------------------------------

  規約/プライバシーポリシー

---------------------------------------*/
.modal-content.w960 {
    width: 960px !important;
}
#agreement .ttl_big,
#privacy .ttl_big  {
    margin: 20px 0;
}
#agreement ul,
#privacy ul {
    margin-right: 30px;
    margin-left: 30px;
    margin-bottom: 80px;
}
#agreement ul:nth-last-of-type(1),
#privacy ul:nth-last-of-type(1) {
    margin-bottom: 40px;
}
#agreement ul li,
#privacy ul li {
    display: block;
    line-height: 1.3;
    color: #444;
    font-size: 1.2rem;
    text-align: left;
}
#agreement ul li.title,
#privacy ul li.title {
    margin: 30px 0 4px 0;
    color: #58afc0;
    font-size: 1.6rem;
    font-weight: 600;
}
#agreement ul li.bylaws,
#privacy ul li.bylaws {
    color: #666;
    margin-top: 30px;
}

/*--------------------------------------

  プロフィール入力（shop/entry.htmlと同じデザイン）

---------------------------------------*/
#profile.box_border {
    width: 800px;
    margin: 60px auto;
    text-align: left;
}
#profile .ttl_tag {
    font-size: 1rem;
}
#profile .ttl_tag::after {
    content: "profile";
}
#profile .ttl_tag::after {
    content: "profile";
}
#profile .disc_tag em {
    color: #f06;
}
#profile h4:nth-of-type(1) {
    margin-top: 68px;
}
#profile .profile_form {
    position: relative;
    margin-bottom: 50px;
}
#profile .profile_form > label {
    margin-top: 40px;
}
/*非公開項目*/
#profile .profile_form.private {
    margin-top: 20px;
    padding-bottom: 20px;
    background: #f6f6f6;
}
#profile .profile_form.private .wordcount {
    margin: 0 0 0 5px;
    color: #979797;
    font-size: 1.2rem;
    font-family: Helvetica, Arial, sans-serif;
}
#profile .profile_form.private > label {
    margin-top: 30px;
}
/**/
#profile .profile_form .read {
    display: inline-block;
    padding-left: 8px;
}
#profile .profile_form i {
    display: inline-block;
    width: 130px;
    vertical-align: middle;
    text-align: right;
}
#profile .profile_form i.required.reason::after {
    content: "*";
    position: relative;
    top: -16px;
    left: 2px;
    color: #f06;
}
#profile .profile_form .error_txt {
    margin-left: 140px;
}
#profile .profile_form .select_box option:nth-of-type(1) {
    display: none;
}
#profile .profile_form .select_box {
    margin-right: 10px;
}
#profile .profile_form .mail {
    float: left;
    margin-right: 40px;
}
#profile .profile_form .private_public {
    float: left;
    margin: 46px 20px 0 0;
}
#profile .profile_form .photo {
    position: absolute;
    top: 42px;
    right: 30px;
    text-align: center;
}
#profile .profile_form .photo a.plus {
    display: table-cell;
    width: 120px;
    height: 160px;
    border: solid 3px #dcdcdc;
    color: #666;
    vertical-align: middle;
}
#profile .profile_form .photo a.plus svg {
    display: block;
    width: 70px;
    height: 70px;
    margin: -10px auto 0 auto;
}
#profile .profile_form .photo a.plus:hover {
    border-color: #f9628a;
    color: #f9628a;
}
#profile .profile_form .photo a.plus:hover svg {
    fill: #f9628a;
}
#profile .profile_form .select_box #address {
    min-width: 100px;
}
/*ボタン*/
#profile .action {
    display: table;
    width: 100%;
    margin: 40px 0;
    text-align: center;
}
#profile .action .bt_save {
    display: inline-block;
    position: relative;
    top: -4px;
    margin-right: 40px;
    padding: 8px 22px;
    border: solid 2px #dcdcdc;
    border-radius: 4px;
    background: #fff;
    color: #666;
    font-weight: 300;
    text-align: center;
    cursor: pointer;
}
#profile .action .bt_save:hover {
    color: #f9628a;
    border-color: #f9628a;
}
#profile .action .bt_square {
    display: inline-block;
    margin: 0;
}
/*確認画面*/
#profile .confirm_unit {
    padding-top: 20px;
}
#profile .confirm_unit i {
    margin: 5px 10px 0 0;
}

/*--------------------------------------

  アカウントを作成しました

---------------------------------------*/
#registered h3 {
    margin: 60px 0 0 0;
    text-align: center;
}
#registered h3 b {
    display: inline-block;
    position: relative;
    bottom: -1px;
    padding: 0 6px;
    color: #fa628b;
    font-size: 3rem;
}
#registered #search_result .ttl_medium {
    text-align: left;
}

/*--------------------------------------

  パスワード再発行確認メール送信

---------------------------------------*/
#lostpass {
    padding-bottom: 200px;
    text-align: center;
}
#lostpass h3 {
    margin: 60px 0 0 0;
    text-align: center;
}
#lostpass .disc {
    text-align: center;
}
#lostpass .mail {
    width: 680px;
    margin: 60px auto;
    text-align: center;
}
#lostpass .disc.box_border {
    width: 680px;
    margin: 60px auto;
    text-align: left;
}
#lostpass input[type="submit"] {
    height: auto !important;
    margin: 40px auto 0;
}
#lostpass .bt_lostpass {
    width: auto;
    margin: 40px auto 0;
    text-decoration: underline;
    border: none;
    background: none;
    font-size: 1.2rem;
    color: #fc648a;
    cursor: pointer;
}
#lostpass .bt_lostpass:hover {
    text-decoration: none;
}
#sent b.pass {
    display: block;
    margin-top: 10px;
    color: #666;
    font-size: 4rem;
}
#sent b.pass i {
    padding: 0 10px;
    color: #666;
}
/*--------------------------------------

  本登録

---------------------------------------*/
#accept {
    text-align: center;
}
#accept h3 {
    margin: 60px 0 0 0;
    text-align: center;
}
#accept button {
    margin: 60px auto;
}