/* -----------------------------

    全体

----------------------------- */
.sectionRequest {
    background-color: #ffffff;
    background-image: linear-gradient(45deg, #CFDC28 3rem, transparent 0),
        linear-gradient(-45deg, #CFDC28 3rem, transparent 0),
        linear-gradient(135deg, #CFDC28 3rem, transparent 0),
        linear-gradient(-135deg, #CFDC28 3rem, transparent 0);
}

.requestGroup {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.requestItem {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 7vh;
}

/* -----------------------------

    ステップ

----------------------------- */
.requestItemNo {
    width: 10%;
}

.requestItemNoBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    text-align: center;
    margin-left: auto;
    margin-right: 5vw;
    border-radius: 5px;
    background-color: #222222;
    font-size: 0.8rem;
}

.requestItemNoBodyNumber {
    font-size: 2.0rem;
}

/* -----------------------------

    手順内容

----------------------------- */
.requestItemText {
    width: 50%;
    letter-spacing: 0.125rem;
}

/* -----------------------------

    詳細

----------------------------- */
.requestItemDetail {
    width: 40%;
    position: relative;
}

.requestItemDetailIcon{
    position: absolute;
    top: -2vh;
    right: -0.5vw;
    font-size: 1.3rem;
    color: #888888;
}

.requestItemDetailBody {
    width: 85%;
    margin-left: 7.5%;
    margin-right: 7.5%;
}


/* Step1. フォーム
----------------------------- */
.requestFormItem {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 2.5vh;
}

.requestFormItemLabel {
    width: 20%;
    text-align: right;
    margin-right: 10%;
}

.requestFormItemValue {
    width: 70%;
}

.requestFormItem input{
    width: 80%;
}

.requestFormItem input,
.requestFormItem select{
    background-color: #ffffff;
    border-radius: 20px;
    padding: 10px 20px;
    border: none;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Step2. コピペテキスト
----------------------------- */
.copyTextareaRequest {
    width: 100%;
    border-radius: 10px;
    padding: 30px;
    background-color: #222222;
    border: none;
    resize: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.messageCopyTextRequest{
    height: 1rem;
    font-size: 0.9rem;
}

/* Step3. SNS
----------------------------- */
.btnRequestGroup {
    display: flex;
    justify-content: space-between;
}

.btnRequest {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 20px;
    border: none;
    margin-left: 0.25rem;
    margin-right: 0.25rem;
    width: 10rem;
    font-size: 0.9rem;
    transition: 0.25s;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
}

.btnRequest:hover{
    opacity: 0.5;
}

.btnRequest a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.btnRequest i {
    font-size: 1.3rem;
    margin-right: 0.5vw;
}

.btnRequestLine {
    background-color: #00B900;
}

.btnRequestTwitter {
    background-color: #1DA1F2;
}

.btnRequestInstagram {
    background-color: #e1306c;
}

/* -----------------------------

    下部メッセージ

----------------------------- */
.sectionRequest .sectionContent {
    position: relative;
}

.requestMessage {
    position: absolute;
    bottom: 5vh;
    right: 0;
}

.requestMessageBody {
    font-size: 2.0rem;
    font-style: italic;
}

/* ============================================================

    SP対応

============================================================ */
@media screen and (max-width: 1279px){
/* @media screen and (max-width: 768px){ */
    /* -----------------------------

        全体

    ----------------------------- */
    .sectionRequest {
        height: fit-content;
        background-image: linear-gradient(45deg, #CFDC28 1.5rem, transparent 0),
            linear-gradient(-45deg, #CFDC28 1.5rem, transparent 0),
            linear-gradient(135deg, #CFDC28 1.5rem, transparent 0),
            linear-gradient(-135deg, #CFDC28 1.5rem, transparent 0);
    }

    .requestGroup{
        margin-top: 5vh;
        margin-bottom: 15vh;
    }

    .requestItem {
        flex-wrap: wrap;
    }

    /* -----------------------------

        ステップ

    ----------------------------- */
    .requestItemNo {
        width: 30%;
    }

    .requestItemNoBody {
        margin-left: 0;
        margin-right: 0;
    }

    /* -----------------------------

        手順内容

    ----------------------------- */
    .requestItemText {
        width: 70%;
    }

    /* -----------------------------

        詳細

    ----------------------------- */
    .requestItemDetail {
        width: 100%;
        margin-top: 5vh;
        margin-bottom: 3vh;
    }

    .requestItemDetailBody {
        margin-left: 2.5%;
        margin-right: 2.5%;
        width: 85%;
        margin-left: 5%;
        margin-right: 5%;
    }


    /* Step1. フォーム
    ----------------------------- */
    .requestFormItem {
        width: 100%;
        display: flex;
        align-items: center;
        margin-bottom: 2.5vh;
    }

    .requestFormItemLabel {
        width: 20%;
        text-align: right;
        margin-right: 10%;
    }

    .requestFormItemValue {
        width: 70%;
    }

    .requestFormItem input{
        width: 80%;
    }

    /* Step3. SNS
    ----------------------------- */
    .btnRequestGroup {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .btnRequest {
        margin-left: 0;
        margin-right: 0;
        margin-top: 0;
        margin-bottom: 3vh;
        font-size: 1.2rem;
        width: 15rem;
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .btnRequest a{
        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }

    .btnRequest i {
        font-size: 1.5rem;
        margin-right: 2vw;
    }
    

    /* -----------------------------

        下部メッセージ

    ----------------------------- */
    .requestMessage {
        bottom: 5vh;
    }

    .requestMessageBody {
        font-size: 1.7rem;
    }
    
}