@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

@import url('nav.css');
@import url('variables.css');

/* ----------------------------------------
*Header
---------------------------------------- */
header p{
    margin-bottom: 0;
    padding-bottom: 0;
}
header a{
    text-decoration: none;
}
header ul{
    margin-bottom: 0;
    padding-bottom: 0;
}
.header_top_txt{
    padding-block: 10px;
}
.header_top_txt p{
    font-size: .7rem;
}
.header_logo_area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header_logo img{
    width: 300px;
}
.header_logo img:hover{
    opacity: .5;
}

/*お問い合わせボタン*/
.contact_btn{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
    padding-inline: 20px;
    font-size: .8rem;
    font-weight: bold;
    color: #fff !important;
    border-radius: 50px;
    background-color: #E14024;
    transition: .5s;
}
.contact_btn img{
    width: 40px;transition: .1s;
}
.contact_btn:hover{
    background-color: #ee7f6b;
}
.contact_btn:hover img{
    transform: translateX(-3px);
}

/*PC Nav*/
.pc_nav{
    margin-top: 10px;
    padding-bottom: 10px;
}
.pc_nav ul{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}
.pc_nav ul li a{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    height: 100%;
    font-size: .9rem;
    color: #000;
    font-weight: bold;
    transition: .5s;
}
.pc_nav ul li a span{
    flex-grow: 1;
    display: flex ;
    align-items: center;
}
/* .pc_nav ul li a img{
    width: 25px;
} */
.n_home{ width: 20px; }
.n_about{ width: 30px; }
.n_cost{ width: 20px; }
.n_jirei{ width: 20px; }
.n_faq{ width: 30px; }
.n_colum{ width: 16px; }

.pc_nav ul li a:hover{
    color: #E14024;
}
.pc_nav ul li a img{
    transition: .5s;
}
.pc_nav ul li a:hover img{
    transform: translateY(-3px);
}

/*SP*/
.header_logo_sp{
    padding-bottom: 10px;
}
.header_top_txt_sp{
    padding-top: 5px;
    font-size: 12px;
}
.header_logo_sp img{
    width: 60%;
}


/* ----------------------------------------
*フッター
---------------------------------------- */
#footer{
    padding-top: 2rem;
    padding-bottom: 0;
}
.footer_main_link li a{
    display: inline-block;
    margin-bottom: .5rem;
    font-size: .85rem;
    font-weight: bold;
}
.footer_main_link li i{
    display: inline-block;
    margin-right: 10px;
    color: var(--main);
}
.footer_link li a{
    display: inline-block;
    margin-bottom: .5rem;
    font-size: .85rem;
}
#footer .header_btn{
    max-width: 400px;
}
.footer_main_link li a:hover,
.footer_link li a:hover{
    color: var(--main) !important;
}
.footer_sns{
    margin-top: 2rem;
    padding-block: 2rem;
    border-top: 3px solid #ddd;
}
.footer_sns h3{
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight:bold;
    text-align: center;
    font-size: 1rem;
}
.footer_sns h3::before,
.footer_sns h3::after {
  content: '';
  width: 4px;
  height: 20px;
  background-color: #343434;
}
.footer_sns h3::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.footer_sns h3::after {
  margin-left: 30px;
  transform: rotate(35deg)
}
.footer_sns ul{
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-left: 0;
}
.footer_sns ul li img{
    width: 30px;
}
.footer_sns ul li a:hover{
    opacity: .5;
}
.l-footer__foot{
    color: #fff;
    background-color: var(--main);
}
.l-footer__foot p{
    margin-bottom: 0;
}

/* ----------------------------------------
*swell設定上書き
---------------------------------------- */
.c-categoryList__link{
    background-color: #fff !important;
}
h2.wp-block-heading {
    font-size: 1rem;
    font-weight: bold;
}
@media (min-width: 600px) {
    .p-breadcrumb__list {
        font-size: 11px;
        margin-bottom: 0;
    }
}
.-body-solid .p-breadcrumb.-bg-on {
    box-shadow: unset;
}
ol.p-breadcrumb__list{
    margin-bottom: 0;
}


