@charset "utf-8";

/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

【PC】ウィンドウ幅が769px以上の場合に適用するCSS

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
@media print, screen and (min-width:769px) {


    /* ==================================================================================
common
================================================================================== */
    body {
        font-size: 15px;
        line-height: 2;
        word-break: break-all;
    }

    .inner {
        min-width: 900px;
        max-width: 1100px;
        margin: 0 auto;
        width: calc(100% - 50px);
    }

    .inner_mini {
        min-width: 700px;
        max-width: 800px;
        margin: 0 auto;
        width: calc(100% - 50px);
    }

    .sec {
        margin: 100px 0;
    }

    .sp {
        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 p {
        position: relative;
    }

    .article_area .question {
        margin: 50px 0 20px;
        font-weight: bold;
        position: relative;
        padding: 0 0 0 60px;
    }

    .article_area .question:before {
        content: "";
        position: absolute;
        width: 28px;
        height: 1px;
        background: #bbb;
        left: 0;
        top: 14px;
        font-size: 1.8em;
    }

    .article_area .answer {
        padding: 0 0 0 60px;
        position: relative;
    }

    .article_area .answer span {
        color: #AF7E3F;
        font-weight: bold;
        position: absolute;
        left: 0;
    }


    /* ==================================================================================
img_float 画像を回り込ませる
================================================================================== */
    .img_float {
        display: flex;
        grid-gap: 30px;
    }

    .img_float .img {
        width: 40%;
    }

    .img_float .img img {
        margin: 0;
    }

    .img_float .text {
        width: 60%;
    }

    /* ==================================================================================
line_box
================================================================================== */
    .line_box {
        border: 1px solid #ccc;
        padding: 20px 30px;
        margin: 20px 0;
    }

    /* ==================================================================================
bg_box
================================================================================== */
    .bg_box {
        background: #eee;
        padding: 20px 30px;
        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;
    }

    .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: 40px 0 80px 0;
    }

    .archive_area .archive_name {
        font-size: 1.6em;
        padding: 0 0 30px 0;
        margin: 0 0 50px 0;
        border-bottom: 1px solid var(--boder);
    }

    .archive_list {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 60px 40px;
    }

    .archive_list a {
        display: block;
        line-height: 1.5;
    }

    .archive_list a:hover {
        opacity: 0.7;
    }

    .archive_list li {}

    .archive_list .text {}

    .archive_list .text .box {
        display: flex;
        margin: 15px 0;
    }

    .archive_list .text .box .day {
        width: 35%;
    }

    .archive_list .text .box .day,
    .archive_list .text .box .cate {
        line-height: 1;
    }

    .archive_list .img {}

    .archive_list .img img {
        width: 100%;
        height: 250px;
    }


    /* pagination
======================================== */
    .pagination {
        text-align: center;
        margin: 60px 0 80px;
    }

    .pagination ul {
        display: flex;
        justify-content: center;
        grid-gap: 15px;
    }

    .pagination li {}

    .pagination a,
    .pagination span {
        border: 1px solid var(--boder);
        width: 50px;
        height: 50px;
        line-height: 50px;
        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 {
        display: flex;
        grid-gap: 60px;
        padding: 50px 0;
    }

    .blog_area {
        width: 70%;
    }

    .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.6em;
        line-height: 1.5;
        margin: 10px 0 40px 0;
        font-weight: bold;
    }

    .article_area img {
        width: 100%;
        margin: 30px 0;
    }

    .article_area .main_img {
        margin: 0 0 50px 0;
    }

    .article_area .main_img img {
        height: 450px;
        margin: 0;
    }

    .article_area p {
        line-height: 1.8;
        margin: 20px 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: 10px;
        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.3em;
        line-height: 1.5;
        padding: 15px 0;
        margin: 50px 0 30px;
        font-weight: bold;
    }

    .article_area h3 {
        border-left: 1px solid var(--color-01);
        font-size: 1.1em;
        line-height: 1.5;
        margin: 50px 0 20px;
        padding: 0 15px;
        font-weight: bold;
    }

    .article_area h4 {
        background: #F0F3F7;
        line-height: 1.5;
        margin: 50px 0 20px;
        padding: 10px 15px;
        font-weight: bold;
    }

    /* コーディネーターアイコン　写真
======================================== */
    .article_area .person {
        display: flex;
        gap: 30px;
    }

    .article_area .person .img {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
    }

    .article_area .person .img img {
        margin: 0;
        height: 100%;
    }

    .article_area .person .text {
        width: 80%;
    }

    .article_area .person .text p {
        margin: 0;
    }

    /* プランナーボイス
======================================== */
    .article_area .planner_voice {
        display: grid;
        grid-template-columns: 0.1fr 0.9fr;
        grid-gap: 40px 0;
    }

    .article_area .planner_voice dt,
    .article_area .planner_voice dd {
        border-bottom: 1px solid #ddd;
        padding: 0 0 30px 0;
    }

    .article_area .planner_voice p {
        margin: 0 0 0 30px;
    }

    .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 10px;
    }

    /* この記事を書いたライター
======================================== */
    .author_area {}

    .saboxplugin-wrap {
        border: none;
        border: 1px solid #C2C9D4;
        padding: 50px 60px;
    }

    .author_area .title {
        background: var(--color-01);
        color: #fff;
        padding: 12px 20px;
        font-size: 1.2em;
        margin: 50px 0 40px 0;
    }

    .author_area .vcard.author {
        pointer-events: none;
    }

    .saboxplugin-tab {
        display: grid;
    }

    .saboxplugin-tab .saboxplugin-gravatar {
        grid-row: 3/1;
        padding: 0;
        width: 200px;
        float: none;
    }

    .saboxplugin-tab .saboxplugin-gravatar img {
        max-width: 80%;
    }

    .saboxplugin-tab .saboxplugin-authorname {
        grid-column: 2/2;
        margin: 0 0 40px 0;
        font-size: 1.3em;
        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: 0;
        bottom: -20px;
        width: 20%;
        height: 1px;
        background: var(--color-02);
    }

    .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 {
        display: flex;
        grid-gap: 30px;
        margin: 25px 0 0 0;
    }

    .saboxplugin-tab .saboxplugin-desc ul li {}

    .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 {
        width: 30%;
    }

    .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;
    }

    .side_area {}

    .side_area {}

    .side_area {}


    /* SNSリンク
======================================== */
    .addtoany_share_save_container {
        margin: 70px 0;
    }

    .addtoany_share_save_container .addtoany_list {
        display: flex;
        grid-gap: 1px;
        text-align: center;
    }

    .addtoany_share_save_container a {
        background: #F0F3F7;
        display: block;
        padding: 20px 0;
        width: 100%;
        line-height: 1;
    }

    .addtoany_share_save_container a:hover {
        background: #EAEEF3;
    }

    .addtoany_share_save_container a:hover span {
        opacity: 1;
    }


    /* recommend_area
======================================== */
    .recommend_area {
        margin: 80px 0;
    }

    .recommend_area .main_title {
        font-size: 1.5em;
        line-height: 1.8;
        position: relative;
        padding: 0 0 25px 0;
        margin: 0 0 60px 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 {
        display: grid;
        grid-template: repeat(2, 1fr) / repeat(2, 1fr);
        gap: 40px 30px;
    }

    .recommend_area .btn_02 {
        width: 100%;
        margin: 50px 0 0 0;
    }


    /* planner_contact_area
======================================== */
    .planner_contact_area {
        margin: 60px 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: 30px 0;
        font-size: 1.3em;
        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: 9px;
        height: 9px;
        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: 30px 40px;
        box-sizing: border-box;
        border: none;
        background: #f5f5f5 !important;
        margin: 0 0 50px 0;
    }

    #toc_container li {
        padding: 5px 0;
    }

    .article_area h2 span {
        padding-top: 140px;
        margin-top: -140px;
        pointer-events: none;
    }

    #toc_container a {
        position: relative;
        padding: 0 0 0 20px;
    }

    #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 {
        display: block;
        margin: 40px auto;
        text-align: center;
    }

    .top_column_area .btn_02 .btn {
        padding: 15px 0;
        width: 50%;
        display: inline-block;
    }

    /* ==============================
page_btn
============================== */
    .top_column_area .page_btn {
        display: flex;
        justify-content: center;
        grid-gap: 15px;
        margin: 40px 0;
        padding: 30px 0;
        background: #eee;
    }

    .top_column_area .page_btn .btn {
        background: var(--color-01-01);
        color: #fff;
        display: block;
        text-align: center;
        padding: 13px 60px;
        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: 110px;
        margin-top: -110px;
        pointer-events: none;
    }






    /* ==================================================================================

記事一覧　記事一覧

================================================================================== */
    .top_column_area {
        margin: 0 0 100px 0;
    }

    .top_column_area .main_title {
        text-align: center;
        font-size: 1.6em;
        border-bottom: 1px solid var(--boder);
        padding: 20px 0;
        margin: 0 0 50px 0;
    }



    /* ブログ アイコン
======================================== */
    .day {
        font-size: 0.9em;
        color: #bbb;
        margin: 6px 0 0 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;
    }

    .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: 120px 0 0 0;
        overflow: hidden;
    }

    .second_title .inner {
        position: relative;
    }

    .second_title .img {
        margin: 0 -25vw 0 0;
    }

    .second_title .img img {
        height: 400px;
    }

    .second_title .text {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .second_title .title {
        font-size: 1.8em;
        line-height: 1.8;
        letter-spacing: 2px;
    }

    .second_title .text p {
        margin: 20px 0 0 0;
        width: 60%;
    }

    .mini_title {
        background: linear-gradient(90deg, #F7F8FA, #EDEFF3);
        height: 130px;
    }

    .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 50px 15px 40px;
        border: 1px solid #fff;
        border-radius: 100px;
        width: 300px;
        letter-spacing: 1px;
        font-size: 1.3em;
    }

    .btn_white .btn:before {
        background: rgba(255, 255, 255, 0.1);
    }

    /* btn_boder
============================== */
    .btn_boder {
        margin: 50px 0;
        text-align: center;
    }

    .btn_boder .btn {
        border: 1px solid var(--color-01-01);
        padding: 20px 70px 20px 50px;
        border-radius: 100px;
        min-width: 350px;
        font-size: 1.2em;
        text-align: center;
    }

    .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%;
    }


    /* btn_mini
============================== */
    .btn_mini {
        text-align: left;
        margin: 30px 0;
    }

    .btn_mini .btn {
        margin: 15px 0;
        min-width: 70%;
        padding: 15px 0;
    }


    /* 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 10px 0 0;
        vertical-align: 9px;
        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: 29px;
        height: 29px;
        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: 35%;
        transform: translate(-50%, -50%);
        line-height: 0;
    }


    /* btn_bottom
============================== */
    .btn_bottom {
        background: linear-gradient(-130deg, #bbede0, #BDD6F4, #e4cdeb);
        text-align: center;
        padding: 80px 0;
        background-size: 300% 300%;
        animation: bggradient 6s ease infinite;
    }

    .btn_bottom .btn {
        background: #fff;
        width: 70%;
        padding: 30px 0;
        font-size: 1.4em;
        letter-spacing: 1px;
        border-radius: 100px;
    }

    .btn_bottom .btn:before {
        background: linear-gradient(-130deg, #faecff, #e2eeff, #f0fffb);
        padding: 80px 0;
        background-size: 300% 300%;
        animation: bggradient 6s ease infinite;
    }

    .btn_bottom[class*="arrow_"] .btn:after {
        right: 5%;
    }

    .btn_bottom[class*="arrow_"] .btn:hover:after {
        right: 4.5%;
    }

    @keyframes bggradient {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }



    /* ==================================================================================

【共通】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: 25px;
    }

    /* arrow_black
======================================== */
    .arrow_black .btn:after {
        content: url(../img/bace/arrow_black.svg);
        width: 25px;
    }



    /* ==================================================================================

【共通】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: 120px;
        width: 100%;
        transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        background: rgba(255 255 255 / 0.9);
        box-shadow: 0 -10px 20px rgb(0 0 0 / 30%);
    }


    /* logo
======================================== */
    .header .logo {
        position: absolute;
        left: 30px;
        top: 50%;
        width: 20%;
        max-width: 300px;
        transform: translateY(-50%);
    }


    /* menu
======================================== */
    .menu {
        display: none;
    }

    .gnav_inner {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .gnav_menu {
        display: flex;
        justify-content: right;
        transition: all 500ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    .gnav_menu li {}

    .gnav_menu a {
        position: relative;
        transition: 0.3s;
        padding: 0 1.2vw;
        height: 70px;
        line-height: 70px;
        font-size: 0.8em;
    }

    .gnav_menu a:before {
        content: "";
        background: linear-gradient(rgba(255 255 255 / 0), #F0F3F8);
        transform-origin: right bottom;
        transform: scale(1, 0);
        transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        top: 0;
    }

    .gnav_menu a:hover:before {
        transform-origin: left bottom;
        transform: scale(1, 1);
    }

    .gnav_menu a span {
        position: relative;
    }

    .gnav_menu a span:before {
        content: "";
        position: absolute;
        height: 0;
        width: 60%;
        bottom: -15px;
        left: 50%;
        background: #53698A;
        transform: translate(-50%);
        opacity: 0;
        transition: all 300ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    .gnav_menu a:hover span:before {
        height: 1px;
        bottom: -10px;
        opacity: 1;
    }


    /* contact
======================================== */
    .header .contact {
        position: absolute;
        right: 0;
        top: 0;
        display: flex;
    }

    .header .contact a {
        width: 200px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        color: #fff;
        letter-spacing: 1px;
        font-weight: normal;
        position: relative;
        font-size: 0.9em;
        padding: 0 0 0 10px;
    }

    .header .contact .login {
        background: #53698A;
    }

    .header .contact .entry {
        background: var(--color-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: 23px;
        position: absolute;
        left: -40px;
        top: 50%;
        transform: translateY(-50%);
    }


    /* header_top
======================================== */
    .header_top {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 10000;
    }

    .header_top .second,
    .second_page .top {
        display: none !important;
    }


    /* 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 {
        color: var(--text);
    }

    .header.scroll .gnav_menu a span:before,
    .second_page .gnav_menu a span:before {
        background: var(--text);
    }




    /* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

register_area

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */
    .register_area {
        position: relative;
        background: var(--color-01-01);
    }

    .register_area:before {
        content: "";
        background: var(--color-01-01);
        width: 100%;
        height: 100%;
        position: absolute;
        mix-blend-mode: multiply;
        opacity: 1;
    }

    .register_area .main_title {
        text-align: center;
        padding: 0 0 30px;
        font-size: 1.6em;
        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 .img {
        opacity: 0.2;
    }

    .register_area .img img {
        height: 450px;
    }

    .register_area .text {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: 10;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    .register_area ul {
        display: flex;
        text-align: center;
        grid-gap: 40px;
    }

    .register_area li {
        width: 100%;
    }

    .register_area li a {
        color: #fff;
        border: 1px solid var(--color-01-02);
        border-radius: 5px;
        position: relative;
        overflow: hidden;
    }

    .register_area li a:before {
        content: "";
        background: rgba(14, 25, 45, 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;
        letter-spacing: 2px;
        padding: 20px 0 5px;
        z-index: 1;
        position: relative;
    }

    .register_area li p {
        padding: 0 40px 30px 40px;
        text-align: left;
        line-height: 1.8;
        font-size: 0.9em;
        z-index: 1;
        position: relative;
        height: 4em;
    }

    .register_area li .btn {
        display: block;
        border-radius: 0 0 3px 3px;
        position: relative;
        border-top: 1px solid var(--color-01-02);
        font-size: 0.7em;
        letter-spacing: 3px;
        padding: 16px 0;
        transition: all 1000ms cubic-bezier(0.215, 0.610, 0.355, 1.000);
        z-index: 1;
        color: var(--color-01-02);
    }

    .register_area li .btn:before {
        content: url(../img/bace/arrow_white.svg);
        width: 17px;
        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;
        opacity: 0.8;
    }

    .footer .footer_inner {
        display: flex;
        width: calc(100% - 200px);
        margin: 0 auto;
        padding: 50px 0 10px;
        min-width: 1000px;
        position: relative;
    }

    /* footer_link */
    .footer .footer_link .link_site {
        display: flex;
        grid-gap: 80px;
        margin: 0 0 40px 0;
    }

    .footer .footer_link .link_site a {
        font-size: 0.8em;
        letter-spacing: 1px;
        padding: 3px 0;
    }

    .footer .footer_link .link_site a:hover {
        opacity: 0.5;
    }

    .footer .footer_link .link_career p {
        font-size: 0.8em;
    }

    .footer .footer_link .btn_boder {
        text-align: left;
        margin: 15px 0 0 0;
    }

    .footer .footer_link .btn_boder a {
        text-align: center;
        font-size: 0.8em;
        min-width: 150px;
        letter-spacing: 1px;
        padding: 11px 50px 11px 40px;
    }

    .footer .footer_link .link_career a:after {
        width: 20px;
    }

    /* footer_main */
    .footer .footer_main {
        margin: 0 0 0 auto;
    }

    .footer .logo_area {
        display: flex;
        flex-direction: row-reverse;
        grid-gap: 30px;
    }

    .footer .logo_area .sns {
        display: flex;
        grid-gap: 15px;
    }

    .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 60px;
        border-radius: 100px;
        letter-spacing: 1px;
        font-size: 0.9em;
    }

    .footer .main_send a:before {
        background: var(--color-02-01);
    }

    .footer .main_send a:after {
        width: 20px;
    }

    /* footer_contact */
    .footer .footer_contact {
        background: var(--color-01-01);
        margin: 30px 0 10px 0;
    }

    .footer .footer_contact ul {
        display: flex;
        justify-content: center;
        min-width: 1000px;
        width: calc(100% - 50px);
        margin: 0 auto;
        padding: 0 1px;
        grid-gap: 1px;
        background: var(--color-01-02);
    }

    .footer .footer_contact li {
        width: 100%;
        text-align: center;
    }

    .footer .footer_contact a {
        padding: 25px 0;
        display: block;
        color: #fff;
        background: var(--color-01-01);
    }

    .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;
    }



    /* ==================================================================================

共通　画像拡大

================================================================================== */
    .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);
    }


}

/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

【PC】ウィンドウ幅が769px以上の場合に適用するCSS

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */