@charset "utf-8";
* {
    font-family: 'Noto Sans JP', sans-serif;/* 'Sofia Sans Condensed', */
}
@media screen and (min-width:769px){
    /* PC 769px以上 */
    html{
        font-size: 16px;
    }
}
@media screen and (max-width:768px){
    /* タブレット 768px以下 */
    html{
        font-size: 2vw;
    }
}
@media screen and  (max-width:480px){
    /* スマートフォン 480px以下 */
    html{
        font-size: 3.6vw;
    }
}

.pc_cont {display: block;}
.sp_cont {display: none;}

body * {
    color: #333333;
}
body a:hover {
    text-decoration: underline;
}
body ol li {
    list-style-type: decimal;
    margin-left: 1em;
}
body img {
    width: 100%;
}

/* 下部固定お問い合わせボタン用 */
.top_page {
    margin-bottom: 100px;
}

.link {
    text-decoration: underline;
}

/*---------------------------------------- 
header
----------------------------------------*/
#header {
    display: flex;
    max-width: 1080px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}
.tel_wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
}
.tel_number_wrap {
    margin-right: 1.5em;
    font-size: 0.875rem;
    text-align: left;
    position: relative;
    padding-left: 3rem;
}
.tel_number a {
    font-size: 1.75rem;
    font-weight: 700;
    color: #00986B;
    line-height: 1;
}
.tel_number a:hover {
    text-decoration: none;
}
.tel_number_wrap::before {
    content: '';
    width: 2.5rem;
    height: 2.5rem;
    background-image: url(../images/icon-phone.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.tel_time {
    font-size: 0.8125rem;
}
/*---------------------------------------- 
MV - メインビジュアル 
----------------------------------------*/
.mv {
    width: 100%;
    background-color: #fcf8f6;
    padding: 20px 0;
}
.mv_inner {
    max-width: 90%;
    width: 100%;
    margin-left: 10%;
    display: flex;
    align-items: center;
    /* overflow: hidden; */
    position: relative;
}
.mv_textWrap {
    /* width: 42%; */
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.mv_title {
    font-size: 3.5rem;
    font-weight:bold;
    line-height: 1.25;
    color: #00986B;
    margin-bottom: 6%;
}
.mv_title-small {
    font-size: 1.75rem;
    color: #00986B;
}

.mv_text {
    font-size: 1.25rem;
    color: #00986B;
    line-height: 1.25; 
}
.slider_wrap {
    width: calc(100% - 42%);
    margin-left: 42%;
}
.slider {
    width: 100%;
}
.slick-slide {
    margin-right: 10px;
}
.slick-slide img {
    max-width: 730px;
    width: 100%;
}
.slider .slick-list {
    padding: 0 30% 0 0!important;
}
.slider li {
    margin: 0 0.5%;
}
.slider li figcaption {
    margin: 10px 0 0;
}



/*---------------------------------------- 
contents -- 共通のwrapper 
----------------------------------------*/
.contentsWrap {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
    padding: 4.5rem 0 7.5rem;
}
.contentsTitle {
    font-size: 2.25rem;
    font-weight: bold;
    position: relative;
    text-align: center;
    margin-bottom: 3.75rem;
    color: #505050;
}
.contentsTitle::before {
    content: '';
    width: 3.75rem;
    height: 0.3125rem;
    background-color: #00986B;
    position: absolute;
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
}
.contentsTitle-sub {
    color: #00986B;
    font-size: 1.75rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1.875rem;
}
.contents_text {
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/*---------------------------------------- 
NEWS_お知らせ
----------------------------------------*/
.news_item {
    border-top: 1px solid #dddddd;
    padding: 1.3125rem 2.625rem;
}
.news_item:last-child {
    border-bottom: 1px solid #dddddd;
    margin-bottom: 2.5rem;
}
.news_item_inner {
    display: flex;
}
.news_date {
    margin-right: 4%;
    font-weight: 500;
    line-height: 1.5;
}
.news_content {
    line-height: 1.5;
}

/*---------------------------------------- 
お問い合わせ・資料ダウンロードボタン
----------------------------------------*/
.conversionBtn_wrap {
    display: flex;
    justify-content: center;
    padding-top: 3.125rem;
}
.conversionBtn-fix {
    background-color: rgba(249, 249, 249, 0.8);
    backdrop-filter: blur(5px);
    padding: 1%;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
}
.conversionBtn {
    max-width: 20rem;
    width: 100%;
    text-align: center;
    font-size: 1.25rem;
    margin: 0 1rem;
}
.conversionBtn a {
    padding: 1rem;
    display: inline-block;
    width: 100%;
    border-radius: 5px;
    font-weight: 500;
}
.conversionBtn a:hover {
    transition: .2s;
    transform: translateY(-0.5rem);
    text-decoration: none;
}
.conversionBtn-contact a {
    background-color: #00986B;
    color: #fff;
}
.conversionBtn-data a {
    background-color: #E9D3C2;
    color: #333;
}

/*---------------------------------------- 
詳細はこちらボタン
----------------------------------------*/
.moreBtn {
    max-width: 18.75rem;
    width: 100%;
    border: 2px solid #00986B;
    border-radius: 5px;
    text-align: center;
    margin: 0 auto;
}
.moreBtn-shop {
    max-width: 21.25rem;
}
.moreBtn a {
    color: #00986B;
    padding: 4%;
    display: inline-block;
    width: 100%;
    position: relative;
    font-size: 1.125rem;
    font-weight: 500;
}
.moreBtn a::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    border-top: solid 2px #00986B;
    border-right: solid 2px #00986B;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    right: 10%;
    top: 50%;
}
.moreBtn a:hover {
    color: #ffffff;
    background-color: #00986B;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
    text-decoration: none;
}
.moreBtn a:hover::before {
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transition: .2s;
}

/*---------------------------------------- 
TOP_加盟店実績
----------------------------------------*/
.map_wrap {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    text-align: center;
    margin-bottom: 2.5rem;
}
.fukidashi_wrap {
    position: absolute;
    top: 2%;
    left: 3%;
    max-width: 18.75rem;
    width: 100%;
}
.fukidashi {
    position: relative;
    line-height: 1.5;
    color: #ffffff;
    background-color: #00986B;
    padding: 3%;
    margin-bottom: 8%;
    border-radius: 5px;
}
.fukidashi::after {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 8px 0 8px;
    border-color: #00986a transparent transparent transparent;
}
.fukidashi_number {
    font-size: 120%;
    color: #ffffff;
    padding: 0 1%;
}
.fukidashi_highlights {
    color: #FFFF02;
    display: inline-block;
}
.fukidashi_stores {
    font-size: 1.5rem;
}
.fukidashi_stores .area_stores_number {
    font-size: 4.5rem;
}
.fukidashi_notice {
    text-align: right;
    color: #505050;
    font-size: 0.75rem;
}

.area {
    position: absolute;
    width: 10.625rem;
    height: 10.625rem;
    border: 2px solid rgba(0,152,107,0.6);
    background-color: rgba(255,255,255,0.6);
    border-radius: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hokkaido-tohoku {
    top: 12%;
    right: 30%;
}
.kanto-koshinetsu {
    bottom: 16%;
    right: 20%;
}
.tokai-hokuriku {
    bottom: 2.4%;
    right: 40%;
}
.kinkiken {
    top: 31%;
    left: 28%;
}
.chugoku-shikoku {
    bottom: 2.4%;
    left: 18%;
}
.kyushu-okinawa {
    bottom: 16%;
    left: 0;
}
.kaigai {
    bottom: 2.4%;
    right: 0;
    width: 9.375rem;
    height: 9.375rem;
}

.area_title {
    font-size: 0.9375rem;
    position: relative;
    margin-bottom: 8%;
}
.area_title::before {
    content: '';
    width: 1.5rem;
    height: 0.125rem;
    background-color: #00986B;
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
}
.area_stores {
    font-size: 1.3125rem;
}
.area_stores_number {
    font-family: 'Sofia Sans Condensed';
    color: #00986B;
    font-size: 4.0625rem;
    font-weight: 700;
    line-height: 1;
}
.area_companyStore {
    font-size: 0.875rem;
}

/*---------------------------------------- 
TOP_加盟のメリット/サポート体制
----------------------------------------*/
#benefits {
    background-color: #f0f9f9;
}
.benefits_item {
    background-color: #ffffff;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
}
.benefits_item:nth-child(2n) {
    flex-direction: row-reverse;
}
.benefits_item:last-child {
    margin-bottom: 0;
}
.benefits_txt_wrap {
    width: calc(100% - 46%);
    padding: 2.5rem;
}
.benefits_txt {
    font-size: 0.875rem;
    line-height: 2;
    margin-bottom: 1.25rem;
}
.benefits_img {
    width:46%;
}

/*---------------------------------------- 
TOP_異業種からの参入も安心サポート
----------------------------------------*/
.support_img {
    text-align: center;
    max-width: 23.75rem;
    margin: 0 auto;
}
/*---------------------------------------- 
TOP_事業の収益シミュレーション目安
----------------------------------------*/
.simulation_wrap {
    display: flex;
    justify-content: space-around;
}
.simulation_cont{
    width: 45%;
}
.simulation_img {
    max-width: fit-content;
    border: 1px solid #aaa;
    border-radius: 15px 15px 0 0 ;
}

/*---------------------------------------- 
TOP_加盟店オーナー様の声
----------------------------------------*/
.owner_item {
    max-width: 1000px;
    width: 100%;
    padding: 2.25rem 2.5rem;
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
    margin: 0 auto 2.5rem;
    background-color: #fff;
}
.owner_item:last-child {
    margin-bottom: 0;
}
.owner_item_title {
    margin-bottom: 2rem;
}
.owner_item_inner {
    display: flex;
    gap: 3%;
}
.owner_item_shop {
    max-width: 35%;
    width: 100%;
}
.owner_item_img { 
    max-width: 15%;
    width: 100%;
    overflow: hidden;
}
.owner_item_text {
    max-width: 44%;
    width: 100%;
}
.owner_item_text p {
    line-height: 1.5;
    margin-bottom: 0.75em;
}
.owner_item_text p:last-of-type {
    margin-bottom: 1.25em;
}
.owner_item_text .name {
    font-weight: 500;
    font-size: 1.125rem;
    padding-top: 0.5rem;
}
.owner_item_text .moreBtn {
    margin: 0;
}

/*---------------------------------------- 
TOP_加盟条件
----------------------------------------*/
#terms {
    background-color: #F9F9F9;
}
.terms_item_wrap {
    width: fit-content;
    margin: 0 auto;
}
.terms_item {
    line-height: 2;
}

/*---------------------------------------- 
TOP_よくあるご質問
----------------------------------------*/
.faq_q {
    padding: 1rem;
    padding-left: 4.375rem;
    margin-bottom: 1.25rem;
    background-color: #F9F9F9;
    border-radius: 5px;
    font-size: 1.25rem;
    position: relative;
    cursor: pointer;
}
.faq_a {
    /*アコーディオンで現れるエリア*/
    display: none;
    padding: 0 1rem 0 4.375rem;
    margin-bottom: 1.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    position: relative;
}
.faq_a p, .faq_a li {
    margin-bottom: 1em;
}
.faq_a_title {
    font-weight: 700;
    display: block;
}

/* Q. A. */
.faq_q::before, .faq_a::before {
    content: 'Q.';
    font-family: 'Sofia Sans Condensed';
    color: #00986B;
    position: absolute;
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    font-weight: bold;
    font-size: 1.5rem;
}
.faq_a::before {
    content: 'A.';
    top: 0;
    transform: translateY(0);
}

/* arrow */
.faq_q::after {
    content: '';
    width: 0.75rem;
    height: 0.75rem;
    border-top: solid 2px #00986B;
    border-right: solid 2px #00986B;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    right: 3%;
    top: 32%;
}
/*　arrow - 
    closeというクラスがついたら形状変化　*/
.faq_q.close::after{
	transform: rotate(-45deg);
    top: 42%;
}


/*---------------------------------------- 
TOP_ネットワーク力を活かしたイベント
----------------------------------------*/
#events {
    background-color: #f0f9f9;
}
.events_item_wrap {
    display: flex;
    justify-content: space-around;
}
.events_item {
    background-color: #ffffff;
    width: 30%;
    padding: 1rem 1rem 2rem;
    border-radius: 5px;
}
.events_img{
    margin-bottom: 1.25rem;
}
.events_title {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}
.events_title span {
    display: block;
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 0.25rem;
}

/*---------------------------------------- 
TOP_社会貢献活動
----------------------------------------*/
#contributionToSociety {
}
.contributionToSociety_item_wrap {
    margin-bottom: 4rem;
}
.contributionToSociety_item_wrap:last-child {
    margin-bottom: 0;
}
.contributionToSociety_item {
    padding: 2rem;
    border-top: 1px solid #dddddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.contributionToSociety_item:last-of-type {
    border-bottom: 1px solid #dddddd;
}
.contributionToSociety_txt {
    width: 66%;
    font-size: 0.875rem;
}
.contributionToSociety_txt .section_title {
    font-size: 0.875rem;
    color: #00986B;
    margin-bottom: 1.75rem;
}
.contributionToSociety_txt_inner {
    margin-bottom: 1.75rem;
    line-height: 2;
}
.contributionToSociety_txt_inner:last-child {
    margin-bottom: 0;
}
.contributionToSociety_txt_inner h4 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.contributionToSociety_txt_inner p {
    line-height: 1.75;
}
.contributionToSociety_img {
    width: 30%;
}


