@charset "utf-8";

/*
- Name: megamenu.js - style.css
- Version: 1.0
- Latest update: 29.01.2016.
- Author: Mario Loncarek
- Author web site: http://marioloncarek.com
*/


/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Body - not related to megamenu
–––––––––––––––––––––––––––––––––––––––––––––––––– */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');


:root {

    --font-size-16: clamp(14px, 1.0vw, 16px);
    --font-size-18: clamp(16px, 1.0vw, 18px);
    --font-size-10-20: clamp(10px, 1.2vw, 20px);
    --font-size-20: clamp(16px, 1.2vw, 20px);
    --font-size-22: clamp(16px, 1.2vw, 22px);
    --font-size-18-22: clamp(18px, 1.2vw, 22px);
    --font-size-24: clamp(18px, 1.4vw, 24px);
    --font-size-32: clamp(16px, 1.8vw, 32px);
    --font-size-24-32: clamp(24px, 1.8vw, 32px);
    --font-size-37: clamp(26px, 2.0vw, 37px);
    --font-size-40: clamp(15px, 2.2vw, 40px);
    --font-size-18-40: clamp(18px, 2.2vw, 40px);
    --font-size-20_40: clamp(20px, 2.2vw, 40px);
    --font-size-25_40: clamp(25px, 2.2vw, 40px);
    --font-size-50: clamp(30px, 2.8vw, 50px);
    --font-size-63: clamp(30px, 3.4vw, 63px);
    --font-size-40-63: clamp(40px, 3.4vw, 63px);
    --font-size-80: clamp(35px, 4.2vw, 80px);
    --font-size-85: clamp(38px, 4.6vw, 85px);
    --font-size-104: clamp(40px, 4.6vw, 104px);


    --margin-bottom-40: clamp(20px, 3vw, 40px);
    --margin-bottom-80: clamp(40px, 6vw, 80px);

    --color-black: #323333;
    --color-01: #004ba5;
    --color-03: #ff4b00;
    --color-04: #f0f3fa;
    --background-color-base01: linear-gradient(150deg, #004ba5 0%, #0087cb 100%);
}


body {
    font-family: YakuHanJP_Narrow, "zen-kaku-gothic-new", sans-serif;
    font-weight: 400;
    background: #fff;
    word-wrap: break-word;
    font-weight: 200;
    margin: 0;
    padding: 0;
}


a {
    color: #333;
}

input[type="submit"]:hover,
a:hover {
    opacity: 0.8;
}

img {
    vertical-align: top;
    max-width: 100%;
}


select,
textarea,
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"] {
    padding: 14px;
    border: none;
    background: #f8f9fb;
    border-radius: 4px;
    width: 100%;
    line-height: 1.4em;
    box-sizing: border-box;
}

.readonly_text {
    padding: 14px;
    border: none;
    border-radius: 4px;
    width: 100%;
    line-height: 1.4em;
}

p {
    word-break: break-all;
}



.setting_btn_wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    margin-bottom: 50px;
    font-weight: bold;
}

.css_setting_wrap {
    margin-bottom: 50px;
}

.css_setting_ttl {
    font-weight: bold;
    margin-bottom: 10px;
}

.message{
    color: blue;
}

.breadcrumb{
    flex-grow: 1;
}
.breadcrumb_item:before{
    content: ">";
    margin: 0 5px;
}

