@charset "UTF-8";

main {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: auto;
    margin-top: 70px;
}

@media screen and (width <=480px) {
    main {
        gap: 20px;
        margin-top: 56px;
        padding-top: 2rem;
    }
}

/* 登録フローナビ */
ul.reg_flow {
    display: flex;
    align-self: center;
    gap: 10px;
    counter-reset: my-counter;
    padding-top: 50px;
}

@media screen and (width <=480px) {
    ul.reg_flow {
        display: none;
    }
}

ul.reg_flow li {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px 5px 30px;
    font-size: .875rem;
    color: #666;
    border-radius: 5px;
    line-height: 1.5rem;
    border: 1px solid #666;
    margin-right: 25px;
}

ul.reg_flow li::before {
    content: counter(my-counter);
    position: absolute;
    left: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 11px;
    color: #fff;
    background: #666;
    border-radius: 50%;
    counter-increment: my-counter;
    font-weight: 600;
}

ul.reg_flow li::after {
    content: "\f138";
    position: absolute;
    right: -26px;
    font-size: 15px;
    color: #999;
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
}

ul.reg_flow li:last-child {
    margin-right: 0;
}

ul.reg_flow li:last-child::after {
    display: none;
}

ul.reg_flow li.__flow_active {
    color: #fff;
    background: #07f;
    border: none;
}

ul.reg_flow li.__flow_active::before {
    color: #07f;
    background: #fff;
}

/* メインコンテンツ */
#signup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    width: 100%;
    margin: 0 auto 3rem;
    max-width: 350px;
}

h2.signup_title {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.signup_title_inner,
.login_title_inner {
    position: relative;
    align-self: center;
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    font-weight: 600;
    padding-left: 3.5rem;
}

.login_title_inner{
    padding: 3rem 0 0;
}

@media screen and (width <=480px) {
    .signup_title_inner{
        font-size: 1rem;
    }
}

.signup_title_inner::before {
    content: "無料‼";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    align-self: center;
    padding: .125rem .25rem .125rem .5rem;
    font-size: .875rem;
    color: #fff;
    background: #d00;
    border-radius: 5px;
    font-weight: 600;
}

.signup_flow_title{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 18px;
    color: #07f;
    font-weight: 600;
    margin-left: -1rem;
}

@media screen and (width <=480px) {
    .signup_flow_title{
        font-size: 1rem;
    }
}

.-step-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 1.25rem;
    padding: .25rem .25rem .25rem .5rem;
    font-size: .75rem;
    color: #fff;
    background: #07f;
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px;
    font-weight: 600;
}

.-step-label::after {
    content: "";
    position: absolute;
    top: 0;
    right: -.44rem;
    bottom: 0;
    display: block;
    height: 0;
    margin: auto;
    border: solid .46rem;
    border-color: #07f #07f transparent transparent;
    transform: rotate(45deg);
    transform-origin: center;

}

div.signup_box {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-top: 1px solid #ccc;
    padding-top: 40px;
}

div.signup_box:first-of-type{
    border-top: none;
    padding-top: 0;
}

div.signup_box p{
    margin: auto;
    font-size: .875rem;
    color: #555;
    line-height: 1.5;
}

div.signup_box p b{
    font-weight: 600;
}

.signup-box-ttl{
    font-size: 1.125rem;
    color: #07f;
    text-align: center;
    font-weight: 600;
}