/*---------------------------------------- 
footer_お問い合わせ
----------------------------------------*/
.contact {
    background-color: #F9F9F9;
}
.contact .contentsWrap {
    padding: 3.125rem 0 3.75rem;
}
.contact .contents_text {
    margin-bottom: 1.875rem;
}
.contact_item_wrap {
    padding: 3.375rem 0;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
}
.contact_item {
    border-right: 1px solid #dddddd;
    width: 35%;
    text-align: center;
}
.contact_item:first-child {
    width: 30%;
}
.contact_item:last-child {
    border-right:none;
}
.contact_item h3 {
    margin-bottom: 2.25rem;
}
.contact_item .tel_number_wrap {
    margin: 0;
    margin-bottom: 0.5rem;
}
.contact_item .conversionBtn {
    margin: 0 auto;
}

/* お役立ち情報 */
.useful .contentsWrap {
    padding: 3.125rem 0 3.75rem;
    border-bottom: 1px solid #dddddd;
}
.useful_list {
    padding: 0 4%;
    display: flex;
    justify-content: center;
    gap: 4%;
}
.articleList__item {
    width: calc((100% - 4% - 4%) / 3);
}
.articleList__item a:hover {
    text-decoration: none;
    opacity: 0.6;
}
.imageBox {
    overflow: hidden;
    max-height: 10.625rem;
}
.top_page .imageBox {
    overflow: hidden;
    /* max-height: none; */
    /* ↑TOPの.imageBoxに限定した記述 */
}
.articleList__category {
    background-color: #3ba4ee;
    color: #fff;
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 1rem;
    padding: 1px 6px 2px;
}
.articleList__title {
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 8px;
    max-height: 112px;
    overflow: hidden;
    word-break: break-all;
}
.articleList__date {
    color: #707070;
    display: -webkit-box;
    display: flex;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-top: 8px;
}

