@charset "utf-8";

/***************************************************************************

  フォーム

***************************************************************************/
.formBlock,
.inputFlowBlock {
    width: 100%;
    background: #fff;
    padding: 35px 40px 50px;
    margin: 0 0 60px;
    border-radius: 20px;
    border-top: solid 6px #9edade;
}
h3.formTtlh3 {
    font-size: 190%;
    font-weight: bold;
    margin: 0 0 30px;
    position: relative;
}
h3.formTtlh3::before {
    content: "●";
    margin: 0 10px 0 0;
    font-size: 90%;
    color: #0099AD;
}
h4.formTtlh4 {
    font-size: 160%;
    text-align: center;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    padding: 10px 0 45px;
    margin: 60px 0 0;
    background: url(../images/lower/form/form_list_block_bg.png) no-repeat center bottom;
    background-size: 168px auto;
}
@media screen and (max-width: 767px) {
    .formBlock,
    .inputFlowBlock {
        width: calc(100% - 40px);
        padding: 20px;
        margin: 0 auto 30px;
    }
    h3.formTtlh3 {
        font-size: 150%;
        margin: 20px 20px 15px;
    }
    h4.formTtlh4 {
        font-size: 134%;
        line-height: 1.4;
        padding: 0 0 25px;
        margin: 10px 0 25px !important;
        background-size: 120px auto;
    }
}

/*****************************************
  登録の流れ
*****************************************/
.inputFlowBlock h4.formTtlh4 {
    margin: 0 0 40px;
}
.inputFlowBlock dl dt {
    font-size: 110%;
    font-weight: bold;
    color: #0099AD;
    background-color: #E7F6F7;
    border-radius: 40px;
    margin: 30px 0 15px 0;
    padding: 10px 20px;
}
.inputFlowBlock dl dt span {
    background-color: #0099AD;
    color: #fff;
    display: inline-block;
    border-radius: 100px;
    width: 2em;
    height: 2em;
    text-align: center;
    vertical-align: middle;
    line-height: 2em;
    margin: 0 10px 0 0;
}
@media screen and (max-width: 767px) {
    .inputFlowBlock dl dt {
        margin: 20px 0 15px 0;
        padding: 10px 20px;
    }
}