@media screen and (max-width:768px) {

    main {
        margin: 0 auto;
        max-width: 1280px;
        padding: 0 32px 32px;
        min-height: 100vh;
    }

    .description {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .errors ul li {
        color: red;
        list-style: none;
        text-align: center;
        line-height: 1.6em;
        margin: 20px 0;
    }







    /* title */
    .ttl_ptn_01,
    h2.form_ttl,
    h2.search_ttl {
        text-align: center;
        margin: 0 0 40px;
        font-size: var(--font-size-40);
        font-weight: 200;
        letter-spacing: 2px;
    }









    /* text */
    .txt_ptn_01 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    p.form_txt_01 {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin: 0 0 10px;
        letter-spacing: 1px;
    }

    p.form_txt_02 {
        text-align: center;
        margin: 0 0 50px;
        letter-spacing: 1px;
    }








    /* ボタン */
    .btn_ptn_01 {
        border: none;
        background: var(--background-color-base01);
        color: #fff;
        font-size: 20px;
        padding: 20px;
        border-radius: 2em;
        display: block;
        margin: 0 auto;
        width: 200px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn_ptn_01:disabled {
        background: #ddd;
        color: #999;
        cursor: not-allowed;
    }

    .btn_ptn_02 {
        background: #b7282e;
        color: #fff;
        text-decoration: none;
        padding: 20px 40px;
        font-size: 20px;
        border-radius: 2em;
        letter-spacing: 2px;
        display: block;
        width: fit-content;
        margin: 0 auto;
        border: none;
    }

    .btn_ptn_03 {
        background: #ddd;
        color: #222;
        text-decoration: none;
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 2em;
        letter-spacing: 2px;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    input.search_btn_01 {
        border: 0px;
        background: #15244b;
        height: 100%;
        color: #fff;
        padding: 0 30px;
        border-radius: 4px;
    }

    .btn_wrap_ptn_01 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2vw;
        width: fit-content;
        margin: 0 auto;
    }

    .btn_wrap_ptn_02 {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 2vw;
        gap: 1vw;
        width: fit-content;
        margin: 0 auto;
    }






    /* control parts */
    .ta_left {
        text-align: left;
    }

    .ta_center {
        text-align: center;
    }

    .wi_360 {
        width: 360px;
    }

    .wi_mx800 {
        max-width: 800px;
    }

    .wi_mx1200 {
        max-width: 1200px;
    }

    .mg_b2vw {
        margin-bottom: 2vw;
    }

    .pa_14px_0 {
        padding: 14px 0;
    }






    /* ヘッダー */

    header {
        height: 100px;
        background: white;
        border: 0;
    }

    .header_inr_wrap {
        display: grid;
        grid-template-columns: 100px 1fr;
        grid-gap: 30px;
        margin: 0 auto;
        padding: 0 25px;
        position: fixed;
        background: rgba(255, 255, 255, 0.8);
        width: 100%;
    }

    .header_inr_wrap > a {
        display: flex;
        align-items: center;
    }

    .header_logo {
        display: flex;
        width: 100%;
    }

    .ecbr_logo {
        width: 100%;
    }




    /* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


    /* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    .menu a {
        text-decoration: none;
    }

    .menu-container {
        width: 100%;
        margin: 0 auto;
    }

    .menu-mobile {
        display: none;
        padding: 20px;
    }

    .menu-mobile:after {
        content: "\f394";
        font-family: "Ionicons";
        font-size: 2.5rem;
        padding: 0;
        float: right;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
    }

    .menu-dropdown-icon:before {
        content: "\f489";
        font-family: "Ionicons";
        display: none;
        cursor: pointer;
        float: right;
        padding: 1.5em 2em;
        background: #fff;
        color: #333;
    }

    ul.menu_level_01 {
        margin: 0 auto;
        width: 100%;
        list-style: none;
        padding: 0;
        text-align: right;
        /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
        box-sizing: border-box;

    }

    ul.menu_level_01 > li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }

    li.user_name {
        color: #fff;
        font-weight: bold;
    }

    ul.menu_level_01 li a.menu_level_01_ttl {
        text-decoration: none;
        padding: 1.5em 3em;
        display: block;
        font-weight: bold;
        color: #fff;
    }

    ul.menu_level_01 > li:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    ul.menu_level_02 {
        display: none;
        width: 100%;
        background: #f0f0f0;
        padding: 20px;
        position: absolute;
        z-index: 99;
        left: 0;
        margin: 0;
        list-style: none;
        box-sizing: border-box;
        text-align: left;
    }


    a.menu_level_02_ttl {
        border-bottom: solid 1px #ddd;
        width: 100%;
        display: block;
        padding-bottom: 16px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    ul.menu_level_03 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 16px;
        padding: 0;
        margin: 10px 0 0;
        list-style: none;
        box-sizing: border-box;
    }

    a.menu_level_03_ttl {
        line-height: 2em;
        display: block;
    }

    ul.menu_level_03 > li {}

    a.menu_level_03 {
        border: 0;
    }


    ul.menu_level_04 {
        list-style: none;
    }

    ul.menu_level_04 li a {
        line-height: 1.6em;
        font-size: 0.8em;
        padding: 4px 8px;
        display: block;
    }

    ul.menu_level_04 li a:hover {
        background: #fff;
        color: #222;
        opacity: 1;
    }






    main.home {
        padding-top: 0;
    }
















    /* signup */

    .form_wrap {
        border-radius: 8px;
        padding: 20px;
        margin: 0 auto;
        background: #eee;
    }

    .form_header {
        background: #15244b;
        color: #fff;
        padding: 20px;
    }

    .form_wrap form p {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
        padding: 4px 0;
        border-bottom: solid 1px #eee;
    }


    .form_wrap form p:last-of-type {
        margin-bottom: 60px;
        border: none;
    }

    .form_wrap form div.input_wrap {
        display: grid;
        grid-template-columns: 1fr;
        grid-gap: 20px;
        align-items: center;
        padding: 4px 0;
        border-bottom: solid 1px #eee;
    }
    .form_wrap form div.input_wrap label {
    }
    .form_wrap form div.form_error{
        margin: 0;
        border: 0;
        padding: 0;
        grid-column: 1;
        display: block;
    }
    /* パスワード注意事項 */
    .form_wrap form div.form_note {
        font-size: 14px;
        color: #555;
        margin-top: 5px;
        grid-column: 1;
        border: 0;
    }
    .form_wrap #terms_conditions{
        justify-self: start;
    }

    .required {
        color: red;
    }
















    /* 検索結果 */
    .search_form_wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr) auto;
        grid-gap: 10px;
        margin-bottom: 4vw;
    }

    h2.search_result_ttl {
        text-align: center;
        margin: 0 0 40px;
        font-size: 36px;
        font-weight: 200;
        letter-spacing: 2px;
    }

    .maker_list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 1vw;
    }

    .maker_item a {
        background: #eee;
        line-height: 10vw;
        text-align: center;
        display: block;
        text-decoration: none;
        border-radius: 8px;
    }

    ul.pagination {
        list-style: none;
        margin: 40px 0;
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    ul.pagination li a {
        list-style: none;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        background: #f4f4f4;
        border-radius: 4px;
        display: block;
        text-decoration: none;
    }

    ul.pagination li.active a {
        background: #15244b;
        color: #fff;
        pointer-events: none;
    }










    /* メーカー詳細 */
    .factory_list {
        background: #eee;
        border-radius: 1vw;
        padding: 2vw;
        margin-bottom: 4vw;
    }

    .factory_list ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1vw;
    }

    .factory_list ul li {
        list-style: none;
        background: #fff;
        padding: 1vw;
        border-radius: 12px;
    }

    .maker_dl,
    .factory_list_dl,
    .product_list_dl {
        display: grid;
        grid-template-columns: auto 1fr;
        border-top: solid 1px #999;
    }

    .maker_dl,
    .factory_list_dl {
        margin-bottom: 4vw;
    }

    .maker_dl dt,
    .maker_dl dd,
    .factory_list_dl dt,
    .factory_list_dl dd,
    .product_list_dl dt,
    .product_list_dl dd {
        margin: 0;
        border-bottom: solid 1px #999;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .maker_dl dt,
    .factory_list_dl dt,
    .product_list_dl dt {
        font-weight: bold;
    }

    .maker_dl dd,
    .factory_list_dl dd,
    .product_list_dl dd {
        padding-left: 12px;
    }














    /* サポート */
    ul.support_items {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 10px;
    }

    ul.support_items.function li.support_item_enabled {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-01);
        align-content: center;
        text-align: center;
        border-radius: 8%;
        position: relative;
    }

    ul.support_items.function li.support_item_disabled {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        border: solid 8px #ddd;
        align-content: center;
        text-align: center;
        font-size: var(--font-size-24);
        font-weight: 800;
        color: #ddd;
        text-decoration: none;
        border-radius: 8%;
        position: relative;
    }

    ul.support_items.function li.support_item_disabled span {
        padding: 16px;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    ul.support_items.function li.support_item_enabled a {
        font-size: var(--font-size-24);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        width: 100%;
        height: 100%;
        align-content: center;
        padding: 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.4;
    }

    ul.support_items.function li.support_item_enabled a img {
        background: var(--background-color-base01);
        border-radius: 4em;
        padding: 10px;
    }

    ul.support_items.function li.support_item_disabled img {
        width: 64px;
        background: #ddd;
        border-radius: 4em;
        padding: 10px;
    }



    ul.support_items.setting {
        list-style: none;
        display: flex;
        grid-gap: 20px;
        flex-wrap: wrap;
    }

    ul.support_items.setting li {
        background: var(--color-04);
        padding: 0 60px 0 30px;
        position: relative;
        flex-basis: calc(25% - 105px);
        display: flex;
        align-items: center;
    }

    ul.support_items.setting li::after {
        content: "》";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    ul.support_items.setting li a {
        text-decoration: none;
    }

    ul.support_items_header.setting {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        position: absolute;
        background: var(--color-04);
        z-index: 10;
        padding: 0;
    }

    ul.support_items_header.setting li {
        position: relative;
        display: flex;
        align-items: start;
        margin: 0 30px;
    }

    ul.support_items_header.setting li a {
        text-decoration: none;
    }
















    /* message */
    td.message_id {
        text-align: center;
    }

    td.message_send_data {
        font-size: 12px;
    }

    td.message_content {
        line-height: 1.2;
    }










    /* offers */
    td.offer_id {
        text-align: center;
    }

    td.offer_status {
        text-align: center;
    }










}

@media screen and (max-width:768px) {

    /* ヘッダー */
        /* 機能一覧 */
    main.support {
        padding: 12px;
    }
    ul.support_items.function {
        padding: 0;
        grid-template-columns: repeat(2, 1fr);
    }
    ul.support_items.function li.support_item_enabled a img {
        width: clamp(40px, 4.6vw, 64px);
    }
    ul.support_items a p {
        margin: 8px 0 0;
        font-size: 16px;
    }
    .api_required::after {
        bottom: 5px;
    }
}

@media screen and (min-width:769px) {

    main {
        margin: 0 auto;
        max-width: 1280px;
        padding: 0 32px 32px;
        min-height: 100vh;
    }

    .description {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .errors ul li {
        color: red;
        list-style: none;
        text-align: center;
        line-height: 1.6em;
        margin: 20px 0;
    }







    /* title */
    .ttl_ptn_01,
    h2.form_ttl,
    h2.search_ttl {
        text-align: center;
        margin: 0 0 40px;
        font-size: var(--font-size-40);
        font-weight: 200;
        letter-spacing: 2px;
    }









    /* text */
    .txt_ptn_01 {
        font-size: 22px;
        letter-spacing: 2px;
    }

    p.form_txt_01 {
        font-size: 20px;
        font-weight: bold;
        text-align: center;
        margin: 0 0 10px;
        letter-spacing: 1px;
    }

    p.form_txt_02 {
        text-align: center;
        margin: 0 0 50px;
        letter-spacing: 1px;
    }








    /* ボタン */
    .btn_ptn_01 {
        border: none;
        background: var(--background-color-base01);
        color: #fff;
        font-size: 20px;
        padding: 20px;
        border-radius: 2em;
        display: block;
        margin: 0 auto;
        width: 200px;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
    }

    .btn_ptn_01:disabled {
        background: #ddd;
        color: #999;
        cursor: not-allowed;
    }

    .btn_ptn_02 {
        background: #b7282e;
        color: #fff;
        text-decoration: none;
        padding: 20px 40px;
        font-size: 20px;
        border-radius: 2em;
        letter-spacing: 2px;
        display: block;
        width: fit-content;
        margin: 0 auto;
        border: none;
    }

    a.btn_ptn_03 {
        background: #ddd;
        color: #222;
        text-decoration: none;
        padding: 16px 32px;
        font-size: 16px;
        border-radius: 2em;
        letter-spacing: 2px;
        display: block;
        width: fit-content;
        margin: 0 auto;
    }

    input.search_btn_01 {
        border: 0px;
        background: #15244b;
        height: 100%;
        color: #fff;
        padding: 0 30px;
        border-radius: 4px;
    }

    .btn_wrap_ptn_01 {
        display: flex;
        gap: 2vw;
        width: fit-content;
        margin: 0 auto;
    }

    .btn_wrap_ptn_02 {
        display: flex;
        flex-direction: column;
        gap: 1vw;
        width: fit-content;
        margin: 0 auto;
    }






    /* control parts */
    .ta_left {
        text-align: left;
    }

    .ta_center {
        text-align: center;
    }

    .wi_360 {
        width: 360px;
    }

    .wi_mx800 {
        max-width: 800px;
    }

    .wi_mx1200 {
        max-width: 1200px;
    }

    .mg_b2vw {
        margin-bottom: 2vw;
    }

    .pa_14px_0 {
        padding: 14px 0;
    }






    /* ヘッダー */

    header {
        height: 100px;
        background: white;
        border: 0;
    }

    .header_inr_wrap {
        max-width: 1280px;
        grid-template-columns: 100px 1fr;
        grid-gap: 30px;
        margin: 0 auto;
        padding: 0 32px;
        position: relative;
    }

    .header_inr_wrap > a {
        display: flex;
        align-items: center;
    }

    .header_logo {
        display: flex;
        width: 100%;
    }

    .ecbr_logo {
        width: 100%;
    }






    /* ––––––––––––––––––––––––––––––––––––––––––––––––––
megamenu.js STYLE STARTS HERE
–––––––––––––––––––––––––––––––––––––––––––––––––– */


    /* ––––––––––––––––––––––––––––––––––––––––––––––––––
Screen style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
    .menu a {
        text-decoration: none;
    }

    .menu-container {
        width: 100%;
        margin: 0 auto;
    }

    .menu-mobile {
        display: none;
        padding: 20px;
    }

    .menu-mobile:after {
        content: "\f394";
        font-family: "Ionicons";
        font-size: 2.5rem;
        padding: 0;
        float: right;
        position: relative;
        top: 50%;
        -webkit-transform: translateY(-25%);
        -ms-transform: translateY(-25%);
        transform: translateY(-25%);
    }

    .menu-dropdown-icon:before {
        content: "\f489";
        font-family: "Ionicons";
        display: none;
        cursor: pointer;
        float: right;
        padding: 1.5em 2em;
        background: #fff;
        color: #333;
    }

    ul.menu_level_01 {
        margin: 0 auto;
        width: 100%;
        list-style: none;
        padding: 0;
        text-align: right;
        /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
        box-sizing: border-box;

    }

    ul.menu_level_01 > li {
        display: inline-block;
        padding: 0;
        margin: 0;
    }

    li.user_name {
        color: #fff;
        font-weight: bold;
    }

    ul.menu_level_01 li a.menu_level_01_ttl {
        text-decoration: none;
        padding: 1.5em 3em;
        display: block;
        font-weight: bold;
        color: #fff;
    }

    ul.menu_level_01 > li:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    ul.menu_level_02 {
        display: none;
        width: 100%;
        background: #f0f0f0;
        padding: 20px;
        position: absolute;
        z-index: 99;
        left: 0;
        margin: 0;
        list-style: none;
        box-sizing: border-box;
        text-align: left;
    }


    a.menu_level_02_ttl {
        border-bottom: solid 1px #ddd;
        width: 100%;
        display: block;
        padding-bottom: 16px;
        margin-bottom: 10px;
        font-size: 18px;
    }

    ul.menu_level_03 {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 16px;
        padding: 0;
        margin: 10px 0 0;
        list-style: none;
        box-sizing: border-box;
    }

    a.menu_level_03_ttl {
        line-height: 2em;
        display: block;
    }

    ul.menu_level_03 > li {}

    a.menu_level_03 {
        border: 0;
    }


    ul.menu_level_04 {
        list-style: none;
    }

    ul.menu_level_04 li a {
        line-height: 1.6em;
        font-size: 0.8em;
        padding: 4px 8px;
        display: block;
    }

    ul.menu_level_04 li a:hover {
        background: #fff;
        color: #222;
        opacity: 1;
    }






    main.home {
        padding-top: 0;
    }

















    /* signup */

    .form_wrap {
        border-radius: 8px;
        padding: 50px;
        margin: 0 auto;
        background: #eee;
    }

    .form_header {
        background: #15244b;
        color: #fff;
        padding: 20px;
    }

    .form_wrap form p {
        display: grid;
        grid-template-columns: 220px 1fr;
        grid-gap: 20px;
        align-items: center;
        padding: 4px 0;
        border-bottom: solid 1px #eee;
    }


    .form_wrap form p:last-of-type {
        margin-bottom: 60px;
        border: none;
    }

    .form_wrap form div.input_wrap {
        display: grid;
        grid-template-columns: 220px 1fr;
        grid-gap: 20px;
        align-items: center;
        padding: 4px 0;
        border-bottom: solid 1px #eee;
    }

    .required {
        color: red;
    }

    .form_group {
        border-radius: 10px;
        border: solid 1px #CCC;
        padding: 20px;
        margin-bottom: 40px;
    }

    .form_group_label {
        margin-top: -30px;
        padding: 0 10px;
        background-color: #eee;
        display: inline-block;
        position: absolute;
        font-weight: bold;
        color: #444;
    }



    .form_wrap form div.form_error {
        margin: 0;
        border: 0;
        padding: 0;
        grid-column: 1/3;
        display: block;
    }
    /* パスワード注意事項 */
    .form_wrap form div.form_note {
        font-size: 14px;
        color: #555;
        margin-top: 5px;
        grid-column: 2 / 3;
        border: 0;
        grid-template-columns: 1fr;
    }
    .form_wrap #terms_conditions{
        justify-self: end;
    }











    /* 検索結果 */
    .search_form_wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr) auto;
        grid-gap: 10px;
        margin-bottom: 4vw;
    }

    h2.search_result_ttl {
        text-align: center;
        margin: 0 0 40px;
        font-size: 36px;
        font-weight: 200;
        letter-spacing: 2px;
    }

    .maker_list {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 1vw;
    }

    .maker_item a {
        background: #eee;
        line-height: 10vw;
        text-align: center;
        display: block;
        text-decoration: none;
        border-radius: 8px;
    }

    ul.pagination {
        list-style: none;
        margin: 40px 0;
        display: flex;
        justify-content: center;
        gap: 4px;
    }

    ul.pagination li a {
        list-style: none;
        width: 44px;
        height: 44px;
        line-height: 44px;
        text-align: center;
        background: #f4f4f4;
        border-radius: 4px;
        display: block;
        text-decoration: none;
    }

    ul.pagination li.active a {
        background: #15244b;
        color: #fff;
        pointer-events: none;
    }










    /* メーカー詳細 */
    .factory_list {
        background: #eee;
        border-radius: 1vw;
        padding: 2vw;
        margin-bottom: 4vw;
    }

    .factory_list ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 1vw;
    }

    .factory_list ul li {
        list-style: none;
        background: #fff;
        padding: 1vw;
        border-radius: 12px;
    }

    .maker_dl,
    .factory_list_dl,
    .product_list_dl {
        display: grid;
        grid-template-columns: auto 1fr;
        border-top: solid 1px #999;
    }

    .maker_dl,
    .factory_list_dl {
        margin-bottom: 4vw;
    }

    .maker_dl dt,
    .maker_dl dd,
    .factory_list_dl dt,
    .factory_list_dl dd,
    .product_list_dl dt,
    .product_list_dl dd {
        margin: 0;
        border-bottom: solid 1px #999;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .maker_dl dt,
    .factory_list_dl dt,
    .product_list_dl dt {
        font-weight: bold;
    }

    .maker_dl dd,
    .factory_list_dl dd,
    .product_list_dl dd {
        padding-left: 12px;
    }














    /* サポート */
    ul.support_items {
        list-style: none;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 10px;
        padding: 0;
    }

    ul.support_items.function li.support_item_enabled {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-01);
        align-content: center;
        text-align: center;
        border-radius: 8%;
        position: relative;
    }

    ul.support_items.function li.support_item_disabled {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        aspect-ratio: 1 / 1;
        border: solid 8px #ddd;
        align-content: center;
        text-align: center;
        font-size: var(--font-size-24);
        font-weight: 800;
        color: #ddd;
        text-decoration: none;
        border-radius: 8%;
        position: relative;
    }

    ul.support_items.function li.support_item_disabled span {
        padding: 16px;
        box-sizing: border-box;
        width: 100%;
        height: 100%;
    }

    ul.support_items.function li.support_item_enabled a {
        font-size: var(--font-size-24);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        width: 100%;
        height: 100%;
        align-content: center;
        padding: 16px;
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        line-height: 1.4;
    }

    ul.support_items.function li.support_item_enabled a img {
        width: clamp(40px, 4.6vw, 64px);
        background: var(--background-color-base01);
        border-radius: 4em;
        padding: 10px;
    }

    ul.support_items.function li.support_item_disabled img {
        width: 64px;
        background: #ddd;
        border-radius: 4em;
        padding: 10px;
    }


    ul.support_items.setting {
        list-style: none;
        display: flex;
        grid-gap: 20px;
        flex-wrap: wrap;
    }

    ul.support_items.setting li {
        background: var(--color-04);
        padding: 0 60px 0 30px;
        position: relative;
        flex-basis: calc(25% - 105px);
        display: flex;
        align-items: center;
    }

    ul.support_items.setting li::after {
        content: "》";
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    ul.support_items.setting li a {
        text-decoration: none;
    }



    ul.support_items_header.setting {
        list-style: none;
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        position: absolute;
        background: var(--color-04);
        z-index: 10;
        padding: 0;
        align-items: start;
    }

    ul.support_items_header.setting li {
        position: relative;
        display: flex;
        align-items: center;
        margin: 0 30px;
    }

    ul.support_items_header.setting li a {
        text-decoration: none;
    }










    /* message */
    td.message_id {
        text-align: center;
    }

    td.message_send_data {
        font-size: 12px;
    }

    td.message_content {
        line-height: 1.2;
    }










    /* offers */
    td.offer_id {
        text-align: center;
    }

    td.offer_status {
        text-align: center;
    }


    /*---- 設定メニュー ----*/
    ul.setting_menu{
        margin: 0;
    }
    /* 親liを基準にする */
    .setting_menu_head {
        position: relative;
        display: inline-block;
    }

    /* サブメニュー */
    .setting_menu_items {
        position: absolute;
        top: 100%;
        display: none;
        background: #fff;
        min-width: 200px;
        z-index: 1000;
        margin-left: -100px;
    }

    /* 親liにhoverしたら表示 */
    .setting_menu_head:hover + .setting_menu_items,
    .setting_menu_items:hover {
        display: block !important;
    }





}




