@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;700&display=swap');


/* =========================================================
   基本設定
========================================================= */

:root {
    --primary: #e4cff9;
    --dark: #21252f;
    --body: #888;
    --box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    --nav_text: #fff;
    --text: #482e04;
    --content_background_color: #f5f2f6;
    --title_background: #e3cd24;
    --border: 3px solid #d2b3d4;
    --card_border: 3px solid #6f5d70;
}


/* =========================================================
   リセット
========================================================= */

*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


/* =========================================================
   BODY
========================================================= */

body {
    font-family:
        'Sora',
        sans-serif,
        'メイリオ',
        'Meiryo',
        'Hiragino Kaku Gothic ProN',
        'ヒラギノ角ゴ ProN W3',
        sans-serif;

    line-height: 1.7;
    color: var(--text);
    background: #fffeff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

p {
    color: var(--text);
}

a {
    color: var(--dark);
}

header,
main,
footer {
    width: 100%;
    margin: 0;
    padding: 0;
}

main {
    width: 100%;
    min-height: 100vh;
}


/* =========================================================
   HEADER
========================================================= */

.button_container_header {
    display: flex;
    justify-content: center;
    border-radius: 0 0 1em 1em;
}

header {
    position: sticky;
    top: 0;
    z-index: 999;
}

.header_container {
    width: 100%;
    margin: 0 auto;
    padding: 0;

    display: flex;
    justify-content: space-around;

    background-color: var(--primary);
}

.header_inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header_img0,
.top_tel0,
.top_free0,
.top_line0 {
    width: auto;
}

.header_img0 img,
.top_free0 img,
.top_line0 img {
    width: 60%;
}

.top_tel0 img {
    width: 80%;
}

.header_sp {
    display: none;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    width: 100%;
    height: 40px;

    background: #9fb7d4;

    overflow-x: auto;
    overflow-y: hidden;
}

.nav ul {
    height: 40px;

    display: flex;
    justify-content: space-around;

    list-style: none;

    margin: 0 auto;
    padding: 0;
}

.nav ul li {
    text-align: center;
    border-left: 1px solid #eee;
}

.nav ul li:last-child {
    border-right: 1px solid #eee;
}

.nav ul li a,
.nav ul li a:link,
.nav ul li a:visited {
    display: inline-block;

    width: 12em;

    padding-top: 0.5em;
    margin: 0;

    background: #9fb7d4;

    color: #fff;
    text-decoration: none;

    font-size: 1em;
}

.nav ul li a:hover,
.nav ul li a:active {
    height: 100%;
    background: #bed7f6;
}

.nav::-webkit-scrollbar {
    height: 2px;
}

.nav::-webkit-scrollbar-track {
    margin: 0 2px;
    background: #ccc;
    border-radius: 5px;
}

.nav::-webkit-scrollbar-thumb {
    background: #f605a6;
    border-radius: 7px;
}


/* =========================================================
   見出し
========================================================= */

.headline h2 {
    position: relative;

    padding: 1rem 1rem 1rem 2.5rem;

    border: 2px solid #f4bcea;

    background-color: #fcf0f1;

    background-image:
        linear-gradient(
            90deg,
            transparent 0 30px,
            #fff 30px
        ),
        repeating-linear-gradient(
            135deg,
            #f4bcca 0 3px,
            transparent 3px 6px
        );

    color: var(--text) !important;

    font-size: 2em;
    font-weight: bold;
}


/* =========================================================
   パンくず
========================================================= */

.bread ol {
    display: flex;

    width: 95%;

    margin: 0 auto;
    padding-left: 0;

    text-align: center;
    line-height: 1em;
}

.bread ol li {
    display: flex;
    list-style: none;

    margin-right: 5px;
    margin-top: 0;
    padding-top: 1em;

    font-size: 100%;
}

.bread ol li a:hover {
    color: #f1a4eb !important;
}


/* =========================================================
   NEWSナビゲーション
========================================================= */

.news_nav {
    width: 100%;
    padding-top: 0.2em;
}

.news_nav ul {
    width: 100%;

    margin: 0;
    padding: 0;

    text-align: center;
}

.news_nav li {
    display: inline-block;

    list-style: none;

    margin: 0 10px;
}

.news_nav a {
    display: inline-block;

    padding: 0.5em 1em;

    color: var(--text);
    text-decoration: none;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

    transition:
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.news_nav a:hover {
    background-color: #c6e0ef;

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.study-step-box a {

    display: block;

    width: fit-content;

    max-width: 100%;

    margin: 25px auto 5px;

    padding: 11px 30px;

    background: #0077cc;

    color: #fff;

    font-size: 16px;

    font-weight: bold;

    line-height: 1.5;

    text-decoration: none;

    border-radius: 30px;

    box-sizing: border-box;

    transition: 0.3s ease;

    position: relative;

    z-index: 10;

    pointer-events: auto;

}


.study-step-box a:hover {

    opacity: 0.8;

}


/* =========================================================
   =========================================================
   NEWSページ
   Bootstrapを使用しない独立レイアウト
   =========================================================
========================================================= */

.news {
    width: 100%;

    margin-top: 2em;
    padding: 50px 0;
}


/* =========================================================
   NEWS コンテナ
========================================================= */

.newspage_container {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   NEWSタイトル
========================================================= */

.news_title {
    position: relative;

    width: 100%;

    margin: 0 0 20px;

    border-bottom: 3px solid #011afa;
}

.news_title::after {
    position: absolute;

    content: "";

    display: block;

    width: 15%;

    bottom: -3px;

    border-bottom: 3px solid #ff0000;
}


/* =========================================================
   NEWSコンテンツ
========================================================= */

.newspage_contents {
    width: 100%;

    margin-top: 20px;
}


/* =========================================================
   NEWS画像＋本文
========================================================= */

.newspage_content_inner {
    width: 100%;

    display: flex;

    align-items: flex-start;

    gap: 30px;
}


/* =========================================================
   NEWS画像
========================================================= */
.newspage_image {
    width: 30%;
    flex: 0 0 22%;
}

.newspage_image img {
    display: block;
    width: 100%;
    height: auto;
}


/* =========================================================
   NEWS本文
========================================================= */

.newspage_text {
    width: calc(72% - 30px);

    flex: 0 0 calc(72% - 30px);
}

.newspage_text h4 {
    margin-top: 0;
    margin-bottom: 15px;
}


/* =========================================================
   NEWS本文内ボックス
========================================================= */

.study-step-box {
    width: 100%;

    padding: 20px;

    background: #f8fbff;

    border-radius: 10px;

    line-height: 1.8;
}

.study-step-box p {
    margin-bottom: 15px;
}

.study-step-box p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   NEWS本文内チェックリスト
========================================================= */

.study-step-list {
    list-style: none;

    margin: 20px 0;
    padding: 0;
}

.study-step-list li {
    position: relative;

    margin-bottom: 10px;
    padding: 12px 15px 12px 45px;

    background: #fff;

    border-left: 5px solid #4CAF50;
    border-radius: 8px;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);

    line-height: 1.8;
}

.study-step-list li:last-child {
    margin-bottom: 0;
}

.study-step-list li::before {
    content: "✓";

    position: absolute;

    left: 15px;
    top: 12px;

    color: #4CAF50;

    font-size: 18px;
    font-weight: bold;
}


/* =========================================================
   NEWS内リンク・ボタン
========================================================= */

.news a {
    color: #333;
    text-decoration: none;
}


/* =========================================================
   NEWS日付
========================================================= */

.news_inner_box {
    width: 100%;

    margin-top: 25px;
}

.news_list_date {
    position: relative;

    display: flex;
    align-items: center;

    margin-bottom: 15px;
}

.news_list_date span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}


/* =========================================================
   NEWSページへ戻るボタン
========================================================= */

.back-button-container {
    display: inline-block;

    margin-top: 1em;
    margin-right: 8px;
    margin-bottom: 12px;

    padding: 0.5em;

    border: 1px solid var(--text);
    border-radius: 10px;
}

.back-button {
    display: inline-block;

    margin: 0;
    padding: 3px 6px;

    color: var(--text);

    border: none;
    border-radius: 3px;

    cursor: pointer;
}


/* =========================================================
   NEWS一覧用カード
   ※NEWS一覧ページで使用
========================================================= */

.news_contents {
    display: flex;
    flex-wrap: wrap;

    justify-content: space-between;

    margin: 0;
}

.news_card {
    flex: 0 1 calc(50% - 20px);

    margin: 0 5px 20px;

    overflow: hidden;

    background: none;
    border: none;
}

.news_card p {
    text-align: left;
}

.news_card .card-img-top {
    width: 100%;
    height: auto;

    transition: transform 0.8s;
}

.news_card:hover .card-img-top {
    transform: scale(1.1);
}

.news_card .card-body {
    padding: 1rem;

    white-space: normal;
}

.news_card .card-text {
    display: -webkit-box;

    overflow: hidden;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;

    text-overflow: ellipsis;

    white-space: normal;
}


/* =========================================================
   NEWS一覧の矢印
========================================================= */

.arrow {
    position: absolute;

    right: 0;

    width: 25px;
    height: 1px;

    margin-left: 2em;

    background: var(--text);
}

.arrow::after {
    content: "";

    position: absolute;

    right: 0;
    bottom: 2px;

    display: block;

    width: 6px;
    height: 1px;

    background: var(--text);

    transform: rotate(45deg);
}

.news_list_date .arrow {
    width: 25px;
    height: 1px;

    margin-left: 5px;

    background: #707070;
}


/* =========================================================
   NEWS一覧
========================================================= */

.news ul {
    list-style: none;

    margin: 0;
    padding: 0;
}

.news_list_date {
    display: flex;
    align-items: center;
}

/* =========================================================
   CTAボタンエリア
   PC・タブレット・スマホすべて横並び
========================================================= */

.button_area {
    width: 100%;
    max-width: 700px;

    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;

    justify-content: center;
    align-items: center;

    gap: 20px;

    margin: 30px auto 10px;
    padding: 0 20px;
}


/* =========================================================
   CTA画像
========================================================= */

.area_btnimg {
    width: calc(50% - 10px);
    max-width: 520px;

    flex: 1 1 0;

    margin: 0;

    padding: 0;
}

.area_btnimg a {
    display: block;

    width: 100%;
}

.area_btnimg img {
    display: block;

    width: 100%;
    height: auto;
}



/* =========================================================
   その他画像
========================================================= */

.inner_box_img {
    width: 100%;

    margin: 0 auto;
}

.inner_box_img img {
    display: block;

    width: 100%;

    margin: 0 auto;

    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}


/* =========================================================
   スライダー
========================================================= */

.slider-container {
    display: flex;

    overflow: hidden;
}

.freebtn3 {
    width: 200px;

    flex-shrink: 0;
}

.freebtn3 img {
    width: 100%;
    height: auto;
}


/* =========================================================
   FOOTER
========================================================= */

.footer_container {
    display: flex;
    justify-content: space-around;

    padding: 0;

    background-color: var(--primary);

    border: 0;

    font-style: normal;
    font-weight: 400;
}

.footer_inner {
    width: 100%;

    margin: auto;
}

.footer_index1 a img {
    width: 80%;
}

.footer_index1_inner ul,
.main7_sitemap ul {
    width: 100%;
    max-width: 300px;

    list-style: none;

    padding: 0;
}

.main7_sitemap ul li {
    position: relative;

    width: 100%;

    margin: 10px 0;
    padding-left: 24px;
}

.main7_sitemap ul li a {
    color: inherit;
    text-decoration: none;
}

.main7_sitemap ul li a:hover {
    color: #cc87d5;
}

.main7_sitemap ul li::before {
    content: "\25BA";

    position: absolute;

    left: 0;

    color: #cc87d5;
}


/* =========================================================
   その他
========================================================= */

.exp_textsm {
    display: block;
}

.bd-placeholder-img-lg {
    font-size: 3.5em;
}


/* =========================================================
   MENU MODAL
========================================================= */

.menu-modal {
    display: none;

    position: fixed;

    z-index: 9999;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);
}

.menu-modal-content {
    width: 90%;
    max-width: 1000px;

    margin: 50px auto;
    padding: 20px;

    background: #fff;

    box-sizing: border-box;
}

/* =========================================================
   NEWSページ下部のリンクボタン
   文字色を枠線と同じ色にする
========================================================= */

.newspage_text .back-button-container .back-button {
    color: #6b4a20 !important;
    text-decoration: none;
}

/* マウスを乗せたとき */
.newspage_text .back-button-container .back-button:hover {
    color: #6b4a20 !important;
    text-decoration: none;
}

/* =========================================================
   ブログはこちら
   ボタン
========================================================= */

.newspage_text .blog-button-container {
    width: 100%;
    margin: 25px 0 10px;
    text-align: left;
}

.newspage_text .blog-button-container .blog-button {
    display: inline-block;

    padding: 12px 28px;

    background: #0077cc !important;
    color: #ffffff !important;

    border: 1px solid #0077cc;

    border-radius: 8px;

    font-size: 17px;
    font-weight: bold;

    line-height: 1.5;

    text-decoration: none !important;

    box-sizing: border-box;

    transition: opacity 0.2s ease;
}


/* マウスを乗せたとき */

.newspage_text .blog-button-container .blog-button:hover {
    background: #0077cc !important;
    color: #ffffff !important;
    opacity: 0.85;
}



/* =========================================================
   1399px以下
========================================================= */

@media screen and (max-width: 1399px) {

    .score_up_second_title img {
        width: 100%;
    }

    .score_image {
        display: block;

        width: 100%;
    }

}


/* =========================================================
   1280px以下
========================================================= */

@media screen and (max-width: 1280px) {

    .nav ul li a,
    .nav ul li a:link,
    .nav ul li a:visited {
        width: 8em;

        padding-top: 0.6em;

        font-size: 1em;
    }

    .headline h2 {
        font-size: 1em;
    }

}


/* =========================================================
   1024px以下
========================================================= */

@media screen and (max-width: 1024px) {

    .news_list_item a {
        display: block;
    }

}


/* =========================================================
   959px以下
========================================================= */

@media screen and (max-width: 959px) {

    .cta_btn .cta_btn-tel img,
    .cta_btn .cta_btn-contact img {
        width: 70%;

        margin: 0.5em;
    }

    a.text-light {
        font-size: 16px;
    }

    .field2 {
        width: 100%;
        max-width: 650px;
    }

    .list-group {
        width: 400px;
    }

    .fade h2 {
        padding-top: 3em;
    }

    .line-bc {
        max-width: 900px;
    }

    .planb_inner {
        display: block;
    }

    .planb_inner_text {
        font-size: 1em;
    }


    /* =========================================
       NEWSページ
    ========================================= */

     .newspage_content_inner {
        flex-direction: column;
        gap: 20px;
    }

    .newspage_image {
        width: 100%;
        max-width: 400px;
        flex: none;
        margin: 0 auto;
    }

    .newspage_text {
        width: 100%;
        flex: none;
        padding-left: 0;
    }

  

}


/* =========================================================
   768px以下
========================================================= */

@media screen and (max-width: 768px) {

    h2,
    h3,
    h4,
    .heading_sub {
        margin-top: 0 !important;

        font-size: 1em !important;
    }

    h5 {
        font-size: 0.8em;
    }


    /* =========================================
       NEWSナビ
    ========================================= */

    .news_nav {
        font-size: 0.8em;
    }


    /* =========================================
       共通エリア
    ========================================= */

    .company_main,
    .support_area,
    .area_main,
    .Quotation,
    .experience,
    .free_lessons,
    .pass,
    .priceA,
    .priceB,
    .qa,
    .score_up,
    .to_start_main,
    .button_area {
        padding: 1em;
    }


    /* =========================================
       HEADER
    ========================================= */

    .header_inner {
        display: none;
    }

    .header_sp {
        position: relative;

        display: flex;

        justify-content: space-between;
        align-items: center;
    }

    .header_img img {
        width: 80%;
    }

    .top_tel img,
    .top_free img,
    .top_line img {
        width: 100%;
    }


    /* =========================================
       CTA
    ========================================= */

    .button_area {
        width: 100%;

        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;

        gap: 10px;

        margin-top: 30px;
        padding: 0 10px;
    }

    .area_btnimg {
        width: calc(50% - 5px);

        flex: 1 1 0;

        margin: 0;
        padding: 0;
    }

    .area_btnimg img {
        width: 100%;
        height: auto;
    }


    /* =========================================
       コンテンツ
    ========================================= */

    .contents_title {
        margin-top: 1em !important;
    }

    .main_pagetop p {
        font-size: 0.8em;
    }


    /* =========================================
       FOOTER
    ========================================= */

    .footer_inner {
        width: 100%;

        flex-direction: column;
    }

    .footer_index1,
    .footer_index2,
    .footer_index3 {
        margin: 3% 0;

        font-size: 0.8em;
    }

    .footer_index3 {
        margin-top: 0 !important;
    }

    .m-3.footer_index1_inner ul,
    .main7_sitemap ul {
        padding: 0;
    }

    .footer_index1_inner ul {
        max-width: 100%;
    }

    .main7_sitemap ul li {
        width: 100%;

        margin: auto;
    }

    .footer_logo {
        width: 100%;
        max-width: 300px;
    }

    .footer_index2 .inner_box,
    .footer_index3 .inner_box {
        width: 50%;

        margin: 0 auto;
    }

    .footer_inner,
    .footer_index1,
    .footer_index2,
    .footer_index3,
    .m-3.footer_index1_inner ul,
    .main7_sitemap ul,
    .main7_sitemap ul li,
    .innner_box,
    .innner_box h4 {
        word-wrap: break-word;

        overflow-wrap: break-word;
    }


    /* =========================================
       CTA画像
    ========================================= */

    .area_btnimg {
        width: 50%;

        padding: 2%;

        margin: 0 auto;
    }

    .area_btnimg img {
        width: 100%;
    }


    /* =========================================
       パンくず
    ========================================= */

    .bread {
        margin: 0;
        padding: 0;

        font-size: 0.8em;
    }


    /* =========================================
       NEWS一覧
    ========================================= */

    .news {
        padding-top: 1em;
        padding-bottom: 1em;
    }

    .news_card {
        width: 50% !important;

        font-size: 0.8em !important;

        white-space: normal;
    }

    .news_contents {
        display: flex;

        flex-wrap: wrap;

        justify-content: center;

        margin: 0;
    }

    .news_list_item a {
        font-size: 0.8em;
    }

    .news_contents p {
        font-size: 0.8em;
    }

    .news span {
        font-size: 0.8em;
    }


    /* =========================================
       NEWS詳細ページ
    ========================================= */

    .newspage_container {
        padding: 0 15px;
    }

    .newspage_contents {
        margin-top: 15px;
    }

    .newspage_content_inner {
        flex-direction: column;

        gap: 15px;
    }

    .newspage_image {
        width: 100%;
        max-width: 500px;

        flex: none;

        margin: 0 auto;
    }

    .newspage_text {
        width: 100%;

        flex: none;

        margin-top: 0;

        padding-left: 0;
    }


    /* =========================================
       NEWS本文
    ========================================= */

    .study-step-box {
        padding: 15px;
    }

    .study-step-list li {
        padding: 10px 12px 10px 40px;
    }

    .study-step-list li::before {
        left: 12px;
        top: 10px;
    }


    /* =========================================
       NEWS戻るボタン
    ========================================= */

    .back-button-container {
        padding: 0.3em;

        border-radius: 8px;
    }

    .back-button {
        padding: 2px 4px;

        font-size: 0.8em;
    }


    /* =========================================
       見出し
    ========================================= */

    .contents_title {
        margin-top: 1em !important;
    }

}


/* =========================================================
   576px以下
========================================================= */

@media screen and (max-width: 576px) {

    .contents_title {
        margin-top: 2em;
    }

    .link_btn {
        margin-top: 1em !important;
        margin-bottom: 2em;
    }


    /* =========================================
       NAV
    ========================================= */

    .nav {
        width: 100%;
        height: 40px;

        background: #9fb7d4;

        overflow-x: auto;
        overflow-y: hidden;
    }

    .nav ul {
        height: 40px;

        display: flex;

        margin: 0 auto 2px auto;
        padding: 0;

        list-style: none;
    }

    .nav ul li {
        text-align: center;

        border-left: 1px solid #eee;
    }

    .nav ul li:last-child {
        border-right: 1px solid #eee;
    }

    .nav ul li a,
    .nav ul li a:link,
    .nav ul li a:visited {
        width: 8em;

        padding-top: 0.7em;

        font-size: 0.8em;
    }


    /* =========================================
       その他
    ========================================= */

    .heading {
        margin-top: 2em !important;
    }

    .support_container img {
        margin-top: 0;
    }

    .main_price img {
        width: 110%;
    }

    .support_area {
        padding: 0;
    }

    .contents_title p {
        font-size: 0.8em;
    }

    .sample1 figure img {
        width: 100%;
    }

    .ess_imgD {
        display: none;
    }

    .ess_spimgD {
        display: block;

        width: 100%;
    }


    /* =========================================
       NEWS詳細ページ
    ========================================= */

    .newspage_container {
        padding: 0 10px;
    }

    .study-step-box {
        padding: 12px;
    }
    .newspage_text .blog-button-container {
        margin: 20px 0 10px;
        text-align: center;
    }

    .newspage_text .blog-button-container .blog-button {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;

        padding: 12px 20px;

        font-size: 16px;
    }
}


/* =========================================================
   330px以下
========================================================= */

@media screen and (max-width: 330px) {

    .news_list_date span {
        display: block;

        margin-top: 0.5em;
    }

}