/* ----------------------------------------
*HOME
---------------------------------------- */
/*MV*/
#mv img{
    width: 100% !important;
    max-width: 100% !important;
}
@media (max-width: 767.98px) {
    #mv{
        position: relative;
    }
    #mv::after{
        position: absolute;
        content: '';
        bottom: -150px;
        left: 0;
        right: 0;
        /* transform: translateX(-50%); */
        width: 100%;
        height: 100%;
        background: url(images/mv_sp_bottom.png) no-repeat bottom center;
        background-size: cover;
        opacity: .5;
        z-index: -1;
    }
}

/*トップーーイントロダクションのかざり*/
#top_intro{
    position: relative;
}
#top_intro .top_left{
    position: absolute;
    left: 0;
    top: 0;
}
#top_intro .top_right{
    position: absolute;
    right: -25px;
    top: 0;
}
@media (max-width: 991.98px) {
    .top #content #top_intro .top_left,
    .top #content #top_intro .top_right{
        width: 20%;
    }
}
@media (max-width: 767.98px) {
    .top #content #top_intro .top_left,
    .top #content #top_intro .top_right{
        display: none;
    }
}


/*以下設定*/
.top #content{
    margin-bottom: 0;
    padding-top: 10px;
    text-align: center;
}

.top_intro_f_txt{
    text-align: center;
    font-size: 1.2rem;
}
.top_intro_f_txt span{
    display: inline-block;
    border-bottom: 2px solid #EE8480;
}
.top_intro_f_txt img{
    width: 25px;
}
#top_intro h2{
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.4rem;
    font-weight: bold;
}
#top_intro h2 span{
    font-size: 1rem;
    color: #EE8480;
}
.top_intro__case {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.top_intro__case li{
    padding: 15px;
    font-weight: bold;
    border-radius: 10px;
    background-color: #FADAD9;
}
.top_intro_bf{
    max-width: 500px;
}
.top #content img{

}

@media (max-width: 767.98px) {
    .top_intro__case {
        grid-template-columns: repeat(2, 1fr);
    }
}
/*導入速報*/
#top_breaking_news{
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 20px 20px 0;
    margin-block: 30px;
    border-radius: 20px;
    background-color: #ffe3eb;
}
#top_breaking_news .stand_img{
    margin-top: -20px;
    width: 60px;
}
#top_breaking_news .p-blogParts.post_content{
    width: calc(100% - 100px);
    text-align: left;
}
#top_breaking_news ul li{
    display: flex;
    align-items: center;
    gap: 20px;
}
#top_breaking_news ul li a{
    font-weight: bold;
    color: #1e3b8e !important;
    text-decoration: underline !important;
}
#top_breaking_news ul li a:hover{
    text-decoration: none !important;
}
#top_breaking_news ul li .wp-block-latest-posts__featured-image{
    width: 50px;
    height: 50px;
}
@media (max-width: 767.98px) {
    #top_breaking_news ul li{
        flex-direction: column;
    }
}

/*無人おみくじスタンドの特徴*/
#top_feature{
    padding-block: 60px;
    border-radius:  80px 80px 0 0;
    background-color: var(--bg-yellow);
}
#top_feature h2{
    letter-spacing: .25rem;
    font-size: 1.4rem;
    font-weight: bold;

}
#top_feature .row{
    text-align: left;
}
#top_feature h3{
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}
#top_feature .col-md-4{
    display: flex;
    flex-direction: column;
}
#top_feature .col-md-4 img{
    margin-top: auto;
    width: auto;
    max-width: 100%;
    height: auto;
    align-self: flex-start;
}



/*売り上げ事例*/
#case_content{
    padding-block: 60px;
    margin-bottom: 60px;
}
#case_content h2 + p,
#case_content h3{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    text-align: center;
    font-style: normal;
    color: var(--main-blue);
}

