@charset "utf-8";

/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */
@media screen and (max-width: 768px) {


    /* ==================================================================================
common
================================================================================== */
    body {
        font-size: 13px;
        line-height: 1.8;
        overflow: hidden;
        word-break: break-all;
    }

    .inner,
    .inner_mini {
        padding: 0 5%;
    }

    .inner .inner_mini {
        padding: 0;
    }

    .sec {
        margin: 50px 0;
    }

    .pc {
        display: none !important;
    }

    img {
        width: 100%;
        vertical-align: bottom;
        object-fit: cover;
    }

    a {
        display: inline-block;
    }

    a:before,
    a:after {
        transition: var(--anime);
    }





    /* ==================================================================================
インタビュー形式表示
================================================================================== */
    .article_area .question {
        margin: 20px 0;
        font-weight: bold;
        position: relative;
        padding: 30px 0 0 0;
    }

    .article_area .question:before {
        content: "";
        position: absolute;
        width: 28px;
        height: 1px;
        background: #bbb;
        left: 0;
        top: 14px;
        font-size: 1.8em;
    }

    .article_area .answer span {
        color: #AF7E3F;
        font-weight: bold;
        display: block;
    }

    /* ==================================================================================
line_box
================================================================================== */
    .line_box {
        border: 1px solid #ccc;
        padding: 15px 5%;
        margin: 20px 0;
    }

    /* ==================================================================================
bg_box
================================================================================== */
    .bg_box {
        background: #eee;
        padding: 15px 5%;
        margin: 20px 0;
    }


    /* ==================================================================================

パンくずリスト

================================================================================== */
    .path_list {
        font-size: 0.8em;
        margin: 15px 0 0 0;
    }

    .path_list ul {}

    .path_list li {
        display: inline-block;
        position: relative;
        line-height: 1.3;
        margin: 5px 0;
    }

    .path_list li+li {
        padding: 0 0 0 20px;
    }

    .path_list li+li:before {
        content: "";
        width: 4px;
        height: 4px;
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
        border: solid var(--boder);
        border-width: 1px 1px 0 0;
    }

    .path_list a {}

    .path_list a:hover {
        color: var(--color-02);
    }



    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

アーカイブページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */
    .archive_area {
        margin: 20px 0;
    }

    .archive_area .archive_name {
        font-size: 1.2em;
        padding: 0 0 10px 0;
        margin: 0 0 20px 0;
        border-bottom: 1px solid var(--boder);
    }

    .archive_list {}

    .archive_list a {
        display: block;
        line-height: 1.5;
    }

    .archive_list a:hover {
        opacity: 0.7;
    }

    .archive_list li {
        margin: 40px 0;
    }

    .archive_list .img {}

    .archive_list .text {}

    .archive_list .text .box {
        margin: 10px 0;
        display: flex;
        grid-gap: 15px;
    }

    .archive_list .text .box .day {}

    .archive_list .text .box .day,
    .archive_list .text .box .cate {
        line-height: 1;
    }

    .archive_list .img {}

    .archive_list .img img {
        width: 100%;
        height: 200px;
    }


    /* pagination
======================================== */
    .pagination {
        text-align: center;
        margin: 30px 0 50px 0;
    }

    .pagination ul {
        display: flex;
        justify-content: center;
        grid-gap: 8px;
    }

    .pagination li {}

    .pagination a,
    .pagination span {
        border: 1px solid var(--boder);
        width: 30px;
        height: 30px;
        line-height: 30px;
        display: block;
    }

    .pagination a:hover {
        background: #EFEFEF;
    }

    .pagination .current {
        background: var(--color-01);
        color: #fff;
    }

    .pagination .prev,
    .pagination .next {
        font-size: 0;
        position: relative;
    }

    .pagination .prev:before,
    .pagination .next:before {
        content: "";
        width: 10px;
        height: 10px;
        border: solid var(--boder);
        border-width: 1px 1px 0 0;
        position: absolute;
        left: 50%;
        top: 50%;
        z-index: 1;
    }

    .pagination .prev:before {
        transform: translate(-20%, -50%) rotate(-135deg);
    }

    .pagination .next:before {
        transform: translate(-80%, -50%) rotate(45deg);
    }



    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

ブログページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */
    .blog_page {
        padding: 15px 5%;
    }

    .blog_area {}

    .article_box {
        display: flex;
        grid-gap: 30px;
    }

    .article_box .day {
        margin: 0;
    }

    .article_box .cate:before {
        line-height: 2;
    }

    .article_header .single-title {
        font-size: 1.3em;
        line-height: 1.5;
        margin: 10px 0 15px 0;
        font-weight: bold;
    }

    .article_area {}

    .article_area img {
        width: 100%;
        margin: 10px 0;
    }

    .article_area .main_img {
        margin: 0 0 10px 0;
    }

    .article_area .main_img img {
        height: 200px;
    }

    .article_area p {
        line-height: 1.6;
        margin: 15px 0;
    }

    .article_area b,
    .article_area strong {
        font-weight: bold;
    }

    /* link
======================================== */
    .article_area a {
        color: #488bf1;
    }

    .article_area a:hover {
        color: #92bdff;
    }

    /* table
======================================== */
    .article_area table {
        width: 100%;
    }

    .article_area table th,
    .article_area table td {
        border: 1px solid #ccc;
        padding: 5px;
        line-height: 1.5;
        font-size: 0.9em;
        vertical-align: middle;
    }

    .article_area table th {
        background: #eee;
        font-weight: bold;
    }

    /* title
======================================== */
    .article_area h2 {
        border-bottom: 1px solid var(--color-01);
        font-size: 1.2em;
        line-height: 1.5;
        padding: 15px 0;
        margin: 30px 0 20px;
        font-weight: bold;
    }

    .article_area h3 {
        border-left: 1px solid var(--color-01);
        font-size: 1.1em;
        line-height: 1.5;
        margin: 30px 0 20px;
        padding: 0 0 0 15px;
        font-weight: bold;
    }

    .article_area h4 {
        background: #F0F3F7;
        line-height: 1.5;
        margin: 30px 0 10px;
        padding: 10px 15px;
        font-weight: bold;
    }

    .article_area p+h2,
    .article_area p+h3,
    .article_area p+h4 {
        margin-top: 0;
    }

    /* コーディネーターアイコン　写真
======================================== */
    .article_area .person {}

    .article_area .person .img {
        width: 130px;
        height: 130px;
        border-radius: 50%;
        overflow: hidden;
        margin: auto;
    }

    .article_area .person .img img {
        margin: 0;
        height: 100%;
    }

    .article_area .person .text {}

    /* プランナーボイス
======================================== */
    .article_area .planner_voice {
        display: grid;
        grid-template-columns: 0.2fr 0.8fr;
        grid-gap: 20px 0;
    }

    .article_area .planner_voice dt,
    .article_area .planner_voice dd {
        border-bottom: 1px solid #ddd;
        padding: 0 0 20px 0;
    }

    .article_area .planner_voice p {
        margin: 0 0 0 15px;
    }

    .article_area .planner_voice p .name {
        font-size: 1.2em;
    }

    .article_area .planner_voice p .name span {
        font-size: 0.7em;
    }

    .article_area .planner_voice img {
        margin: 0 0 0 5px;
    }

    /* この記事を書いたライター
======================================== */
    .author_area {}

    .saboxplugin-wrap {
        border: none;
        border: 1px solid #C2C9D4;
        padding: 30px 10%;
    }

    .author_area .title {
        background: var(--color-01);
        color: #fff;
        padding: 10px 15px;
        font-size: 1em;
        margin: 30px 0 20px 0;
    }

    .author_area .vcard.author {
        pointer-events: none;
    }

    .saboxplugin-tab {}

    .saboxplugin-tab .saboxplugin-gravatar {
        padding: 0 0 30px 0;
        width: 170px;
        float: none;
    }

    .saboxplugin-tab .saboxplugin-gravatar img {
        max-width: 80%;
    }

    .saboxplugin-tab .saboxplugin-authorname {
        margin: 0 0 30px 0;
        font-size: 1.1em;
        position: relative;
    }

    .saboxplugin-tab .saboxplugin-authorname a:hover,
    .saboxplugin-tab .saboxplugin-desc ul a:hover {
        color: var(--color-02);
    }

    .saboxplugin-tab .saboxplugin-authorname:before {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: -15px;
        width: 20%;
        height: 1px;
        background: var(--color-02);
    }

    .saboxplugin-tab .saboxplugin-authorname {}

    .saboxplugin-tab .saboxplugin-authorname {}

    .saboxplugin-tab .saboxplugin-desc {
        grid-column: 2/2;
        margin: 0;
    }

    .saboxplugin-tab .saboxplugin-desc p {
        font-size: 1em !important;
        line-height: 1.8 !important;
        margin: 0;
    }

    .saboxplugin-tab .saboxplugin-desc ul {
        margin: 10px 0 0 0;
        text-align: left;
    }

    .saboxplugin-tab .saboxplugin-desc ul li {
        margin: 10px 0 0 0;
    }

    .saboxplugin-tab .saboxplugin-desc ul a {
        position: relative;
        padding: 0 0 0 25px;
        text-decoration: none;
    }

    .saboxplugin-tab .saboxplugin-desc ul a:before {
        position: absolute;
        width: 17px;
        top: 2px;
        left: 0;
    }

    .saboxplugin-tab .saboxplugin-desc ul .instagram a:before {
        content: url(../img/bace/sns_instagram.svg);
    }

    .saboxplugin-tab .saboxplugin-desc ul .twitter a:before {
        content: url(../img/bace/sns_twitter.svg);
    }

    .saboxplugin-tab .saboxplugin-desc ul .line a:before {
        content: url(../img/bace/sns_line.svg);
    }


    /* サイドバー
======================================== */
    .side_area {}

    .side_area .title {
        border-bottom: 1px solid var(--color-01);
        font-size: 1.2em;
        padding: 10px 0;
        margin: 0 0 15px 0;
    }

    .side_area li {
        display: flex;
        grid-gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .side_area .img {
        width: 40%;
    }

    .side_area .img img {
        height: 80px;
    }

    .side_area .text {
        width: 100%;
    }

    .side_area .text .day {
        margin: 0;
    }

    .side_area .text a {
        font-size: 0.9em;
        line-height: 1.5;
        display: block;
    }


    /* SNSリンク
======================================== */
    .addtoany_share_save_container {
        margin: 20px 0;
    }

    .addtoany_share_save_container .addtoany_list {
        display: flex;
        grid-gap: 1px;
        text-align: center;
        line-height: 1;
    }

    .addtoany_share_save_container a {
        background: #F0F3F7;
        display: block;
        padding: 15px 0;
        width: 100%;
    }

    .addtoany_share_save_container a:hover {
        background: #EAEEF3;
    }

    .addtoany_share_save_container a:hover span {
        opacity: 1;
    }


    /* recommend_area
======================================== */
    .recommend_area {
        margin: 30px 0;
    }

    .recommend_area .main_title {
        font-size: 1.2em;
        line-height: 1.6;
        position: relative;
        padding: 0 0 15px 0;
    }

    .recommend_area .main_title span {
        font-size: 0.6em;
        letter-spacing: 1px;
    }

    .recommend_area .main_title:before {
        content: "";
        width: 10%;
        height: 1px;
        background: var(--color-02);
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .recommend_area .archive_list {}

    .recommend_area .btn_02 {
        width: 100%;
    }


    /* planner_contact_area
======================================== */
    .planner_contact_area {
        margin: 30px 0;
    }

    .planner_contact_area a {
        display: block;
        background: url(../img/planner_contact_area_bg.jpg) no-repeat scroll center center / cover;
        text-align: center;
        padding: 20px 15px;
        font-size: 0.8em;
        line-height: 1.5;
        letter-spacing: 1px;
        color: #fff;
        position: relative;
        transition: 0.3s;
        border-radius: 5px;
    }

    .planner_contact_area a:before {
        content: """";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #000;
        opacity: 0.3;
        transform-origin: right top;
        transform: scale(1, 0);
        transition: transform 0.3s;
    }

    .planner_contact_area a:hover:before {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }

    .planner_contact_area a span {
        position: relative;
        z-index: 1;
    }

    .planner_contact_area a:after {
        border: solid #fff;
        border-width: 1px 1px 0 0;
        width: 6px;
        height: 6px;
        left: 3%;
        content: "";
        transform: rotate(45deg) translateY(-50%);
        position: absolute;
        top: 50%;
        z-index: 1;
    }



    /* 追加修正
======================================== */
    .article_area p a {
        color: #589ada;
        position: relative;
        transition: 0.2s;
    }

    .article_area p a[target="_blank"]:before {
        content: url(../img/bace/icon_out_link.svg);
        width: 14px;
        vertical-align: -2px;
        display: inline-block;
        margin: 0 3px 0 3px;
    }

    .article_area p a:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: 0;
        background: #B1CFED;
        transform-origin: right top;
        transform: scale(0, 1);
        transition: transform 0.3s;
    }

    .article_area p a:hover:after {
        transform-origin: left top;
        transform: scale(1, 1);
    }

    .article_area p a span {
        position: relative;
        z-index: 1;
    }


    /* ul ol
======================================== */
    .article_area ul,
    .article_area ol {
        margin: 20px 0;
    }

    .article_area ul li,
    .article_area ol li {
        padding: 6px 0 6px 12px;
        position: relative;
        line-height: 1.8;
    }

    .article_area ul li:before {
        content: "";
        width: 5px;
        height: 5px;
        background: var(--color-02);
        border-radius: 50%;
        position: absolute;
        left: 0;
        top: 16px;
    }

    .article_area ol {
        counter-reset: item;
    }

    .article_area ol li {}

    .article_area ol li:before {
        content: counters(item, "") "";
        counter-increment: item;
        margin: 0 8px 0 0;
        color: var(--color-02);
        position: absolute;
        left: 0;
        top: 8px;
    }


    /* もくじ
======================================== */
    #toc_container {
        padding: 10px 5%;
        box-sizing: border-box;
        border: none;
        background: #f5f5f5 !important;
        margin: 0 0 20px 0;
    }

    #toc_container li {
        padding: 5px 0;
    }

    .article_area h2 span {
        padding-top: 10px;
        margin-top: -10px;
        pointer-events: none;
    }

    #toc_container a {
        position: relative;
        padding: 0 0 0 12px;
        font-size: 0.8em;
        line-height: 1.5;
    }

    #toc_container a span {
        position: absolute;
        left: 0;
        top: 0;
        color: var(--color-02);
    }


    /* 打消し */
    #toc_container li:before {
        content: none;
    }




    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

トップページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */



    /* ==================================================================================

記事一覧　ボタン

================================================================================== */
    .top_column_area .btn_area {
        margin: 0 0 30px 0;
        display: block;
    }

    .top_column_area .btn_area .btn {
        padding: 20px 0;
        font-size: 0.8em;
        line-height: 1;
    }

    /* ==============================
page_btn
============================== */
    .top_column_area .page_btn {
        margin: 20px 0;
        padding: 5px 5%;
        background: #eee;
    }

    .top_column_area .page_btn .btn {
        background: var(--color-01-01);
        color: #fff;
        display: block;
        text-align: center;
        margin: 10px 0;
        padding: 10px 0;
        border-radius: 100px;
        letter-spacing: 1px;
        font-size: 0.9em;
    }

    .top_column_area .page_btn .btn:before {
        background: var(--color-02-01);
    }

    .top_column_area .page_btn .btn:after {
        content: "";
        transform: rotate(45deg) translateY(-50%);
        border: solid #fff;
        border-width: 0 1px 1px 0;
        width: 5px;
        height: 5px;
        left: 25px;
    }

    /* アンカーリンク */
    [id*="page_"] {
        padding-top: 20px;
        margin-top: -20px;
        pointer-events: none;
    }



    /* ==================================================================================

記事一覧　記事一覧

================================================================================== */
    .top_column_area {
        margin: 0 0 50px 0;
    }

    .top_column_area .main_title {
        text-align: center;
        font-size: 1.2em;
        border-bottom: 1px solid var(--boder);
        padding: 10px 0;
        margin: 0 0 30px 0;
    }





    /* ブログ アイコン
======================================== */
    .day {
        font-size: 0.9em;
        color: #bbb;
        margin: 5px 0;
    }

    .day:before {
        content: url(../img/bace/icon_day.svg);
        width: 12px;
        vertical-align: -1px;
        display: inline-block;
        margin: 0 8px 0 0;
    }

    .cate {
        font-size: 0.9em;
        display: flex;
    }

    .cate:before {
        content: url(../img/bace/icon_category.svg);
        width: 12px;
        line-height: 1.5;
        display: inline-block;
        margin: 0 8px 0 0;
    }

    .cate ul {}

    .cate ul li {
        display: inline-block;
        margin: 0;
    }

    .cate ul li+li {
        margin: 0 0 0 20px;
    }

    .cate a {}

    .cate a:hover {
        opacity: 0.7;
    }


    /* ボタン
======================================== */
    .tab_content [class*="btn_"] {
        width: 100%;
        margin: 70px 0 0;
    }

    .tab_content [class*="btn_"] .btn {}



    /* ==================================================================================

【共通】　タイトル

================================================================================== */

    /* main_title_01
======================================== */
    .main_title_01 {
        text-align: center;
        font-size: 1.8em;
        letter-spacing: 1px;
        margin: 0 0 50px 0;
    }

    .main_title_01 span {
        position: relative;
        padding: 0 0 20px 0;
        display: inline-block;
    }

    .main_title_01 span:before {
        content: "";
        position: absolute;
        background: #87A3CB;
        width: 50px;
        height: 3px;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
    }



    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

下層ページ

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */



    /* ==================================================================================

【下層ページ　共通】table_bace

================================================================================== */
    .table_bace {
        width: 100%;
    }

    .table_bace th,
    .table_bace td {
        border: 1px solid var(--btn-gray-color-hover);
        padding: 35px 20px;
        line-height: 1.5;
    }

    .table_bace th {
        font-weight: bold;
    }



    /* ==================================================================================

【下層ページ　共通】split

================================================================================== */
    .split_02 {
        display: flex;
        gap: 50px;
    }

    .split_02 .box {
        width: 100%;
    }

    .split_02 li {
        border-top: none;
    }

    .split_02 li:first-child,
    .teacher_data .data_box dl dt:first-child,
    .teacher_data .data_box dl dd:nth-child(2) {
        border-top: 1px solid var(--boder-color) !important;
    }



    /* ==================================================================================

【下層ページ　共通】fl_area

================================================================================== */

    /* fl_area
======================================== */
    .fl_area {}

    .fl_img {
        display: flex;
        gap: 80px;
        margin: 80px 0;
    }

    .fl_area .fl_img:nth-child(odd) {
        flex-direction: row-reverse;
    }

    .fl_img:nth-child(even) {}

    .fl_img .img,
    .fl_img .text {
        width: 100%;
    }


    /* fl_line
======================================== */
    .fl_line {}

    .fl_line .img {
        position: relative;
    }

    .fl_line .img:before {
        content: "";
        width: 113%;
        height: 1px;
        background: var(--color-03);
        position: absolute;
        left: 0;
        top: 30px;
    }


    .fl_bg .fl_img {
        margin: 0;
        padding: 50px 0;
    }

    .fl_bg li:nth-child(odd),
    .fl_bg li:nth-child(odd) .imgs:before {
        background: var(--bg-color);
    }



    /* ==================================================================================

【下層ページ　共通】

================================================================================== */

    /* second_title
======================================== */
    .second_title {
        margin: 60px 0 0 0;
        overflow: hidden;
    }

    .second_title .inner {
        position: relative;
    }

    .second_title .img {
        margin: 0 -10% 0 auto;
        width: 80%;
    }

    .second_title .img img {
        height: 25vh;
        object-position: left;
    }

    .second_title .text {
        position: absolute;
        left: 5%;
        top: 50%;
        transform: translateY(-50%);
        width: 90%;
    }

    .second_title .title {
        font-size: 1.2em;
        line-height: 1.5;
        letter-spacing: 1px;
    }

    .second_title .text p {
        margin: 10px 0 0 0;
        width: 80%;
        font-size: 0.9em;
        line-height: 1.7;
    }

    .mini_title {
        background: linear-gradient(90deg, #F7F8FA, #EDEFF3);
        height: 75px;
    }

    .mini_title .text {
        transform: translateY(75%);
    }



    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

全ページ共通

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */

    .mini {
        font-size: 0.7em;
    }


    /* ==================================================================================

【共通】タイトル

================================================================================== */

    /* title_01
======================================== */
    .title_01 {
        text-align: center;
        margin: 80px 0 50px;
        font-size: 1.8em;
    }

    .title_01 span {
        letter-spacing: 1px;
        line-height: 1;
        position: relative;
        padding: 0 0 20px 0;
        display: inline-block;
    }

    .title_01 span:before {
        content: "";
        position: absolute;
        height: 1px;
        width: 30%;
        background: var(--color-03);
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }



    /* / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /

【共通】ボタン

/ / / / / / / / / / / / / / / / / / / / / / / / / / / / / / */

    /* common
============================== */
    [class*="btn_"] .btn {
        position: relative;
        transition: .5s;
        z-index: 2;
        overflow: hidden;
    }

    [class*="btn_"] .btn span {
        position: relative;
        z-index: 1;
    }

    [class*="btn_"] .btn:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        background: #333;
        transform-origin: right top;
        transform: scale(1, 0);
        transition: transform 0.5s;
    }

    [class*="btn_"] .btn:hover:before {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }

    /* btn_white_boder
============================== */
    .btn_white .btn {
        color: #fff;
        padding: 15px 10px 15px 0;
        border: 1px solid #fff;
        border-radius: 100px;
        width: 100%;
        letter-spacing: 1px;
        font-size: 1.3em;
        box-sizing: border-box;
    }

    .btn_white .btn:before {
        background: rgba(255, 255, 255, 0.1);
    }

    /* btn_boder
============================== */
    .btn_boder {
        text-align: center;
        margin: 30px 0;
    }

    .btn_boder .btn {
        border: 1px solid var(--color-01-01);
        padding: 15px 0;
        border-radius: 100px;
        width: 100%;
        font-size: 1.1em;
        margin: 10px 0;
    }

    .btn_boder .btn:before {
        background: rgba(83, 105, 138, 0.1);
    }

    .btn_boder.arrow_black .btn:after {
        right: 6%;
    }

    .btn_boder.arrow_black .btn:hover:after {
        right: 5%;
    }

    /* dot_more
============================== */
    .dot_more .btn {
        display: block;
        text-align: right;
    }

    .dot_more .btn .t {
        color: var(--color-01-02);
        letter-spacing: 2px;
        font-size: 0.8em;
        margin: 0 5px 0 0;
        vertical-align: 8px;
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    a:hover .btn .t {
        color: var(--color-01-01);
    }

    .dot_more .btn .d {
        background: var(--color-01-02);
        color: #fff;
        position: relative;
        width: 23px;
        height: 23px;
        border-radius: 50%;
        display: inline-block;
        overflow: hidden;
    }

    .dot_more .btn .d:before {
        content: "";
        background: var(--color-01-01);
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) scale(0);
        height: 40px;
        width: 40px;
        border-radius: 50%;
        transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    a:hover .btn .d:before {
        transform: translate(-50%, -50%) scale(1);
        transition: all 800ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    .dot_more .btn .dt {
        text-align: center;
        position: absolute;
        left: 50%;
        top: 30%;
        transform: translate(-50%, -50%);
        line-height: 0;
    }


    /* btn_bottom
============================== */
    .btn_bottom {
        background: linear-gradient(-130deg, #CADCE6, #BDD6F4, #D7CDEB);
        text-align: center;
        padding: 40px 0;
    }

    .btn_bottom .btn {
        background: #fff;
        width: 90%;
        padding: 20px 0;
        font-size: 1.1em;
        border-radius: 100px;
    }

    .btn_bottom .btn:before {
        background: var(--color-01-04);
    }

    .btn_bottom[class*="arrow_"] .btn:after {
        right: 5%;
    }

    .btn_bottom[class*="arrow_"] .btn:hover:after {
        right: 4.5%;
    }



    /* ==================================================================================

【共通】arrow

================================================================================== */

    /* common
============================== */
    [class*="arrow_"] .btn:after {
        transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        position: absolute;
        right: 8%;
        top: 50%;
        transform: translateY(-50%);
        line-height: 0;
        z-index: 1;
    }

    [class*="arrow_"] .btn:hover:after {
        right: 7%;
    }


    /* arrow_white
======================================== */
    .arrow_white .btn:after {
        content: url(../img/bace/arrow_white.svg);
        width: 20x;
    }

    /* arrow_black
======================================== */
    .arrow_black .btn:after {
        content: url(../img/bace/arrow_black.svg);
        width: 20px;
    }




    /* ==================================================================================

【共通】switch

================================================================================== */
    .switch {
        position: relative;
        display: inline-block;
        text-decoration: none;
        transition: 0.3s;
    }

    .switch:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--btn-black-color);
        transition: transform 0.5s;
        opacity: 0.5;
    }

    .switch:hover:after {}

    .switch span {
        position: relative;
        z-index: 1;
    }



    /* ★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★

共通パーツ　ヘッダー　フッター

★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★　★ */


    /* ==================================================================================

header

================================================================================== */
    .header {
        position: fixed;
        z-index: 10000;
        top: 0;
        left: 0;
        height: 60px;
        width: 100%;
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }


    /* logo
======================================== */
    .header .logo {
        position: absolute;
        left: 5%;
        top: 50%;
        width: 50%;
        transform: translateY(-50%);
    }

    .header .top {
        display: none;
    }


    /* ==================================================================================

全画面メニュー

================================================================================== */

    /* menu
======================================== */
    .menu {
        width: 60px;
        height: 50px;
        position: fixed;
        right: 5px;
        top: 0;
        z-index: 99;
        cursor: pointer;
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    .header.fixed .menu {
        top: -100px;
    }

    .menu.active {}

    .menu_line {
        background: #504F5D;
        display: block;
        height: 2px;
        position: absolute;
        width: 50%;
        left: 50%;
        transform: translateX(-50%);
        transition: all .2s linear;
    }

    .menu_line_top {
        top: 14px;
    }

    .menu_line_center {
        top: 26px;
    }

    .menu_line_bottom {
        bottom: 10px;
    }

    .menu.active .menu_line,
    .tel_menu_close.active .menu_line {
        background: #fff;
        left: 15px;
    }

    .menu.active .menu_line_top,
    .menu.active .menu_line_center,
    .tel_menu_close.active .menu_line_top,
    .tel_menu_close.active .menu_line_center {
        top: 25px;
        transform: rotate(45deg);
    }

    .menu.active .menu_line_center,
    .tel_menu_close.active .menu_line_center {
        opacity: 0;
    }

    .menu.active .menu_line_bottom,
    .tel_menu_close.active .menu_line_bottom {
        top: 25px;
        transform: rotate(-45deg);
    }


    /* gnav
======================================== */
    .gnav {
        background: var(--color-01-01);
        background-size: cover;
        display: none;
        height: 100%;
        position: fixed;
        width: 100%;
        z-index: 98;
        top: 0;

        overflow-y: scroll;
        -ms-overflow-style: none;
        /* IE, Edge 対応 */
        scrollbar-width: none;
        /* Firefox 対応 */
    }

    .gnav::-webkit-scrollbar {
        /* Chrome, Safari 対応 */
        display: none;
    }

    .gnav_wrap {
        align-items: center;
        display: flex;
        position: absolute;
        width: 100%;
        height: 100%;
    }

    .gnav_inner {
        display: flex;
        position: absolute;
        left: 50%;
        top: 5%;
        transform: translateX(-50%);
        width: 90%;
        padding: 0 0 30px 0;
    }

    .gnav_inner ul {
        width: 100%;
    }

    .gnav_menu a {
        color: #fff;
        display: block;
        padding: 15px 5px;
        position: relative;
        letter-spacing: 1px;
    }

    .gnav_menu a:after,
    .gnav_menu a:before {
        content: "";
        width: 100%;
        height: 1px;
        background: #fff;
        position: absolute;
        bottom: 0;
        left: 0;
        transform-origin: right bottom;
        transform: scale(0, 1);
        transition: transform 600ms;
        opacity: 0.8;
    }

    .gnav_menu a:after {
        background: var(--color-01-02);
        transform: scale(1, 1);
        width: 100%;
    }

    .gnav_menu a:hover:before {
        transform-origin: left top;
        transform: scale(1, 1);
        transition: transform 500ms;
    }

    .close {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }

    body.fixed {
        position: fixed;
        width: 100%;
    }



    /* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

フッター固定　contact

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
    .header .contact {
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        position: fixed;
        left: 0;
        bottom: 0;
        display: flex;
        width: 100%;
    }

    .header .contact a {
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #fff;
        letter-spacing: 1px;
        font-weight: normal;
    }

    .header .contact .login {
        background: #53698A;
    }

    .header .contact .entry {
        background: var(--color-02-01);
    }

    .header .contact a:after {
        transform-origin: right top;
        transform: scale(1, 0);
    }

    .header .contact a:hover:after {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }

    .header .contact a img {
        width: 20px;
        vertical-align: -5px;
        margin: 0 10px 0 0;
    }



    /* scroll second
======================================== */
    .header.scroll {
        background: rgba(255, 255, 255, 0.8)
    }

    .header.scroll .logo .second {
        display: inline-block !important;
    }

    .header.scroll .logo .top {
        display: none;
    }

    .header.scroll .gnav_menu a,
    .second_page .gnav_menu a {}

    .header.scroll .gnav_menu a span:before,
    .second_page .gnav_menu a span:before {
        background: var(--text);
    }



    /* ==================================================================================

header fixed

================================================================================== */
    .header.fixed {
        top: -100px;
    }

    .header.fixed .contact {
        bottom: -60px;
    }


    /* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

register_area

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
    .register_area {
        position: relative;
        background: var(--color-02-01);
    }

    .register_area:before {
        content: "";
        background: var(--color-02-01);
        width: 100%;
        height: 100%;
        position: absolute;
        mix-blend-mode: multiply;
        z-index: 2;
    }

    .register_area .img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        z-index: 1;
        opacity: 0.4;
    }

    .register_area .img img {
        width: 100%;
        height: 100%;
    }

    .register_area .text {
        position: relative;
        z-index: 3;
    }

    .register_area .main_title {
        text-align: center;
        padding: 30px 0 20px;
        font-size: 1.3em;
        line-height: 1.3;
        color: #fff;
    }

    .register_area .main_title span {
        color: var(--main-color-03);
        font-size: 0.7em;
        letter-spacing: 2px;
    }

    .register_area ul {
        text-align: center;
        padding: 0 0 20px 0;
    }

    .register_area li {
        width: 100%;
        margin: 0 0 20px 0;
    }

    .register_area li a {
        color: #fff;
        border: 1px solid #71757B;
        border-radius: 3px;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .register_area li a:before {
        content: "";
        background: rgba(10, 17, 27, 0.3);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;

        transform-origin: right top;
        transform: scale(1, 0);
        transition: transform 0.5s;
    }

    .register_area li a:hover:before {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }

    .register_area li .title {
        font-size: 1.2em;
        padding: 15px 0 10px;
        z-index: 1;
        position: relative;
    }

    .register_area li p {
        padding: 0 10% 20px 10%;
        text-align: left;
        line-height: 1.5;
        font-size: 0.9em;
        z-index: 1;
        position: relative;
    }

    .register_area li .btn {
        display: block;
        background: rgba(0, 20, 50, 0.2);
        border-radius: 0 0 3px 3px;
        position: relative;
        border-top: 1px solid #71757B;
        font-size: 0.8em;
        letter-spacing: 2px;
        padding: 13px 0;
        transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        z-index: 1;
    }

    .register_area li .btn:hover {
        background: rgba(0, 20, 50, 0.5);
    }

    .register_area li .btn:before {
        content: url(/img/static/bace/arrow_white.svg);
        width: 20px;
        line-height: 0;
        position: absolute;
        right: 5%;
        top: 50%;
        transform: translateY(-50%);
    }



    /* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

footer

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
    .footer {
        background: #fff;
    }

    .footer .copy {
        text-align: center;
        font-size: 0.6em;
        letter-spacing: 2px;
        padding: 20px 0 70px 0;
        opacity: 0.8;
    }

    .footer .footer_inner {
        padding: 20px 5%;
    }

    /* footer_link */
    .footer .footer_link .link_site {
        border-top: 1px solid var(--color-01-03);
        margin: 10px 0 30px;
    }

    .footer .footer_link .link_site a {
        font-size: 0.8em;
        letter-spacing: 1px;
        padding: 12px 0;
        display: block;
        border-bottom: 1px solid var(--color-01-03);
    }

    .footer .footer_link .link_career p {
        font-size: 0.8em;
    }

    .footer .footer_link .btn_boder {
        margin: 15px 0 0 0;
    }

    .footer .footer_link .btn_boder a {
        font-size: 0.8em;
        letter-spacing: 1px;
    }

    .footer .footer_link .link_career a:after {
        width: 20px;
    }

    /* footer_main */
    .footer .footer_main {
        margin: 40px 0 0 0;
    }

    .footer .logo_area {
        text-align: center;
    }

    .footer .logo_area .sns {
        display: flex;
        justify-content: center;
        grid-gap: 15px;
        margin: 30px 0 0 0;
    }

    .footer .logo_area .sns li {
        margin: auto 0 0 0;
        width: 30px;
    }

    .footer .logo_area .sns a:hover {
        opacity: 0.7;
    }

    .footer .main_send {
        margin: 30px 0 0 0;
    }

    .footer .main_send li {
        margin: 15px 0;
    }

    .footer .main_send a {
        background: var(--color-01-01);
        color: #fff;
        display: block;
        text-align: center;
        padding: 13px 0;
        border-radius: 100px;
        letter-spacing: 1px;
    }

    .footer .main_send a:before {
        background: var(--color-02-01);
    }

    /* footer_contact */
    .footer .footer_contact {
        background: var(--color-01-01);
        text-align: center;
    }

    .footer .footer_contact a {
        padding: 20px 0;
        display: block;
        color: #fff;
        background: var(--color-01-01);
        border-bottom: 1px solid #fff;
    }

    .footer .footer_contact a:before {
        background: var(--color-02-01);
    }



    /* ==================================================================================

ページトップ

================================================================================== */
    #page-top {
        position: fixed;
        right: 0;
        bottom: 0;
        width: 50px;
        height: 50px;
        background: rgba(150, 150, 150, 0.2);
        z-index: 9999;
        cursor: pointer;
        transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    #page-top:hover {
        background: rgba(200, 200, 200, 0.9);
    }

    #page-top:before {
        content: "";
        width: 13px;
        height: 13px;
        border: solid #fff;
        border-width: 1px 1px 0 0;
        transform: rotate(-45deg);
        position: absolute;
        right: 16px;
        top: 24px;
    }



    /* ==================================================================================

ふわっと表示

================================================================================== */
    .move_bottom {
        transform: translate(0, 130px);
    }

    .move_top {
        transform: translate(0, -130px);
    }

    .move_right {
        transform: translate(130px, 0);
    }

    .move_left {
        transform: translate(-130px, 0);
    }

    [class*="move_"] {
        opacity: 0;
    }

    [class*="_on"] {
        transition: all 3000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate(0, 0);
        opacity: 1;
    }

    /* 横並び時に順に出す -----------------*/
    [class*="move_"]:nth-of-type(2) {
        moz-transition-delay: 200ms;
    }

    [class*="move_"]:nth-of-type(3) {
        moz-transition-delay: 400ms;
    }

    [class*="move_"]:nth-of-type(4) {
        moz-transition-delay: 600ms;
    }

    [class*="move_"]:nth-of-type(5) {
        moz-transition-delay: 800ms;
    }

    [class*="move_"]:nth-of-type(6) {
        moz-transition-delay: 1000ms;
    }

    [class*="move_"]:nth-of-type(7) {
        moz-transition-delay: 1200ms;
    }

    [class*="move_"]:nth-of-type(8) {
        moz-transition-delay: 1400ms;
    }

    [class*="move_"]:nth-of-type(9) {
        moz-transition-delay: 1600ms;
    }

    [class*="move_"]:nth-of-type(10) {
        moz-transition-delay: 1800ms;
    }



    /* ==================================================================================

共通　画像拡大

================================================================================== */
    .img_zoom {
        overflow: hidden;
    }

    .img_zoom .img {
        overflow: hidden;
    }

    .img_zoom img {
        transition: all 10000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        z-index: 1;
        -moz-transform: scale(1.01);
        -webkit-transform: scale(1.01);
        -ms-transform: scale(1.01);
        transform: scale(1.01);
        vertical-align: bottom;
    }

    .img_zoom:hover img {
        -moz-transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05) rotate(1deg);
    }



    /* ==================================================================================

画像スライド表示

================================================================================== */
    .imgs {
        position: relative;
        left: 0px;
        top: 0px;
        width: 0%;
        height: 100%;
        overflow: hidden;
        transition: width 3000ms cubic-bezier(0.190, 1.000, 0.220, 1.000);
    }

    .imgs:before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 1px;
        top: 0px;
        z-index: 1;
        background: #fff;
        transform-origin: right center;
        transform: scaleX(1.5);
        transition: transform 1300ms cubic-bezier(0.190, 1.000, 0.220, 1.000) .6s;
    }

    .imgs_on {
        width: 100%;
    }

    .imgs_on:before {
        transform: scaleX(0);
    }

    .imgs img {
        width: 100%;
        vertical-align: bottom;
    }

    .bg .imgs:before {
        background: var(--bg-color);
    }


}

/* 【SP】ウィンドウ幅が768px以下の場合に適用するCSS */