.form_error .help-block {
    color: red;
}

input.form_error_input {
    border: solid 1px red;
}

select.form_error_input {
    border: solid 1px red;
}

textarea.form_error_input {
    border: solid 1px red;
}

.form_wrap .btn_ptn_01{
    margin-top: 50px;
}
/* コードブロック全体のスタイル */
pre {
    background-color: #2d2d2d;
    /* ダークモード風の背景色 */
    color: #f8f8f2;
    /* 文字色を明るく */
    padding: 12px;
    border-radius: 8px;
    overflow-x: auto;
    /* 横スクロールを可能に */
    font-family: "Courier New", monospace;
    font-size: 14px;
}

/* インラインコード用 */
code {
    font-family: "Courier New", monospace;
    border-radius: 4px;
    color: #d63384;
}

/* シンタックスハイライト風のカラーリング */
pre code {
    color: #f8f8f2;
    /* デフォルトのテキストカラー */
}

/* 例: キーワード、文字列、コメントなどをハイライト */
pre .keyword {
    color: #ff79c6;
    font-weight: bold;
}

pre .string {
    color: #f1fa8c;
}

pre .comment {
    color: #6272a4;
    font-style: italic;
}

pre .function {
    color: #50fa7b;
}

pre .number {
    color: #bd93f9;
}