#case_content h3{
    margin-bottom: 15px;
    font-size: 1rem;
}
.case_box{
    display: inline-block;
    padding: 15px;
    width: 100%;
    border: 3px solid var(--main-blue);
    border-radius: 20px;
}
@media (max-width: 767.98px) {
    .case_box{
        display: block;
    }
}
.case_box:hover{
    opacity: .4;
}
.case_box dl{
    display: flex;
    /* justify-content: center; */
    align-items: center;
    margin-bottom: 0;
}
.case_box dl dt{
    display: inline-block;
    padding: 0 10px;
    width: 50%;
    max-width: 200px;
    text-align: center;
    font-size: .8rem;
    border-radius: 100px;
    color: #fff;
    background-color: var(--main-blue);
}
.case_box dl dd{
    width: calc( 50% - 10px );
    padding-left: 10px;
    text-align: left;
    font-size: .9rem;
    font-weight: bold;
}
.case_box p.mb-0{
    text-align: center;
}
.case_box .link_area{
    margin-top: 20px;
    font-size: .9rem;
    font-weight: bold;
    text-decoration: none;
    color: var(--main-blue);
}
.case_content_ch{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.examples-stores_list_ch{
    object-fit: cover;
    width: 100%;
    max-height: 200px;
}
/* SWELL投稿ページのアイキャッチを元サイズで表示する */
.single .p-articleThumb__img {
    width: 100%;
    max-width: 500px !important;
    height: auto !important;
    display: inline-block !important;
}
.p-articleThumb {
  text-align: center; /* 中央寄せしたい場合 */
}



/*お客様の声*/
#voice_content{
    margin-top: -50px;
    padding-block: 60px;
    border-radius: 80px 80px 0 0;
    background-color: var(--bg-pink02);
}
.voice_box{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 2rem;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
}
.voice_box:hover{
    transition: .5s;
    transform: translateY(-10px);
}
.voice_box:hover .link_area p {
    color: var(--main);
}

.voice_box h3{
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--main);
}
.voice_box p{
    text-align: left;
}
.voice_box .link_area{
    align-self: end;
    text-align: right;
    font-weight: bold;
}



/*「本当にうまくいく？」導入の壁に、正直にお答えします*/
#top_faq{
    padding-block: 40px;
    border-radius:  80px 80px 0 0;
    background-color: var(--bg-pink);
}
.top_faq_box{
    padding: 25px 15px;
    height: 100%;
    border-radius: 20px;
    background-color: #fff;
}
@media (min-width: 768px) {
    .top_faq_box{
        margin-inline: 20px;
    }
}
.top_faq_box h3{
    margin-bottom: 1rem;
    padding: 1rem;
    font-size: 1.2rem;
    text-align: center;
    color: var(--main-pink);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    background-image:
    /* 1枚目の背景画像のパス */
    url(images/brackets_left.png),
    /* 2枚目の背景画像のパス */
    url(images/brackets_right.png);

    background-position:
        left center , /* 1枚目の背景画像の表示位置 */
        right center ;/* 2枚目の背景画像の表示位置 */

    background-repeat:
        no-repeat,/* 1枚目の背景画像の設定 */
        no-repeat;/* 2枚目の背景画像の設定 */

    /* background-size:
        100px;1、2枚目の背景画像の共通サイズ */
}
.top_faq_box p{
    line-height: 1.6;
    text-align: left;
    padding-inline: 1rem;
}


/*おみくじスタンド機について*/
#stand_about {
    padding-block: 60px;
}
#stand_about .icn_ttl{
    width: 40px;
}
#stand_about h2 + p{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main);
}
#stand_about h3{
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 10px;
    font-size: 1.4rem;
    font-weight: bold;

}
#stand_about .type_a h3{
    border-bottom: 3px solid var(--main);
    color: var(--main);
}
#stand_about .type_b h3{
    border-bottom: 3px solid var(--main-orange);
    color: var(--main-orange);
}
@media (min-width: 768px) {
    #stand_about .col-md-6 .d-flex{
        width: 80%;
    }
}
@media (max-width: 767.98px) {
    .type_a_img,
    .type_b_img{
        width: 150px;
    }
}