.signup-box-dl{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.signup-box-dl dt{
    align-self: center;
    padding: .25rem 5rem;
    font-size: .875rem;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    background-color: #666;
}

.signup-box-dl dd.__mail_to{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #07f;
    text-align: center;
    white-space: nowrap;
}

.signup-box-dl dd.__mail_to::before{
    content: url('../img/icon_mail-out.png');
    height: 20px;
    padding-right: .5rem;
}

@media screen and (width <=480px) {
    .signup-box-dl dd.__mail_to{
        text-align: left;
        white-space: normal;
        word-break: break-all;
    }
}

.signup-box-cautoin{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 1.25rem;
}

.signup-box-cautoin p{
    position: relative;
    align-self: start;
    margin: 0 !important;
    padding-left: 1.25rem;
}

.signup-box-cautoin p::before{
    content: "\f138";
    position: absolute;
    left: 0;
    color: #d00;
    font-family: "font awesome 6 free";
    font-weight: 600;
}

.signup-box-cautoin p em{
    font-weight: 600;
}

.signup_label{
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.signup_label small{
    font-size: .75rem;
    color: #777;
}

.signup_label input{
    width: 100%;
    height: 3rem;
    padding: .5rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    outline: none; /* ← これが角丸の黒ボーダーを消すポイント */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.signup_label input:hover,
.signup_label input:active,
.signup_label input:focus {
    box-shadow: 0 0 0 3px rgb(0 123 255 / 20%);
    border: 2px solid #07f;
}

div.bd-top {
    border-top: #E95513 1px solid;
    padding-top: 20px;
}

p.signup_text,
p.signup_text2 {
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 5px;
    font-size: 1rem;
    color: #b00;
    text-align: center;
    line-height: 1;
    font-weight: normal;
}

p.signup_text2 {
    color: #333;
    line-height: 1.5;
    font-weight: normal;
}

@media screen and (width <=480px) {
    p.signup_text,
    p.signup_text2 {
        font-size: .875rem;
    }
}

span.signup_text_subtext {
    display: block;
    font-size: .8125rem;
    color: #777;
}

ul.signup_form,
ul.signup_form_submit {
    display: flex;
    flex-direction: column;
    align-self: center;
    align-self: stretch;
    gap: 20px;
    padding: 20px 0;
    border-top: 1px dotted #ccc;
}

ul.signup_form_submit {
    padding: 50px 0;
}

ul.signup_form li,
ul.signup_form_submit li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    border-bottom: 1px dotted #ccc;
    list-style: none;
    padding-bottom:20px;
}

@media screen and (width <=480px) {
    ul.signup_form li,
    ul.signup_form_submit li {
        padding: 10px;
    }
}

ul.signup_form li label,
ul.signup_form_submit li label {
    display: inline-flex;
    gap: 10px;
    font-size: 1rem;
    color: #444;
    font-weight: normal;
}

@media screen and (width <=480px) {
    ul.signup_form li label,
    ul.signup_form_submit li label {
        font-size: .875rem;
    }
}

.forgot-password{
    align-self: flex-end;
    font-size: .875rem;
    color: #06e;
    margin-top: 1rem;
    text-decoration: underline;
}

.forgot-password:hover{
    color: #09f;
}

/* エラー表記 */
.error {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.error label {
    color: #D00;
}

.error input {
    color: #D00;
    background: #fdd;
    border: 1px solid #d00;
}

.error_text {
    display: block;
    font-size: 12px;
    color: #D00;
}

/* エラー表記 */

.signup-btn-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin: auto;
}

.-submit {
    flex-direction: row;
    justify-content: space-evenly;
}

.signup-btn {
    align-self: center;
    width: 100%;
    height: 3rem;
    font-size: 1rem;
    color: #ccc;
    background: #eee;
    border-radius: 5px;
    box-shadow: 0 4px 0 #CCC;
    border: none;
    cursor: pointer;
    font-weight: normal;
    letter-spacing: .2rem;
    max-width: 400px;
    transition: all .2s ease-in-out;
}

@media screen and (width <=480px) {
    .signup-btn {
        max-width: 372px;
    }
}

.-regist {
    color: #fff;
    background: #06e;
}

.-regist:hover{
    background: #09f;
    box-shadow: none;
    transform: translateY(4px);
}

.-login {
    color: #06e;
    background: transparent;
    border: 1px solid #06e;
}

.-login:hover{
    color: #fff;
    background: #09f;
    box-shadow: none;
    transform: translateY(4px);
}

.-return::before {
    content: "\f100";
    font-family: "font awesome 5 free";
    font-weight: normal;
    padding-right: 5px;
}

.-regist::after,
.-regist2::after,
.-login::after {
    content: "\f101";
    font-family: "font awesome 5 free";
    font-weight: 900;
    padding-left: 5px;
}

.btn_caption {
    display: block;
    align-self: center;
    font-size: 12px;
    color: #D00;
    padding-bottom: 2px;
}

.signup_banner_wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.signup_banner {
    padding: 10px 20px;
    font-size: .8125rem;
    color: #E95513;
    background: #ffd;
    text-align: center;
    border: #272FF2 1px solid;
    font-weight: normal;
}

.tou_btn {
    padding: 5px 20px;
    color: #fff;
    background: #07f;
    border-radius: 5px;
    border: 1px solid #07f;
}

.tou_btn:hover {
    padding: 5px 20px;
    color: #07f;
    background: #fff;
    border-radius: 5px;
    border: 1px solid #07f;
}

a.__a_link{
    color: #07f;
    text-decoration: underline;
    text-underline-offset: 5px;
}

.-return-box {
    display: flex;
    align-self: flex-start;
    border-bottom: 1px solid #07f;
    margin-top: 20px;
}

.-return-left{
    position: relative;
    color: #07f;
    line-height: 1;
    padding-left: 20px;
}

.-return-left::before{
    content: "\f100";
    position: absolute;
    top: -1px;
    left: 0;
    font-family: "font awesome 6 free";
    font-weight: 600;
}

.-return-left:hover{
    opacity: .8;
}

.-mailmag-txt{
    font-size: .8125rem;
    color: #000;
    line-height: 1;
}

.-mailmag-note{
    font-size: .75rem;
    color: #333;
    line-height: 1;
}

.-firm-text{
    text-align: center;
}

.bullhorn{
    position: relative;
    display: flex;
    align-items: center;
    align-self: center;
    gap: .5rem;
    padding: 1rem;
    font-size: .875rem;
    color: #b40;
    border-radius: 1rem;
    line-height: 1.5;
    border: #f60 1px solid;
    margin-right: -3.25rem;
}

.bullhorn::before{
    content: "\f0a1";
    position: absolute;
    top: 50%;
    left: -3.25rem;
    align-self: center;
    width: 1.5rem;
    height: 1.5rem;
    padding: .5rem;
    font-size: 1.125rem;
    color: #fff;
    background: #f60;
    border-radius: 50%;
    text-align: center;
    line-height: 1.35;
    font-family: "font awesome 6 free";
    font-weight: 600;
    transform: translateY(-50%);
}

.bullhorn::after{
    content: "";
    position: absolute;
    top: 45%;
    left: -4px;
    box-shadow: 1.5px 1.5px 0 #f60;
    border-color: #fff;
    border-style: solid;
    border-width: 5px;
    transform: rotate(135deg);
}

/* アコーディオン改造 */
.acd-ttl {
    font-size: 1rem;
    text-align: center;
    font-weight: normal;
}

@media screen and (width <=480px) {
    .acd-ttl {
        font-size: .8125rem;
    }
}

.acd-content {
    background: #fff;
}

.acd-content p:not(:first-child) {
    border-top: 1px dotted #ccc;
    margin-top: 10px;
    padding-top: 10px;
}

.acd-label {
    position: relative;
    justify-content: center;
    width: 100%;
    padding: 5px;
    font-size: .8125rem !important;
    color: #fff !important;
    background: #07f;
    text-align: center;
    margin-bottom: 1px;
}

.acd-label::after {
    content: '\f107';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: auto;
    padding: 5px 20px;
    font-size: 1rem;
    background: #03f;
    box-sizing: border-box;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

@media screen and (width <=480px) {
    .acd-label {
        font-size: .75rem !important;
    }

    .acd-check:checked+.acd-label+.acd-content {
        font-size: .75rem;
        line-height: 1.75;
    }
}

/*  */
.terms_check_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms_check_item {
    flex-wrap: wrap;
    padding: 10px;
    font-size: .875rem !important;
    background: #FFF;
    border-radius: 4px;
    line-height: 1.25rem;
    border: 1px solid #ccc;
    font-weight: normal !important;
}

.terms_check_item input {
    flex-basis: 15px;
    margin: 0;
}

.terms_check_item span {
    flex-basis: calc(100% - 25px);
}

@media screen and (width <=480px) {
    .terms_check_item span {
        font-size: .7rem;
        line-height: 1.5;
    }
}

.terms_check_item input.txt_input {
    flex-basis: 100%;
    padding: 5px;
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif !important;
    outline: none; /* ← これが角丸の黒ボーダーを消すポイント */
    transition: border-color 0.3s, box-shadow 0.3s;
}

.terms_check_item input.txt_input:hover,
.terms_check_item input.txt_input:active,
.terms_check_item input.txt_input:focus {
    box-shadow: 0 0 0 3px rgb(0 123 255 / 20%);
    border: 2px solid #07f;
}

@media screen and (width <=480px) {
    .terms_check_item input.txt_input {
        font-size: .7rem;
    }
}

.-asterisk{
    position: relative;
    font-size: .75rem;
    color: #777;
    line-height: 1.5;
    padding-left: 1.125rem;
}

.-asterisk::before{
    content: "※";
    position: absolute;
    left: 0;
}