﻿@charset "UTF-8";
/*
Theme Name: iphonepro_fc
Author: num
Description: This is my original theme.
Version: 1.0
*/


/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "MPLUS1p", san-serif;
    --font_en: "Montserrat", "serif";
    --h1_font: clamp(22px, 3vw, 48px);
    --h2_font: clamp(36px, 6.0vw, 80px);
    --h3_font: clamp(24px, 3vw, 40px);
    --m_color: #858585;
    --a_color: #e85413;
    --a_color2: #e5df24;
    --f_color: #303030;
    --b_color: #f8f3e9;
    --b_color: #f1edea;
    --w_color: #fff;
    --line_color: #00b300;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1040px);
    --single_w: min(100%, 1040px);
    --main_mp: 80px;
    --single_mp: 80px;
    --m_ps30: 30px;
    --m_ps40: 40px;
    --m_ps50: 50px;
    --m_ps60: 60px;
    --m_ps80: 80px;
    --m_ps100: 100px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #0689cd 50%, #7dcff4 100%);
}
fieldset {
    display: contents;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.order_fadeUp2 {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp2-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 5%, 0);
    transform: translate3d(0, 5%, 0);
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: var(--w_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.block:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #555;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}
/*ボケながらフェードイン*/
.BlurFadeIn {
    visibility: hidden;
}
@keyframes blurAnime {
    from {
        filter: blur(30px);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}
.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

.jsCover {
    display: block;
    position: relative;
    overflow: hidden;
}
.jsCover:before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 7;
    background: var(--m_color);
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    content: "";
}
.jsCover:after {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--b_color);
    z-index: 8;
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    content: "";
}
.jsCover.jsCover__isShow:after,
.jsCover.jsCover__isShow:before {
    right: -105%;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_2 {
    display: -webkit-flex;
    display: flex;
}
.flex_c_y {
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c_t {
    -webkit-align-items: center;
    align-items: center;
}
.flex_reverse {
    flex-direction: row-reverse;
}

.main_w {
    max-width: var(--main_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.single_w {
    max-width: var(--single_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
p {
    font: normal clamp(16px, 1.5vw, 16px) var(--font_ja);
    line-height: 1.8;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

/* Font Awesome */
.fa-envelope:before { /*メールアイコン*/
    content: "\f0e0";
}
.fa-line:before { /*LINEアイコン*/
    content: "\f3c0";
}
.fa-phone:before { /*電話アイコン*/
    content: "\f095";
}
.fa-square-phone:before { /*電話アイコン*/
    content: "\f098";
}
.fa-facebook-f:before { /*Facebookアイコン*/
    content: "\f39e";
}
.fa-x-twitter:before { /*Xアイコン*/
    content: "\e61b";
}
.fa-home:before { /*ホームアイコン（パンくず）*/
    content: "\f015";
}
.fa-circle-chevron-right:before {
    content: "\f138";
}
.fa-chevron-up:before {
    content: "\f077";
}
.fa-history:before {
    content: "\f1da";
}
.fa-clock:before {
    content: "\f017";
}
.fa-clock-rotate-left:before {
    content: "\f1da";
}
.fa-phone-volume:before {
    content: "\f2a0";
}
.fa-square-x-twitter:before {
    content: "\e61a";
}
.fa-lightbulb:before {
    content: "\f0eb";
}
.fa-arrow-up-right-from-square:before {
    content: "\f08e";
}
.fa-house:before {
    content: "\f015";
}

/* リスト */
.common_list li {
    position: relative;
    padding-left: 24px;
}
.common_list li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/*ボタン*/
.common_btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}
.common_btn a {
    text-decoration: none;
    color: var(--w_color);
    padding: 20px;
    display: block;
    position: relative;
    font: bold 16px var(--font_ja);
    letter-spacing: 0.15em;
    transition: var(--tr);
    display: inline-block;
    width: 100%;
    max-width: 320px;
    background: linear-gradient(90deg, #ce541c 0%, #d18718 50%, #ce541c 100%);
    background-size: 200% 100%;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--w_color);
    border-top: 1px solid var(--w_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.8;
}

a.btn {
    font: 700 clamp(16px, 2.0vw, 20px) var(--font_ja);
    line-height: 1.5;
    display: inline-block;
    padding: 10px 50px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 15px;
    border: 2px solid #fff;
    color: var(--w_color);
}
.cta_bar_mail a.btn {
    position: relative;
    background: #d3480d;
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_bar_mail a.btn::before {
    position: absolute;
    content: url("img/mail_icon.svg");
    bottom: -20px;
    right: -10px;
    width: 54px;
}
.cta_bar_line a.btn {
    position: relative;
    background: #009002;
    background: -webkit-linear-gradient(bottom, #009002 50%, #02b404 100%);
    background: linear-gradient(0deg, #009002 50%, #02b404 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_bar_line a.btn::before {
    position: absolute;
    content: url("img/line_icon.svg");
    bottom: -20px;
    right: -10px;
    width: 54px;
}
/* .dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color: var(--w_color);
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
    margin-left: 20px;
}
.dli-caret-circle-fill-right::before {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.3em 0.2em;
    border-top-color: currentColor;
    border-bottom: 0;
    transform: translateY(10%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
} */
.cta_bar_mail .dli-caret-circle-fill-right::before {
    color: #ea5514;
}
.cta_bar_line .dli-caret-circle-fill-right::before {
    color: #02b404;
}

.header_text_top {
    margin-bottom: 5px;
    font: 700 clamp(16px, 2.0vw, 18px) var(--font_ja);
    color: var(--w_color);
}

.wpcf7-spinner {
    margin: 0 !important;
}
.wpcf7-spinner {
    display: none !important;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    margin: 0 auto;
    position: relative;
    max-width: 1920px;
    padding: 80px 0px;
}
.common_cta_inner {
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.common_cta_box {
    justify-content: space-between;
    margin: 0 auto;
    padding: 60px;
    background: var(--w_color);
    border: solid 5px var(--f_color);
}
.common_cta_wrap {
    margin: 0 auto;
    background: var(--a_color);
    background-position: 50%;
    position: relative;
}
.common_cta_wrap {
    position: relative;
    background-color: var(--m_color);
    background: url("img/cta_back.jpg");
    background-position: 50% 60%;
}
.common_cta_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 36, 36, 0.75);
}
.common_cta_phone {
    margin-bottom: 20px;
    text-align: center;
}
.common_cta_phone a {
    font: 700 clamp(24px, 3vw, 40px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.common_cta_phone a i {
    margin-right: 5px;
    color: var(--f_color);
}
.common_cta_text_p {
    margin-bottom: 20px;
    font: 400 clamp(16px, 1vw, 16px) var(--font_ja);
    text-align: center;
}
.common_cta_button {
    width: 100%;
    justify-content: space-between;
}
.common_cta_button > a {
    width: 49%;
    position: relative;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    z-index: 1;
    padding: 20px 30px;
    letter-spacing: 0.1em;
    border-radius: 12px;
    font: bold clamp(15px, 1.5vw, 20px) var(--font_ja);
    border: 2px solid var(--w_color);
    color: var(--w_color) !important;
}
.cta_mail {
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_line {
    background: -webkit-linear-gradient(bottom, #009002 50%, #02b404 100%);
    background: linear-gradient(0deg, #009002 50%, #02b404 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_mail:before,
.cta_line:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
    transform: rotate(45deg) translateY(-50%);
}
.cta_line i,
.cta_mail i {
    margin-right: 5px;
    color: var(--w_color);
}
.common_cta_inner a:hover {
    opacity: 0.8;
}

/*-------------------------------------
見出し
-------------------------------------*/
/* TOPの見出し */
.top_h2 {
    position: relative;
    text-align: center;
    margin-bottom: 40px;
}
.top_h2 h2 {
    font: 800 clamp(14px, 2vw, 20px) var(--font_ja);
    color: var(--f_color);
}
.top_h2 .data_text {
    margin-bottom: 0px;
    font: bold clamp(40px, 5vw, 80px) var(--font_en);
    color: var(--a_color);
    line-height: 1.0;
}

.top_about_h2 {
    margin-bottom: 40px;
}
.top_about_icon_box {
    position: relative;
    text-align: center;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.top_about_icon {
    width: 52px;
    margin-right: 10px;
}
.top_about_text > span:first-child {
    font: 900 32px var(--font_ja);
    color: var(--a_color);
    line-height: 1.0;
    display: block;
    margin-bottom: 5px;
}
.top_about_text > span:first-child span {
    font: 900 54px var(--font_ja);
    color: var(--a_color);
    line-height: 1.0;
}
.top_about_text > span:last-child {
    font: 700 20px var(--font_en);
    color: var(--f_color);
    line-height: 1.0;
    display: block;
}

.single_h2 {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}
.single_h2 h2 {
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    color: var(--m_color);
}
.single_h2 .data_text {
    margin-bottom: 0px;
    font: normal clamp(60px, 6.5vw, 90px) var(--font_en);
    color: var(--a_color);
    line-height: 1.0;
}
/* 背景白系 */
.heading_f h2 {
    color: var(--f_color);
}
.heading_f .data_text {
    color: var(--f_color);
}
.heading_f:before {
    background: var(--f_color);
}
/* テキスト白系 */
.heading_w h2 {
    color: var(--w_color);
}
.heading_w .data_text {
    color: var(--w_color);
}
.heading_w:before {
    background: var(--w_color);
}
/* テキスト左寄せ */
.heading_left {
    text-align: left;
}
/* テキスト中央寄せ */
.heading_center {
    text-align: center;
}
.heading_center:before {
    margin: 0 auto;
}

.heading_logo {
    max-width: 360px;
    margin:  0 auto;
}

.top_service_inner h2 p {
    font: bold clamp(16px, 2vw, 28px) var(--font_ja);
    color: var(--f_color);
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: clamp(120px, 13vw, 180px);
    line-height: 0;
    transition: var(--tr);
    padding: 0px 0;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.8;
}
/*ナビ*/
.h_nav_top {
    align-items: center;
}
.header_company {
    margin-right: 20px;
}
.header_company a {
    font: 500 clamp(14px, 1.0vw, 16px) var(--font_ja);
    text-decoration: none;
    color: var(--f_color);
}
.header_contact a {
    font: 700 clamp(14px, 1.0vw, 16px) var(--font_ja);
    line-height: 1.5;
    display: inline-block;
    padding: 10px 30px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    border-radius: 12px;
    border: 2px solid #fff;
    color: var(--w_color);
    background: #d3480d;
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.header_contact a i {
    color: var(--w_color);
}
.pc_h_nav ul {
    display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	list-style: none;
    width: 100%;
    margin: 0 auto;
}
.pc_h_nav ul li {
    padding: 15px 0;
    flex: 1 0 auto;
	display: flex;
    justify-content: center;
}

.pc_h_nav ul li span {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
	display: flex;
    justify-content: center;
    border-right: solid 1px var(--m_color);
}

.h_nav_wrap {
    padding: 15px 0;
    width: 100%;
    z-index: 9;
    transition: var(--tr);
    background: var(--w_color);
}
.pc_h_nav {
    background: var(--b_color);
}
.pc_h_nav ul {
    margin: 0 auto;
}
.h_nav_inner {
    margin: 0 auto;
    align-items:center;
    justify-content: space-between;
}
.pc_h_nav_top {
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--tr);
}
.pc_h_nav a {
    font: 500 clamp(14px, 1.0vw, 16px) var(--font_ja);
    text-decoration: none;
    color: var(--f_color);
    text-align: center;
}
.pc_h_nav a:hover {
    opacity: 0.8;
}
.pc_h_nav a i {
    color: var(--f_color);
}

.pc_h_nav li:first-child {
    background: var(--m_color);
    color: var(--w_color);
    display: flex;
    align-items: center;
}
.pc_h_nav li:first-child i {
    color: var(--w_color);
}

.h_nav_top {
    display: flex;
}

.is-fixed {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    width: 100%;
    max-width: 1920px;
}

/* トップページのヘッダー画像 */
.main_header_inner {
    margin: 40px auto var(--main_mp);
}
.main_image {
    border: solid 5px var(--f_color);
}
.main_image img {
    width: 100%;
}
.main_image_text {
    width: 100%;
    align-items: center;
    justify-content: space-between;
    background: var(--m_color);
    padding: 40px 40px 20px;
}
.main_image_text img {
    width: 100%;
}
.main_image_left {
    width: 55%;
}
.main_image_right {
    width: 43%;
}

.main_image_box {
    position: relative;
}
.main_image_top {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    bottom: -30px;
    width: 500px;
}




/* その他のヘッダー画像 */
.single_header_wrap {
    padding: 80px 0;
    position: relative;
    background-color: var(--m_color);
    background: url("img/cta_back.jpg");
    background-position: 50% 60%;
}
.single_header_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(36, 36, 36, 0.75);
}
.single_header_box {
    margin: 0 auto;
    border: solid 5px var(--f_color);
    position: relative;
    z-index: 1;
}
.single_header_image {
    width: 50%;
}
.single_header_text {
    width: 50%;
    background: var(--w_color);
    color: var(--w_color);
    display: flex;
    justify-content: center;
    text-align: center;
}
.single_header_title h1 {
    font: 800 clamp(16px, 2vw, 20px) var(--font_ja);
    color: var(--f_color);
    /* -webkit-text-stroke: 5px var(--f_color);
    paint-order: stroke fill; */
}
.single_header_title span {
    display: block;
    margin-bottom: 0px;
    font: bold clamp(40px, 6.5vw, 72px) var(--font_en);
    color: var(--a_color);
    /* -webkit-text-stroke: 7px var(--f_color);
    paint-order: stroke fill; */
    line-height: 1.0;
}
.single_header_title {
    display: flex;
    align-items: center;
}

/*-------------------------------------
加盟店の声ページ
-------------------------------------*/
.voice_list {
    gap: 40px;
    flex-wrap: wrap;
}
.voice_list > li {
    margin-bottom: 60px;
    padding: 50px;
    background: var(--w_color);
    border: solid 3px var(--m_color);
}
.voice_list > li:last-child {
    margin-bottom: 0;
}
.voice_list > li img {
    width: 100%;
}
.voice_image {
    max-width: 800px;
    margin: 0 auto 40px;
}
.voice_text {
    /* padding: 20px 30px 40px; */
    text-align: left;
}
.voice_subtitle {
    margin-bottom: 20px;
    padding: 20px;
    background: var(--b_color);;
    color: var(--f_color);
}
.voice_subtitle p {
    font: bold clamp(16px, 2.0vw, 20px) var(--font_ja);
    text-align: left;
    line-height: 1.6;
}
.voice_text p {
    margin-bottom: 10px;
}
.voice_text p:last-child {
    margin-bottom: 0;
}
.voice_inner h2 {
    position: relative;
    margin-bottom: 20px;
    font: bold clamp(18px, 2.0vw, 24px) var(--font_ja);
    text-align: left;
    line-height: 1.6;
    color: var(--f_color);
    /* padding-left: 36px; */
}
/* .voice_inner h2::before {
    position: absolute;
    content: url("img/heading_icon.svg");
    top: 0px;
    left: 0;
    width: 28px;
} */
.wp-pagenavi {
    margin-top: 40px;
}

/*ボタン*/
.detail_btn {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}
.detail_btn a {
    text-decoration: none;
    border: solid 1px var(--a_color);
    color: var(--a_color);
    padding: 10px 20px;
    display: block;
    position: relative;
    font: bold 16px var(--font_en);
    letter-spacing: 0.15em;
    transition: var(--tr);
    display: inline-block;
    width: 100%;
    max-width: 200px;
}
.detail_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--a_color);
    border-top: 1px solid var(--a_color);
    transform: rotate(45deg) translateY(-50%);
    transition: var(--tr);
}
.detail_btn a:hover {
    opacity: 0.8;
    background: var(--a_color);
    color: var(--w_color);
}
.detail_btn a:hover:before {
    border-right: 1px solid var(--w_color);
    border-top: 1px solid var(--w_color);
}

/*-------------------------------------
TOP トップ
-------------------------------------*/
.top_news_wrap,
.top_market_wrap,
.top_profit_wrap,
.top_voice_wrap {
    background: var(--b_color);
}

.top_content_box {
    border: solid 4px var(--f_color);
}
.top_content_one {
    width: 32%;
    background: var(--m_color);
    display: flex;
    justify-content: center;
}
.top_content_two {
    width:68%;
    padding: 40px;
    background: var(--w_color);
}
.top_voice_inner .top_content_one {
    width: 58%;
}
.top_voice_inner .top_content_two {
    width: 42%;
    padding: 0;
}

.top_content_title {
    display: flex;
    align-items: center;
}
.top_content_heading {
    font: 900 clamp(24px, 3vw, 36px) var(--font_ja);
    text-align: center;
    line-height: 1.3;
    color: var(--w_color);
    -webkit-text-stroke: 8px #303030;
    paint-order: stroke fill;
}

.top_content_title p {
    text-align: center;
    line-height: 1.3;
}
.top_content_title p > span {
    text-align: center;
    line-height: 1.3;
    color: var(--w_color);
    -webkit-text-stroke: 8px #303030;
    paint-order: stroke fill;
}
.top_content_title p > span:first-child {
    font: 900 clamp(24px, 3vw, 32px) var(--font_ja);
}
.top_content_title p > span:last-child {
    font: 900 clamp(24px, 3vw, 42px) var(--font_ja);
    padding: 0 10px 3px;
    background: linear-gradient(transparent 80%, #ffbe00 20%);
}
.top_content_title p span:last-child span {
    font: 900 clamp(36px, 3.5vw, 54px) var(--font_ja);
    color: var(--w_color);
}

.top_requirements_table {
    padding: 40px 20px 20px;
    border: solid 4px #f09400;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.top_requirements_table table {
    max-width: 460px;
    margin: 0 auto 20px;
    width: 100%;
}
.top_requirements_table table tr {
    padding: 10px 0;
    border-bottom: dashed 1px #ccc;
}
.top_requirements_table table th {
    width: 40%;
    padding: 10px 0;
    font: 900 16px/1 var(--font_ja);
}
.top_requirements_table table td {
    width: 60%;
    padding: 1px 0;
}
.top_requirements_table table ol li {
    line-height: 1.5;
}
.top_requirements_table p {
    font: 400 clamp(12px, 1vw, 12px) var(--font_ja);
    text-align: center;
}

.top_profit_list {
    width: 100%;
    gap: 30px;
}
.top_profit_list li {
    width: calc(100% / 2 - 15px);
}
.top_profit_list li img {
    width: 100%;
}

.top_reason_right ul {
    flex-wrap: wrap;
    gap: 16px;
}
.top_reason_right ul li {
    width: calc(100% / 2 - 8px);
    
}
.top_reason_list_left {
    background: #e78613;
    width: 28%;
}
.top_reason_list_right {
    width: 72%;
}

.top_reason_left ul {
    margin-top: 20px;
}
.top_reason_left ul li {
    position: relative;
    padding: 0 30px;
    font: 900 clamp(16px, 2vw, 22px) var(--font_ja);
    text-align: center;
    color: var(--w_color);
}
.top_reason_left ul li::before,
.top_reason_left ul li::after {
    content: "●";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #4b4747;
    font-size: 16px;
}
.top_reason_left ul li::before {
    left: 0;
}
.top_reason_left ul li::after {
    right: 0;
}

.voice_image img{
    width: 100%;
}

.detail_button {
    max-width: 300px;
    margin: 40px auto 0;
}

.top_reason_icon img {
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.top_about_wrap ul {
    max-width: 240px;
    margin: 0 auto;
}
.top_about_wrap ul li {
    margin-top: 30px;
    border-bottom: solid 5px var(--w_color);
    width: 100%;
}
.top_about_wrap ul li:last-child {
    margin-bottom: 0;
}
.top_about_wrap ul li div:first-child {
    width: 40%;
    padding: 3px 10px 0;
    background: var(--w_color);
    color: var(--f_color);
    font: bold clamp(20px, 2.0vw, 22px) var(--font_ja);
    text-align: center;
}
.top_about_wrap ul li div:last-child {
    width: 60%;
    font: bold clamp(20px, 2.0vw, 22px) var(--font_ja);
    color: var(--w_color);
    text-align: center;
}
.top_about_wrap sup {
    display: block;
    margin-top: 10px;
    text-align: center;
    color: var(--w_color);
    font: 400 clamp(12px, 1.0vw, 13px) var(--font_ja);
}

.top_about_image {
    max-width: 500px;
    margin: 0 auto;
}



/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.top_news_inner {
    position: relative;
    justify-content: space-between;
    z-index: 1;
}
time {
    font: normal 16px/1 var(--font_en);
    margin-right: 10px;
    color: var(--f_color);
}
.news .news_meta .cat{
    display: inline-block;
    background-color: #597eb4;
    color: #fff;
    font-weight: 400;
    padding: 3px 18px 0 18px;
    font-size: 12px;
    margin-right: 14px;
}
.top_news_list {
    border-top: 1px solid var(--m_color);
    width: 100%;
    /* margin-left: var(--m_ps100); */
}
.top_news_list li {
    padding: 30px 0;
    border-bottom: 1px solid var(--m_color);
    position: relative;
}
.top_news_list li:last-child {
    margin-bottom: 0;
}
.top_news_category {
    display: inline-block;
    background: var(--m_color);
    color: var(--w_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 30px;
}
.top_news_title {
    display: inline-block;
    color: var(--f_color);
    font-weight: normal;
    padding-right: 55px;
}
.top_news_text a {
    color: #001CFD;
}
.top_news_text {
    display: none;
    margin-top: 20px;
}
.top_news_text p {
    color: var(--f_color);
    margin-bottom: 20px;
}
.top_news_text p:last-child {
    margin-bottom: 0;
}
/*アイコン*/
.top_news_title_box::before,
.top_news_title_box::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--m_color);
    transition: var(--tr);
}
.top_news_title_box::before {
    top: 42px;
    right: 15px;
    transform: rotate(0deg);
}
.top_news_title_box::after {
    top: 42px;
    right: 15px;
    transform: rotate(90deg);
}
.top_news_title_box.is-close::before {
    transform: rotate(45deg);
}
.top_news_title_box.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
/* 会社概要・採用情報 */
.summary_table {
    /* margin-bottom: 80px; */
}
.summary_table table {
    width: 100%;
    font-size: 16px;
}
.summary_table th,
.summary_table td {
    border: 1px solid var(--m_color);
}
.summary_table th {
    width: 300px;
    padding: 20px 20px;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
    background: var(--b_color);
    color: var(--f_color);
}
.summary_table td {
    border-top: 1px solid var(--m_color);
    padding: 20px 20px;
    text-align: left;
    background: var(--w_color);
}
.summary_table li {
    position: relative;
    padding: 0 0 0 24px;
    margin-bottom: 5px;
}
.summary_table li:last-child {
    margin-bottom: 0;
}
.summary_table li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--a_color);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 0;
}
.summary_table .sup {
    font-size: 15px;
    color: #707070;
}
.company_googlemap {
    height: 300px;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 300px;
}

/*シングル　ページネーション*/
.single_pagenavi {
    margin: 10vh 0 0;
}
.single_pagenavi .next {
    margin: 0 0 0 auto;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--a_color);
    display: block;
    padding: 10px 30px;
    color: var(--w_color);
    text-decoration: none;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}

/*アーカイブ　ページネーション*/
.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.wp-pagenavi .page-numbers {
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    margin-right: 10px;
}
.wp-pagenavi .current {
    background: var(--a_color);
    color: var(--w_color);
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

.not_h1 {
    text-align: center;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_wrap {
    background: var(--m_color);
    width: 100%;
    height: 100%;
    background-image: url(img/contact_back_icon.svg);
    /* 繰り返し */
    background-repeat: repeat;
    /* アイコンサイズ */
    background-size: 120px;
    position: relative;
}
.contact_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(167, 167, 167, 0.92);
}
.top_contact_box {
    background: var(--w_color);
    border: solid 4px var(--f_color);
    padding: 100px;
    position: relative;
    z-index: 1;
}
.contact_box span {
    font-weight: bold;
    color: var(--m_color);
}
.contact_image {
    width: 38%;
}
.contact_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_text {
    width: 62%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 50px;
}
.contact_bottom_box {
    margin-bottom: 40px;
}
.contact_bottom_box p {
    text-align: center;
}
.contact_info {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto 80px;
    background: var(--b_color);
}
.contact_info p {
    margin-bottom: 10px;
}
.contact_info i {
    margin-right: 10px;
}
.contact_button a:hover {
    opacity: 0.8;
}
.contact_phone a {
    display: block;
    font: bold clamp(30px, 3.0vw, 42px) var(--font_en);
    text-decoration: none;
    color: var(--a_color);
}
.contact_phone a i {
    color: var(--a_color);
    margin-right: 10px;
}

/*お問い合わせフォーム内*/
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid var(--m_color);
}
.wpcf7_left {
    display: block;
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid var(--m_color);
}
form.wpcf7-form .required:after,
form.wpcf7-form .arbitrary:after {
    width: auto;
    display: inline-block;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
form.wpcf7-form .required:after {
    content: "必須";
    background: #e74c3c;
    color: var(--w_color);
}
form.wpcf7-form .arbitrary:after {
    content: "任意";
    background: #999;
    color: var(--w_color);
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid var(--m_color);
    border-left: none;
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid var(--m_color);
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin-top: 10px;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: var(--b_color);
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder,
input::-moz-input-placeholder,
input::-ms-input-placeholder,
textarea::placeholder,
textarea::-ms-placeholder,
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--w_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: #555;
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    background: var(--w_color);
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme > p {
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: var(--b_color);
    border: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
}
#wpcf7cpcnf table td {
    background: var(--w_color);
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--a_color);
    color: var(--w_color);
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: var(--w_color);
    border: none;
}
.wpcf7 p {
    display: inline;
    }
/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: var(--b_color);
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
.footer_address {
    align-items: center;
    justify-content: center;
    width: 100%;
}
/* フッター */
.footer_inner {
    padding: 80px 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.footer_site_ttl {
    width: 280px;
}
.footer_nav {
    margin-left: 60px;
}
.footer_nav li {
    text-align: left;
    line-height: 1.7;
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    font: 700 clamp(14px, 1.0vw, 16px) var(--font_ja);
    color: var(--f_color);
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    display: inline-block;
    margin: 0 3px 0 0;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    text-align: center;
    letter-spacing: 0.15em;

}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    margin-bottom: 20px;
}
.footer_address_box {
    text-align: left;
    margin-left: 60px;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_sns {
    margin-top: 5px;
    text-align: left;
}
.footer_sns a {
    font-size: 25px;
}
.footer_sns i {
    color: var(--f_color);
}

/*アドレス*/
.address_container {
    font-size: 0.8125rem;
    color: var(--f_color);
}
.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.address_container p {
    font-size: 16px;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--w_color);
    font-size: 0.6875rem;
    padding: 20px 0;
    background: var(--m_color);
}
.copyright p {
    color: var(--w_color);
    font-size: 0.8125rem;
}
.copyright a {
    font-size: 0.875rem;
    color: var(--w_color);
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 18;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--a_color);
    width: 60px;
    height: 60px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--w_color);
    border-left: 2px solid var(--w_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

/* フッター追従 */
.cta_bar {
    position: fixed;
    left: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: var(--m_color);
    box-sizing: border-box;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
    transition: all 0.3s;
    width: 100%;
    z-index: 0;
    padding: 20px 10px;
    overflow: hidden;
}
.cta_bar.fixed {
    z-index: 9;
    display: flex;
    animation-name: fadeUpAnime;
    animation-duration: .3s;
    animation-fill-mode: forwards;
    overflow:auto;
}
.cta_bar_box {
    max-width: 1000px;
    padding: 0 10px;
    text-align: center;
    align-items: flex-end;
}
.cta_bar_box div {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    color: var(--w_color);
}

.cta_bar_mail a.btn {
    position: relative;
    background: #d3480d;
    background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
    background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_bar_mail a.btn::before {
    position: absolute;
    content: url("img/mail_icon.svg");
    bottom: -20px;
    right: -10px;
    width: 54px;
}
.cta_bar_line a.btn {
    position: relative;
    background: #009002;
    background: -webkit-linear-gradient(bottom, #009002 50%, #02b404 100%);
    background: linear-gradient(0deg, #009002 50%, #02b404 100%);
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
}
.cta_bar_line a.btn::before {
    position: absolute;
    content: url("img/line_icon.svg");
    bottom: -20px;
    right: -10px;
    width: 54px;
}

@keyframes fadeUpAnime {
    0% {
        opacity: 0;
        transform: translateY(100px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 1140px) {
    .header_img_inner_text {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%) translateX(0%);
    }
}

@media only screen and (min-width: 769px) {
    .pc_none_5 {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .sp_none_5 {
        display: none;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .sp_h_nav_inner_flex {
        display: flex;
    }
    .h_nav_wrap {
        padding: 0;
        position: fixed;
        top: 0;
    }
    .h_nav_inner {
        padding: 0 0 0 20px;
    }
    .site_ttl {
        padding: 5px 0;
        width: 90px;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        padding: 10px 0;
    }
    .site_ttl a {
        display: block;
        color: var(--f_color);
        font-weight: bold;
        text-decoration: none;
        margin: 0 auto;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 100px;
        padding: 4px 0;
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .sp_trigger_nav {
        content: "";
        display: block;
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .sp_trigger_nav.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        position: relative;
        width: 50px;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        z-index: 100;
        background: var(--m_color);
        margin-left: 10px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        width: 30px;
        height: 1px;
        background: var(--w_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {
        background-color: var(--w_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 6px;
    }
    .h_nav_wrap.is-fixed .menu-trigger  {
        top: 10px;
    }
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--w_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: var(--tr);
        overflow-y: auto;
    }
    .sp_trigger_nav.open {
        transform: translateZ(0);
    }
    .sp_trigger_nav ul {
        height: auto;
        margin: 0 0 40px;
        line-height: 1.6;
    }
    .sp_trigger_nav .sp_trigger_nav_inner li {
        margin: 0 0 5px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        font: 16px var(--font_en);
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner {
        border-bottom: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a {
        padding: 10px 0 10px 60px;
        color: var(--f_color);
    }
    .sp_h_nav_list a {
        color: var(--f_color);
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_trigger_nav li {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
    .tel_container {
        padding: 30px 10px 10px;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        background: #f3f3f3;
    }
    .tel_container {
        line-height: 1.6;
    }
    .tel_container a {
        text-decoration: none;
        letter-spacing: 0.1em;
        font-size: 28px;
        color: #d61a2b;
        text-align: center;
        font-weight: bold;
        font-family: 'Oswald', sans-serif;
    }
    .tel_container_bottom {
        margin-top: 5px;
        font-size: 14px;
    }
    .tel_container i {
        margin-right: 5px;
        color: #d61a2b;
    }
    .sp_trigger_nav_bottom {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav_bottom a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_trigger_nav_bottom a i {
        color: var(--a_color);
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    .sp_h_nav_list li a {
        text-decoration: none;
    }
    .sp_h_nav_list a i {
        margin-right: 5px;
        color: var(--w_color);
    }

    .sp_h_nav_list li:last-child a {
        font: 700 clamp(14px, 1.0vw, 16px) var(--font_ja);
        line-height: 1.5;
        display: inline-block;
        padding: 10px 10px;
        width: 100%;
        max-width: 200px;
        text-align: center;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 12px;
        border: 2px solid #fff;
        color: var(--w_color);
        background: #d3480d;
        background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
        background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
        -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    }

    /*ハンバーガーメニューここまで*/
    /***************************/
}

@media only screen and (min-width: 769px) {
    .sp_none {
        display: block !important;
    }
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 40px;
        --single_mp: 40px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none {
        display: none !important;
    }
    .pc_none {
        display: block !important;
    }

    .flex {
        display: block;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 110px;
    }
    .menu_wrap {
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 2px 30px;
        text-decoration: none;
        z-index: 100;
        cursor: pointer;
        position: relative;
    }
    .h_nav_top {
        display: none;
    }

    /* トップページのヘッダー画像 */
    .main_header_inner {
        margin: 60px auto var(--main_mp);
    }

    /* トップページのヘッダー画像 */
    .main_image {
        border: solid 5px var(--f_color);
    }
    .main_image_text {
        width: 100%;
        align-items: center;
        justify-content: space-between;
        background: var(--m_color);
        padding: 40px 20px 20px;
    }
    .main_image_left {
        width: 100%;
        margin-bottom: 20px;
    }
    .main_image_right {
        width: 100%;
    }
    .main_image_box {
        position: relative;
    }
    .main_image_top {
        content: "";
        position: absolute;
        left: 20px;
        transform: translateY(0) translateX(0);
        bottom: -30px;
        width: 70%;
    }

    /* その他のヘッダー画像 */
    .single_header_wrap {
        padding: 80px 0 40px;
    }
    .single_header_box {
        max-width: 1160px;
        margin: 0 auto;
        border: solid 5px var(--f_color);
    }
    .single_header_image {
        width: 100%;
    }
    .single_header_text {
        width: 100%;
        display: block;
        padding: 20px;
    }
    .single_header_title span {
        display: block;
        margin-bottom: 0px;
    }
    .single_header_title {
        display: block;
    }

    /*ボタン*/
    .common_btn {
        max-width: 320px;
        margin: 0 auto;
    }
    .common_btn a {
        max-width: 320px;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        padding: 40px 0px;
    }
    .common_cta_inner {
        justify-content: space-between;
        margin: 0 auto;
    }
    .common_cta_box {
        justify-content: space-between;
        margin: 0 auto;
        padding: 20px;
    }
    .common_cta_wrap {
        background-position: 50%;
    }
    .common_cta_phone {
        margin-bottom: 20px;
    }
    .common_cta_text_p {
        margin-bottom: 20px;
    }
    .common_cta_button {
        width: 100%;
        justify-content: space-between;
    }
    .common_cta_button > a {
        width: 100%;
        padding: 20px 10px;
    }
    .cta_mail {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    見出し
    -------------------------------------*/
    /* TOPの見出し */
    .top_h2 {
        margin-bottom: 20px;
    }
    .top_h2 span {
        margin: 0 auto 10px;
        padding: 5px 20px;
    }
    .single_h2 {
        margin-bottom: 30px;
    }
    /* テキスト左寄せ */
    .heading_left {
        text-align: center;
    }

    .top_about_h2 {
        margin-bottom: 20px;
    }
    .top_about_icon_box {
        position: relative;
        text-align: center;
        width: 100%;
        align-items: center;
        justify-content: center;
    }
    .top_about_icon {
        width: 36px;
        margin-right: 5px;
    }
    .top_about_text > span:first-child {
        font: 900 18px var(--font_ja);
        color: var(--a_color);
        line-height: 1.0;
        display: block;
        margin-bottom: 5px;
    }
    .top_about_text > span:first-child span {
        font: 900 33px var(--font_ja);
        color: var(--a_color);
        line-height: 1.0;
    }
    .top_about_text > span:last-child {
        font: 700 12px var(--font_en);
        color: var(--f_color);
        line-height: 1.0;
        display: block;
    }

    /* その他のヘッダー画像 */
    .single_image_wrap {
        padding: 200px 20px 120px;
    }
    .single_image_wrap h1,
    .blog_h1 {
        padding: 0 20px;
    }
    .single_image_wrap h1:before,
    .blog_h1:before {
        margin-bottom: 15px;
        letter-spacing: 0.5rem;
    }

    /*-------------------------------------
    加盟店の声ページ
    -------------------------------------*/
    .voice_list > li {
        width: 100%;
        padding: 20px;
    }
    .voice_list > li:first-child {
        margin-bottom: 20px;
    }
    .voice_list > li img {
        width: 100%;
    }
    .voice_image {
        margin-bottom: 20px;
    }
    .voice_text p {
        margin-bottom: 10px;
    }
    .wp-pagenavi {
        margin-top: 0px;
    }

    /*ボタン*/
    .detail_btn {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        text-align: center;
    }
    .detail_btn a {
        text-decoration: none;
        border: solid 1px var(--a_color);
        color: var(--a_color);
        padding: 10px 20px;
        display: block;
        position: relative;
        font: bold 16px var(--font_en);
        letter-spacing: 0.15em;
        transition: var(--tr);
        display: inline-block;
        width: 100%;
        max-width: 200px;
    }
    .detail_btn a:before {
        position: absolute;
        right: 25px;
        top: 50%;
        content: "";
        width: 8px;
        height: 8px;
        margin-top: -2px;
        border-right: 1px solid var(--a_color);
        border-top: 1px solid var(--a_color);
        transform: rotate(45deg) translateY(-50%);
        transition: var(--tr);
    }
    .detail_btn a:hover {
        opacity: 0.8;
        background: var(--a_color);
        color: var(--w_color);
    }
    .detail_btn a:hover:before {
        border-right: 1px solid var(--w_color);
        border-top: 1px solid var(--w_color);
    }

    /*-------------------------------------
    TOP トップ
    -------------------------------------*/
    .top_content_box {
        border: solid 2px var(--f_color);
    }
    .top_content_heading {
            -webkit-text-stroke: 5px #303030;
    paint-order: stroke fill;
    }
    .top_content_one {
        width: 100%;
        display: block;
        padding: 20px;
    }
    .top_content_two {
        width: 100%;
        padding: 20px;
    }
    .top_voice_inner .top_content_one {
        width: 100%;
    }
    .top_voice_inner .top_content_two {
        width: 100%;
        padding: 0;
    }

    .top_content_title {
        display: block;
        align-items: center;
    }
    .top_content_title h2 {
        -webkit-text-stroke: 5px #303030;
        paint-order: stroke fill;
    }
    .top_content_title p {
        text-align: center;
        line-height: 1.3;
    }
    .top_content_title p > span {
        text-align: center;
        line-height: 1.3;
        color: var(--w_color);
        -webkit-text-stroke: 5px #303030;
        paint-order: stroke fill;
    }
    .top_content_title p > span:first-child {
        font: 900 clamp(24px, 3vw, 32px) var(--font_ja);
    }
    .top_content_title p > span:last-child {
        font: 900 clamp(24px, 3vw, 42px) var(--font_ja);
        padding: 0 10px 3px;
        background: linear-gradient(transparent 80%, #ffbe00 20%);
    }
    .top_content_title p span:last-child span {
        font: 900 clamp(36px, 3.5vw, 54px) var(--font_ja);
        color: var(--w_color);
    }

    .top_requirements_table {
        padding: 20px 20px 20px;
        border: solid 2px #f09400;
        border-radius: 12px;
        text-align: left;
    }
    .top_requirements_table table {
        max-width: 460px;
        margin: 0 auto 20px;
        width: 100%;
    }
    .top_requirements_table table tr {
        padding: 10px 0;
        border-bottom: dashed 1px #ccc;
    }
    .top_requirements_table table th {
        width: 40%;
        padding: 10px 10px 10px 0;
        font: 900 13px/1 var(--font_ja);
    }
    .top_requirements_table table td {
        width: 60%;
        padding: 1px 0;
        font: 400 13px/1 var(--font_ja);
    }
    .top_requirements_table table ol li {
        line-height: 1.5;
    }
    .top_requirements_table p {
        font: 400 clamp(12px, 1vw, 12px) var(--font_ja);
        text-align: center;
    }

    .top_profit_list {
        width: 100%;
        gap: 30px;
    }
    .top_profit_list li {
        width: 100%;
    }
    .top_profit_list li:first-child {
        margin-bottom: 20px;
    }
    .top_profit_list li img {
        width: 100%;
    }

    .top_reason_left ul {
        margin: 20px auto 0;
        gap: 10px 10px;
        display: flex;
        flex-wrap: wrap;
        max-width: 360px;
    }
    .top_reason_left ul li {
        position: relative;
        padding: 0 15px;
        font: 900 clamp(18px, 2vw, 22px) var(--font_ja);
        text-align: center;
        color: var(--w_color);
        width: calc(100% / 2 - 5px);
    }
    .top_reason_left ul li::before,
    .top_reason_left ul li::after {
        content: "●";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        color: #4b4747;
        font-size: 12px;
    }
    .top_reason_left ul li::before {
        left: 0;
    }
    .top_reason_left ul li::after {
        right: 0;
    }

    .voice_image img{
        width: 100%;
    }

    .detail_button {
        max-width: 240px;
        margin: 20px auto 0;
    }

    .top_reason_icon img {
        width: 100%;
    }

    .top_about_wrap ul {
        max-width: 820px;
        margin: 20px auto 0;
        display: flex;
        justify-content: space-between;
    }
    .top_about_wrap ul li {
        margin-top: 0;
        border-bottom: solid 3px var(--w_color);
        width: 49%;
    }
    .top_about_wrap ul li:last-child {
        margin-bottom: 0;
    }
    .top_about_wrap ul li div:first-child {
        width: 52%;
        padding: 3px 10px 0;
        background: var(--w_color);
        color: var(--f_color);
        font: bold clamp(14px, 2.0vw, 22px) var(--font_ja);
        text-align: center;
    }
    .top_about_wrap ul li div:last-child {
        width: 48%;
        font: bold clamp(14px, 2.0vw, 22px) var(--font_ja);
        color: var(--w_color);
        text-align: center;
    }
    .top_about_wrap sup {
        display: block;
        margin-top: 10px;
        text-align: center;
        color: var(--w_color);
        font: 400 clamp(12px, 1.0vw, 13px) var(--font_ja);
    }

    .top_about_image {
        max-width: 500px;
        margin: 0 auto;
    }

    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    /* 会社概要・採用情報 */
    .summary_table table {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
    }
    .summary_table th,
    .summary_table td {
        display: block;
    }
    .summary_table th {
        width: 100%;
        padding: 10px 10px;
    }
    .summary_table td {
        border-top: none;
        border-bottom: none;
        padding: 10px 10px;
        text-align: left;
    }
    .summary_table tr:last-child td {
        border-bottom: 1px solid var(--m_color);
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .top_contact_box {
        border: solid 5px var(--f_color);
        padding: 20px;
    }
    .contact_bottom_box {
        margin-bottom: 40px;
    }
    .contact_box {
        margin-bottom: 30px;
    }
    .contact_image {
        width: 100%;
    }
    .contact_text {
        width: 100%;
        display: block;
        padding: 20px;
    }
    .contact_bottom_box {
        margin-bottom: 40px;
    }
    .contact_info {
        padding: 40px 20px;
        margin: 0 auto 5vw;
    }
    .contact_info p {
        margin-bottom: 10px;
    }
    .contact_info a {
        margin-bottom: 10px;
    }

    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer {
        background: var(--w_color);
        position: relative;
        z-index: 0;
    }
    .footer_address .site_ttl {
        margin: 0 auto 20px;
    }
    .footer_inner {
        display: block;
        padding: 40px 20px;
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border: none;
        padding: 0;
        margin: 0;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        padding: 20px;
        margin: 0 0 0;
    }

    .footer_address_box {
        text-align: left;
        margin-left: 0;
    }

    .footer_site_ttl {
        width: 150px;
        margin-bottom: 20px;
    }

    /* フッター追従 */
    .cta_bar {
        display: none;
        padding: 15px 10px;
        overflow: hidden;
    }
    .cta_bar.fixed {
        /* opacity: 1; */
        z-index: 9;
        display: flex;
        animation-name: fadeUpAnime;
        animation-duration: .3s;
        animation-fill-mode: forwards;
        overflow:auto;
    }
    .cta_bar_box {
        max-width: 1000px;
        /* margin: 0 auto; */
        padding: 0 10px;
        text-align: center;
        align-items: flex-end;
    }
    .cta_bar_box div {
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        color: var(--w_color);
    }

    /* フッター追従 */
    .cta_bar {
        position: fixed;
        left: 0;
        bottom: 0;
        display: none;
        justify-content: center;
        align-items: center;
        background: var(--m_color);
        box-sizing: border-box;
        font-size: 16px;
        font-weight: bold;
        /* opacity: 0; */
        transition: 0.3s;
        transition: all 0.3s;
        width: 100%;
        z-index: 0;
        padding: 20px 10px;
        overflow: hidden;
    }
    .cta_bar.fixed {
        /* opacity: 1; */
        z-index: 9;
        display: flex;
        animation-name: fadeUpAnime;
        animation-duration: .3s;
        animation-fill-mode: forwards;
        overflow:auto;
    }
    .cta_bar_box {
        max-width: 1000px;
        /* margin: 0 auto; */
        padding: 0 10px;
        text-align: center;
        align-items: flex-end;
    }
    .cta_bar_box div {
        font-size: 12px;
        font-weight: bold;
        text-align: center;
        color: var(--w_color);
    }

    a.btn {
        font: 700 clamp(16px, 2.0vw, 20px) var(--font_ja);
        line-height: 1.5;
        display: inline-block;
        padding: 10px 20px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        text-decoration: none;
        letter-spacing: 0.1em;
        border-radius: 15px;
        border: 2px solid #fff;
        color: var(--w_color);
    }
    .cta_bar_mail a.btn {
        position: relative;
        background: #d3480d;
        background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
        background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
        -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    }
    .cta_bar_mail a.btn::before {
        position: absolute;
        content: url("img/mail_icon.svg");
        bottom: -20px;
        right: -10px;
        width: 34px;
    }
    .cta_bar_line a.btn {
        position: relative;
        background: #009002;
        background: -webkit-linear-gradient(bottom, #009002 50%, #02b404 100%);
        background: linear-gradient(0deg, #009002 50%, #02b404 100%);
        -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    }
    .cta_bar_line a.btn::before {
        position: absolute;
        content: url("img/line_icon.svg");
        bottom: -20px;
        right: -10px;
        width: 34px;
    }

    .cta_bar_mail a.btn {
        position: relative;
        background: #d3480d;
        background: -webkit-linear-gradient(bottom, #ea5514 50%, #f17742 100%);
        background: linear-gradient(0deg, #ea5514 50%, #f17742 100%);
        -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    }
    .cta_bar_mail a.btn::before {
        position: absolute;
        content: url("img/mail_icon.svg");
        bottom: -20px;
        right: -10px;
        width: 34px;
    }
    .cta_bar_line a.btn {
        position: relative;
        background: #009002;
        background: -webkit-linear-gradient(bottom, #009002 50%, #02b404 100%);
        background: linear-gradient(0deg, #009002 50%, #02b404 100%);
        -webkit-box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
        box-shadow: inset 0 1px 1px rgba(255, 255, 255, .6), 0 5px 10px rgba(0, 0, 0, .1);
    }
    .cta_bar_line a.btn::before {
        position: absolute;
        content: url("img/line_icon.svg");
        bottom: -20px;
        right: -10px;
        width: 34px;
    }

    /* コンタクトフォーム確認画面 */
    #wpcf7cpcnf table tr:first-child {
        border-top: solid 1px #ccc;
    }
    #wpcf7cpcnf table tr {
        display: block;
        border-bottom: solid 1px #ccc;
        padding: 10px 0;
    }
    #wpcf7cpcnf table th,
    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
        padding: 0px;
        border: none;
    }
    #wpcf7cpcnf table th {
        margin-bottom: 5px;
        padding: 5px 10px;
    }
    #wpcf7cpcnf table td {
        margin-bottom: 0;
    }

}

@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --m_ps30: 20px;
        --m_ps50: 30px;
        --m_ps60: 40px;
        --m_ps100: 50px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_inner:before {
        font-size: 60px;
    }
    .news_thumbnail {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .top_news_heading {
        margin: 0 auto;
    }
    .top_reason_right ul {
        flex-wrap: wrap;
        gap: 0;
    }
    .top_reason_right ul li {
        width: 100%;
    }
    .top_reason_left ul {
        gap: 10px 10px;
        display: block;
        flex-wrap: wrap;
        max-width: 200px;
        margin: 20px auto 0 !important;
    }
    .top_reason_left ul li {
        width: 100%;
    }

.top_contact_inner.main_w {

    padding-right: 0;
    padding-left: 0;
}

    /*-------------------------------------
    パンくずリスト
    -------------------------------------*/
    .breadcrumbsinner {
        padding: 30px 20px;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: 100%;
        padding: 0;
        line-height: 1.0;
    }
    .sp_bar a {
        color: var(--w_color);
        padding: 10px 10px;
        display: block;
        /* font-size: 0.6875rem; */
        font-size: 13px;
        text-align: center;
        position: relative;
        text-decoration: none;
        line-height: 1.3;
    }
    .sp_bar li:nth-of-type(3) a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
        margin-bottom: 2px;
    }
    .sp_bar li a i {
        display: block;
        margin-bottom: 6px;
        color: var(--w_color);
    }
    .sp_bar li:nth-of-type(1) a i {
        color: var(--w_color) !important;
    }
    .sp_bar li:nth-of-type(1) a {
        background: var(--a_color);
        color: var(--w_color);
    }
    .sp_bar li:nth-of-type(2) a {
        background: #ffdf2b;
        color: var(--f_color);
    }
    .sp_bar li:nth-of-type(2) a i {
        color: var(--f_color) !important;
    }
    .sp_bar li:nth-of-type(3) a {
        background: var(--m_color);
    }
    .sp_bar li:nth-of-type(3) a:before {
        content: "\f077";
    }
}