/*横スクロール*/
.type_list_ttl h4{
    font-size: 1rem;
    font-weight: bold;
}
h4.red{
    color: var(--main);
}
h4.orange{
    color: var(--main-orange);
}
@media (min-width: 992px) {
    .outer-container {
        position: relative;
        overflow-x: hidden; /* 本体のスクロールは消す（必要なら） */
    }
    .type_list{
        margin-top: 60px;
        margin-right: calc(50% - 50vw);
        display: flex;
        align-items: center;
    }
    .scroll-wrapper {
        overflow-x: scroll;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: none;
    }
    .scroll-content {
        display: flex;
        gap: 1rem; /* お好み */
        width: max-content;
        padding-right: 100px;
        padding-bottom: 20px;
        cursor: grab;
    }
    .scroll-content:active {
        cursor: grabbing;
    }

    .scroll-wrapper::-webkit-scrollbar {
        width: 16px;
        height: 5px;
    }

    .scroll-wrapper::-webkit-scrollbar-track {
        background-color: #fff;
    }

    .scroll-wrapper::-webkit-scrollbar-thumb {
        background-color: var(--main);
        border-radius: 8px;
    }
    .scroll-wrappe.oranger::-webkit-scrollbar-thumb {
        background-color: var(--main-orange);
    }
    .scroll-content img{
        width: 180px;
    }

    .type_list_ttl h4{
        width: 300px;
    }
}
@media (max-width: 991.98px) {
    .type_list{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767.98px) {
    .col-md-4:nth-of-type(even),
    .col-md-6:nth-of-type(even){
        margin-block: 30px;
    }
    .col-md-4.col-6:nth-of-type(even),
    .col-md-6.col-6:nth-of-type(even){
        margin-block: unset;
    }
}

/*おみくじランキング*/
#mikuji_list_content h2 + p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #726300;
}
.mikuji_list{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mikuji_list li{
    padding: 20px;
    border-radius: 20px;
    background-color: #FEF9D9;
}
.mikuji_list h3{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.mikuji_list h3 img{
    margin-bottom: 10px;
    width: 40px;
}
.mikuji_list li .pho{
    border-radius: 15px;
}
.mikuji_list table{
    margin-top: 15px;
    margin-bottom: 10px;
}
.mikuji_list th{
    font-size: .9rem;
}
.mikuji_list th span{
    display: block;
    padding: 0 20px;
    color: #fff;
    text-align: center;
    /* font-weight: bold; */
    font-size: .8rem;
    letter-spacing: .1rem;
    border-radius: 100px;
}
.mikuji_list th.red span{
    background-color: var(--main);
}
.mikuji_list th.blue span{
    background-color: var(--main-blue);
}
.mikuji_list td{
    padding-left: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
}
.mikuji_list th,
.mikuji_list td{
    padding-bottom: 1px;
}
.mikuji_list p{
    text-align: left;
}
@media (max-width: 767.98px) {
    .mikuji_list{
        grid-template-columns: repeat(1, 1fr);
    }
}

/*導入コストと運用収益の仕組み*/
#top_cost {
    margin-top: 100px;
    padding-block: 40px;
    border-radius: 80px 80px 0 0;
    background-color: #FFF9D9;
}
#top_cost h2 + p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main-orange);
}
.cost_board p{
    font-size: 1.4rem;
    font-weight: bold;
    display: inline-block;
    padding-block: 20px;
    border-top: 3px solid var(--main-orange);
    border-bottom: 3px solid var(--main-orange);
}
#top_cost table{
    max-width: 700px;
    margin-inline: auto;
}
#top_cost table th,
#top_cost table td{
    padding-block: 2rem;
    vertical-align: top;
    text-align: left;
    font-weight: bold;
    border-bottom: 2px solid #fff;
}
#top_cost table th{
    width: 30%;
    color: var(--main-orange);
}
@media (max-width: 767.98px) {
    #top_cost table th,
    #top_cost table td{
        display: block;
        width: 100%;
        padding-block: 0;
    }
    #top_cost table th{
        padding-top: 1rem;
        border-bottom: none;
    }
    #top_cost table td{
        padding-bottom: 1rem;
    }
}

