/*-------------------------------------------------
|-  section
-------------------------------------------------*/
.section {
    max-width: 1000px;
}
/*-------------------------------------------------
|-  contact - input
-------------------------------------------------*/
.contact-txt {
    margin-bottom: 50px;
    text-align: center;
}
.flow {
    width: 94%;
    max-width: 570px;
    margin: 0 auto 80px;
    border: 1px solid #4d4d4d;
    display: table;
    overflow: hidden
}
.flow__item {
    position: relative;
    width: calc(100% / 3);
    padding: 4px 15px;
    text-align: center;
    background-color: #fff;
    display: table-cell
}
.flow__item:last-child:before, .flow__item:last-child:after {
    display: none
}
.flow__item:before, .flow__item:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    margin: auto
}
.flow__item:before {
    top: -3px;
    right: -1em;
    border-width: 20px 0 20px 1em;
    border-style: solid;
    border-color: transparent transparent transparent #4d4d4d;
    z-index: 5
}
.flow__item:after {
    top: -3px;
    right: -.9em;
    border-width: 20px 0 20px 1em;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    z-index: 5
}
.flow__item-current {
    color: #fff;
    background-color: #4d4d4d
}
.flow__item-current:after {
    border-color: transparent transparent transparent #4d4d4d
}
.form {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
    display: flex;
}
.form__ttl {
    position: relative;
    width: 270px;
    padding: 0 20px 0 10px;
    box-sizing: border-box;
}
.required {
    position: absolute;
    top: 0;
    right: 20px;;
    width: 40px;
    color: #fff;
    font-size: var(--font-size12);
    text-align: center;
    background: #E50012;
    display: block;
}
.form__item {
    flex: 1;
}
.form.hidden {
    display: none;
}
.item {
    margin-bottom: 10px;
}
.item:last-child {
    margin-bottom: 0;
}
.error {
    margin-top: 5px;
    color: #E50012;
    font-size: var(--font-size14);
}
.privacy-wrap {
    margin-top: 50px;
}
.privacy {
    margin-bottom: 50px;
}
.privacy__ttl {
    margin-bottom: 10px;
}
.privacypolicy {
    color: #0000ee;
}
.privacypolicy:hover {
    text-decoration: underline;
}
.privacy-check {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

@media screen and (max-width: 767px){
    .contact-txt {
        margin-bottom: 30px;
        font-size: var(--font-size14);
        text-align: left;
    }
    .flow {
        margin: 0 auto 10px;
    }
    .flow__item {
        padding: 8px 5px;
        font-size: var(--font-size12);
    }
    .flow__item:nth-child(2) {
        padding: 8px 0px 8px 10px;
    }
    .form {
        padding: 20px 4%;
        box-sizing: border-box;
        display: block;
    }
    .form__ttl {
        width: 100%;
        margin-bottom: 15px;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .required {
        position: unset;
        margin-left: 10px;
    }
    .item {
        margin-bottom: 15px;
    }
    .privacy-wrap {
        margin-top: 25px;
    }
    .privacy {
        margin-bottom: 35px;
    }
    .privacy__ttl {
        margin-bottom: 5px;
    }
    .privacy__txt {
        font-size: var(--font-size14);
    }
}
/*-------------------------------------------------
|-  input
-------------------------------------------------*/
/********** input radio *********/
.radio {
    display: none;
}
.label-radio {
    position: relative;
    padding-left: 25px;
    cursor: pointer;
}
.label-radio::before,
.label-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    display: block;
}
.label-radio::before {
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #fff;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
    border-radius: 50%;
}
.label-radio::after {
    left: 0;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
}
.radio:checked + .label-radio::after {
    opacity: 1;
}
/********** input checkbox *********/
.checkbox {
    display: none;
}
.label-checkbox {
    padding: 17px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s;
}
.label-checkbox:hover {
    background: rgba(0,0,0,.05) !important;
}
.checkbox:focus + .check {
    border: 1px solid var(--primary-color);
}
.checkbox:checked + .check {
    background: #fff;
}
.checkbox:checked + .check::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 9px;
    width: 7px;
    height: 3px;
    transform: translate(-6px, 5px) rotateZ(-135deg);
    transform-origin: 2px 2px;
    background: var(--primary-color);
    display: block;
}
.checkbox:checked + .check::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 11px;
    width: 10px;
    height: 3px;
    transform: translate(-6px, 5px) rotateZ(-45deg);
    transform-origin: 2px 2px;
    background: var(--primary-color);
    display: block;
}
.check {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid var(--primary-color);
    box-sizing: border-box;
}
.check-txt {
    margin-left: 15px;
    display: block;
}
/********** input text ********/
.text {
    width: 100%;
    max-width: 480px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 0;
}
/********* textarea *********/
.textarea {
    width: 100%;
    max-width: 480px;
    height: 160px;
    padding: 6px 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 0;
}
@media screen and (max-width: 767px){
    .check-txt {
        margin-left: 10px;
        font-size: var(--font-size14);
    }
    .label-checkbox {
        padding: 10px 0;
    }
    .text {
        padding: 10px;
    }
    /********* textarea *********/
    .textarea {
        height: 130px;
    }
}
/*-------------------------------------------------
|-  btn-wrap
-------------------------------------------------*/
.btn-wrap {
    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
}
.input-btn {
    width: 270px;
    padding: 14px 0;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    border: 0;
    display: block;
    transition: .3s;
}
.input-btn.next {
    background-image: url(/assets/img/btn_arrow.svg);
    background-size: 22px;
    background-repeat: no-repeat;
    background-position: 92% center;
    opacity: .5;
}
.input-btn.next.active {
    cursor: pointer;
    opacity: 1;
}
.input-btn.back,
.input-btn.send {
    cursor: pointer;
}
.input-btn.back {
    margin-right: 20px;
    background: #999;
}
.input-btn.next.active:hover,
.input-btn.back:hover,
.input-btn.send:hover {
    opacity: .8;
}
@media screen and (max-width: 767px){
    .btn-wrap {
        margin-top: 35px;
    }
    .input-btn {
        width: 64%;
    }
    .input-btn.next {
        background-image: none;
    }
}

/*-------------------------------------------------
|-  sakurado
-------------------------------------------------*/
.sakurado-block {
    padding-top: 50px;
    border-top: 1px solid #ccc;
    
}
.sakurado_logo {
    width: 250px;
}
@media screen and (max-width: 767px){
    .sakurado_logo {
        margin: 0 auto;
    }
}

/*-------------------------------------------------
|-  complete
-------------------------------------------------*/
.complete-top {
    font-size: var(--font-size20);
    margin-bottom: 30px;
    text-align: center;
}
.complete-txt {
    text-align: center;
    line-height: 2;
}
.completeBtn {
    width: 270px;
    margin: 70px auto 0;
}
.completeBtn__link {
    width: 100%;
    padding: 14px 0;
    color: #fff;
    text-align: center;
    background-color: var(--primary-color);
    display: block;
    transition: .3s
}
.completeBtn__link:hover {
    opacity: .8
}

@media (max-width: 767px) {
    .complete-top {
        margin: 30px 0 15px;
        font-size: var(--font-size17);
    }
    .complete-txt {
        font-size: var(--font-size13);
        line-height: 1.5;
    }
    .completeBtn {
        width: 64%;
        margin: 35px auto 0
    }
}
