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

/*-------------------------------------
定義
-------------------------------------*/
:root {
    /* --font_ja: "NotoSansJP", san-serif; */
    /* --font_ja: "Archivo", san-serif; */
    /* --font_ja: "MOBO", san-serif; */
    /* --font_ja: "ZenMaruGothic", san-serif; */
    --font_ja: "MPLUS1p", san-serif;
    --font_en: "Montserrat", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    /* --h2_font: clamp(25px, 3vw, 70px); */
    /* --h2_font: clamp(25px, 8vw, 120px); */
    /* --h2_font: clamp(25px, 8vw, 100px); */
    --h2_font: clamp(40px, 8vw, 90px);
    /* --h2_font: clamp(40px, 8vw, 40px); */
    --h3_font: clamp(22px, 3vw, 55px);
    /* --m_color: #004bb1; */
    /* --m_color: #4770AF; */
    /* --m_color: #7590ff; */
    /* --m_color: #3b446b; */
    /* --m_color: #004c78; */
    --m_color: #3b63a6;
    /* --m_color: #f4a04c; */
    /* --a_color: #fde400; */
    /* --a_color: #f4a04c; */
    --a_color: #ffb56a;
    --a_color: #f5a623;
    --a_color: #fb901a;
    /* --a_color: #7590ff; */
    /* --a2_color: #a4f332; */
    --a2_color: #8fd132;
    --a3_color: #ffee53;
    /* --a4_color: #FF5578; */
    --a4_color: #c683e6;
    --a4_color: #6ab7b1;
    --a4_color: #68b684;
    --a4_color: #4caf50;
    --a5_color: #2508ab;
    --a5_color: #122C7F;
    --a6_color: #4b72c6;
    --a7_color: #ff5778;
    --a7_color: #ffbecb;
    --a7_color: #ff87a2;
    --a7_color: #f25c5c;
    --a7_color: #f44336;
    --a8_color: #c683e6;
    --f_color: #222;
    /* --f_color: #666; */
    /* --b2_color: #fbfbfb; */
    --b_color: #ddd;
    --b_color: #ebeaea;
    --b_color: #efefef;
    /* --b2_color: #e6ddd8; */
    /* --b2_color: #ededeb; */
    --b2_color: #d8f0fa;
    --b3_color: #90b5e3;
    --w_color: #fff;
    --g_color: #525252;
    --lg_color:#ececec;
    --o_color:#ffffffcc;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    /* --main_w: min(100%, 1240px); */
    /* --main_w: min(1200px, calc(100% - (10vw * 2))); */
    /* --main_w: min(1400px, calc(100% - (10vw * 2))); */
    --main_w: min(1280px, calc(100% - (10vw * 2)));
    --main_w: min(100%, 1280px);;
    /* --main_w2: min(100%, 1400px); */
    --main_w2: min(1700px, calc(100% - (10vw * 2)));
    /* --main_mp: 104px; */
    /* --main_mp: 200px; */
    /* --main_mp: 180px; */
    --main_mp: 120px;
    --m_ps3: 32px;
    --m_ps5: 48px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
}

html{
    scroll-behavior: smooth;
}

/*-------------------------------------
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);
}
/*フェードアップアニメーション*/
.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);
}
.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: #fff;
    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;
}

/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*==ナビゲーション全体の設定*/
nav{
    text-align: center;
}

nav ul{
    list-style: none;
    display: flex;
    justify-content: center;
}

.pc_h_nav_t{
    gap: clamp(20px,3vw,32px);
}

.h_nav_wrap.is-fixed .pc_h_nav_t{
    background: none;
}

/*2階層目以降は横並びにしない*/
nav ul ul{
    display: block;
}

nav ul li{
    position: relative;
}

nav ul li a{
    display: block;
    text-decoration: none;
    color: #999;
    padding:20px 35px;
    transition:all .3s;
}

nav ul li a{
    padding:10px 35px;
    transition: var(--tr);
}

nav ul li.has-child::before{
    content:'';
    position: absolute;
    right:-20px;
    top:65%;
    width:6px;
    height:6px;
    border-top: 2px solid var(--g_color);
    border-right:2px solid var(--g_color);
    transform: rotate(135deg) translateY(50%);
}


/*下の階層を持っているulの指定*/
nav li.has-child ul{
    position: absolute;
    left:0;
    top:62px;
    z-index: 4;
    background:var(--m_color);
    width: 340px;
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-radius: 8px;
    padding-right: 32px;
}

    nav li.has-child:hover > ul,
    nav li.has-child ul li:hover > ul,
    nav li.has-child:active > ul,
    nav li.has-child ul li:active > ul{
    visibility: visible;
    opacity: 1;
}

    nav li.has-child a{
    color: #fff;
    border-bottom:solid 1px rgba(255,255,255,0.6);
    font: 400 16px var(--font_ja);
    letter-spacing: 1px;
}

nav li.has-child ul li:last-child > a{
    border-bottom:none;
}
nav li.has-child ul li:last-child > a:hover{
    border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
    background:var(--m_color);
}


@media screen and (max-width:1280px){
    nav{
    padding: 0;
    }

    nav ul{
    display: block;
    }

    nav li.has-child ul,
    nav li.has-child ul ul{
    position: relative;
    left:0;
    top:0;
    width:100%;
    visibility:visible;
    opacity:1;
    transition:none;
    background: transparent;
    padding-right: 0px;
}

nav ul li.has-child::before{
    display: none;
}

nav ul ul li.has-child::before{
    transform: rotate(135deg);
    left:20px;
}

nav ul li.has-child.active::before{
    transform: rotate(-45deg);
}

}


/* ローディングアニメーション */
.loading {
    position: fixed;
    inset: 0;
    z-index: 10;
    height: 100svh;
    background-color: var(--w_color);
    z-index: 99999;
}

.loading__inner {
    width: 100%;
    height: inherit;
    display: grid;
    place-content: center;
    row-gap: 10px;
}

.loading__text {
    font: 700 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.2em;
    line-height: 2;
    text-align: center;
    color: var(--f_color);
}

.loading__logo {
    margin: 0 auto;
    width: min(230px, 100%);
}

.contents {
    height: 100svh;
    display: grid;
    place-items: center;
    font-size: max(22px, 3vw);
}

[data-opening-animation="text"],
[data-opening-animation="logo"] {
    opacity: 0;
    visibility: hidden;
}

/* アコーディオン */
.faq_text{
    display: inline-block;
    color: var(--m_color);
    font: 900 clamp(30px,3vw,32px) var(--font_en);
    font-size: clamp(30px,3vw,32px);
    margin-bottom: var(--m_ps3);
    margin-right: 15px;
}

.faq_text_p{
    display: inline-block;
    font: 400 clamp(17px,3vw,18px) var(--font_ja);
    line-height: 1.8;
    padding-top: 3px;
}

.faq_list_wrap{
    width: 100%;
}

.faq_list li:not(:last-child) .faq_text_p{
    margin-bottom: var(--m_ps5);
}

.faq_item_answer{
    display: none;
}

.faq_item_answer_inner{
    align-items: baseline;
}

.answer_text{
    margin-bottom: var(--m_ps5);
    font: 400 clamp(17px,3vw,18px) var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.a_text{
    display: inline-block;
    color: var(--a_color);
    font: 900 clamp(30px,3vw,32px) var(--font_en);
    font-size: clamp(30px,3vw,32px);
    margin-right: 15px;
}

.a_text_p{
    font: 400 clamp(17px,3vw,20px) var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.faq_item_date{
    position: relative;
    align-items: baseline;
}

.faq_item_date::before, .faq_item_date::after {
    position: absolute;
    top: clamp(35%,3vw,50%);
    transform: translateX(-50%);
    right: 5px;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--w_color);
    transition: var(--tr);
}

.faq_item_date:hover::before, .faq_item_date:hover::after{
    cursor: pointer;
}

.faq_item_date::before {
    transform: rotate(0deg);
}

.faq_item_date::after{
    transform: rotate(90deg);
}

.faq_item_date.is-close::before {
    transform: rotate(45deg);
}

.faq_item_date.is-close::after {
    transform: rotate(-45deg);
}

.faq_q{
    font: 700 23px var(--font_en);
    margin-right: clamp(16px,3vw,19px);
}

.service_faq_list li:nth-of-type(3n) .faq_q{
    color: var(--a_color);
}
.service_faq_list li:nth-of-type(3n+1) .faq_q{
    color: var(--a4_color);
}
.service_faq_list li:nth-of-type(3n+2) .faq_q{
    color: var(--a7_color);
}

.service_worry_item_txt{
    position: relative;
    /* display: flex; */
    /* align-items: baseline; */
    display: block;
}

.service_worry_item_title{
    display: flex;
    align-items: baseline;
}

.faq_a{
    font: 700 19px var(--font_en);
    margin-right: clamp(16px,3vw,19px);
}

.repair_a{
    font: 700 23px var(--font_en);
    margin-right: clamp(16px,3vw,19px);
}

.service_faq_list li:nth-last-of-type(3n) .repair_a{
    color: var(--a_color);
}
.service_faq_list li:nth-last-of-type(3n+1) .repair_a{
    color: var(--a_color);
}
.service_faq_list li:nth-last-of-type(3n+2) .repair_a{
    color: var(--a_color);
}

.repair_faq_list_container li:nth-last-of-type(3n) ul li .repair_a{
    color: var(--a_color);
}
.repair_faq_list_container li:nth-last-of-type(3n+1)  ul li .repair_a{
    color: var(--a4_color);
}
.repair_faq_list_container li:nth-last-of-type(3n+2)  ul li .repair_a{
    color: var(--a7_color);
}

/* スライダー */
.slick-prev:before, .slick-next:before{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(28px,3vw,32px);
}

.slick-prev:before{
    right: 5px;
}

.slick-next:before{
    right: calc(-1*clamp(12px,2vw,30px));
}

.slick-slide {
    margin: 0 10px;
    display: flex !important;
    align-items: stretch;
    flex: 1;

}
.slick-list {
    /* display: flex !important; */
    margin: 0 -10px;
    height: auto !important;
}

.slick-track{
    display: flex !important;
    flex: 1;
    align-items: stretch;
}

/* スクロールダウン */

.scrolldown4{
	position:absolute;
	bottom:1%;
	right:50%;
	animation: arrowmove 1.5s ease-in-out infinite;
    z-index: 3;
}

@keyframes arrowmove{
    0%{bottom:1%;}
    50%{bottom:2%;}
    100%{bottom:1%;}
}

.scrolldown4 span{
	position: absolute;
	left:50%;
    transform: translateX(-50%);
	bottom:clamp(10px,6vw,50px);
    color: var(--f_color);
	font-size: 0.7rem;
	letter-spacing: 0.05em;
    font:900 16px var(--font_en);
}

.scrolldown4:before {
    content: "";
    position: absolute;
    bottom: 0;
    right: -30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 30px solid transparent;
    border-left: 30px solid transparent;
    border-top: 40px solid var(--m_color);
    border-bottom: 0;
    border-radius: 4px;
}

/* ページ内リンク */

body.from-anchor #company-messeage{
    position: relative;
    top: -140px;
}
body.from-anchor #company-about{
    position: relative;
    top: -140px;
}