.explain p {
    margin-bottom: 10px;
}

.explain {
    margin-bottom: 60px;
}


.list_page3 input{
    font-size:10px;
}

input.list_page3_text{
    width:100px;
}
.list_page3_button{
    margin-left:5px;
    line-height: 15px !important;
}

.table_01{
    width: 100%;
    border-collapse: collapse;
    margin-top:5px;
}
.table_01 th{
    padding:3px;
    text-align: left;
    vertical-align: top;
    color: #333;
    background-color: #eee;
    border: 1px solid #b9b9b9;
}
.table_01 td{
    padding:3px;
    background-color: #fff;
    border: 1px solid #b9b9b9;
}
.number{
    text-align: right;
}

.detail_container{
    position:absolute;
}
.detail{
    -moz-border-radius:8px;
    -webkit-border-radius:8px;
    border-radius:4px;
    padding: 10px;
    font-size: 12px;
    width: auto;
    position:relative;
    background-color:white;
    border: solid 1px black;
    margin-top:-12px;
    margin-right:10px;
    max-width:450px;
}
.detail_wrap_row{
    display:table-row;
}
.detail_content{
    white-space:pre-wrap;
    white-space:-moz-pre-wrap;
    white-space:-o-pre-wrap;
    white-space:-pre-wrap;
    word-wrap:break-word;
    overflow-y: auto;
    max-height: 300px;
}