/*お申し込みの流れ*/
#flow_content{
    text-align: center;
}
#flow_content h2 + p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main);
}
#flow_content img{
    align-items: flex-start;
}
.flow_chart{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px
}
.flow_chart_box{
    display: flex;
    flex-direction: column;
    padding: 20px;
    height: 100%;
    border-radius: 20px;
    border: 6px solid #FAC0D0;
}
.flow_chart_box .step{
    margin-top: -50px;
}
.flow_chart_box h3{
    font-size: 1.4rem;
    font-weight: bold;
}
.flow_chart_box h3,
.flow_chart_box strong{
    color: #D42D60;
}
.flow_chart_box p{
    text-align: left;
    line-height: 1.6rem;
}
.flow_chart_box_link{
    margin-top: auto;
}
.flow_chart_box_link a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    font-size: .9rem;
    font-weight: bold;
    border-radius: 8px;
    background-color: #ddd;
}
.flow_chart_box_link a:hover{
    opacity: .5;
}
.flow_chart_box{
    position: relative;
}
.flow_chart_box .next{
    position: absolute;
    top: 80px;
    left: -30px;
}
@media (min-width: 768px) {
    .flow_chart_box .next{
        top: 80px;
        left: -30px;
    }
}
@media (max-width: 767.98px) {
    .flow_chart{
        grid-template-columns: repeat(1, 1fr);
    }
    .flow_chart_box .next{
        top: -77px;
        left: 0;
        right: 0;
        margin-inline: auto;
        transform: rotate(90deg);
    }
}

/*全国の設置マップ*/
#map_content{
    margin-top: 100px;
    padding-block: 40px;
    border-radius: 80px 80px 0 0;
    background-color: #FFF9D9;
}
#map_content h2 + p {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main-green);
}
.installation_link{
    height: 500px;
    overflow-y: scroll;
}
.installation_link table {
    width: 100%;
}
.installation_link table th,
.installation_link table td{
    padding: 15px 0;
    border-bottom: 2px dotted #ddd;
    vertical-align: top;
}
.installation_link table td a{
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    text-decoration: underline !important;
    color: #008DD8 !important;
}
.installation_link table td a:hover{
    text-decoration: none !important;
}

/*フッターCTA*/
#bottom_cta{
    padding-block: 60px;
    background-color: #FAECEA;
}
#bottom_cta .container{
    padding: 60px;
    position: relative;
    border-radius: 30px;
    background-color: #fff;
}
.bottom_cta_inner{
    margin-inline: auto;
    max-width: 700px;
}
.bottom_cta_img01{
    position: absolute;
    top: -50px;
    left: 50px;
}
.bottom_cta_img02{
    position: absolute;
    top: 50px;
    right: 50px;
}
@media (max-width: 1399.98px) {
    .bottom_cta_img01{
        top: -50px;
        left: 50px;
        width: 100px;
    }
    .bottom_cta_img02{
        top: -20px;
        right: 50px;
        width: 150px;
    }
}
@media (max-width: 991.98px) {
    .bottom_cta_img01{
        top: -80px;
    }
}
@media (max-width: 767.98px) {
    #bottom_cta .container{
        padding-block: 30px;
        padding-inline: 20px;
    }
    .bottom_cta_img02{
        position: relative;
        left: 0;
        top: 0;
    }
}

#bottom_cta h2{
    font-size: 1.8rem;
    font-weight: bold;
    text-align: left;
}
@media (max-width: 767.98px) {
    #bottom_cta h2{
        text-align: center;
        font-size: 1.2rem;
    }
}
#bottom_cta p{
    text-align: left;
}
#bottom_cta .contact_btn{
    padding-inline: 2rem;
}
#bottom_cta .line_btn {
    display: flex ;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-block: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff !important;
    border-radius: 50px;
    background-color: #00B900;
    transition: .5s;
}
#bottom_cta .contact_btn,#bottom_cta .line_btn{
    padding-inline: 20px;
    font-size: clamp(14px, 2vw, 20px);
}

#bottom_cta .line_btn:hover{
    opacity: .5;
}
@media (max-width: 767.98px) {
    #bottom_cta .btn_area{
        flex-direction: column;
    }
}

/* ----------------------------------------
*無人おみくじスタンドとは
---------------------------------------- */
.stand_about_ttl{
    position: relative;
    text-align: center;
    margin-bottom: 5rem;
}
.stand_about_ttl h2{
    margin: 20px 0 ;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.4;
}
.stand_about_ttl h2 + p{
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    /* color: var(--main); */
}
.stand_about_ttl .left_icn,
.stand_about_ttl .right_icn{
    position: absolute;
}
.stand_about_ttl .left_icn{
    left: 0;
    top: -50px;
}
.stand_about_ttl .right_icn{
    right: 0;
    top: -70px;
}
@media (max-width: 767.98px) {
    .stand_about_ttl{
        margin-bottom: 2rem;
    }
    .stand_about_ttl .ttl_icn{
        width: 30px;
    }
    .stand_about_ttl h2{
        font-size: 1.4rem;
    }
    .stand_about_ttl .left_icn,
    .stand_about_ttl .right_icn{
        width: 50px;
        top: 0;
    }
}