body.from-anchor #contact-news{
    position: relative;
    top: 300px;
    /* top: 600px; */
    /* top:0px; */
    /* top: -200px; */
    /* top: 150px; */
}

body.from-anchor #contact-contact{
    position: relative;
    top: -120px;
    /* top: 0px; */
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.main_pa_col{
    padding-bottom: var(--main_mp);
}

.m_a {
    max-width: var(--main_w);
    padding-left: 24px;
    padding-right: 24px;
}
.m_a2 {
    max-width: var(--main_w2);
}

.m_a_c {
    max-width: var(--main_w);
}

.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 12px;
}
.mb20 {
    margin-bottom: 24px;
}
.mb30 {
    margin-bottom: 32px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 48px;
}
.mb60 {
    margin-bottom: 64px;
}
.mb70 {
    margin-bottom: 72px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 88px;
}
.mb100 {
    margin-bottom: 104px;
}
.mt10 {
    margin-top: 12px;
}
.mt20 {
    margin-top: 24px;
}
.mt30 {
    margin-top: 32px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 48px;
}
.mt60 {
    margin-top: 64px;
}
.mt70 {
    margin-top: 72px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 88px;
}
.mt100 {
    margin-top: 104px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}

.no-tel{
    -webkit-touch-callout: none;
    -webkit-user-select: text;
}

.fax_nm{
    color: var(--w_color) !important;
    /* text-decoration: none !important; */
}

.partner_tel_nm{
    color: var(--f_color) !important;
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: var(--w_color);
    padding: 20px 20px;
    display: inline-block;
    position: relative;
    font:700 16px var(--font_en);
    letter-spacing: 0.15em;
    min-width: 250px;
    transition: var(--tr);
    text-align: center;
    background: var(--a_color);
    border-radius: 300px;
    box-shadow: 0px 0px 10px #00000017;
    margin-top: 24px;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    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%);
}
.common_btn a:hover {
    opacity: 0.7;
}

/*-------------------------------------
CTA
-------------------------------------*/

.common_cta_container{
    background: var(--m_color);
    z-index: 2;
}

.common_cta_wrap {
    position: relative;
    background-position: left;
    background-repeat: no-repeat;
    background-size: cover;
}

.common_cta_bg_t{
    position: absolute;
    top: 0;
    left: -110px;
    width: 400px;
    opacity: 0.8;
    transform: scale(-1,-1);
    z-index: 1;
}
.common_cta_bg_b{
    position: absolute;
    bottom: 0;
    right: -120px;
    width: 400px;
    opacity: 0.8;
    z-index: 1;
}

.common_cta_inner {
    flex-direction: column;
    text-align: center;
    /* padding-top: 80px; */
}

.common_cta_txt_container{
    align-items: center;
    justify-content: center;
    margin-bottom: var(--m_ps8);
    margin-top: var(--m_ps5);
}

.common_cta_content_wrap li{
    width: calc(100% / 3);
    padding: var(--m_ps3);
    box-shadow: 0px 0px 10px #00000054;
    z-index: 2;
    border-radius: 16px;
    border: 5px solid #494852;
}

.common_cta_content_wrap li:nth-last-of-type(1){
    background: var(--a7_color);
}

.common_cta_content_wrap li:nth-last-of-type(2){
    background: var(--a4_color);
}

.common_cta_content_wrap li:nth-last-of-type(3){
    background: var(--a_color);
}

.common_cta_item{
    transition: all var(--tr);
    width: 100%;
}

.common_cta_content_title{
    font: 700 23px var(--font_ja);
    margin-bottom: 16px;
    letter-spacing: 0.06em;
}

.common_cta_inner a {
    color: var(--f_color);
    text-decoration: none;
    background: var(--w_color);
    border-radius: 16px;
}

.common_cta_content_wrap{
    align-items: start;
    gap: 30px;
}

.common_cta_txt_wrap{
    position: relative;
    background: var(--w_color);
    padding: clamp(60px,4vw,80px) clamp(48px,4vw,70px);
    z-index: 2;
    border-radius: 300px;
}