.warn{
    color:red;
}



body.fixed {
    overflow: hidden;
    height: 100%;
}


#pageTop {
    position: fixed;
    bottom: 10px;
    right: 25px;
    z-index: 10;
    width: 60px;
    margin: 0;
}

#pageTop a:hover {
    text-decoration: none;
    opacity: 1;
}

a.btn_ptn01 {
    background: var(--color-03);
    color: #fff;
    text-decoration: none;
    font-size: var(--font-size-20);
    padding: 14px;
    text-align: center;
}

a.btn_ptn01:hover {
    background: #fc622b;
}

a.btn_ptn02 {
    border: solid 4px var(--color-03);
    color: var(--color-03);
    text-decoration: none;
    font-size: var(--font-size-20);
    padding: 14px;
    text-align: center;
}

.ttl_ptn01 {
    font-size: var(--font-size-50);
    font-weight: 800;
    width: fit-content;
    margin: 0 auto;
    color: var(--color-01);
    margin-bottom: 2em;
    padding-bottom: 0.5em;
    position: relative;
}

.ttl_ptn01::after {
    content: "";
    width: 100%;
    height: 8px;
    background: var(--color-01);
    position: absolute;
    bottom: 0;
    left: 0;
}

.ttl_ptn02 {
    font-size: var(--font-size-25_40);
    font-weight: 800;
    width: fit-content;
    margin: 0 auto;
    color: var(--color-01);
    margin-bottom: 1em;
    padding-bottom: 0.5em;
    position: relative;
}