/*---------------------------------------- 
footer_nav copyright
----------------------------------------*/
.bnrWrap {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2%;
    padding: 2.5rem 0 1rem;
    border-bottom: 1px solid #dddddd;
}
.bnr_item {
    max-width: calc((100% - (2% * 3))/4);
    font-size: 0.875rem;
    color: #505050;
    text-align: center;
    margin-bottom: 1.5rem;
}
.bnr_item_img {
    margin-bottom: 0.625rem;
}
.footer_inner {
    max-width: 1080px;
    margin: 0 auto;
}
.fc_nav {
    padding: 3% 0;
    font-size: 0.875rem;
}
.fc_nav_inner {
    display: flex;
    flex-wrap: wrap;
    /* flex-direction: column;
    width: 25%;
    height: 4em; */
}
.fc_nav_inner li {
    max-width: 25%;
    width: 100%;
    margin-bottom: 1em;
}
.fc_nav_inner-title {
    display: block;
    margin-bottom: 1em;
}
.fc_nav_inner li ul {
    width: 100%;
    padding: 0 1em;
}
.fc_nav_inner li ul li {
    max-width: 100%;
}
.corp_nav{
    background-color: #F9F9F9;
    padding: 1% 0;
    font-size: 0.875rem;
}
.corp_nav_inner {
    display: flex;
    justify-content: center;
}
.corp_nav_inner a {
    padding-right: 2%;
    margin-right: 2%;
    position: relative;
}
.corp_nav_inner a:last-child {
    padding-right: 0;
    margin-right: 0;
}
.corp_nav_inner a::after {
    content: '|';
    position: absolute;
    right: 0;
}
.corp_nav_inner a:last-child::after {
    content: '';
}
.corp_info {
    padding: 1% 0;
}
.corp_info .footer_inner {
    display: flex;
    align-items: center;
}
.corp_logo {
    width: 7.5rem;
    margin: 1.125rem 2.5rem 1.125rem 0;
    /* margin-right: 5%; */
}
.corp_logo a {
    /* display: flex;
    max-height: 70px; */
}
.corp_logo img {
    /* max-width: 120px; */
}
.corp_address {
    font-size: 0.875rem;
}