.common_cta_txt_wrap::before{
    content: "";
    position: absolute;
    top: -28px;
    right: -7%;
    transform: translateX(-50%);
    background: var(--w_color);
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.common_cta_txt_wrap::after{
    content: "";
    position: absolute;
    top: -62px;
    right:-10%;
    transform: translateX(-50%);
    background: var(--w_color);
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.common_cta_txt_wrap p{
    font: 400 clamp(16px, 2vw, 23px) var(--font_ja);
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.common_cta_content_txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px,3vw,32px);
    padding: var(--m_ps3);
}

.common_cta_content_txt i{
    font-size: clamp(36px, 3vw, 50px);
}

.common_cta_content_wrap li:nth-of-type(1) .common_cta_content_txt i{
    color: var(--a_color);
}
.common_cta_content_wrap li:nth-of-type(2) .common_cta_content_txt i{
    color: var(--a4_color);
}
.common_cta_content_wrap li:nth-of-type(3) .common_cta_content_txt i{
    color: var(--a7_color);
}

.common_cta_inner img {
    display: block;
}

.common_cta_content_txt img{
    width: clamp(40px, 4vw, 60px);
}

.common_chara{
    width: 34%;
}

.common_cta_item a:hover{
    opacity: 0.7;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    left: 0;
    bottom: 0;
    padding: 40px 50px;
    z-index: 1;
    display: inline-block;
    letter-spacing: 0.25em;
    line-height: 1.8;
    margin: 0;
    font: 900 var(--h1_font) var(--font_ja);
    color: var(--f_color);
}
.singleh1 {
    color: #555;
    letter-spacing: 0;
    padding: 0;
    font: 900 clamp(24px,3vw,30px) var(--font_ja);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: normal;
}
h2 {
    margin: 0 0 clamp(60px,5vw,80px);
    position: relative;
    line-height: 1.6;
}
.top_h2 {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto;
}
.top_h2 h2 {
    position: relative;
    z-index: 0;
    letter-spacing: 0.15em;
    font: bold clamp(20px,3vw,33px) var(--font_ja);
    color: var(--f_color);
    text-align: center;
    z-index: 2;
}

.top_h2 .data_text:before{
    position: absolute;
    top: -66px;
    left: -20px;
    content: url(img/title-deco.svg);
    width: clamp(130px,16vw,180px);
    z-index: -1;
    rotate: 180deg;
    opacity: 0.8;
    transform: scale(-1,1);
}

.top_h2 .data_text {
    font: 900 var(--h2_font) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    margin-bottom: 10px;
    line-height: 1.6;
    text-align: center;
    color: var(--w_color);
    width: fit-content;
    text-align: center;
    margin: 0 auto;
    margin-bottom: calc(-1*clamp(4px,1vw,10px));
}

.white_h2 h2 {
    color: var(--w_color);
}
.white_h2 .data_text {
    color: var(--w_color);
}
.white_h2 h2:after {
    background: var(--w_color);
}

.center_h2 h2 {
    text-align: center;
}
.center_h2 .data_text {
    text-align: center;
}
.center_h2 h2:after {
    text-align: center;
}

.other_h2 {
}
.other_h2 h2 {
}
.other_h2 h2:before {
}
h3 {
    position: relative;
    font:700 clamp(20px,3vw,33px) var(--font_ja);
    line-height: 1.6;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: clamp(32px,4vw,60px);
}

h3::before{
    content: "";
    width: clamp(12px,3vw,32px);
    height: 2px;
    background: var(--f_color);
    position: absolute;
    left: calc(-1*clamp(24px,4vw,64px));
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

h3::after{
    content: "";
    width: clamp(12px,3vw,32px);
    height: 2px;
    background: var(--f_color);
    position: absolute;
    right: calc(-1*clamp(24px,4vw,64px));
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.company_about_h3{
    position: relative;
    width: fit-content;
    margin-bottom: 48px;
}

.company_about_h3::after{
    content: "";
    width: 32px;
    height: 2px;
    background: var(--f_color);
    position: absolute;
    right: -64px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.service_worry_cleaning_list_wrap h3{
    color: var(--w_color);
}
.service_worry_cleaning_list_wrap h3::after{
    background: var(--w_color);
}
.service_worry_cleaning_list_wrap h3::before{
    background: var(--w_color);
}

.anotation{
    display: block;
    position: relative;
    font: 400 13px var(--font_ja);
    color: var(--g_color);
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 8px;
}

.anotation_m{
    position: relative;
    font: 400 13px var(--font_ja);
    color: var(--g_color);
}

.anotation_m:before{
    position: absolute;
    top: 0px;
    left: -20px;
    content: '※';
    color: var(--g_color);
}

.list_item{
    position: relative;
    margin-left: 20px;
}

.list_item:before{
    position: absolute;
    top: 15px;
    left: -20px;
    content: "";
    width: 7px;
    aspect-ratio: 1 / 1;
    background: var(--f_color);
    border-radius: 50%;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}
.main_wrap {
    position: relative;
    background: var(--m_color);
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: clamp(160px,11vw,200px);
    margin: 0;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 150px;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.7;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    width: 70%;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    padding: 16px 48px;
}
.h_nav_inner {
    background: var(--w_color);
    border-radius: 300px;
    padding: 16px var(--m_ps5);
    box-shadow: 0px 0px 10px #00000017;
    justify-content: center;
    align-items: center;
    gap: clamp(0px,3vw,104px);
}
.h_nav_wrap nav {
    height: 100%;
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav_top {
    justify-content: flex-end;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav li {
    margin-left: min(clamp(24px,3vw,30px), 5vw);
}
.pc_h_nav a {
    font: normal 16px var(--font_en);
    padding: 10px 10px;
    text-decoration: none;
    color: var(--f_color);
    letter-spacing: 0.04em;
}

.pc_h_nav_en{
    font: 400 13px var(--font_en);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.pc_h_nav_ja{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.06em;
}

nav li.has-child ul li.sp_h_nav_inner_link_p > a{
    color: var(--w_color);
    font: 400 13px var(--font_ja);
    padding: 10px;
    opacity: 0.9;
}

.pc_h_nav a:hover {
    opacity: 0.8;
}

nav li.has-child ul li.sp_h_nav_inner_link_p > a:hover{
    opacity: 0.6;
}

/*************************************/
.h_img_wrap {
    position: relative;
    background: var(--b2_color);
}

.h_img_wrap img{
    object-fit: cover;
    margin: 0 auto;
}

body:not(.home) .h_img_wrap {
    background: url(img/mv-b.svg) no-repeat;
    /* background: image-set(url(img/header.jpg) 1x center, url(img/retina/header2x.jpg) 2x); */
    /* background: -webkit-image-set((url(img/header.jpg) 1x, url(img/retina/header2x.jpg) 2x)); */
    /* padding-top: calc(var(--main_mp) * 2); */
    /* padding-bottom: var(--main_mp); */
    width: 100%;
    padding-top: 200px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    /* height:clamp(200px,50vw,500px); */
}

.wave_bg_wrap{
    background: url("img/wave4.svg") no-repeat center center;
    background-size: cover;
    /* height: 214px; */
    height:clamp(90px,12vw,214px);
}

.wave_bg_wrap_b{
    transform: scale(-1,-1);
}

.wave_bg_wrap_home_news{
    display: block;
    background: url("img/wave.svg") no-repeat center center;
    background-size: cover;
    height:clamp(90px,12vw,214px);
}
.wave_bg_wrap_contact_news{
    display: none;
    background: url("img/wave2.svg") no-repeat center center;
    background-size: cover;
    height:clamp(90px,12vw,214px);
    transform: scale(-1,-1);
}

.wave_bg_wrap_home_news_b{
    background: url("img/wave2.svg") no-repeat center center;
    background-size: cover;
    height:clamp(90px,12vw,214px);
}

.wave_bg_wrap_contact_news_b{
    background: url("img/wave5.svg") no-repeat center center;
    background-size: cover;
    height:clamp(90px,12vw,214px);
    transform: scale(1,-1);
}

.wave_bg_wrap_home_footer{
    background: url("img/wave3.svg") no-repeat center center;
    background-size: cover;
    height:clamp(90px,12vw,214px);
}

/* .wave_bg{
    display: block;
    position: relative;
    width: 100vw;
    height: auto;
    padding: 0;
    margin: 0;
    overflow-x: hidden;
} */
/* .wave_bg_b{
    display: block;
    width: 100vw;
    height: auto;
    transform: scale(-1,-1);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
} */

/* .wave_bg_nt_n{
    display: block;
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
} */

/* .wave_bg_nt{
    display: none;
    width: 100vw;
    transform: scale(-1,-1);
    overflow-x: hidden;
    padding: 0;
    margin: 0;
} */

/* .page-template-contact .wave_bg_nt{
    display: inline-block;
    width: 100%;
    transform: scale(-1,-1) translateY(-1px);
    height: auto;
} */


/* .page-template-contact .wave_bg_nt_n{
    display: none;
} */
.page-template-contact .wave_bg_wrap_contact_none{
    display: none;
}

body.home .wave_bg_wrap_contact_none{
    display: none;
}
body.home .wave_bg_wrap_contact_news_b{
    display: none;
}

.page-template-contact .wave_bg_wrap_home_news{
    display: none;
}

.page-template-contact .wave_bg_wrap_contact_news{
    display: block;
}
.page-template-contact .wave_bg_wrap_home_news_b{
    display: none;
}
.page-template-contact .wave_bg_wrap_home_footer{
    display: none;
}

.wave_bg_wrap_cta_terms{
    display: none;
}

.page-template-privacy .wave_bg_wrap_cta_terms{
    display: block;
}
.page-template-policies .wave_bg_wrap_cta_terms{
    display: block;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/

.top_con01_container{
    background: #d8f0fa;
}

.top_con01_wrap{
    position: relative;
}

.top_con01_wrap::before{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: url(img/bg.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.8;
}

.top_con01_inner {
    justify-content: space-between;
    align-items: end;
}

.top_con01_content_wrap{
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.top_con01_img {
    position: relative;
    width: 80%;
    min-height: 350px;
    border-radius: 30px;
    border: 10px solid var(--w_color);
}

.top_con01_img:after{
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%,-50%);
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 90px solid #fff;
    border-right: 0;
}

.top_con01_txt {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    z-index: 2;
    padding-top: 50px;
    margin-bottom: var(--m_ps5);
}

.top_con01_txt_inner{
    background: var(--w_color);
    padding: var(--m_ps5);
}

.top_con01_txt p{
    position: relative;
    font: 700 clamp(16px,2vw,23px) var(--font_ja);
    letter-spacing: 0.06em;
    line-height: 1.8;
    color: var(--f_color);
    text-align: center;
    z-index: 2;
}

.top_con01_txt_wrap{
    position: relative;
}

.top_con01_txt_strong_wrap{
    display: flex;
    /* gap: clamp(10px,1vw,16px); */
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.top_con01_txt_strong{
    display: inline-block;
    background: var(--a_color);
    padding: 10px 20px;
    margin: clamp(10px,2vw,24px) 8px;
    font: 700 clamp(16px,2.5vw,23px) var(--font_ja);
    border-radius: 300px;
    color: #fafafa;
}

.top_con01_txt_strong:nth-of-type(1){
    background: var(--a7_color);
}
.top_con01_txt_strong:nth-of-type(2){
    background: var(--a_color);
}
.top_con01_txt_strong:nth-of-type(3){
    background: var(--a4_color);
}

/* 動画 */

.video_wrap{
    max-width: var(--main_w);
    padding-left: 24px;
    padding-right: 24px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    justify-content: center;
    gap: clamp(40px,3vw,48px);
}

.video_iframe{
    position: relative;
    width: 68%;
    aspect-ratio: 16 / 9;
    height: auto;
    box-shadow: 0px 0px 10px #00000017;
    border-radius: 16px;
    border: 10px solid var(--w_color);
    z-index: 1;
}

.top_con01_chara{
    width: 25%;
    z-index: 0;
}

.top_con01_deco_wrap{
    position: absolute;
    bottom: 50%;
    right: -104PX;
    width: 50%;
}

.top_con01_bg{
    position: absolute;
    bottom: 0;
    left: 0;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: var(--gr);
    transition: background 500ms ease-in-out;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
}

.top_con02_txt p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.top_con02_img_wrap{
    position: absolute;
    top: calc(-1*clamp(60px,15vw,100px));
    right: clamp(0px,14vw,300px);
    /* z-index: 0; */
}

.top_con02_chara{
    position: relative;
    /* position: absolute; */
    /* top: calc(-1*clamp(60px,15vw,100px)); */
    /* right: clamp(0px,14vw,300px); */
    /* width: 23%; */
    z-index: 1;
    width: clamp(130px,23vw,442px);
}



/*-------------------------------------
事業内容
-------------------------------------*/

/* サービス一覧 */

.service_about_wrap{
    background: var(--b2_color);
}

.service_servie_list_wrap{
    position: relative;
}

.service_servie_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--m_ps3);
}

.service_servie_item{
    width: calc(100% / 2 - 2vw);
    border-radius: 16px;
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
}

.service_servie_item{
    display: flex;
    align-items: center;
    gap: var(--m_ps5);
    padding: var(--m_ps5);
    background: var(--w_color);
}

.service_servie_item_txt{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.service_servie_item_img img{
    width:100px;
    aspect-ratio: 1/1;
}

.service_servie_item_title{
    font: 900 clamp(18px,3vw,23px) var(--font_ja);
    letter-spacing: 0.06em;
    line-height: 1.8;
    margin-bottom: clamp(16px,3vw,24px);
}

.service_txt_wrap{
    margin-bottom: clamp(80px,6vw,100px);
}

.service_txt p{
    position: relative;
    text-align: center;
    z-index: 2;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.02em;
    line-height: 2;
}

/* お悩み */

.service_worry_wrap{
    background: var(--m_color);
}

.service_worry_item_title{
    font: 900 clamp(18px,3vw,23px) var(--font_ja);
    margin-bottom: var(--m_ps3);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.service_worry_item_txt{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.03em;
    line-height: 1.8;
}

.service_worry_item{
    position: relative;
    padding: var(--m_ps5);
    background: var(--w_color);
    margin-bottom: var(--m_ps5);
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
    border-radius: 16px;
    z-index: 2;
}

/* よくある質問 */

.service_faq_wrap{
    background: var(--b2_color);
}

.service_faq_txt{
    position: relative;
    text-align: center;
    margin-bottom: var(--m_ps8);
    z-index: 2;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.02em;
    line-height: 2.3;
}

.service_faq_list_container{
    margin-bottom: var(--m_ps8);
}

.service_faq_list_container:last-child{
    margin-bottom: 0px;
}

.service_faq_list_wrap:last-child{
    /* margin-bottom: 0px; */
}

.service_faq_list_wrap{
    position: relative;
    background: var(--m_color);
    padding: var(--m_ps3);
    margin-bottom: var(--m_ps3);
    z-index: 2;
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
    border-radius: 16px;
}

.service_faq_title{
    position: relative;
    color: var(--w_color);
    font: 500 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.service_faq_title_q{
    position: relative;
    margin-left: var(--m_ps5);
}

.q_txt_p{
    position: absolute;
    top: 0px;
    left: calc(-1*var(--m_ps5));
    color: var(--w_color);
    font: 500 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.service_repaire_faq_a{
    font: 700 clamp(16px,3vw,19px) var(--font_ja);
    margin-bottom: 0px;
}

.faq_item_answer li:first-child{
    margin-top: var(--m_ps5);
}

/* 内装 */

.service_service_worry_item_title{
    display: flex;
    align-items: center;
}

.service_worry_item_mark{
    margin-right: clamp(16px,3vw,19px);
    font-size: clamp(16px,3vw,33px);
}

.service_worry_list li:nth-of-type(1) .service_worry_item_mark{
    color: var(--a_color);
}
.service_worry_list li:nth-of-type(2) .service_worry_item_mark{
    color: var(--a4_color);
}
.service_worry_list li:nth-of-type(3) .service_worry_item_mark{
    color: var(--a7_color);
}
.service_worry_list li:nth-of-type(4) .service_worry_item_mark{
    color: var(--a_color);
}
.service_worry_list li:nth-of-type(5) .service_worry_item_mark{
    color: var(--a4_color);
}
.service_worry_list li:nth-of-type(6) .service_worry_item_mark{
    color: var(--a7_color);
}

/* 補修 */

.repair_worry_img{
    width: clamp(120px,16vw,200px);
}

.repair_worry_item{
    display: flex;
    gap: var(--m_ps8);
    align-items: center;
}

.repair_worry_txt_container{
    justify-content: center;
    gap: var(--m_ps5);
}

.repair_worry_txt_wrap{
    position: relative;
    width: 60%;
    background: var(--b_color);
    padding: var(--m_ps8);
    border-radius: 48% 43% 49% 44%;
    z-index: 2;
}

.repair_worry_txt_wrap::before{
    content: "";
    position: absolute;
    bottom: 0px;
    right: -7%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--b_color);
    width: 80px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}
.repair_worry_txt_wrap::after{
    content: "";
    position: absolute;
    bottom: 24px;
    right:-10%;
    transform: translateX(-50%);
    background: var(--b_color);
    width: 40px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.repair_worry_txt_wrap ul{
    display: grid;
    place-items: center;
}

.repair_worry_txt_wrap ul li{
    font: 700 clamp(16px,3vw,23px) var(--font_ja);
    letter-spacing: 0.06em;
    text-align: center;
    line-height: 1.8;
    /* width: fit-content; */
    margin: 0 auto;
}

.repair_worry_txt_wrap ul li:not(:last-child){
    margin-bottom: var(--m_ps3);
}

.repair_worry_txt_img{
    display: grid;
    place-items: center;
    width: 40%;
    margin: 0 auto;
}

body.page-template-repair .recruit_date_item::before{
    top: clamp(12px,2vw,18px);
}
body.page-template-cleaning .recruit_date_item::before{
    top: clamp(12px,2vw,18px);
}

/* 清掃 */

.cleaning_service_item{
    width: 100%;
    padding: clamp(24px,5vw,80px);
    gap: 104px;
}

.service_cleaning_item_img{
    width: 20%;
}

.cleaning_servie_item_txt_wrap{
    width: 80%;
}

.cleaning_servie_item_title{
    text-align: center;
    margin-bottom: var(--m_ps5);
}

.cleaning_servie_item_txt{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.06em;
}

.cleaning_servie_home_item_txt_wrap{
    width: 100%;
}

.service_cleanig_worry_item_title{
    margin-bottom: var(--m_ps5);
}

/* 料金 */

.service_servie_price_wrap{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--m_ps3);
    margin-bottom: var(--m_ps5);
    flex: 1;
}

.service_servie_price_wrap dl{
    display: flex;
    flex-direction: column;
    width: calc(100% / 2 - 2vw);
}

.service_servie_price_wrap dt{
    display: flex;
    flex-direction: column;
    flex: 1;
    font: 700 clamp(17px,3vw,19px) var(--font_ja);
    letter-spacing: 0.06em;
    background: var(--b3_color);
    padding: 16px;
    text-align: center;
    border-radius: 8px 8px 0px 0px;
}
.service_servie_price_wrap dd{
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 10px;
    border: 5px solid var(--b3_color);
    text-align: center;
    border-radius: 0px 0px 8px 8px;
}

/* 再生クリーニング */

.service_servie_reproduction_wrap{
    position: relative;
    background: var(--b2_color);
    padding: clamp(24px,3vw,48px);
    border-radius: 16px;
}

.service_servie_reproduction_topic{
    width: 50%;
    padding: clamp(12px,2vw,16px) var(--m_ps5);
    background: var(--w_color);
    border-radius: 300px;
    text-align: center;
    z-index: 0;
    font: 700 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.06em;
    color: var(--f_color);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service_servie_reproduction_title{
    position: relative;
    display: grid;
    place-items: center;
    font: 700 clamp(18px,3vw,28px) var(--font_ja);
    letter-spacing: 0.06em;
    background: var(--a_color);
    padding: 10px clamp(16px,3vw,20px);
    width: fit-content;
    text-wrap: nowrap;
    text-align: center;
    margin-bottom: 24px;
    z-index: 2;
    border-radius: 8px;
    color: var(--w_color);
    line-height: 1.6;
    z-index: 5;
}

.service_cleaning_chara{
    position: absolute;
    top: -12px;
    right: 88px;
    width: 35%;
    z-index: 3;
}

.service_cleaning_worry_nm{
    position: relative;
    margin-right: 48px;
    color: var(--w_color);
}

.service_cleaning_worry_nm::before{
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    content: url(img/penki1.svg);
    width: clamp(130px,21vw,160px);
    z-index: -1;
}

.service_worry_list li:nth-of-type(1) .service_cleaning_worry_nm::before{
    content: url(img/penki1.svg);
}
.service_worry_list li:nth-of-type(2) .service_cleaning_worry_nm::before{
    content: url(img/penki2.svg);
}
.service_worry_list li:nth-of-type(3) .service_cleaning_worry_nm::before{
    content: url(img/penki3.svg);
}


/* 清掃お悩み */

.cleaning_worry_txt_container{
    margin-bottom: 200px;
}

.cleaning_solution_txt_wrap{
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.cleaning_solution_txt_wrap p{
    display: grid;
    place-items: center;
    font: 700 clamp(16px,3vw,28px) var(--font_ja);
    letter-spacing: 0.06em;
    background: var(--a_color);
    padding: 10px 20px;
    width: fit-content;
    text-wrap: nowrap;
    text-align: center;
    rotate: -4deg;
    border-radius: 8px;
    color: var(--w_color);
}

/*-------------------------------------
採用情報
-------------------------------------*/

/* about */

.recruit_about_wrap{
    background: var(--b2_color);
}

.recruit_about_inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--m_ps5);
}

.recruit_about_txt_wrap{
    width: 50%;
}

.recruit_about_txt p{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 2;
    letter-spacing: 0.02em;
}

.recruit_about_img_wrap{
    display: grid;
    place-items: center;
    width: 50%;
}

/* 募集事項 */

.recruit_date_wrap{
    background: var(--m_color);
}

.recruit_date_content_wrap{
    position: relative;
    background: var(--w_color);
    padding: min(80px,8vw);
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
    border-radius: 16px;
    z-index: 2;
}

.recruit_date_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.recruit_date_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #ddd;
    font: 700 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.05em;
}
.recruit_date_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #ddd;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.05em;
}

.recruit_date_list{
    position: relative;
}

.recruit_date_item{
    position: relative;
    margin-left: 24px;
}

.recruit_date_item::before{
    content: "";
    position: absolute;
    top: 12px;
    left: -20px;
    width: 4px;
    aspect-ratio: 1/1;
    background: var(--f_color);
    border-radius: 50%;
}

.recruit_date_ol_wrap ol li{
    list-style-type: decimal;
    margin-left: 20px;
}

/*-------------------------------------
個人情報保護法
-------------------------------------*/

.privacy_wrap{
    background: var(--b2_color);
    padding: min(80px,8vw);
}

.privacy_date_wrap dl{
    display: block;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
}

.privacy_date_wrap li{
    position: relative;
    margin-left: 32px;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
}

.privacy_date_wrap li::before{
    position: absolute;
    top: 12px;
    left: -20px;
    content: "";
    background: var(--f_color);
    width: 4px;
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.ml10{
    margin-left: 16px;
}

.privacy_date_wrap p{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
}


/*-------------------------------------
お知らせ
-------------------------------------*/
.new_container{
    position: relative;
}

.new_wrap {
    position: relative;
    border-top: none;
    background: #a8e8ff;
}

.top_con02_bg{
    position: absolute;
    bottom: 0;
    /* right: -330px; */
    right: calc(-1*clamp(180px,50vw,330px));
    /* right: -104px; */
    /* width: 600px; */
    width: clamp(260px,31vw,600px);
    height: auto;
    z-index: 0;
    opacity: 0.8;
}

.top_con02_bg img{
    display: inline-block;
    width: clamp(260px,33vw,600px);
}

.new_inner {
    position: relative;
    padding-right: clamp(24px,6vw,80px);
    padding-left: clamp(24px,6vw,80px);
}
time {
    font: 17px/1 var(--font_en);
    display: block;
    letter-spacing: 0.1vw;
    margin-right: 10px;
}
.new_list {
    position: relative;
    /* display: flex !important; */
    gap: var(--m_ps3);
    z-index: 3;
    /* align-items: stretch; */
    /* flex: 1; */
}
.new_list li {
    position: relative;
    /* padding: var(--m_ps5); */
    background: var(--w_color);
    box-shadow: 0px 0px 10px #00000017;
    border-radius: 16px;
    border: 5px solid #494852;
    display: flex !important;
    align-items: stretch;
    flex: 1;
    flex-direction: column;
    z-index: 3;
}

.new_list li:after{
    content: "";
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--a_color);
    /* width: 84px; */
    width:clamp(84px,6vw,100px);
    aspect-ratio: 1/1;
    z-index: 0;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
    border-radius: 0px 0px 14px 0px;
    pointer-events: none;
}

.new_list li:nth-of-type(3n):after{
    background: var(--a7_color);
}
.new_list li:nth-of-type(3n+1):after{
    background:var(--a_color);
}
.new_list li:nth-of-type(3n+2):after{
    background: var(--a4_color);
}

.new_list li:last-child {
    margin-bottom: 0;
}

.new_item{
    padding: var(--m_ps5);
}

.new_item_date {
    display: block;
    align-items: center;
    /* padding: var(--m_ps5); */
    cursor: pointer;
}
.new_item_date > div.flex {
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--m_ps3);
}
.new_item_cat {
    color: var(--f_color);
    border: 1px solid var(--f_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    letter-spacing: 0.04em;
    background: var(--w_color);
    border-radius: 3px;
}

.new_item_ttl {
    display: flex;
    flex-direction: column;
    flex: 1;
    color: var(--h_color);
    font-weight: bold;
    letter-spacing: 0.04em;
    /* line-clamp: 3; */
    -webkit-line-clamp: 3;
    overflow: hidden;
    /* text-overflow: ellipsis; */
    max-height: calc(1.8em * 3);
    line-height: 1.8em;
    height: auto;
}
.news_txt {
    /* margin-top: 20px; */
    display: none;
    /* padding: var(--m_ps5); */
    /* padding-top: var(--m_ps3); */
    /* padding: 0px var(--m_ps5) var(--m_ps5); */
}



/* デフォルト */
.news_txt { margin-top: 30px; }

/* 行数ごとの個別設定 */
.news_txt.line-1 { margin-top: 0px; }
.news_txt.line-2 { margin-top: 30px; }
.news_txt.line-3plus { margin-top: 50px; }

/* 最新5件すべて同じ行数のとき */
.news_txt.line-1.combo-same,
.news_txt.line-2.combo-same,
.news_txt.line-3plus.combo-same {
  margin-top: 30px !important;
}




.news_txt p {
    margin-bottom: 30px;
    letter-spacing: 0.04em;
    line-height: 1.8;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}

.new_item_cat a{
    text-decoration: none;
    color: var(--f_color);
    font: 400 14px var(--font_ja);
    letter-spacing: 0.04em;
    transition: all var(--tr);
    padding: 3px 10px;
    border: 1px solid var(--f_color);
    border-radius: 3px;
}

.new_item_cat a:hover{
    opacity: 0.7;
}

/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    /* width: 15px; */
    width: clamp(15px,3vw,20px);
    height: 2px;
    /* height: clamp(2px,1vw,3px); */
    background-color: var(--f_color);
    transition: var(--tr);
    z-index: 2;
}
.new_item_date::before {
    bottom: 24px;
    right: 20px;
    transform: rotate(0deg);
}
.new_item_date::after {
    bottom: 24px;
    right: 20px;
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
    display: block;
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_ig {
}
.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}
.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc(100% / 5 - 5px);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    aspect-ratio: 1/1;
    transition: all var(--tr);
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.insta_img_list .item a{
    opacity: 0.7;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 48px;
    background: #e5e5e5;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}

.breadcrumbs_icon{
    width: 14px;
    max-width: 14px;
    margin-right: 3px;
}

.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;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/

/* about */

.company_about_wrap {
    background: var(--b2_color);
}

.company_about_h3{
    font: 900 clamp(20px,3vw,25px) var(--font_ja);
    margin-bottom: clamp(32px,3vw,60px);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.company_copy{
    width: 60%;
    height: auto;
    margin-bottom: var(--m_ps5);
}

.company_about_strong{
    display: inline-block;
    font: 700 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 2;
}

.company_about_item{
    margin-bottom: var(--m_ps5);
    background: var(--w_color);
    padding: var(--m_ps5);
    box-shadow: 0px 0px 10px #00000017;
    border-radius: 16px;
}

.company_about_item_inner{
    margin-bottom: 48px;
}

.company_about_item h3{
    text-align: start;
    margin-bottom: 32px;
}

.company_about_txt{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

.company_about_item_tite{
    display: inline-block;
    margin-bottom: 16px;
    font: 700 clamp(18px,3vw,22px) var(--font_ja);
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.company_about_eco_list{
    margin-bottom: 24px;
}

.company_about_eco_list li{
    position: relative;
    margin-left: 24px;
    font: 700 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.08em;
    line-height: 1.8;
    margin-left: clamp(20px,3vw,24px);
}

.company_about_eco_list li::before{
    position: absolute;
    top: 12px;
    left: -24px;
    content: "";
    width: 6px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--f_color);
}

.company_about_eco_item{
    margin-bottom: 16px;
}

/* 代表メッセージ */

.company_message_wrap{
    display: grid;
    place-items: center;
    background: var(--m_color);
}

.company_message_img_wrap img{
    margin: 0 auto;
    margin-bottom: var(--m_ps8);
}

.company_message_txt_inner{
    margin-bottom: var(--m_ps5);
}

.company_message_txt_inner p{
    color: var(--w_color);
    letter-spacing: 0.05em;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 2;
}

.company_message_name_wrap{
    display: grid;
    place-items: end;
}

.company_message_name_wrap p{
    color: var(--w_color);
}

/* 会社概要 */

.company_company_wrap{
    background: var(--b2_color);
}

.company_logo_bg{
    position: absolute;
    bottom: clamp(100px,11vw,210px);
    right: 0;
    width: 40%;
    opacity: 0.2;
}

.company_company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #0000001c;
}
.company_company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #0000001c;
    font: 700 16px var(--font_ja);
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.company_company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #0000001c;
    font: 400 16px var(--font_ja);
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

.company_company_bottom{
    padding:28px min(80px,8vw) 0px;
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap {
    margin: 0 auto;
}
.blog_inner,
.single_inner,
.search_inner {
    order: 2;
    width: calc(100% - 250px);
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner li {
    margin-bottom: 48px;
}
.blog_photo {
    width: 350px;
}
.blog_photo img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
}
.blog_text {
    width: calc(100% - 350px - 30px);
    margin-left: auto;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
}
.blog_title a {
    font-size: 16px;
    color: var(--f_color);
    text-decoration: none;
}
.post-categories li {
    margin: 0 5px 5px 0;
}
.blog_clock time {
    color: #999;
    font-size: 0.8125rem;
}
.post-categories {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}
.post-categories li a:hover {
    background: #f9f9f4;
    color: var(--m_color);
}
.post-categories li a:hover:before {
    color: var(--m_color);
}
.post-categories li a:before {
    content: "\f07c";
    font: 100%/1 "font awesome 6 free";
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;

    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
    align-items: center;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: #000000;
    padding: 10px 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-bottom: 1px solid #333;
    padding: 0 0 5px;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;

    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    font: 400 16px var(--font_ja);
    margin: 0 0 25px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #e6f7f5;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #f9f9f4;
    padding: 20px 20px 20px 48px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f9f9f4;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル　ページネーション*/
.single_pagenavi {
    margin: 10vh 0;
}
.single_pagenavi .next {
    margin: 0 0 0 auto;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    max-width: 800px;
    width: 100%;
    line-height: 1.5em;
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
}
.outline__toggle {
    display: none;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-left: 5px;
    border-radius: 5px;
}
.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}
.outline__switch + .outline__list {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: -20px 0;
    transition: var(--tr);
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    transition: var(--tr);
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}
ul.outline__list ul {
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_container {
    margin: 0 48px 0 0;
    width: 250px;
}
.side_container > div {
    margin: 0 0 30px;
}
.widget_title div {
    color: #555;
    letter-spacing: 0.08em;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: 900 clamp(20px, 1.5vw, 50px) var(--font_en);
}
.side_container li {
    position: relative;
    padding: 10px 0;
    transition: var(--tr);
}
.side_container li:hover {
    opacity: 0.7;
}
.side_container li a {
    font-size: 0.8125rem;
    text-decoration: none;
    color: var(--f_color);
}
.side_container li a > div:nth-child(1) {
    width: 70px;
    height: auto;
}
.side_container li a > div:nth-child(2) {
    width: calc(100% - 80px);
    margin-left: auto;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    outline: 0;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 10px;
}
.widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: 5px;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.wp-pagenavi .page-numbers {
    font: 400 16px var(--font_en);
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    margin-right: 10px;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_contaciner {
}

.contact_wrap{
    position: relative;
    background: var(--m_color);
}

.contact_h3{
    font: 900 clamp(20px,3vw,28px) var(--font_ja);
    line-height: 1.8;
    text-align: center;
    margin-bottom: var(--m_ps3);
}

.contact_inner {
}

.contact_txt{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 2;
    text-align: center;
    letter-spacing: 0.04em;
    margin-bottom: var(--m_ps8);
    color: var(--w_color);
}

.contact_info_mail_txt{
    text-align: center;
}

.contact_info_mail_txt p{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 2;
}

.contact_info {
    text-align: center;
    background: #f9f9f4;
    padding: 40px 20px;
    margin: 0 auto 5vw;
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
    border-radius: 16px;
}

.contact_info h3{
    margin-bottom: 0px;
}

.contact_info_tel{
    background: var(--a_color);
}

.contact_info_line{
    background: var(--a4_color);
}

.contact_info_mail{
    background: var(--w_color);
    padding: min(80px, 8vw);
    box-shadow: 0px 0px 10px #00000017;
    border: 5px solid #494852;
    border-radius: 16px;
}

.contact_info a {
    background: var(--w_color);
    text-decoration: none;
    color: var(--m_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
}
.contact_info a img {
    margin-right: 10px;
    display: block;
    width: max(30px, 3vw);
}

.contact_info_tel_wrap {
    gap: 16px;
    align-items: baseline;
    color: var(--w_color);
    font:900 clamp(28px, 3vw, 70px) / 1 var(--font_ja);
    letter-spacing: 0.06em;
    margin-bottom: var(--m_ps3);
    line-height: 1.4;
}

.contact_info_time{
    font: 400 clamp(16px, 3vw, 19px) / 1 var(--font_ja);
    color: var(--f_color);
    letter-spacing: 0.06em;
    line-height: 1.8;
}

.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}

.wpcf7-form_form {
    background: #fff;
    padding: min(80px,8vw);
}

.wpcf7_left {
    display: block;
    width: 100%;
    padding: min(25px,3vw) 0px;
    list-style: none;
    border-left: none;
    font: 700 16px var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

.wpcf7_right {
    display: block;
    width: 100%;
    padding: min(25px, 3vw) 0px;
    border-left: none;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.6;
}

form.wpcf7-form .required:after {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: clamp(8px,1vw,12px);
    vertical-align: middle;
    border-radius: 4px;
}
form.wpcf7-form .required2:after {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: clamp(8px,1vw,12px);
    vertical-align: middle;
    border-radius: 4px;
}

.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    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: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 4px;
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}

.wpcf7-checkbox label span{
    display: inline-block;
    margin-bottom: 8px;
}

.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: clamp(0.75rem,1vw,0.8rem);
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
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: #fff;
    font: 700 16px var(--font_ja);
    z-index: 0;
    border: none;
    padding: 15px;
    letter-spacing: 0.4em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--a_color);
    border-radius: 300px;
    box-shadow: 0px 0px 10px #00000017;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
    transition: all var(--tr);
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    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 tr {
    /* display: block; */
}

#wpcf7cpcnf table th {
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 23px 0px;
    border-bottom: 1px solid #ddd;
}

#wpcf7-f114-o1 div#wpcf7cpcnf{
    background-color: var(--w_color);
    padding: var(--m_ps5);
    border-radius: 20px;
    z-index: 2;
    padding: min(80px, 8vw);
}

#wpcf7cpcnf table th p {
    color: #202020;
    font: 900 16px var(--font_ja);
    letter-spacing: 0.04em;
}

#wpcf7cpcnf table td {
    width: 75%;
    padding: 23px 0px;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
    border-bottom: 1px solid #ddd;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
    transition: all var(--tr);
    font-size: 16px;
    border-radius: 300px;
    box-shadow: 0px 0px 10px #00000017;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--a_color);
    color: #fff;
    border: none;
    transition: all var(--tr);
    font-size: 16px;
    border-radius: 300px;
    box-shadow: 0px 0px 10px #00000017;
}

.wpcf7cp-cfm-edit-btn:hover{
    opacity: 0.7;
}
.wpcf7cp-cfm-submit-btn:hover{
    opacity: 0.7;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 80px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}

/*-------------------------------------
フッター部分
-------------------------------------*/

.footer_inner{
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: clamp(80px,8vw,104px);
    align-items: center;
}

.footer_list_wrap{
    position: relative;
    justify-content: center;
    width: 60%;
    z-index: 2;
}

.footer_item_title{
    color: var(--w_color);
    margin-bottom: 16px;
    padding-bottom: 12px;
    padding-top: 16px;
    font: 700 16px var(--font_ja);
    letter-spacing: 0.06em;
    border-bottom: 1px solid var(--w_color);
}

.footer_chara{
    position: absolute;
    bottom: 0;
    right: 0;
}

.footer_logo_bg{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 38%;
    opacity: 0.2;
    z-index: 0;
}

/* フッター */
.footer {
    background: #2c2c2c;
    position: relative;
    z-index: 0;
}
.footer_nav {
    /* margin: 0 5% 0 0; */
    /* padding: 0 5% 0 0; */
    /* border-right: 1px solid #555; */
}

.footer_list_wrap ul:not(:last-child){
    margin: 0 5% 0 0;
    padding: 0 5% 0 0;
}

.footer_nav a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    position: relative;
    margin: 0 30px 0 0;
    font-size: 0.8125rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    /* content: "\f105"; */
    display: inline-block;
    margin: 0 3px 0 0;
    /* content: url('img/chevron-right-solid.svg'); */
    /* width: 13px; */
}
.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;
    width: 200px;
    margin: 0 auto;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}

.address_wrap{
    /* background: var(--w_color); */
    color: var(--w_color);
    margin-bottom: 16px;
}

.footer_has-child{
    /* margin-left: 16px; */
}

.footer_has-child a:before{
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    display: inline-block;
    margin: 0 3px 0 0;
}

/*sns部分*/

.footer_address_sns_wrap{
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.footer_address_sns {
    margin-top: 20px;
}
.footer_address_sns a {
    font-size: 25px;
    width: 25px;
    aspect-ratio: 1/1;
    display: inline-block;
    transition: all var(--tr);
}
.footer_address_sns i {
    color: #ddd;
}

.footer_address_sns_icon{
    width: 25px;
}

.footer_address_sns a:hover{
    opacity: 0.7;
}

/*アドレス*/
.address_container {
    text-align: center;
    font-size: 0.8125rem;
    margin: 30px 0 0;
    color: #fff;
    letter-spacing: 0.04em;
    line-height: 2.3;
}
.address_container a {
    color: #fff;
    /* text-decoration: none; */
}
.copyright {
    text-align: center;
    border: none;
    color: #fff;
    font-size: 0.6875rem;
    border-top: 1px solid #474747;
    padding: 35px 48px;
    margin: 0;
}

.copyright p {
    color: #fff;
}
.copyright a {
    font-size: 0.875rem;
    color: #fff;
}

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

/*-------------------------------------
404
-------------------------------------*/

.nofind_wrap{
    background: var(--b2_color);
}

.nofind_inner a{
    font: 700 16px var(--font_en);
    color: var(--a_color);
}
.nofind_inner p{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: var(--f_color);
}

/***** 改行 *****/

/* モバイルのみ改行 */
@media only screen and (min-width: 550px){
    .br_sp{
        display: none;
    }
}

/* タブレットのみ改行 */
@media only screen and (min-width: 820px){
    .br_tb{
        display: none;
    }
}

@media only screen and (max-width: 550px){
    .br_tb{
        display: none;
    }
}

/* pcのみ改行 */
@media only screen and (max-width: 1024px){
    .br_pc{
        display: none;
    }
}

/* pc,タブレット改行 */

@media only screen and (max-width: 550px){
    .br_pc_tb{
        display: none;
    }
}

/* タブレット,sp改行 */

@media only screen and (min-width: 1024px){
    .br_tb_sp{
        display: none;
    }
}

/* pc,sp改行 */
@media (max-width: 820px) and (min-width: 550px){
    .br_pc_sp{
        display: none;
    }
}


/***** 改行ここまで *****/

@media only screen and (min-width: 1281px) {
    .pc_none {
        display: none;
    }
}

@media only screen and (max-width: 1280px) {
    .common_cta_content_wrap{
        flex-direction: column;
    }

    .common_cta_content_wrap li{
        width: 100%;
    }

    .footer_inner{
        flex-direction: column;
    }

    .footer_list_wrap{
        width: 100%;
    }

    .h_nav_wrap{
        width: 100%;
    }

    /*****  ハンバーガーメニュー *****/

    body:not(.home) .menu-trigger{
        top: 23px;
    }

    .pc_h_nav_ja{
    width: 224px;
    font: 700 16px var(--font_ja);
    margin: 0 auto;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid;
    }

    .pc_h_nav_en{
    font: 700 13px var(--font_ja);
    }

    .h_nav_inner{
        justify-content: start;
    }

    .sp_none {
        display: none !important;
    }

    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .overlay.open {
        width: 100%;
        height: 100%;

        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        /* width: 50px; */
        /* height: 45px; */
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        /* top: 16px; */
        /* top: 28px; */
        top: 24px;
        right: 32px;
        z-index: 100;
        transition: var(--tr);
        font: 700 clamp(13px,3vw,16px) var(--font_en);
        text-transform: uppercase;
    }

    .h_nav_wrap.is-fixed .menu-trigger {
        /* top: 30px; */
        top: 38px;
        right: 80px;
    }

    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        /* width: 30px; */
        height: 2px;
        background-color: #333;
        transition: var(--tr);
    }
    .menu-trigger.active span {
        background-color: var(--m_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        /* width: 10px; */
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        -webkit-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;
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        -webkit-transform: translateY(-12px) rotate(45deg);
        bottom: 6px;
        width: 30px;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: #d8f0fa;
        position: fixed;
        top: -12px;
        right: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
        height: 101vh;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }
    .sp_h_nav_inner ul {
        height: auto;
        flex-direction: column;
    }

    .sp_h_nav_list{
        margin: 0 0 10vw;
    }

    .sp_h_nav_inner .sp_h_nav_list li {
        margin: 0 0 15px;
    }
    .sp_h_nav_inner_link_g a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px;
        text-align: center;
        font: 16px var(--font_en);
        transition: all var(--tr);
    }

    /* .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        padding: 10px 30px;
    } */

    .sp_h_nav_inner .sp_h_nav_list_inner {
        border-bottom: none;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }

    nav li.has-child ul li > a{
        color: var(--f_color);
    }
    nav li.has-child ul li.sp_h_nav_inner_link_p > a{
        color: var(--g_color);
        font: 400 13px var(--font_ja);
        padding: 10px;
    }

    nav li.has-child a{
        /* border-bottom: solid 1px #2222225e; */
        width: 224px;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: var(--f_color);
    }
    .sp_h_nav_inner li:last-child {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
    .sp_h_nav_tel {
        padding: 30px 10px;
        background:var(--w_color);
        text-align: center;
        width: 90%;
        margin: 0 auto;
        border-radius: 16px;
        box-shadow: 0px 0px 10px #00000017;
        border: 5px solid #494852;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--m_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font: 900 25px/1 var(--font_en);
        transition: all var(--tr);
    }

    .tel_wrap{
        gap: 5px;
        color: var(--a_color);
        font: 900 25px/1 var(--font_en);
    }

    .tel_wrap i{
        color: var(--a_color);
    }

    .sp_h_nav_tel_time{
        color: var(--f_color);
        font: 400 16px var(--font_ja);
        margin-top: 20px;
    }

    .sp_h_nav_tel img {
        max-width: 40px;
    }
    .sp_h_nav_sns {
        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;
        gap: 10px;
    }
    .sp_h_nav_sns a {
        width: 50px;
        display: inline-block;
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        text-decoration: none;
        transition: all var(--tr);
    }

    .sp_h_nav_sns a i {
        width: 40px;
        color: var(--w_color);
    }
    .sp_h_nav_sns img {
        max-width: 32px;
    }

    .sp_h_nav_inner .sp_h_nav_list a:hover{
        opacity: 0.7;
    }

    .sp_h_nav_sns a:hover{
        opacity: 0.7;
    }

    .sp_h_nav_tel a:hover{
        opacity: 0.7;
    }

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

    .scroll-prevent {
    position: fixed;
    width: 100%;
    overflow: hidden;
    }

    .cleaning_solution_txt_wrap{
        left: 60%;
    }
}
@media only screen and (max-width: 1024px) {
    .wrap {
        background: none;
    }

    .service_servie_item{
        width: 100%;
    }

    .wpcf7-form_form{
        padding: 0;
    }

    .contact_info_mail_txt{
        margin-bottom: var(--m_ps5);
    }

    .cleaning_solution_txt_wrap{
        left: 76%;
    }

    .service_servie_reproduction_topic{
        width: 60%;
    }
}
/* @media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
} */
@media only screen and (max-width: 820px) {

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }
    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .main_pa_col{
    padding-bottom: 80px;
    }
    .main_wrap {
        /* padding-top: 80px; */
        /* padding-bottom: 80px; */
    }
    .m_a {
    padding-right: 48px;
    padding-left: 48px;
    }

    h2{
        margin: 0 0 60px;
    }

    /*-------------------------------------
    アニメーション
    -------------------------------------*/

    .slick-prev:before, .slick-next:before{
        font-size: 24px;
    }
    .slick-next:before{
        right: -4px;
    }

    .slick-prev:before{
        right: 0;
    }

    /* ページ内スクロール */

    body.from-anchor #company-messeage {
        position: relative;
        /* top: -640px; */
        top: -140px;
    }
    body.from-anchor #company-about {
        position: relative;
        /* top: -620px; */
        top: -120px;
    }
    body.from-anchor #contact-contact {
        position: relative;
        top: -120px;
    }

    body.from-anchor #contact-news {
        position: relative;
        top: -180px;
        /* top: -200px; */
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        padding: 0px 8px;
    }

    body:not(.home) .h_img_wrap {
        padding-top: clamp(90px, 10vw, 200px);
        padding-bottom: 80px;
        height: clamp(200px, 37vw, 500px);
        background-position: center;
        background-size: cover;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner{
        padding-top: 80px;
    }


    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/

    .common_cta_bg_t{
        top: clamp(140px,33vw,250px);
    }

    .top_con01_wrap::before{
        display: none;
    }


    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }
    .new_inner {
    }
    .new_inner:before {
        font-size: 120px;
        margin-right: 20px;
    }

    .new_list{
        flex-direction: column;
    }

    .new_list li{
        width: 100%;
    }

    .top_con02_img_wrap{
        top: -20px;
    }

    .top_con02_bg{
        right: calc(-1 * clamp(180px, 30vw, 330px));
    }

    /*-------------------------------------
    フッター
    -------------------------------------*/

    .footer_inner {
        display: block;
    }
    .footer_nav {
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .footer_list_wrap ul:not(:last-child){
        padding: 0;
        margin: 0;
    }

    .footer_list_wrap{
        flex-direction: column;
        width: 100%;
    }

    /*-------------------------------------
    事業内容
    -------------------------------------*/
    .service_servie_item{
        width: 100%;
    }

    /* 内装事業 */

    .service_servie_item_txt{
        width: 90%;
    }

    .service_worry_item_title{
        text-align: center;
        justify-content: center;
    }

    .service_worry_item_title{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service_cleaning_worry_nm{
        margin-right: 0px;
    }

    .service_worry_item_mark{
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .service_worry_item_txt{
        text-align: center;
        justify-content: center;
    }


    /* 修繕事業 */
    .repair_worry_txt_container{
        flex-direction: column;
    }

    .repair_worry_txt_wrap{
        width: 100%;
    }

    .repair_worry_item{
        flex-direction: column;
        gap: var(--m_ps5);
    }

    .service_worry_item_title{
        text-align: center;
    }

    .repair_worry_txt_wrap::before{
        bottom: -58px;
        right: -7%;
        transform: translateX(-50%) translateY(-50%);
    }
    .repair_worry_txt_wrap::after{
        bottom: -64px;
        right:4%;
        transform: translateX(-50%);
    }

    /* 清掃事業 */

    .cleaning_worry_txt_container{
        margin-bottom: 80px;
        gap: clamp(146px,16vw,180px);
    }

    .cleaning_service_item{
        flex-direction: column;
        gap: 30px;
    }

    .cleaning_servie_item_txt_wrap{
        width: 100%;
    }

    .cleaning_servie_item_txt{
        width: 100%;
    }

    .service_servie_price_wrap dl{
        width: 100%;
    }

    .service_servie_reproduction_topic{
        position: relative;
        width: 74%;
    }

    .service_cleaning_chara{
        bottom: auto;
        top: 0;
        right: 24px;
    }

    .cleaning_solution_txt_wrap{
        left: 50%;
    }

    .service_cleanig_worry_item_title{
        gap: clamp(24px,10vw,72px);
    }

    /*-------------------------------------
    よくある質問
    -------------------------------------*/

    .faq_q{
        margin-right: 0px;
        margin-bottom: 24px;
    }

    /*-------------------------------------
    採用情報
    -------------------------------------*/

    .recruit_about_inner{
        flex-direction: column;
        gap: 32px;
    }

    .recruit_about_txt_wrap{
        width: 100%;
    }

    .recruit_about_txt{
        position: relative;
        z-index: 2;
        text-align: start;
    }

    /*-------------------------------------
    会社概要
    -------------------------------------*/
    .company_about_item h3{
    text-align: center;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/

    .wpcf7-form_form{
        padding: 0;
    }

    .contact_info_mail_txt{
        margin-bottom: var(--m_ps5);
    }

    #wpcf7-f114-o1 div#wpcf7cpcnf{
        padding: 0;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --m_ps3: 24px;
        --m_ps5: 32px;
        --m_ps8: 48px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        /* margin-bottom: 50px; */
    }
    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_wrap {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_pa_col{
    /* padding-bottom: 50px; */
    }
    .m_a {
    padding-left: 24px;
    padding-right: 24px;
    }
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 25px;
        padding: 0 30px;
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
    }
    body:not(.home) h1:before {
        font-size: 23px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }

    h2{
        margin: 0 0 30px;
    }

    h2:before {
        font-size: 45px;
        top: -70px;
    }
    .top_h2 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .ml10{
        margin-left: 0px;
    }

    .sp_fs{
    font-size: 14px;
    }


    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/

    .common_cta_container{
        /* padding-top: 80px; */
    }

    .common_cta_inner a {
        flex-flow: column;
    }
    .common_cta_inner img {
        margin-right: 0;
    }

    .common_cta_txt_container{
        flex-direction: column;
        align-items: center;
        margin-top: 0px;
    }

    .common_cta_inner img{
        margin-top: 32px;
    }

    .common_cta_txt_wrap{
        margin-bottom: 0px;
    }

    .common_chara{
    width: 54%;
    }

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

    /*-------------------------------------
    アニメーション
    -------------------------------------*/
    /* スライダー */

    .slick-next:before{
        right: 0px;
    }

    .slick-prev:before{
        right: -4px;
    }

    /* スクロールダウン */
    .scrolldown4:before{
        bottom: -48px;
    }

    .scrolldown4 span{
        bottom: 12px;
    }

    /* ページ内スクロール */

    body.from-anchor #company-messeage {
        position: relative;
        /* top: -280px; */
        top: -100px;
    }
    body.from-anchor #company-about {
        position: relative;
        /* top: -270px; */
        top: -100px;
    }

    body.from-anchor #contact-contact {
        position: relative;
        top: -120px;
    }

    body.from-anchor #contact-news {
        position: relative;
        top: -80px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_ttl {
        width: 160px;
    }

    body:not(.home) .site_ttl{
        width: 100px;
    }

    .h_nav_wrap.is-fixed .site_ttl{
        width: 100px;
    }

    body:not(.home) .footer_address .site_ttl{
        width: 200px;
    }

    .site_ttl a {
        color: #fff;
    }
    .menu-trigger {
        /* top: 12px; */
        top: 24px;
        right: 24px;
    }

    body:not(.home) .menu-trigger{
        /* top: 2px; */
        top: 14px;
    }

    .h_nav_inner{
        padding: 12px 32px;
    }

    .h_nav_wrap.is-fixed{
        padding: 0px 16px;
    }

    .h_nav_wrap.is-fixed .menu-trigger{
        /* top: 4px; */
        top: 14px;
        right: 32px;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/

    .top_con01_wrap::before{
        display: none;
    }

    .top_con01_inner {
        display: block;
    }
    .top_con01_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .top_con01_txt {
        width: 100%;
        margin-bottom: 24px;
    }

    .video_wrap{
        padding-left: 0px;
        padding-right: 0px;
        /* flex-direction: column; */
        /* gap: 0; */
        gap: 14px;
        margin: 0 24px;
    }

    .video_iframe{
        /* width: 100%; */
        width: 71%;
        border-radius: 8px;
    }

    .top_con01_chara{
        /* width: 32%; */
        width: 26%;
        /* margin: 0 auto; */
    }

    .top_con01_txt_strong_wrap{
        flex-direction: column;
        gap: 16px;
        margin: 48px 0 32px;
    }

    .top_con01_txt_strong{
        margin: 0;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/

    .top_con02_img_wrap{
        right: 16px;
        /* right: clamp(0px, 0vw, 300px); */

    }

    .top_con02_chara{
        /* right: clamp(0px, 0vw, 300px); */
        right: -238px;
        width: 38%;
        z-index: 2;
    }

    .top_con02_bg img{
        /* width: 260px; */
    }

    .top_con02_bg{
        bottom: 150px;
    }

    /*-------------------------------------
    事業内容
    -------------------------------------*/
    .service_worry_item{
        padding: 24px 20px;
    }

    .service_servie_item_txt{
        width: 90%;
    }

    .service_worry_item_title{
        text-align: center;
        justify-content: center;
    }

    .service_worry_item_title{
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .service_cleaning_worry_nm{
        margin-right: 0px;
    }

    .service_worry_item_mark{
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .service_worry_item_txt{
        margin-left: 0px;
        text-align: start;
    }

    .service_txt p{
        text-align: start;
    }


    /* 清掃事業 */

    .cleaning_solution_txt_wrap{
        bottom: -120px;
    }

    .cleaning_solution_txt_wrap p{
        text-align: start;
    }

    .cleaning_worry_txt_container{
        gap: 146px;
    }

    .repair_worry_txt_img{
        width: 60%;
    }

    .service_cleaning_item_img{
        width: 34%;
    }

    .cleaning_service_item{
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .cleaning_servie_item_txt_wrap{
        width: 100%;
    }

    .cleaning_servie_item_txt{
        width: 100%;
    }

    .service_servie_price_wrap dl{
        width: 100%;
    }

    .cleaning_service_item{
        padding: 32px 24px;
    }

    .service_servie_reproduction_topic{
        position: relative;
        width: 100%;
        z-index: 5;
        margin: 0 auto;
        margin-bottom: 16px;
    }

    .service_servie_reproduction_wrap{
        padding: 24px;
        padding-top: 100px;
    }

    .service_servie_reproduction_title{
        z-index: 4;
        margin: 0 auto;
        margin-bottom: 24px;
    }

    .service_cleaning_chara{
        top: calc(-1*clamp(0px,1vw,16px));
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 46%;
    }

    .service_servie_reproduction_wrap{
        position: relative;
    }

    .service_cleanig_worry_item_title{
        gap: 24px;
    }

    .service_worry_cleaning_h3{
        margin-bottom: 64px;
    }

    /*-------------------------------------
    よくある質問
    -------------------------------------*/

    .faq_q{
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .repair_a{
        margin-right: 0px;
        margin-bottom: 24px;
    }

    .service_faq_title{
        width: 80%;
    }

    .service_faq_list_wrap{
        padding: 24px 20px;
    }

    /*-------------------------------------
    採用情報
    -------------------------------------*/

    .recruit_about_inner{
        flex-direction: column;
        gap: 32px;
    }

    .recruit_about_txt_wrap{
        width: 100%;
    }

    .recruit_about_txt{
        position: relative;
        z-index: 2;
        text-align: start;
    }

    .recruit_date_content_wrap{
        padding: 24px;
    }

    .recruit_date_inner dt{
        width: 100%;
        padding: 16px 16px 16px 0px;
        letter-spacing: 0.1em;
        /* border-bottom: none; */
        /* text-align: center; */
    }

    .recruit_date_inner dt:first-child{
        border-top: 1px solid #ddd;
    }

    .recruit_date_inner dd{
        width: 100%;
        padding: 32px 0 48px;
    }

    /*-------------------------------------
    会社情報
    -------------------------------------*/
    .company_copy{
        width: 100%;
    }

    .company_logo_bg{
        width: 60%;
    }

    .company_about_h3{
        margin: 0 auto;
        margin-bottom: 32px;
    }

    .company_about_h3::before {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--f_color);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    }

    .company_about_h3::after {
    width: 20px;
    right: -40px;
    }

    .company_company_inner dt{
        width: 100%;
        padding: 16px 0;
    }

    .company_company_inner dd{
        width: 100%;
        padding: 32px 0 48px;
    }

    /*-------------------------------------
    利用規約
    -------------------------------------*/
    .privacy_wrap{
        padding: 0px;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_inner:before {
        font-size: 60px;
    }
    .news_thumbnail {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    /*-------------------------------------
    TOPページインスタ
    -------------------------------------*/
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/

    .common_cta_bg_t{
        top: 140px;
    }

    .contact_info_tel_wrap{
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .common_cta_txt_wrap::before{
        top: auto;
        bottom: -28px;
        right: -7%;
        transform: translateX(-50%);
    }
    .common_cta_txt_wrap::after{
        top: auto;
        bottom: -82px;
        right:4%;
        transform: translateX(-50%);
    }

    #wpcf7-f858-o1 div#wpcf7cpcnf{
        padding: 0px;
    }
    .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;
        margin-bottom: 20px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 16px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
        padding: 16px 0;
    }

    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
        padding: 32px 0px 48px;
    }

    #wpcf7cpcnf table th:first-child{
        border-top: 1px solid #ddd;
    }

    .contact_txt{
        text-align: start;
    }

    .contact_mail_h3{
        margin-bottom: 32px;
    }

    .grecaptcha-badge {
    bottom: 60px !important;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 130px);
        margin: 0;
    }
    .blog_photo {
        margin: 0 10px 0 0;
    }
    .blog_photo img {
        height: 100px;
        width: 120px !important;
    }
    .post-categories li a {
        font-size: 11px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
        font-size: 16px;
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }
    .footer {
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        padding: 35px 24px 90px;
        margin: 0;
    }
    .breadcrumbsinner {
        padding: 16px 24px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer_nav {
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }
    .address_container {
    }

    .footer_list_wrap{
        flex-direction: column;
        width: 100%;
    }

    .footer_logo_bg{
        width: 56%;
    }

    .footer_nav a{
        margin: 12px 0px 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);
        border-radius: 12px 12px 0px 0px
    }
    .sp_bar li {
        width: calc(100% / 2);
    }
    .sp_bar a {
        color: #fff;
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }

    .sp_bar ul li:last-child a{
        border-right: none;
    }

    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }
}
@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}