/*****************************************
  フロー
*****************************************/
.formFlow {
    margin: 40px;
}
.formFlow ol {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.formFlow ol::before {
    position: absolute;
    content: "";
    display: block;
    height: 2px;
    width: calc(100% - 100px);
    top: 40px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
    background-color: #d3d3d3;
}
.formFlow ol > li {
    position: relative;
    z-index: 2;
}
.formFlow ol .num {
    display: flex;
    background-color: #d3d3d3;
    align-items: center;
    height: 80px;
    width: 80px;
    border-radius: 50%;
    justify-content: center;
    margin: 0 auto;
    font-size: 140%;
    font-weight: bold;
}
.formFlow ol .txt {
    display: block;
    font-size: 100%;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
}
.formFlow ol > li.active .num {
    background-color: #0099AD;
    color: #fff;
}
@media screen and (max-width: 767px) {
    .formFlow {
        margin: 0 0 30px;
    }
    .formFlow ol::before {
        width: calc(100% - 40px);
        top: 20px;
    }
    .formFlow ol .num {
        height: 40px;
        width: 40px;
        font-size: 120%;
    }
    .formFlow ol .txt {
        font-size: 84%;
        line-height: 1.2;
    }
}

/*****************************************
  フォーム要素
*****************************************/
.formInput dl dt {
    font-weight: bold;
    font-size: 106.6%;
    padding: 30px 0 0 0;
}
.formInput dl dd {
    padding: 10px 0 30px;
    border-bottom: 1px solid #d3d3d3;
}
.formInput dl dd .title {
    background-color: #E7F6F7;
    color: #0099AD;
    font-weight: bold;
    border-radius: 3px;
    padding: 8px 20px;
    margin: 10px 0 10px;
}
.formInput dl dd .title:first-child {
    margin-top: 0;
}
.formInput .listcol2,
.formInput .listcol3 {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.formInput .listcol3 li {
    width: 30%;
    margin: 0 0 8px;
}
.formInput .listcol2 li {
    width: 46%;
    margin: 0 0 8px;
}
.formInput label {
    cursor:pointer;
}
.formInput input[type="checkbox"],
.formInput input[type="radio"] {
    border-radius: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}
.formInput input[type="checkbox"] {
    position: relative;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    border: 1px solid #999;
    vertical-align: -4px;
    margin: 0 5px 0 0;
}
.formInput input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 5px;
    transform: rotate(50deg);
    width: 4px;
    height: 10px;
    border-right: 2px solid #0099AD;
    border-bottom: 2px solid #0099AD;
    content: '';
}
.formInput input[type="radio"] {
    position: relative;
    background-color: #fff;
    width: 16px;
    height: 16px;
    border-radius: 20px;
    border: 1px solid #999;
    vertical-align: -4px;
    margin: 0 5px 0 0;
}
.formInput input[type="radio"]:checked:before {
    position: absolute;
    top: 3px;
    left: 3px;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 20px;
    background: #0099AD;
}
.formInput textarea {
    line-height: 1.4;
}
.formInput .detailBox {
    background-color: #E7F6F7;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}
.formInput .detailBox.active {
    display: block !important;
}
.formInput .detailBox p strong {
    font-size: 106.6%;
    margin: 0 0 5px;
    display: inline-block;
}
.formInput .sizeL {
    width: 100%;
}
.formInput .sizeS {
    width: 30%;
}
.formInput .sizeSS {
    width: 15%;
}
.formInput small {
    margin-left: 10px;
}
.formInput .hissu {
    font-size: 75%;
    font-weight: normal;
    border-radius: 3px;
    margin: 0 0 0 5px;
    background: #f30;
    color: #fff;
    display: inline-block;
    line-height: 1;
    padding: 5px 8px;
}
.formInput .nini {
    font-size: 75%;
    font-weight: normal;
    border-radius: 3px;
    margin: 0 0 0 5px;
    background: #fff9f3;
    border: solid 1px #ffbc7a;
    color: #fe7e00;
    display: inline-block;
    line-height: 1;
    padding: 5px 8px;
}

@media screen and (max-width: 767px) {
    .formInput dl {
        margin-bottom: 30px;
    }
    .formInput dl dt {
        padding: 15px 0 0 0;
    }
    .formInput dl dd {
        padding: 5px 0 15px;
    }
    .formInput .listcol3 li {
        width: 50%;
    }
    .formInput .listcol2 li {
        width: 100%;
    }
    .formInput .detailBox {
        padding: 15px 10px;
        margin: 10px 0;
    }
    .formInput .sizeM,
    .formInput .sizeS {
        width: 100%;
    }
    .formInput .sizeSS {
        width: 30%;
    }
    .formBlock-event .formInput .sizeSS {
        width: 26%;
    }
}

/* エラー */
.formInput .errorText {
    color: #e00;
    font-weight: bold;
    border: 1px solid #e00;
    background-color: rgb(255, 236, 236);
    border-radius: 3px;
    padding: 15px;
}
.formInput .error .message {
    color: #e00;
    display: block;
    margin: 0 0 5px;
}
.formInput input.error,
.formInput select.error,
.formInput textarea.error {
    border: 1px solid #e00;
    background-color: rgb(255, 236, 236);
}

/* ボタン */
.btn {
    text-align: center;
    padding: 20px 0;
}
.btn p {
    margin: 15px 10px;
}
.btn .btnNext {
    background-color: #0099AD;
    color: #fff;
    font-size: 120%;
    width: 60%;
    padding: 20px 50px 22px;
    border-radius: 40px;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
}
.btn .btnPrev {
    background-color: #fff;
    border: 2px solid #0099AD;
    color: #0099AD;
    font-size: 110%;
    width: 60%;
    font-weight: bold;
    padding: 18px 50px 20px;
    border-radius: 40px;
    outline: none;
    cursor: pointer;
}
@media screen and (max-width: 767px) {
    .btn {
        padding: 0 0 20px;
    }
    .btn .btnNext,
    .btn .btnPrev {
        font-size: 110%;
        width: 100%;
        padding: 15px 30px 18px;
    }
}

/* 注意事項 */
.caution ul li {
    position: relative;
    margin: 0 0 5px 1.2em;
    text-indent: -1.2em;
}
.caution ul li::before {
    content: "●";
    color: #9edade;
    margin: 0 5px 0 0;
}

/*****************************************
  新規登録フォーム
*****************************************/
.formBlock-regist-input .formFlow > ol {
    max-width: 480px;
    margin: 0 auto;
}
/*****************************************
  登録変更フォーム
*****************************************/
.formBlock-changeInput .formInput .title {
    background-color: #0099AD;
    color: #fff;
    font-size: 106.6%;
    font-weight: bold;
    padding: 10px 15px;
    margin-top: 30px;
}
.formBlock-changeInput .formFlow > ol {
    max-width: 480px;
    margin: 0 auto;
}

/*****************************************
  イベント情報募集フォーム
*****************************************/
.formBlock-event .formFlow > ol {
    max-width: 480px;
    margin: 0 auto;
}
.listcolMix {
    display: flex;
    flex-wrap: wrap;
}
.listcolMix div {
    margin-bottom: 10px;
}
.listcolMix > div {
    width: 20%;
}
.listcolMix > div.listcolMix_switch {
    width: 100%;
    display: flex;
    margin-bottom: 0;
}
.listcolMix > div.listcolMix_switch > div {
    width: 20%;
}
.listcolMix > div.listcolMix_switch > div:nth-of-type(1),
.listcolMix > div.listcolMix_switch > div:nth-of-type(2) {
    width: 40%;
}
h3.formTtlh3-event::before {
    color: #b93a09;
}
.formBlock-event {
    border-top: solid 6px #fbc3ad;
}
.formBlock-event .formFlow ol > li.active .num {
    background-color: #b93a09;
}
.formBlock-event .btn .btnNext {
    background-color: #b93a09;
}
.formBlock-event .caution ul li::before {
    color: #fbc3ad;
}
.formBlock-event .formInput .detailBox {
    background-color: #ffeae3;
}
.formBlock-event h4.formTtlh4 {
    background-image: url(../images/lower/form/form_list_block-event_bg.png);
}

@media screen and (max-width: 767px) {
    .listcolMix > div {
        width: 50%;
    }
}