.stand_list a:hover{
    opacity: .5;
}
.stand_list .col-md-4{
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}
img.stand_list_single{
    max-height: 80vh;
    margin-bottom: 2rem;
}
.carousel-control-next-icon, .carousel-control-prev-icon  {
    height: 100px;
    width: 100px;
    /* outline: black; */
    background-color: var(--main);
    background-size: 100%, 100%;
    border-radius: 50%;
    border: 4px solid var(--main);
}


.feature_area_content{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.feature_area .feature_area_box{
    padding: 1rem;
    border-radius: 10px;
    background-color: var(--bg-pink02);
}
.feature_area_box .line{
    position: relative;
}
.feature_area_box .line::after{
    position: absolute;
    content: '';
    height: 2px;
    width: calc( 100% - 90px );
    top: 50%;
    transform: translateY( -50% );
    right: 0;
    background-color: var(--main);
    z-index: 1;
}
.feature_area .feature_area_box img.num{
    position: relative;
    width: 5rem;
    z-index: 2;
}
.feature_area .feature_area_box h3{
    margin-block: 0.5rem;
    font-size: 1.2rem;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    line-height: 1.6;
}
@media (max-width: 767.98px) {
    .feature_area_content{
        grid-template-columns: repeat(1, 1fr);
    }
}

/*おみくじスタンドのしくみ*/
.structure .col-md-6{
    margin-block: 1rem;
}
.structure_box{
    display: flex ;
    flex-direction: column;
    padding: 1rem;
    height: 100%;
    border-radius: 10px;
    border: 6px solid var(--bg-pink02);
}
.structure_box .point{
    margin-top: -55px;
    width: 200px;
}
.structure_box h4{
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--main);
}
.structure_box img.align-self-center{
    margin-top: auto;
}
.f_img{
    max-width: 300px;
}

/*売れる理由*/
.reason_content{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.reason_img{
    width: 70%;
}
.balloon_area{
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
}
.reason_content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--main);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
}
.balloon {
    position: relative;
    display: inline-block;
    padding: 2rem;
    width: 33.333%;
    font-size: 1rem;
    background: var(--bg-pink02);
    border-radius: 20px;
}

.balloon::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid var(--bg-pink02);
}
.balloon p {
    margin: 0;
    padding: 0;
}
@media (min-width: 768px) {
    .balloon01::before{
        top: -66px;
        left: 70%;
        border: 30px solid transparent;
        border-bottom: 56px solid var(--bg-pink02);
        transform: rotate(28deg);
    }
    .balloon03::before{
        top: -66px;
        left: 20%;
        border: 30px solid transparent;
        border-bottom: 56px solid var(--bg-pink02);
        transform: rotate(-28deg);
    }
}
@media (max-width: 767.98px) {
    .balloon_area{
        margin-top: 2rem;
        flex-direction: column;
    }
    .balloon {
        width: 100%;
    }
}

/*機種とおみくじの紹介*/
#mikuji_about .row{
    gap: 40px 0;
}
#mikuji_about .col-md-4{
    text-align: center;
}
#mikuji_about .col-md-4 p{
    margin-bottom: 10px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main);
}
#mikuji_about .col-md-4 .pho{
    padding-inline: 2rem;
}
#example{
    padding:10px 10px 60px;
    background-color: var(--bg-pink02);
}
#example .row{
    gap: 40px 0;
}
#example .example_box{
    padding: 20px;
    height: 100%;
    width: 98%;
    text-align: center;
    font-weight: bold;
    border-radius: 15px;
    background-color: #FFF;
}
@media (max-width: 767.98px){
    #example .row{
        gap: 5px 0;
    }
}

