@charset "utf-8";


/* 共通 -------------------------------------- */

.join-container {
    padding: 15px;
}

@media print, screen and (min-width: 600px) {
    .join-container {
        padding: 30px 0;
    }
}

@media print, screen and (min-width: 960px) {
    .join-container {
        padding: 60px 0;
    }
}

/* フォーム */

input, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
}

.form-title {
    margin-bottom: 20px;
    color: #02a89d;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: .5px;
}

.form-row {
    margin-bottom: 20px;
}

.form-head {
    margin-bottom: 7.5px;
}

.form-head label {
    color: #555;
}

.form-head label span {
    display: inline-block;
    font-weight: bold;
    vertical-align: middle;
}

.form-input {
    width: 100%;
    padding: 10px 0 10px 10px;
    border: 2px solid #eee;
    border-radius: 5px;
    font-size: 14px;
}

.form-input:focus {
    border-color: #02a89d;
}

.join-btn {
    text-align: center;
}

.join-btn button {
    display: inline-block;
    width: 100%;
    padding: 15px 0;
    border: 2px solid #ea395f;
    border-radius: 3px;
    background-color: #ea395f;
    color: #fff;
    font-weight: bold;
    font-size: 14px;
    -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

@media print, screen and (min-width: 768px) {
    .form-title {
        font-size: 18px;
        letter-spacing: 1px;
    }
    
    .form-row {
        margin-bottom: 30px;
    }
    
    .form-head {
        margin-bottom: 10px;
    }
    
    .form-head label span:first-of-type {
        font-size: 15px;
        letter-spacing: 1px;
    }
    
    .join-btn button {
        font-size: 16px;
    }
}

@media print, screen and (min-width: 960px) {
    .form-title {
        margin-bottom: 30px;
        font-size: 20px;
    }
    
    .form-head label span:first-of-type {
        font-size: 16px;
    }
    
    .join-btn button {
        -webkit-transition: .2s ease;
        transition: .2s ease;
    }
    
    .join-btn button:hover {
        opacity: .7;
    }
}

/* 誘導リンク */

.induce-link-item {
    margin-bottom: 5px;
}

.induce-link-item:last-of-type {
    margin-bottom: 0;
}

.induce-link-item a {
    display: inline-block;
    color: #02a89d;
    font-weight: bold;
    line-height: 1.5;
    letter-spacing: 1px;
}

@media print, screen and (min-width: 768px) {
    .induce-link-item a {
        font-size: 14px;
    }
}

@media print, screen and (min-width: 960px) {
    .induce-link-item a {
        font-size: 15px;
        -webkit-transition: .2s ease;
        transition: .2s ease;
    }
    
    .induce-link-item a:hover {
        opacity: .7;
    }
}


/* 会員登録ページ ------------------------------ */

.join-note {
    margin-bottom: 15px;
    padding: 30px 15px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}

.join-note p:first-child {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.join-note p:nth-of-type(2),
.join-note p:nth-of-type(3) {
    color: #555;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 1px;
    text-align: justify;
    text-justify: inter-ideograph;
}

.join-note .login-alert {
    margin-top: 10px;
    color: #f00;
    font-weight: bold;
    font-size: 13px;
    line-height: 1.25;
}

.register {
    margin-bottom: 15px;
    padding: 30px 15px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}

.register-form {
    margin-bottom: 30px;
}

@media print, screen and (min-width: 600px) {
    .join-inner,
    .register-inner {
        width: 90%;
        max-width: 750px;
        margin: auto;
    }
}

@media print, screen and (min-width: 768px) {
    .join-note {
        padding: 45px 0;
    }
    
    .register {
        padding: 70px 0;
    }
    
    .join-note-inner,
    .register-inner {
        width: 80%;
        max-width: 500px;
        margin: auto;
    }
    
    .join-note p:first-child {
        font-size: 16px;
        line-height: 1.75;
    }
    
    .join-note p:nth-of-type(2),
    .join-note p:nth-of-type(3) {
        font-size: 14px;
        line-height: 1.75;
    }
}

@media print, screen and (min-width: 960px) {
    .join-inner {
        border: 1px solid #ddd;
        -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    }
    
    .join-note,
    .register {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    
    .join-note {
        margin-bottom: 0;
        padding: 60px 0 0;;
    }
    
    .join-note p:first-child {
        font-size: 18px;
    }
    
    .join-note p:nth-of-type(2),
    .join-note p:nth-of-type(3) {
        font-size: 15px;
    }
}

/* 会員登録フォーム */

/** 入力欄 **/

.form-data {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.form-input#last-name,
.form-input#first-name,
.form-input#last-furigana,
.form-input#first-furigana {
    width: 49%;
    width: calc(50% - 5px);
}

.form-birth .form-data {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.unit {
    margin: auto 6px;
}

.form-data.form-data-address {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.form-input.p-locality {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form-input.p-street-address {
    margin-top: 5px;
}

.address-note {
    width: 100%;
    margin-top: 10px;
    letter-spacing: .5px;
}

/** セレクトボックス **/

.form-select::-ms-expand {
    display: none;
}

.form-select {
    padding: 9px 30px 9px 10px;
    border: 2px solid #eee;
    border-radius: 3px;
    background-color: #fff;
    background-image: url(../images/arrow-select.svg);
    background-repeat: no-repeat;
    background-size: 12px 10px;
    background-position: right 10px center;
    color: #555;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-select-address {
    margin-right: 10px;
    font-size: 14px;
}

/** ラジオボタン **/

.form-radio input {
    display: none;
}

.form-radio {
    position: relative;
    width: 49%;
    width: calc(50% - 5px);
    padding: 10px 0 10px 40px;
    border: 2px solid #eee;
    border-radius: 3px;
}

.form-radio span {
    color: #555;
    line-height: normal;
}

.form-radio span::before {
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 1px solid #888;
    border-radius: 50%;
    content: "";
}

.form-radio input:checked + span::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 13px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #888;
    content: "";
}

/** 「必須」アイコン **/

.icon-required {
    margin-left: 5px;
    padding: 3px 6px;
    border-radius: 2px;
    background-color: #ea395f;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1px;
    text-indent: 1px;
    vertical-align: middle;
}

@media print, screen and (min-width: 768px) {
    .icon-required {
        font-size: 13px;
    }
}

/** 注意書き **/

.form-note {
    margin-bottom: 20px;
}

.form-note p {
    color: #555;
    line-height: 1.5;
    letter-spacing: .5px;
}

.form-note p:first-of-type {
    margin-bottom: 10px;
}


/* ログインページ ------------------------------ */

.login {
    padding: 30px 15px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.1);
}

.login-guide {
    margin-bottom: 20px;
}

.login-guide p {
    font-size: 13px;
    line-height: 1.75;
    letter-spacing: .5px;
}

.login-guide p:first-of-type {
    margin-bottom: 10px;
}

.login-form {
    margin-bottom: 30px;
}

@media print, screen and (min-width: 600px) {
    .login {
        width: 90%;
        max-width: 750px;
        margin: auto;
    }
}

@media print, screen and (min-width: 768px) {
    .login {
        padding: 60px 0;
        border: 1px solid #eee;
    }
    
    .login-inner {
        width: 80%;
        max-width: 500px;
        margin: auto;
    }
    
    .login-guide p {
        font-size: 14px;
    }
}

@media print, screen and (min-width: 960px) {
    .login {
        border-color: #ddd;
    }
}


/* 企業向け申請フォーム用 */

@media print, screen and (min-width: 769px) {
    .join-company .l-main {
        max-width: 800px;
    }
    
    .join-company .register {
        width: 100%;
    }
    
    .join-company .join-btn button {
        max-width: 240px;
    }
}