.copyright {
    font-size: 0.75rem;
    color: #ffffff;
    background-color: #00986B;
    display: block;
    text-align: center;
    padding: 0.5rem 0;
}


/*---------------------------------------- 
    下層ページ_共通
----------------------------------------*/
.pageTitle_wrap {
    width: 100%;
    background-color: #fcf8f6;
    padding: 5rem 0;
  }
  .pageTitle_inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .pageTitle {
    color: #00986B;
    font-size: 2.25rem;
    font-weight: 700; 
    margin-bottom: 1.25rem;
  }
  .page_list {
    color: #505050;
    font-size: 0.875rem;
  }
  .page_list a {
    text-decoration: underline;
  }
  .contents_inner {
    margin: 0 auto 7.5rem;
  }
  .contents_inner_title {
    color: #00986B;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 1.875rem;
    line-height: 1.5;
  }


/* タブレット 768px以下～481pxまで */
@media screen and (max-width: 768px) {
    .pc_cont {display: block;}
    .sp_cont {display: none;}

    /*---------------------------------------- 
    #header
    ----------------------------------------*/
    .tel_number a {
        font-size: 1.5rem;
    }

    /*---------------------------------------- 
    MV
    ----------------------------------------*/
    .mv_inner {
        max-width: 94%;
        margin-left: 6%;
    }
    .mv_title {
        font-size: 2.25rem;
    }
    .mv_title-small {
        font-size: 1.25rem;
    }
    .mv_text {
        font-size: 0.85rem;
    }
    .slider_wrap {
        width: calc(100% - 48%);
        margin-left: 48%;
    }

    .contentsWrap {
        padding: 4.5rem 2rem 7.5rem;
    }

    /*---------------------------------------- 
    TOP_事業の収益シミュレーション目安
    ----------------------------------------*/
    .simulation_wrap {
        flex-direction: column;
    }
    .simulation_cont {
        width: 100%;
    }
    .simulation_cont + .simulation_cont {
        margin-top: 2.4rem;
    }
     /*---------------------------------------- 
    加盟店オーナー様の声
    ----------------------------------------*/
    .owner_item_title {
        font-size: 1.5rem;
    }

    /*---------------------------------------- 
    contact
    ----------------------------------------*/
    .contact .conversionBtn {
        max-width: 15rem;
        font-size: 1rem;
    }
    .fc_nav_inner li {
        padding: 0 1rem;
        max-width: 50%;
    }
    .pageTitle_wrap {
        padding: 5rem 2rem;
    }
    .contentsWrap {
        padding: 4.5rem 2rem 7.5rem;
    }
    .contact_item {
        padding: 1rem;
    }
}