/* ----------------------スマホ表示------------------------------- */

@media screen and (max-width:768px) {

    .header_inr {
        background: var(--background-color-base01);
        display: grid;
        grid-template-columns: 128px 1fr;
        width: 96%;
        margin: 10px auto 0;
        border-radius: 10em;
        padding: 0 40px;
        align-items: center;
        box-sizing: border-box;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }



    .header_inr nav {
        display: flex;
        justify-content: end;
    }

    .header_inr nav a {
        text-decoration: none;
        color: #fff;
        padding: 20px;
    }

    .header_inr nav ul {
        text-decoration: none;
        color: #fff;
        padding: 20px;
    }

    .header_inr nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav_btn01 {
        background: var(--color-03);
    }

    .header_inr nav a.nav_btn01:hover {
        background: #fc622b;
    }

    .header_inr img {
        height: 20px;
        margin: 10px;
    }


    .header_inr {
        grid-template-columns: 1fr auto;
        padding: 0 20px;
    }

    .header_inr nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--background-color-base01);
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 20px;
    }

    .header_inr nav.active {
        display: flex;
    }

    .header_inr nav a {
        padding: 10px 0;
        width: 100%;
    }

    .header_inr nav ul {
        list-style: none;
        padding: 0;
        display: flex;
    }
    .header_inr nav ul .support_items_header a {
        color: #333;
        padding: 0;
    }

    /*---- 設定メニュー ----*/
    ul.setting_menu{
        margin: 0;
    }
    /* 親liを基準にする */
    .setting_menu_head {
        position: relative;
        display: inline-block;
    }

    /* サブメニュー */
    .setting_menu_items {
        position: absolute;
        display: none;
        background: #fff;
        min-width: 200px;
        z-index: 1000;
    }

    /* 親liにhoverしたら表示 */
    .setting_menu_head:hover + .setting_menu_items,
    .setting_menu_items:hover {
        display: block !important;
    }


    /* -----------------ハンバーガーメニュー----------------------------- */

    .hamburger {
        display: inline-block;
        background: transparent;
        border: 0;
        font-size: 28px;
        color: #fff;
    }

    .hamburger_wrap {
        display: inline-block;
        text-align: right;
    }



    section.s01 {
        margin-bottom: 10vw;
    }

    .s01_inr {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
    }

    .s01_box01 {
        background: var(--color-01);
        height: 100%;
        align-content: center;
        text-align: center;
        font-size: var(--font-size-40);
        font-weight: bold;
        color: #fff;
        padding: 3vw 3vw;
    }

    img.brothers_logo_w02 {
        height: 2em;
        vertical-align: sub;
        margin-right: 0.4em;
    }

    .fv_btn_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        width: 80%;
        max-width: 480px;
        margin: 0 auto;
    }

    .s01_box02 {
        padding: 13% 13%;
    }

    img.brothers_logo_b03 {
        width: 88%;
        max-width: 800px;
        display: block;
        margin: 0 auto 5vw;
    }

    .s02_inr_box {
        margin: 10px 10px 80px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }

    a.s02_inr_box_link01 {
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-01);
        align-content: center;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        border-radius: 8%;
        position: relative;
    }

    a.s02_inr_box_link01::after {
        content: "》";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    a.s02_inr_box_link02 {
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-04);
        align-content: center;
        text-align: center;
        font-size: var(--font-size-24);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        border-radius: 8%;
        position: relative;
        cursor: default;
        pointer-events: none;
    }






    .filter-buttons {
        margin-bottom: 20px;
        text-align: center;
    }

    .filter-buttons button {
        margin-right: 10px;
        padding: 8px 16px;
        cursor: pointer;
        background: #eee;
        color: #888;
        border: none;
        border-radius: 8px;
        font-size: var(--font-size-24);
    }

    .filter-buttons button.is-active {
        background: var(--color-01);
        color: #fff;
        font-weight: bold;
    }

    .s02_inr_box a.hidden {
        display: none;
    }







    .s03_inr {
        max-width: 1400px;
        margin: 0;
        padding: 0 10px;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 40px;
    }

    h3.s03_inr_box_ttl {}

    .s03_inr_box {
        display: grid;
        grid-template-columns: 1fr;
        background: var(--color-04);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
    }

    h3.s03_inr_box_ttl {
        background: var(--color-01);
        color: #fff;
        text-align: center;
        font-size: var(--font-size-24);
        margin: 0;
        padding: 10px;
    }

    .s03_inr_blc p {
        padding: 1em;
        text-align: justify;
        margin: 0;
    }








    section.s04 {
        margin-bottom: 10vw;
    }

    .s04_inr {
        max-width: 1400px;
        margin: 5vw auto 5vw;
    }

    .s04_inr_box01 {
        border-radius: 20px;
        width: 88%;
        margin: 0 auto 40px;
        border: solid 8px;
    }

    h3.s04_inr_box01_ttl {
        text-align: center;
        font-size: var(--font-size-24);
        margin: 0;
        padding: 10px;
        border-bottom: solid 8px;
    }

    .s04_inr_box01_blc {
        padding: 10%;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: bold;
    }

    .s04_inr_box01_blc span {
        font-size: 220%;
        font-family: "futura-pt";
        font-weight: 500;
    }



    .s04_inr_box02_wrap {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        width: 88%;
        margin: 0 auto;
    }

    .s04_inr_box02:nth-child(-n + 2) {
        border-bottom: solid 2px;
        width: 100%;
        margin: 0;
    }

    h3.s04_inr_box02_ttl {
        text-align: center;
        font-size: var(--font-size-24);
        margin: 0;
        padding: 10px;

    }


    .s04_inr_box02_blc {
        padding: 5%;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: bold;
        width: 100%;
        s
    }

    .s04_inr_box02_blc span {
        font-size: 220%;
        font-family: "futura-pt";
        font-weight: 500;
    }

    .s04_inr_box02 {
        width: 88%;
        margin: 0 auto 4vw;
    }










    .s05_inr {
        width: 90%;
        max-width: 1400px;
        margin: 0 auto 10vw;
    }

    .s05_inr_box {
        display: grid;
        grid-template-columns: repeat(1fr);
        grid-gap: var(--font-size-24-32);
    }

    .s05_inr_box_blc {
        margin-bottom: 100px;
        /* margin: 1em 2em; */
    }

    .s05_inr_box_blc_wrap {
        background: var(--color-04);
        padding: 1em 2em;
        position: relative;
    }

    .s05_inr_box_blc_wrap h4 {
        width: fit-content;
        margin: 1em auto;
        border: solid 2px;
        padding: 6px 18px;
    }

    .s05_inr_box_blc_wrap p {
        text-align: center;
    }

    .s05_inr_box_blc:not(:last-child) .s05_inr_box_blc_wrap:not(:last-child)::after {
        content: "▼";
        position: absolute;
        bottom: -3em;
        /* ← 下に少し余白をとって表示 */
        left: 50%;
        transform: translateX(-50%);
        font-size: 32px;
        color: var(--color-01);
    }

    img.step00 {
        position: absolute;
        top: -50px;
        left: 50%;
        height: 64px;
        transform: translateX(-50%);
    }

    p.s05_inr_box_blc_p {
        text-align: center;

    }


    .s06_inr {
        width: 96%;
        max-width: 800px;
        margin: 0 auto 10vw;
    }

    .accordion {
        margin-bottom: 6vw;
    }

    .accordion-content {
        display: none;
    }

    .accordion_inr {
        border: solid 4px;
        margin-bottom: 10px;
    }

    .accordion-header {
        padding: 12px 45px 10px 20px;
        transition: background .3s ease;
        cursor: pointer;
        position: relative;
        font-size: var(--font-size-20);
        line-height: 1.4;
        background: #fff;
    }

    .accordion-header::before,
    .accordion-header::after {
        position: absolute;
        content: '';
        top: 1px;
        right: 20px;
        bottom: 0;
        width: 12px;
        height: 2px;
        margin: auto;
        background: #151E2F;
        font-size: var(--font-size-20);
    }

    .accordion-header::after {
        transform: rotate(-90deg);
        transition: transform 0.3s;
    }

    .accordion-header.active::after {
        transform: rotate(0deg);
    }

    .accordion-content {
        background-color: #FFF;
        padding: 12px 20px 10px;
        font-size: var(--font-size-20);
    }

    .accordion-header span,
    .accordion-content span {
        padding-left: 25px;
        position: relative;
        display: block;
    }

    .accordion-header span::before {
        position: absolute;
        content: "Q";
        top: 0;
        left: 0;
        color: #151E2F;
        font-size: var(--font-size-20);
        line-height: 1.4;
        transition: transform 0.3s;
    }


    .accordion-content span::before {
        position: absolute;
        content: "A";
        top: 3px;
        left: 0;
        color: #151E2F;
        font-size: var(--font-size-20);
    }

    .accordion-header:hover,
    .accordion-header:hover span::before,
    .accordion-header.active,
    .accordion-header.active span::before {
        transition: transform 0.3s;
        background: var(--color-01);
        color: #fff;
    }













    .s07_inr {
        max-width: 1400px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 4px;
        margin: 0 auto 4px;
    }


















    footer {
        background: var(--background-color-base01);
        padding: 100px;
    }

    .footer_logo {
        max-width: 128px;
        display: block;
        margin: 0 auto;
    }

    .footer_inr p {
        color: #fff;
        display: grid;
        grid-template-columns: auto 128px;
        width: fit-content;
        margin: 20px auto;
        align-items: anchor-center;
    }

    .footer_inr p span {
        font-weight: bold;
        margin-right: 10px;
    }





}


































