@charset "UTF-8";

/* LINE誘導CTA
================================================= */

/* レイアウト
------------------------------------ */
.page-request {
    width: 1000px;
    margin: auto;
}

.page-request * {
    box-sizing: border-box;
}

.page-request p {
    font-size: 16px;
    line-height: 1.7;
}

.page-request-line {
    margin-top: 60px;
}

.is-sp-visibl {
    display: none;
}

@media screen and (max-width: 1050px) {
    .page-request {
        width: 90%;
        margin: auto;
    }
}

@media screen and (max-width: 768px) {
    .page-request-line {
        margin-top: 80px;
    }
}

@media screen and (max-width: 550px) {
    .page-request-line {
        margin-top: 20px;
    }

    .is-sp-visibl {
        display: block;
    }
}

/* リンク効果
------------------------------------ */
.page-request a {
    text-decoration: none;
}

.page-request a:hover {
    opacity: 0.8;
}

/* タイトル
------------------------------------ */
.page-request__title-primary {
    padding: 0.5em 0;
    /* margin-top: 40px; */
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}

.page-request__title-secondary {
    padding: 1rem 1rem 1rem 1rem;
    margin: 30px 0 20px 0;
    font-size: 30px;
    border-bottom: solid 1px #ccc;
    border-left: solid 1px #ccc;
}

.page-request__title-tertiary {
    margin-bottom: 20px;
    font-size: 25px;
}

@media screen and (max-width: 768px) {
    .page-request__title-primary {
        font-size: 28px;
    }

    .page-request__title-secondary {
        font-size: 24px;
    }
}

@media screen and (max-width: 550px) {
    .page-request__title-primary {
        font-size: 20px;
    }

    .page-request__title-secondary {
        margin-top: 0;
        font-size: 18px;
    }

    .page-request__title-tertiary {
        font-size: 18px;
    }
}

/* テキスト、画像
------------------------------------ */
.page-request__text {
    font-size: 16px;
}

.page-request__img {
    padding: 40px 0;
}

@media screen and (max-width: 550px) {
    .page-request__img {
        padding: 20px 0;
    }
}

/* ページ内リンクボタン
------------------------------------ */
.page-request-internal-link_row {
    display: flex;
    justify-content: space-between;
    width: 550px;
    margin: 0 auto;
    margin-top: 80px;
}

.page-request-internal-link_item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 47%;
    padding: 15px 20px 15px 10px;
    font-size: 16px;
    color: #fff;
}

.page-request-internal-link_item {
    position: relative;
}

.page-request-internal-link_item::before {
    position: absolute;
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-left: 165px;
    content: '';
    background: url(../img/arrow-down.png) no-repeat;
    background-size: contain;
}

.page-request-internal-link_item.link_doc {
    background: #2076c6;
}

.page-request-internal-link_item.link_experience {
    background: #ad0808;
}

@media screen and (max-width: 768px) {
    .page-request-internal-link_row {
        margin-top: 40px;
    }
}

@media screen and (max-width: 550px) {
    .page-request-internal-link_row {
        width: 100%;
    }

    .page-request-internal-link_item {
        padding: 7px 10px 8px 5px;
        line-height: 1.5;
    }

    .page-request-internal-link_item::before {
        margin-left: 115px;
    }
}

/* バナー画像
------------------------------------ */
.page-request__img {
    width: 600px;
    max-width: 100%;
    margin: auto;
}

@media screen and (max-width: 768px) {
    .page-request__img {
        width: 50%;
    }
}

@media screen and (max-width: 550px) {
    .page-request__img {
        width: 100%;
    }
}

/* ステップ
------------------------------------ */
.page-request__step {
    margin-top: 20px;
}

.page-request__step-text {
    margin-top: 20px;
}

.page-request__step-label {
    display: inline-block;
    margin-right: 1rem;
    font-weight: bold;
    color: #07b53b;
}

.page-step__img {
    width: 250px;
    max-width: 100%;
    margin: 40px auto;
}

.page-request__step-text_indent {
    text-indent: 4.2rem;
}

@media screen and (max-width: 1000px) {
    .page-request__step-text_indent {
        text-indent: 0;
    }
}

@media screen and (max-width: 768px) {
    .page-step__img {
        width: 30%;
    }
}

@media screen and (max-width: 550px) {
    .page-step__img {
        width: 50%;
    }
}

/* CTA
------------------------------------ */
.page-request__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1000px;
    padding: 30px 50px;
    margin: 0 auto;
    margin-top: 40px;
    border: solid 1px #ccc;
}

.page-request__cta-text {
    margin-right: 50px;
}

.page-request__cta-button {
    width: 45%;
}

.page-request__cta-button-link {
    display: block;
    padding: 15px 15px;
    font-size: 16px;
    color: #fff;
    text-align: center;
    border: solid 1px #ccc;
    border-radius: 50px;
}

/* 資料請求 */
.page-request__cta.cta-doc {
    background: rgba(32, 118, 198, 0.05);
}

.page-request__cta-button-link.cta-doc {
    background: #2076c6;
    border: solid 1px #2076c6;
}

.page-request__cta-button-link.cta-doc:hover {
    background: #0e5ea8;
    border: solid 1px #0e5ea8;
    opacity: 1;
}

/* 体験授業 */
.page-request__cta.cta-experience {
    background: rgba(173, 8, 8, 0.05);
}

.page-request__cta-button-link.cta-experience {
    background: #ad0808;
    border: solid 1px #ad0808;
}

.page-request__cta-button-link.cta-experience:hover {
    background: #810808;
    border: solid 1px #810808;
    opacity: 1;
}

@media screen and (max-width: 1100px) {
    .page-request__cta {
        width: 85%;
        padding: 30px 30px;
    }

    .page-request__cta-button {
        width: 50%;
    }

    .page-request__cta-button-link {
        width: 100%;
        margin: 0 auto;
    }
}

@media screen and (max-width: 900px) {
    .page-request__cta {
        display: block;
        width: 100%;
        padding: 25px 20px;
    }

    .page-request__cta-text {
        margin-right: 0;
        text-align: center;
    }

    .page-request__cta-button {
        width: 60%;
        margin: 0 auto;
    }

    .page-request__cta-button-link {
        margin-top: 15px;
    }
}

@media screen and (max-width: 750px) {
    .page-request__cta-button {
        width: 90%;
    }

    .page-request__cta {
        padding: 25px 10px;
    }
}

/* 調整 */
.page-request__contact {
    width: 85%;
    padding-bottom: 0 !important;
    margin: 0 auto;
}

.page-request__inner {
    width: 100%;
    padding: 0 0 !important;
    padding-bottom: 0 !important;
    margin-top: 60px !important;
}

@media screen and (max-width: 750px) {
    .page-request__contact {
        width: 100%;
    }
}

.is-sp-visibl {
    display: none;
}

@media screen and (max-width: 750px) {
    .is-sp-visibl {
        display: block;
    }
}