/* スマートフォン 480px以下 */
@media screen and (max-width: 480px) {
    .pc_cont {display: none;}
    .sp_cont {display: block;}

    body {
        margin-top: 4.5rem;
        margin-bottom: 0;
    }

    /*---------------------------------------- 
    header sp_menu
    ----------------------------------------*/
    #header {
        height: 4.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 4vw;
        position: relative;
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 999;
        background-color: #ffffff;
    }
    .sp_menu{}
    .hamburger-menu {
        width: 50px;
        height: 50px;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
    }
    .hamburger-menu__bar {
        display: inline-block;
        width: 44%;
        height: 2px;
        background-color: #00986B;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: .5s;
    }
    .hamburger-menu__bar:first-child {
        top: 16px;
    }
    .hamburger-menu__bar:nth-child(2) {
        top: 24px;
    }
    .hamburger-menu__bar:last-child {
        top: 32px;
    }
    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }
    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }
    .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }
    .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
    }
    .navigation {
        display: none;
        background-color: #ffffff;
        position: absolute;
        top: 4.5rem;
        left: 0;
        width: 100%;
        height: calc(100vh - 50px);
        z-index: 9999;
    }
    .navigation__list {
        padding: 0 4vw;
        margin: 0;
    }
    .navigation__list-item {
        border-bottom: solid 1px #dddddd;
    }
    .navigation__list-item:first-child {
        border-top: solid 1px #dddddd;
    }
    .navigation__link {
        text-decoration: none;
        display: block;
        padding: 1.4em 4vw;
        transition: .5s;
    }
    .navigation__list-item-title {
        display: block;
        padding: 1.4em 4vw;
    }
    .navigation__list-item ul {
        padding-left: 4vw;
    }
    .navigation__list-item ul .navigation__list-item:last-child {
        border-bottom: none;
    }

    /*---------------------------------------- 
    slider
    ----------------------------------------*/
    .mv_inner {
        flex-wrap: wrap;
        justify-content: center;
        margin: 0;
        max-width: 100%;
    }
    .mv_textWrap {
        position: static;
        text-align: center;
        transform: translateY(0);
        margin: 1rem auto 2rem;
    }
    .slider_wrap {
        width: 100%;
        margin: 0;
    }
    .slider .slick-list {
        padding: 0 50px !important;
    }


    .news_item {
        padding: 1.25rem;
    }
    .news_item_inner {
        flex-wrap: wrap;
    }
    .news_date {
        margin-bottom: 0.5rem;
        width: 100%;
    }
    
    .conversionBtn_wrap {
        flex-wrap: wrap;
    }
    .conversionBtn {
        margin: 0 auto 1.5rem;
    }
    .conversionBtn:last-child {
        margin: 0 auto;
    }
    .conversionBtn-fix {
        position: static;
        padding: 2rem 0;
    }
    .contact .conversionBtn {
        font-size: 1.25rem;
        max-width: 20rem;
    }

    /*---------------------------------------- 
    contentsWrap
    ----------------------------------------*/
    .contentsWrap {
        padding: 4.5rem 1.25rem 7.5rem;
    }
    .contents_text {
        line-height: 2;
        text-align: left;
        padding: 0 1.25rem;
    }

    /* 加盟店実績 */
    .map {
        padding-top: 5rem;
    }
    .fukidashi_wrap {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        max-width: 20rem;
    }
    .fukidashi_notice {
        text-align: center;
    }
    .area {
        border-radius: 0;
        border: none;
        border-bottom: 1px solid #00986B;
        position: static;
        width: 100%;
        height: auto;
        margin-bottom: 1rem;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
    }
    .area_title {
        font-size: 1rem;
        font-weight: 500;
        text-align: left;
        padding-left: 1.25rem;
        margin-bottom: 0;
        width: 40%;
        align-self: center;
    }
    .area_title::before {
        content: '';
        width: 0;
    }

    /* 加盟のメリット/サポート体制 */
    .benefits_item {
        flex-wrap: wrap;
        flex-direction: column-reverse;
    }
    .benefits_item:nth-child(2n) {
        flex-direction: column-reverse;
    }
    .benefits_img, .benefits_txt_wrap {
        width: 100%;
    }
    .benefits_txt {
        font-size: 1rem;
    }

    /* 加盟店オーナー様の声 */
    .owner_item_inner {
        flex-direction: column;
        gap: 1.25rem;
    }
    .owner_item_shop {
        max-width: 100%;
    }
    .owner_item_img {
        max-width: 35%;
        margin: 0 auto;
    }
    .owner_item_text {
        max-width: 100%;
    }

    /* ネットワーク力を活かしたイベント */
    .events_item_wrap {
        flex-wrap: wrap;
    }
    .events_item {
        width: 100%;
        margin-bottom: 2rem;
    }
    .events_title span {
        font-size: 1rem;
    }

    /* 加盟条件 */
    .terms_item_wrap {
        padding: 0 1.25rem;
    }

    /* FAQ */
    .faq_q {
        padding: 1rem 3rem;
    }
    .faq_a {
        padding: 0 1rem 0 3rem;
        font-size: 1rem;
    }

    /* 顧客満足度の向上及び社会貢献 */
    .contributionToSociety_item {
        flex-wrap: wrap;
    }
    .contributionToSociety_txt {
        width: 100%;
        font-size: 1rem;
    }
    .contributionToSociety_txt_inner:last-child {
        margin-bottom: 1.75rem;
    }
    .contributionToSociety_img {
        width: 100%;
    }

    /* お問い合わせ */
    .contact .contentsWrap {
        padding: 3.125rem 1.25rem 3.75rem;
    }
    .contact_item_wrap {
        flex-wrap: wrap;
        padding: 1rem;
    }
    .contact_item, .contact_item:first-child {
        width: 100%;
        border-right: 0;
        border-bottom: 1px solid #dddddd;
    }
    .contact_item {
        padding: 2rem 1rem;
    }
    .contact_item:last-child {
        border-bottom: 0;
    }
    .contact_item h3 {
        margin-bottom: 1.75rem;
    }
    .tel_number_wrap {
        font-size: 1rem;
    }
    .tel_number a {
        font-size: 1.75rem;
    }
    .tel_time {
        font-size: 1rem;
    }

    /* お役立ち情報 */
    .useful_list {
        flex-wrap: wrap;
    }
    .useful .contentsWrap {
        padding: 3.125rem 1.25rem 3.75rem;
        border-bottom: 1px solid #dddddd;
    }
    .articleList__item {
        width: 100%;
        margin-bottom: 1.875rem;
    }
    .articleList__item:last-child {
        margin-bottom: 0;
    }
    .imageBox {
        max-height: none;
    }

    /* footer */
    .bnrWrap {
        gap: 4%;
        border-bottom: none; 
    }
    .bnr_item {
        max-width: calc((100% - (1.5rem * 2 + 4%))/2);
    }
    .corp_nav {
        font-size: 1rem;
        padding: 2rem 1.5rem;
    }
    .corp_nav_inner {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .corp_nav_inner a {
        padding-right: 1rem;
        margin-right: 1rem;
        line-height: 2;
    }
    .corp_info {
        font-size: 1rem;
        padding: 2rem;
    }
    .corp_info .footer_inner {
        flex-wrap: wrap;
    }
    .corp_name {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    .corp_address {
        font-size: 1rem;
    }

    /* 下層ページ_title */
    .pageTitle {
        font-size: 1.95rem;
    }
    .contentsTitle {
        font-size: 1.8rem;
    }
}