/*私たちについて*/
#our_about{
    margin-top: 40px;
    padding: 40px;
    border-radius: 40px;
    background-color: #f7f4ef;
}
#our_about h3{
    margin-bottom: 20px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 700;
    font-style: normal;
    color: var(--main);
}
@media (max-width: 767.98px){
    #our_about{
        padding: 40px 20px 20px;
    }
    #our_about h3{
        font-size: 1.2rem;
    }
}


/* ----------------------------------------
*料金表 コストと収益
---------------------------------------- */
.cost-page .stand_dis{
    gap: 50px;
}
.cost-page .stand_dis table th,
.cost-page .stand_dis table td{
    padding: .5rem;
    border: 1px solid #343434;
}
@media (max-width: 767.98px){
}

#omikuji_type .type_list p{
    margin-top: 20px;
    text-align: center;
    font-weight: bold;
}
#omikuji_type .type_list img{
    margin-bottom: 40px;
}

/* ----------------------------------------
*導入事例
---------------------------------------- */
.case_page_txt{
    text-align: center;
}
.case_page_txt p{
    position: relative;
    display: inline-block;
    padding: 0 45px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}
.case_page_txt p:before, .case_page_txt p:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 44px;
    height: 2px;
    background-color: black;
}
.case_page_txt p:before {
    left:0;
    -webkit-transform: rotate(57deg);
    transform: rotate(57deg);
}
.case_page_txt p:after {
    right: 0;
    -webkit-transform: rotate(-55deg);
    transform: rotate(-55deg);
}
#case_content.category-examples-stores .case_box{
    display: block;
}
.case_box dl.dl_col{
    flex-direction: column;
    align-items: flex-start;
}
.case_box dl.dl_col dt{
    max-width: 200px;
}
.case_box dl.dl_col dd{
    margin-top: .5rem;
    margin-bottom: 1rem;
    width: 100%;
    font-size: 1rem;
    font-weight: normal;
}
.case_page_txt02{
    font-size: 1.2rem;
    color: #1e3b8e;
    font-weight: bold;
    margin-top: 1rem;
}
#case_content.category-examples-stores .link_txt{
    font-weight: bold;
    color: #1e3b8e;
}

/* ----------------------------------------
*コンタクトフォーム７
---------------------------------------- */
/*ContactForm7カスタマイズ*/
table.CF7_table{
	width:80%;
	margin:0 auto;
	border: 3px solid #e5e5e5;
}

table.CF7_table tr{
	border-top: 1px solid #e5e5e5;
}

.single .entry-content table.CF7_table,
.page .entry-content table.CF7_table{
	display:table;
}

/*入力欄*/
.CF7_table input, .CF7_table textarea {
	border: 1px solid #d8d8d8;
}

.CF7_table ::placeholder {
	color:#797979;
}

/*「必須」文字*/
.CF7_req{
	font-size:.9em;
	padding: 5px;
	background: #f79034;/*オレンジ*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/*「任意」文字*/
.CF7_unreq{
	font-size:.9em;
	padding: 5px;
	background: #bdbdbd;/*グレー*/
	color: #fff;
	border-radius: 3px;
	margin-right:1em;
}

/* タイトル列 */
@media screen and (min-width: 768px){
	.CF7_table th{
	width:30%;/*横幅*/
	background-color:#ebedf5;/*ブルーグレー*/
	}
}

/* レスポンシブ */
@media screen and (max-width: 768px){
	table.CF7_table{
	width:95%;
	}
	.CF7_table tr, .CF7_table td, .CF7_table th{
	display: block;
	width: 100%;
	line-height:2.5em;
	}
	.CF7_table th{
	background-color:#ebedf5;
	}
}

/* 「送信する」ボタン */
.wpcf7 input.wpcf7-submit {
    padding-block: 1rem;
    margin: 0 auto;
    width: 50%;
    border: 0;
    font-size: 1.2em;
    font-weight: bold;
    color: #fff;
    border-radius: 10px;
	background-color: #304995;
}
.wpcf7 input.wpcf7-submit:hover{
    background-color: #647abd;
}

.CF7_btn{
	text-align:center;
	margin-top:20px;
}

.wpcf7-spinner{
	width:0;
	margin:0;
}


/*優先度の高い設定*/
h2 strong{
    color: #FFF;
}