/* ---------------------------PC表示--------------------------------------- */

@media screen and (min-width:769px) {


    .header_inr {
        background: var(--background-color-base01);
        grid-template-columns: 128px 1fr;
        width: 96%;
        margin: 10px auto 0;
        border-radius: 10em;
        padding: 0 40px;
        align-items: center;
        box-sizing: border-box;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }



    .header_inr nav {
        display: flex;
        justify-content: end;
    }

    .header_inr nav a {
        text-decoration: none;
        color: #fff;
        padding: 20px;
    }

    .header_inr nav ul {
        list-style: none;
        padding: 0;
        display: flex;
        align-items: center;
    }
    .header_inr nav ul .support_items_header a {
        color: #333;
        padding: 0;
    }

    .header_inr nav a:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .nav_btn01 {
        background: var(--color-03);
    }

    .header_inr nav a.nav_btn01:hover {
        background: #fc622b;
    }

    span.user_name {
        color: #fff;
        padding: 20px;
        font-weight: bold;
    }

    /* ハンバーガー非表示（PC用） */
    .hamburger {
        display: none;
        font-size: 30px;
        background: none;
        border: none;
        color: white;
        cursor: pointer;
        margin-left: auto;
    }

    .hamburger_wrap {
        display: none;
    }










    section.s01 {
        margin-bottom: 10vw;
    }

    .s01_inr {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }

    .s01_box01 {
        background: var(--color-01);
        height: 100%;
        align-content: center;
        text-align: center;
        font-size: var(--font-size-40);
        font-weight: bold;
        color: #fff;
    }

    img.brothers_logo_w02 {
        height: 2em;
        vertical-align: sub;
        margin-right: 0.4em;
    }

    .fv_btn_wrap {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        width: 80%;
        max-width: 480px;
        margin: 0 auto;
    }

    .s01_box02 {
        padding: 10% 10%;
    }

    img.brothers_logo_b03 {
        width: 88%;
        max-width: 800px;
        display: block;
        margin: 0 auto 5vw;
    }




    #s02 {
        padding: 0 25px;
    }

    .s02_inr_box {
        max-width: 1400px;
        margin: 0 auto 5vw;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: 20px;
    }

    a.s02_inr_box_link01 {
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-01);
        align-content: center;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        border-radius: 8%;
        position: relative;
    }

    a.s02_inr_box_link01::after {
        content: "》";
        position: absolute;
        bottom: 10px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
    }

    a.s02_inr_box_link02 {
        aspect-ratio: 1 / 1;
        border: solid 8px var(--color-04);
        align-content: center;
        text-align: center;
        font-size: var(--font-size-24);
        font-weight: 800;
        color: var(--color-01);
        text-decoration: none;
        border-radius: 8%;
        position: relative;
        cursor: default;
        pointer-events: none;
    }



    .filter-buttons {
        margin-bottom: 20px;
        text-align: center;
    }

    .filter-buttons button {
        margin-right: 10px;
        padding: 8px 16px;
        cursor: pointer;
        background: #eee;
        color: #888;
        border: none;
        border-radius: 8px;
        font-size: var(--font-size-24);
    }

    .filter-buttons button.is-active {
        background: var(--color-01);
        color: #fff;
        font-weight: bold;
    }

    .s02_inr_box a.hidden {
        display: none;
    }











    .s03 {
        padding: 0 25px;
    }

    .s03_inr {
        max-width: 1400px;
        margin: 0 auto 5vw;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 40px;
    }

    h3.s03_inr_box_ttl {
        grid-column: span 2;
    }

    .s03_inr_box {
        display: grid;
        grid-template-columns: 60% 1fr;
        background: var(--color-04);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 4px 4px 16px rgba(0, 0, 0, 0.2);
    }

    h3.s03_inr_box_ttl {
        background: var(--color-01);
        color: #fff;
        text-align: center;
        font-size: var(--font-size-24);
        margin: 0;
        padding: 10px;
    }

    .s03_inr_blc p {
        padding: 1em 2em;
        text-align: justify;
    }

    .s03_inr_blc img {
        object-fit: cover;
        height: 100%;
    }







    section.s04 {
        margin-bottom: 10vw;
    }

    .s04_inr {
        max-width: 1400px;
        margin: 0 auto 5vw;
    }

    .s04_inr_box01 {
        border-radius: 20px;
        width: 44%;
        margin: 0 auto 4vw;
        border: solid 8px;
    }

    h3.s04_inr_box01_ttl {
        text-align: center;
        font-size: var(--font-size-24);
        margin: 0;
        padding: 10px;
        border-bottom: solid 8px;
    }

    .s04_inr_box01_blc {
        padding: 10%;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: bold;
    }

    .s04_inr_box01_blc span {
        font-size: 220%;
        font-family: "futura-pt";
        font-weight: 500;
    }



    .s04_inr_box02_wrap {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .s04_inr_box02:nth-child(-n + 2) {
        border-right: solid 4px;
    }

    h3.s04_inr_box02_ttl {
        width: fit-content;
        margin: 0 auto;
    }

    .s04_inr_box02_blc {
        padding: 5%;
        text-align: center;
        font-size: var(--font-size-32);
        font-weight: bold;
    }

    .s04_inr_box02_blc span {
        font-size: 220%;
        font-family: "futura-pt";
        font-weight: 500;
    }










    .s05_inr {
        width: 96%;
        max-width: 1400px;
        margin: 0 auto 10vw;
    }

    .s05_inr_box {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-gap: var(--font-size-24);
    }

    .s05_inr_box_blc_wrap {
        background: var(--color-04);
        padding: 1em 2em;
        position: relative;
    }

    .s05_inr_box_blc_wrap h4 {
        width: fit-content;
        margin: 1em auto;
        border: solid 2px;
        padding: 6px 18px;
    }

    img.step00 {
        position: absolute;
        top: -50px;
        left: 50%;
        height: 64px;
        transform: translateX(-50%);
    }

    p.s05_inr_box_blc_p {
        text-align: center;
    }

    .s05_inr_box_blc:not(:last-child) .s05_inr_box_blc_wrap:not(:last-child)::after {
        content: "▶︎";
        right: -1em;
        top: 50%;
        position: absolute;
        font-size: var(--font-size-24);
        transform: translateY(-50%);
        color: var(--color-01);
    }










    .s06_inr {
        width: 96%;
        max-width: 800px;
        margin: 0 auto 10vw;
    }

    .accordion {
        margin-bottom: 6vw;
    }

    .accordion-content {
        display: none;
    }

    .accordion_inr {
        border: solid 4px;
        margin-bottom: 10px;
    }

    .accordion-header {
        padding: 12px 45px 10px 20px;
        transition: background .3s ease;
        cursor: pointer;
        position: relative;
        font-size: var(--font-size-20);
        line-height: 1.4;
        background: #fff;
    }

    .accordion-header::before,
    .accordion-header::after {
        position: absolute;
        content: '';
        top: 1px;
        right: 20px;
        bottom: 0;
        width: 12px;
        height: 2px;
        margin: auto;
        background: #151E2F;
        font-size: var(--font-size-20);
    }

    .accordion-header::after {
        transform: rotate(-90deg);
        transition: transform 0.3s;
    }

    .accordion-header.active::after {
        transform: rotate(0deg);
    }

    .accordion-content {
        background-color: #FFF;
        padding: 12px 20px 10px;
        font-size: var(--font-size-20);
    }

    .accordion-header span,
    .accordion-content span {
        padding-left: 25px;
        position: relative;
        display: block;
    }

    .accordion-header span::before {
        position: absolute;
        content: "Q";
        top: 0;
        left: 0;
        color: #151E2F;
        font-size: var(--font-size-20);
        line-height: 1.4;
        transition: transform 0.3s;
    }


    .accordion-content span::before {
        position: absolute;
        content: "A";
        top: 3px;
        left: 0;
        color: #151E2F;
        font-size: var(--font-size-20);
    }

    .accordion-header:hover,
    .accordion-header:hover span::before,
    .accordion-header.active,
    .accordion-header.active span::before {
        transition: transform 0.3s;
        background: var(--color-01);
        color: #fff;
    }













    .s07_inr {
        max-width: 1400px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 4px;
        margin: 0 auto 4px;
    }


















    footer {
        background: var(--background-color-base01);
        padding: 100px;
    }

    .footer_logo {
        max-width: 128px;
        display: block;
        margin: 0 auto;
    }

    .footer_inr p {
        color: #fff;
        display: grid;
        grid-template-columns: auto 128px;
        width: fit-content;
        margin: 20px auto;
        align-items: anchor-center;
    }

    .footer_inr p span {
        font-weight: bold;
        margin-right: 10px;
    }




}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background: var(--color-01);
}

input:checked + .slider:before {
    transform: translateX(26px);
}