﻿@charset "UTF-8";
/*
Theme Name: tomita-enngeisha
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "Shippori Mincho", san-serif;
    /* --font_en: "Montserrat", san-serif; */
    --f_stn: 1.111vw;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: 2.8125vw;
    --h3_font: 1.875vw;
    --h4_font: 1.639vw;
    --h5_font: 1.333vw;
    --m_color: #769852;
    --a_color: #fde400;
    --f_color: #184f2a;
    --b_color: #ddd;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_w: 78.8194444444%;
    --main_w2: min(1400px, calc(100% - (var(--m_ps8) * 2)));
    --main_mp: 11.1111vw;
    --m_ps3: 1.111vw;
    --m_ps5: 3.333vw;
    --m_ps8: 6.666vw;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
    --base: 0.0625rem;
    --bg2: #f1eee7;
    --bg: #f7f4ef;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block::before {
    transform-origin: left;
    transform: translateX(var(--beforeX, 0%));
    transition: none;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block::after {
    transform-origin: left;
    transform: scaleX(var(--afterScaleX, 0)) translateX(var(--afterX, 0%));
    transition: none;
    background-color: var(--m_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.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);
}
.m_a {
    max-width: var(--main_w);
    /* padding-left: 20px; */
    /* padding-right: 20px; */
}
.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: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 0.835vw;
    font-size: calc(var(--h4_font) / 2);
    color: gray;
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: var(--f_color);
    padding: 0 3.3333333333vw 1.11vw 0;
    display: block;
    position: relative;
    letter-spacing: 0.15em;
    transition: var(--tr);
    width: min(60%, 250%);
    border-bottom: 1px solid #000;
}
.common_btn a:before {
    position: absolute;
    right: 1.11vw;
    top: 33%;
    display: block;
    content: "";
    width: 0.777vw;
    height: 0.777vw;
    border-right: 1px solid var(--f_color);
    border-top: 1px solid var(--f_color);
    transform: rotate(45deg) translate(-25%, -25%);
}
.common_btn a:hover {
    opacity: 0.7;
}

.common_btn02 {
}
.common_btn02 a {
    font-size: var(--f_stn);
    display: flex;
    align-items: center;
    gap: 1.11vw;
    border: 1px solid;
    padding: 1.111vw 3.555vw 1.111vw 2.333vw;
    color: var(--f_color);
    position: relative;
    text-decoration: none;
    width: if(media(width <= 768px): 80%; else: 65%;);
    margin-inline: auto;
    /* border-top: none; */
    /* border-left: none; */
    /* border-right: none; */
}
@-moz-document url-prefix() {
    .common_btn02 a {
        width: 100%;
        max-width: 75%;
        /*! min-width: 300px; */
    }
}

.common_btn02 a:before {
    position: absolute;
    right: 2.222vw;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-right: 1px solid var(--f_color);
    border-top: 1px solid var(--f_color);
    transform: rotate(45deg);
}
.common_btn02 a:hover {
    opacity: 0.6;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    background: url(img/footer_bg.webp) no-repeat 50% 77% / cover;
    position: relative;
}
.common_cta_inner {
    width: var(--main_w);
    margin-inline: auto;
    justify-content: space-between;
    align-items: center;
}
.common_cta_wrap:before {
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
}
.common_cta_inner * {
    color: #fff;
}
.common_cta_inner .top_h2 .data_text {
    font-size: 4.6vw;
}
.common_cta_left {
}
.common_cta_left h2 {
}
.common_cta_right {
    position: relative;
}
.common_cta_phone {
    position: relative;
}

.common_cta_inner a {
    font-size: var(--h3_font);
    color: #ffffff;
    text-decoration: none;
}
.common_cta_inner img {
    width: 3vw;
    display: block;
    display: block;
}
.common_cta_right a {
    font-size: var(--h5_font);
    display: flex;
    align-items: center;
    gap: 1.11vw;
    position: relative;
    border: 1px solid;
    padding: 1.111vw 5.555vw 1.111vw 3.333vw;
}
.common_cta_right a:hover {
    opacity: 0.7;
}
.common_cta_right a:before {
    position: absolute;
    right: 2.222vw;
    display: block;
    content: "";
    width: 1vw;
    height: 1vw;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
    transform: rotate(45deg);
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    letter-spacing: 0.25em;
    margin: 0;
    font-size: var(--f_stn);
    color: var(--f_color);
    text-align: center;
    font-weight: normal;
}
body:not(.home):not(.single) h1:before,
body.single .h1:before {
    content: attr(data-text);
    display: block;
    font-weight: bold;
    font-size: var(--h2_font);
    text-transform: capitalize;
    margin-bottom: 1.3333vw;
    font-weight: normal;
}
body:not(.home):not(.single) h1:after,
body.single .h1:after {
    /* content: ""; */
    display: block;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fff;
    width: 100px;
    height: 2px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.singleh1 {
    color: var(--f_color);
    padding: 0;
    font-size: var(--h2_font);
    margin-bottom: calc(var(--main_mp) / 4);
}
h2 {
    margin-bottom: calc(var(--main_mp) / 3);
    position: relative;
    font-weight: normal;
}
.top_h2 {
    width: fit-content;
    white-space: nowrap;
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font-size: initial;
    font-size: var(--f_stn);
}
.top_h2 .data_text {
    letter-spacing: 0.5vw;
    margin-bottom: 1vw;
    font-size: var(--h3_font);
    font-weight: 400;
}
.top_h2 h2:after {
    /* content: ""; */
    background: var(--f_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}
.other_h2 {
    font-size: var(--h4_font);
}
.other_h2 > span {
    position: relative;
    display: block;
}
.other_h2 > span:before {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero) "";
    display: block;
    color: var(--m_color);
    font-size: calc(var(--h5_font) * 5);
    opacity: 0.2;
    display: block;
    line-height: 1;
    margin-bottom: 0.666vw;
}
.other_h2 > span:after {
    content: "";
    width: var(--main_mp);
    background: var(--f_color);
    height: 1px;
    display: block;
    margin-inline: auto;
    margin-top: var(--f_stn);
}
h3 {
    margin-bottom: var(--m_ps5);
    font-size: var(--h4_font);
    position: relative;
    padding-left: calc(3vw);
    /* border-left: 2px solid var(--f_color); */
    font-weight: normal;
}
h3:before {
    content: "";
    width: 2.222vw;
    height: 1px;
    background: var(--f_color);
    left: 0;
    top: 0;
    bottom: 0;
    display: block;
    position: absolute;
    margin: auto;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
@media only screen and (min-width: 551px) {
    body {
        /* min-width: 1000px; */
    }
}
.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    background: var(--bg);
}
.main_wrap {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
    position: relative;
    counter-reset: number 0;
}

/*-------------------------------------
header
-------------------------------------*/
.header {
    position: relative;
}

/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 13%;
    margin: 0;
    transition: var(--tr);
    background: var(--bg2);
    background: var(--bg);
    /* background: #fff; */
    padding-top: 2vw;
    padding-left: var(--m_ps5);
    padding-right: 2vw;
    padding-bottom: 2vw;
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 9%;
    padding-bottom: 1vw;
    padding-top: 1vw;
    padding-right: 1vw;
}
.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: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    /* padding: 10px 50px; */
    /* background: #fff; */
}
.h_nav_inner {
    justify-content: space-between;
    align-items: normal;
}
.h_nav_wrap nav {
    height: 100%;
    padding-top: 2vw;
    padding-right: var(--m_ps5);
    padding-bottom: 2vw;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed nav {
    background: #fff;
    padding-top: 1vw;
    padding-bottom: 1vw;
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav li {
    margin-left: 3.333vw;
}
.pc_h_nav a {
    font-size: 0.999vw;
    /* padding: 10px 10px; */
    text-decoration: none;
    color: var(--f_color);
    letter-spacing: 0;
}
.pc_h_nav a:hover {
    opacity: 0.7;
}

/*************************************/
.h_img_wrap {
    /* position: relative; */
    margin-top: var(--m_ps8);
    max-height: calc(100vh - var(--m_ps8) - var(--m_ps5));
    margin-left: var(--m_ps8);
}
body.home .h_img_wrap {
    margin-left: auto;
    width: calc(100vw - var(--main_mp));
}
body:not(.home) .h_img_wrap {
    margin-right: var(--m_ps8);
}
body:not(.home) .h_img_wrap > div:not(.h1) {
    background: url(img/footer_bg.webp) no-repeat 50% 76% / cover;
    text-align: center;
    aspect-ratio: 16/4;
    margin-bottom: calc(var(--main_mp) / 2);
}

.h_img_wrap > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 1920/1080;
    object-position: 50% 81%;
    max-height: inherit;
}

.header_txt {
    position: absolute;
    left: calc(var(--m_ps8) / 2);
    bottom: 19%;
    /* width: 30%; */
    /* filter: drop-shadow(2px 4px 6px rgb(6 46 24)); */
    /* color: rgb(6 46 24); */
    display: flex;
    flex-flow: column;
    gap: 1vw;
}
.header_txt span {
    font-size: clamp(20px, 2.5vw, 35px);
    display: block;
    background: var(--bg);
    background: #fff;
    padding: 5px 10px;
    width: fit-content;
    letter-spacing: 0.2vw;
    position: relative;
}
.bgextend {
    animation-name: bgextendAnimeBase;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    position: relative;
    overflow: hidden;
    opacity: 0;
    /* margin-bottom: 20px; */
    width: fit-content;
}
.header_txt > .bgextend:nth-of-type(2) {
    animation-delay: 0.25s;
}
.header_txt > .bgextend:nth-of-type(3) {
    animation-delay: 0.5s;
}
@keyframes bgextendAnimeBase {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/*中の要素*/
.bgappear {
    animation-name: bgextendAnimeSecond;
    animation-duration: 1s;
    animation-delay: 0.6s;
    animation-fill-mode: forwards;
    opacity: 0;
}
.header_txt > p:nth-of-type(2) > .bgappear {
    animation-delay: 0.85s;
}
.header_txt > p:nth-of-type(3) > .bgappear {
    animation-delay: 1s;
}
@keyframes bgextendAnimeSecond {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*左から右*/
.bgLRextend::before {
    animation-name: bgLRextendAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
}
.header_txt > .bgLRextend:nth-of-type(2):before {
    animation-delay: 0.25s;
}
.header_txt > .bgLRextend:nth-of-type(3):before {
    animation-delay: 0.5s;
}
@keyframes bgLRextendAnime {
    0% {
        transform-origin: left;
        transform: scaleX(0);
    }
    50% {
        transform-origin: left;
        transform: scaleX(1);
    }
    50.001% {
        transform-origin: right;
    }
    100% {
        transform-origin: right;
        transform: scaleX(0);
    }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
    opacity: 0;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_inner {
    justify-content: space-between;
    gap: var(--main_mp);
}
.top_con01_img {
    width: 50%;
    order: 2;
}
.top_con01_txt {
    flex: 1;
}
.top_con01_txt ul {
    flex-wrap: wrap;
    gap: max(10px, 0.5vw);
    margin-bottom: var(--m_ps5);
}
.top_con01_txt li {
    font-size: 0.988vw;
    background: var(--m_color);
    color: #fff;
    padding: 0.5vw 0.8vw;
    text-box: trim-both cap alphabetic;
}
.desc_ttl {
    font-size: var(--h4_font);
    margin-bottom: var(--m_ps5);
    font-weight: 600;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_bg {
    background: url(img/top_con02_bg.svg) no-repeat 50% 83% / cover;
    width: 100%;
    height: auto;
    aspect-ratio: 16/8;
    width: var(--main_w);
    margin-inline: auto;
    position: relative;
    /* transform: scale(-1, 1); */
}
.top_con02_bg:before {
    /* content: ""; */
    background: url(img/top_con02_icon.svg) no-repeat 50% / contain;
    aspect-ratio: 1;
    height: auto;
    width: 38%;
    position: absolute;
    left: 50%;
    top: 43%;
    transform: translate(-50%, -50%);
    /* mix-blend-mode: lighten; */
    /* filter: drop-shadow(2px 4px 6px black); */
}
.top_con02_wrap {
    /* margin-top: -7%; */
    position: relative;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
    background: #f7f4ef;
    max-width: var(--main_w);
    padding: var(--m_ps5) calc(var(--main_mp) / 2) 0;
    padding-bottom: 0;
    display: flex;
    gap: var(--main_mp);
    align-items: baseline;
}
.top_con02_inner .txt {
    flex: 1;
}

/*-------------------------------------
お知らせ
-------------------------------------*/
.new_wrap {
    border-top: none;
    position: relative;
    /* max-width: 1340px; */
    display: flex;
    gap: var(--main_mp);
    justify-content: space-between;
}
.new_wrap .data_text {
    /* writing-mode: vertical-rl; */
    /* text-orientation: sideways; */
}
.new_inner {
    position: relative;
    width: 60%;
}
time {
    display: block;
    /* font-size: 0.8rem; */
    /* font-weight: bold; */
}
.new_list {
    border-top: 1px solid #dfdfdf;
    padding-top: 30px;
}
.new_list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #dfdfdf;
}
.new_list li:last-child {
    margin-bottom: 0;
}
.new_item_date {
    gap: 50px;
    flex-wrap: wrap;
    row-gap: 10px;
    flex-flow: column;
}
.new_item_date > div.flex {
    align-items: center;
    gap: 10px;
}
.new_item_cat {
    color: #ffffff;
    background: var(--m_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 0.9vw;
}
.new_item_ttl {
    padding-right: 55px;
    font-size: var(--h5_font);
}
.news_txt {
    margin-top: 20px;
    display: none;
}
.news_txt p {
    margin-bottom: 30px;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}
/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 3%;
    height: 1px;
    background-color: var(--f_color);
    transition: var(--tr);
}
.new_item_date::before {
    top: 18px;
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: 18px;
    right: 15px;
    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 {
}
.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;
    /* height: 100%; */
    aspect-ratio: 1/1;
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: var(--main_w);
    margin-inline: auto;
    margin-bottom: calc(var(--main_mp) / 2);
}
.breadcrumbs {
    width: 100%;
    font-size: calc(var(--f_stn) / 1.3);
    /* line-height: 1.5; */
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    column-gap: max(10px, 1vw);
    flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
    /* font-size: 13px; */
    color: var(--f_color);
    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;
}

/*-------------------------------------
よくある質問ページ
-------------------------------------*/
.faq_inner ul {
    /* display: flex; */ /* flex-flow: column; */ /* gap: calc(var(--main_mp) / 2); */
    border-bottom: 1px solid var(--b_color);
}
.faq_inner li {
    display: flex;
    flex-flow: column;
    gap: calc(var(--main_mp) / 8);
    border-top: 1px solid var(--b_color);
    padding: calc(var(--main_mp) / 4) 0;
}
.faq_inner li .question {
    font-size: var(--h5_font);
    position: relative;
    padding-left: 3vw;
}
.faq_inner li .question:before {
    content: "Q.";
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.8888vw;
}
.faq_inner li .answer {
    position: relative;
    padding-left: 3vw;
}
.faq_inner li .answer:before {
    /* content: ""; */
    /* content: "A."; */
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 1.8888vw;
}

/*-------------------------------------
サービス内容ページ
-------------------------------------*/
.service_con .desc {
    margin-inline: auto;
    width: 45%;
    margin-bottom: var(--m_ps5);
}
.service_con_list {
    gap: var(--m_ps5);
}
.service_con_item {
}
.service_con_item .img {
    margin-bottom: var(--m_ps3);
}
.service_con_item .ttl {
    padding-left: 0;
    margin-bottom: var(--m_ps3);
    font-size: var(--h5_font);
}
.service_con_item p {
}

.service_con_cld {
    /* margin-left: calc(50% - 50vw); */
    /* margin-right: calc(50% - 50vw); */
    /* padding-left: 10.5902777778vw; */
    /* gap: var(--main_mp); */
}
.service_con_cld_inner {
}
.service_con_cld .img {
    width: 100%;
    aspect-ratio: 16/5;
}
.service_con_cld .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.service_con_cld .txt {
    margin-bottom: var(--m_ps5);
}

.service_con02 {
    background: var(--bg2);
}

.service_con01 .service_con_list {
    margin-bottom: calc(var(--main_mp) / 1.5);
}
.service_con03_inner ul {
    gap: var(--m_ps8);
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(max(135px, 20%), 1fr));
    grid-gap: var(--m_ps5);
    padding-right: 5vw;
    padding-left: 5vw;
}
.service_con03_inner li {
    /* flex: 1; */
}
.service_con03_inner li .img {
    margin-bottom: var(--m_ps3);
    position: relative;
    aspect-ratio: 1;
    width: 80%;
    margin-inline: auto;
}
.service_con03_inner li .img:before {
    content: "";
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    background: var(--m_color);
    opacity: 0.2;
    position: absolute;
    left: 0;
    top: 0;
}
.service_con03_inner li .img img {
    width: 45%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.service_con03_inner li .ttl {
    margin-bottom: var(--m_ps3);
    font-size: var(--h5_font);
    text-align: center;
}

/*-------------------------------------
料金ページ
-------------------------------------*/
.plan_inner table {
    width: 100%;
    margin-bottom: var(--m_ps3);
    table-layout: fixed;
}
.plan_inner table tbody {
    display: table;
    width: 100%;
}
.plan_inner table th {
    background: rgb(118 152 82 / 40%);
    padding: 1.666vw 1.111vw;
    border: 5px solid var(--bg);
    font-size: var(--h5_font);
    /* width: 35%; */
}
.plan_inner table .th {
    background: rgb(118 152 82 / 20%);
    font-size: var(--f_stn);
    width: 35%;
    padding: 1.111vw;
}
.plan_inner table td {
    padding: 1.111vw;
    border-bottom: 1px solid var(--m_color);
    vertical-align: middle;
    text-align: center;
    /* border-left: 5px solid #f7f4ef; */
}

.plan_con01,
.plan_con02_inner,
.plan_con03 {
    width: if(media(width <= 768px): 100%; else: 50%;);
}

.plan_con02 {
    background: var(--bg2);
}
.plan_con02_inner table th {
    border: 5px solid var(--bg2);
}

/*-------------------------------------
施工事例一覧ページ
-------------------------------------*/
.works_cat_list_wrap {
    margin-bottom: calc(var(--main_mp) / 2);
    padding: var(--m_ps5);
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}
.works_cat_list_wrap h2 {
    margin-bottom: calc(var(--main_mp) / 10);
    font-size: var(--h5_font);
}
.works_cat_list_wrap ul {
    gap: calc(var(--main_mp) / 10);
    row-gap: calc(var(--main_mp) / 5);
    flex-wrap: wrap;
}
.works_cat_list_wrap li {
}
.works_cat_list_wrap li a {
    /* text-decoration: none; */
    color: var(--f_color);
}

.works_inner ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    grid-gap: var(--m_ps5);
}
.works_inner li {
}
.works_photo {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    margin-bottom: calc(var(--main_mp) / 8);
}
.works_photo a {
    display: block;
    width: 100%;
    height: 100%;
}
.works_photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.works_cat {
    display: flex;
    gap: calc(var(--main_mp) / 10);
    margin-bottom: calc(var(--main_mp) / 20);
    flex-wrap: wrap;
}
.works_cat a {
    text-decoration: none;
    /* background: var(--m_color); */
    color: var(--f_color);
    display: block;
    /* padding: 0.111vw 0.9999vw; */
    font-size: calc(var(--h4_font) / 1.5);
}
.works_inner h2 {
    margin: 0;
    gap: calc(var(--main_mp) / 10);
    margin-bottom: calc(var(--main_mp) / 20);
}
.works_inner h2 a {
    text-decoration: none;
    color: var(--f_color);
    font-size: var(--h5_font);
    line-height: 2vw;
    display: block;
}

/*-------------------------------------
施工事例末端ページ
-------------------------------------*/
.single_works_top {
    justify-content: space-between;
    margin-bottom: calc(var(--main_mp) / 20);
    flex-wrap: wrap;
    row-gap: calc(var(--m_ps3) / 2);
}
.single_works_top .works_cat {
    margin: 0;
}
.single_works_top .works_cat a {
    font-size: var(--f_stn);
}

.single_works_img_arrow {
    display: flex;
    align-items: center;
}
.single_works_img_arrow .triangle {
    height: 2.222vw;
    aspect-ratio: cos(30deg);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    background: var(--m_color);
}
.single_works_img {
    gap: var(--m_ps5);
    margin-bottom: calc(var(--main_mp) / 2);
}
.single_works_img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.single_works_img_bf {
    position: relative;
}
.single_works_img_bf:before {
    content: "before";
    text-transform: capitalize;
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--h5_font);
    padding: 0.5555vw 1.333vw;
    background: var(--m_color);
    color: #fff;
}
.single_works_img_af {
    position: relative;
}
.single_works_img_af:before {
    content: "after";
    text-transform: capitalize;
    position: absolute;
    left: 0;
    top: 0;
    font-size: var(--h5_font);
    padding: 0.5555vw 1.333vw;
    background: var(--m_color);
    color: #fff;
}

.single_works_inner .single_works_main > dl {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.222vw;
    margin-bottom: var(--main_mp);
}
.single_works_inner .single_works_main > dl > dt {
    width: 22%;
    border-top: var(--b_color) 1px solid;
    background: none;
    margin: 0;
    padding: 1.111vw;
}
.single_works_inner .single_works_main > dl > dd {
    border: none;
    width: calc(78% - 2.222vw);
    border-top: var(--b_color) 1px solid;
    margin: 0;
    padding: 1.111vw;
    line-height: inherit;
}
.single_works_inner .single_works_main > dl > .last {
    border-bottom: var(--b_color) 1px solid;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
}
.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #ddd;
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #ddd;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap,
.single_wrap {
    gap: var(--m_ps8);
}
.blog_inner,
.single_inner,
.search_inner {
    flex: 1;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner ul:not(.post-categories) {
    display: flex;
    gap: var(--m_ps5);
    flex-flow: column;
}
.blog_inner li {
}
.blog_con {
    display: flex;
    gap: min(var(--m_ps3), 5vw);
    align-items: flex-start;
}
.blog_photo {
    width: 40%;
    aspect-ratio: 3/2;
    height: auto;
}
.blog_photo a {
    width: 100%;
    height: 100%;
    display: block;
}
.blog_photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.blog_text {
    flex: 1;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
    font-size: 16px;
}
.blog_title a {
    color: var(--f_color);
    text-decoration: none;
}
.blog_text .tags {
    margin-bottom: 10px;
}
.post-categories li {
    line-height: 1;
}
.blog_clock time {
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
    line-height: 1;
}
.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: "#";
    /* 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 {
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

/*記事内装飾*/
.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;
    height: auto;
    max-width: 100%;
    height: auto;
    display: block;
    width: revert-layer;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    margin: 0 0 25px;
    line-height: 1.8;
}
.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 50px;
    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 {
    justify-content: space-between;
}
.single_pagenavi.has-pagination {
    margin-top: var(--main_mp);
}
.single_pagenavi .next {
}
.single_pagenavi .list a,
.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 .list a:hover,
.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_wrap {
    width: 250px;
    display: flex;
    flex-flow: column;
    gap: var(--m_ps5);
}
.side_wrap .widget {
}
.widget_title {
    margin-bottom: var(--m_ps3);
}
.widget_title div {
    color: var(--m_color);
    letter-spacing: 0.2em;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    font-family: var(--font_en);
    font-weight: bold;
    font-size: clamp(20px, 3vw, 25px);
}
.side_wrap li {
    position: relative;
    transition: var(--tr);
}
.side_wrap li:hover {
    opacity: 0.7;
}
.side_wrap li a {
    font-size: 0.8125rem;
    text-decoration: none;
    color: var(--f_color);
}
.side_wrap li a > div:nth-child(1) {
    width: 70px;
    height: auto;
    aspect-ratio: 3/2;
}
.side_wrap li a > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side_wrap li a > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.side_wrap .widget ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.widget_my_widget_recent_posts li a {
    gap: 10px;
    align-items: flex-start;
}
.widget_my_widget_recent_posts .news_clock {
    gap: 3px;
}
.widget_my_widget_recent_posts .news_clock * {
    line-height: 1;
}

/*検索窓*/
.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 15px;
}
.widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: -4px;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    /* margin-top: calc(var(--main_mp) / 1.5); */
    margin-top: var(--main_mp);
}
.wp-pagenavi_inner {
    gap: var(--m_ps3);
}
.wp-pagenavi .page-numbers {
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    font-family: var(--font_en);
    font-weight: bold;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_wrap {
    max-width: min(1000px, calc(100% - (var(--m_ps8) * 2)));
}
.contact_inner {
}
.contact_info {
    text-align: center;
    /* background: #ffffff; */
    padding: calc(var(--main_mp) / 4) 0;
    margin: 0 auto 5vw;
}
.contact_info a {
    text-decoration: none;
    color: var(--f_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-size: var(--h3_font);
}
.contact_info a i {
    color: var(--m_color);

    font-size: 0.8em;

    padding-right: min(10px, 2vw);
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    background: #fff;
    padding: calc(var(--main_mp) / 2);
}
.wpcf7_left {
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
}
.wpcf7_left legend {
    display: inline-block;
    width: fit-content;
}
form.wpcf7-form .required:before {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}
form.wpcf7-form .required2:before {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
    /* border-bottom: none; */
}
.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;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: -1px;
    width: 1.43rem;
    height: 1.43rem;
    margin-right: 0.72rem;
    padding: 0;
    border: 2px solid #e7e7e7;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="checkbox"]::after,
input[type="radio"]::after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--f_color);
    transition: var(--tr);
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
}
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    opacity: 1;
}
span.wpcf7-list-item input[type="checkbox"]::after {
    top: 6px;
    left: 6px;
}

.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;
    background: #fff;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap input[type="checkbox"] {
    aspect-ratio: 1;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    /* border-radius: 3px; */
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    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-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: 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;
}

/* コンタクトフォーム確認画面 */
.main_wrap #wpcf7cpcnf {
    z-index: 2;
    width: min(700px, 100%);
    right: 0;
    bottom: 0;
}
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    /* background: #fbfbf8; */
    /* border: 1px solid #ccc; */
    /* color: #202020; */
    text-align: left;
    width: 100%;
    display: block;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: var(--f_color);
}
#wpcf7cpcnf table td {
    background: #fff;
    border: 1px solid var(--b_color);
    width: 75%;
    padding: 5px 15px;
    display: block;
    width: 100%;
}
.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;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: #fff;
    border: none;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !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 {
    position: relative;
    z-index: 0;
}
.footer_inner {
    justify-content: space-between;
    padding-bottom: 0;
    margin-inline: auto;
    gap: var(--main_mp);
    max-width: var(--main_w);
}
.footer_left {
    display: flex;
    flex: 1;
    justify-content: center;
    gap: calc(var(--main_mp) / 2);
}
.footer_nav {
    display: flex;
    flex-flow: column;
    gap: 1vw;
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    color: var(--f_color);
    font-size: 0.999vw;
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    /* content: "\f105"; */
    display: inline-block;
    margin: 0 3px 0 0;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    /* text-align: center; */
    letter-spacing: 0.15em;
}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    width: min(300px, 65%);
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_address_sns {
    margin-top: 20px;
}
.footer_address_sns a {
    font-size: 25px;
    display: inline-block;
}
.footer_address_sns i {
    color: #ddd;
}

/*アドレス*/
.address_container {
    /* text-align: center; */
    font-size: 0.999vw;
    margin-top: var(--m_ps3);
    /* color: #fff; */
}
.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.copyright {
    text-align: center;
    border: none;
    font-size: 0.6875rem;
    padding: calc(var(--main_mp) / 4) 0;
    width: var(--main_w);
    margin-inline: auto;
}
.copyright p {
    color: var(--f_color);
    font-size: 0.999vw;
}
.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: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 1024px) {
    .wrap {
        /* background: none; */
    }
}
@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 19.7333333333vw;
        --m_ps3: 3.3333333333vw;
        --m_ps5: 5.3333333333vw;
        --m_ps8: 8.3333333333vw;
        --f_stn: 3.467vw;
        --h1_font: clamp(22px, 3vw, 32px);
        --h2_font: 7.245vw;
        --h3_font: 7.436vw;
        --h4_font: 5.356vw;
        --h5_font: 4.111vw;
    }
    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner {
        flex-flow: column;
        gap: var(--m_ps5);
    }
    .common_cta_left {
        width: 100%;
    }
    .common_cta_left .top_h2 {
        margin-bottom: var(--m_ps5);
    }
    .common_cta_inner .top_h2 .data_text {
        font-size: 11.6666vw;
    }
    .common_cta_right {
        width: 100%;
    }
    .common_cta_inner a {
        font-size: 5.6vw;
    }
    .common_cta_right a {
        font-size: 4.444vw;
        width: 80%;
        padding: 1.555vw 4.777vw;
    }
    .common_cta_right a:before {
        width: 2vw;
        height: 2vw;
        right: 5vw;
    }
    .common_cta_inner img {
        width: 5vw;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/

    .sp_none {
        display: none !important;
    }
    .main_wrap {
        /* padding-top: 80px; */
        /* padding-bottom: 80px; */
    }
    .top_h2 .data_text {
    }
    .top_h2 h2 {
        /* font-size: 3.4666666667vw; */
        margin: 0;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        /* background: none; */
        /* padding: 30px 30px; */
    }
    .site_ttl {
        width: 25%;
    }
    .h_nav_wrap.is-fixed {
        /* padding: 20px 30px; */
    }
    .h_nav_wrap nav {
        padding: 0;
    }
    body:not(.home) .h_img_wrap {
        /* padding-top: 80px; */
        /* padding-bottom: 80px; */
    }
    body:not(.home) .h_img_wrap > div:not(.h1) {
        aspect-ratio: 16/12;
    }
    .h_nav_wrap.is-fixed nav {
        background: none;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 20%;
    }

    body.home .h_img_wrap {
        margin-left: auto;
        width: calc(100vw - 10.5902777778vw);
        max-height: 100%;
        height: 80vh;
        margin-top: calc(var(--m_ps8) * 1.5);
    }
    .h_img_wrap > img {
        object-position: 84% 81%;
    }
    .header_txt span {
        font-size: 5.8vw;
    }
    body:not(.home):not(.single) h1:before,
    body.single .h1:before {
        margin-bottom: 3.2345vw;
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }

    /************/
    .menu-trigger {
        display: inline-block;
        width: 10vw;
        height: auto;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 8px;
        right: 30px;
        z-index: 100;
        aspect-ratio: 1;
        transition: var(--tr);
        background: var(--bg);
    }
    .menu-trigger:before {
        content: "MENU";
        display: block;
        position: absolute;
        left: 50%;
        bottom: 8%;
        transform: translateX(-50%);
        line-height: 1;
        font-size: 2vw;
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 20px;
    }
    .menu-trigger span {
        display: block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 70%;
        height: 1px;
        background-color: var(--f_color);
        transition: var(--tr);
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        margin-inline: auto;
    }
    .menu-trigger.active span {
        background-color: var(--f_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 22%;
        /* width: 30%; */
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: rotate(-45deg);
        bottom: auto;
        top: 39%;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 40%;
        /* width: 50%; */
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 40%;
        top: auto;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: rotate(45deg);
        bottom: 56%;
        top: auto;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: #ffffff;
        position: fixed;
        top: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }
    .sp_h_nav_inner ul {
        height: auto;
        margin: 0 0 10vw;
    }
    .sp_h_nav_inner .sp_h_nav_list li {
        margin: 0 0 15px;
    }
    .sp_h_nav_inner .sp_h_nav_list a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        /* font: 16px var(--font_en); */
        font-size: calc(var(--f_stn) * 1.2);
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--m_color);
        /* border-radius: 30px; */
        padding: 10px 10vw;
        color: #fff;
    }

    .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;
    }
    .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: #f9f9f4;
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--m_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font-size: var(--h4_font);
    }
    .sp_h_nav_tel i {
        color: var(--m_color);
        font-size: 0.8em;
        padding-right: 5px;
    }
    .sp_h_nav_tel > p {
        font-size: calc(var(--h4_font) / 1.5);
    }
    .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;
    }
    .sp_h_nav_sns a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_h_nav_sns a i {
        color: var(--m_color);
    }
    .sp_h_nav_sns img {
        max-width: 28px;
    }

    /******使わない時はコメントアウト推奨 hader_nav.phpの部分も*****/
    /* .stripeWrapper {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        left: 0;
        top: 0;
    }
    .stripe {
        background-color: var(--m_color);
        transform: translateY(-100%);
    }
    .sp_h_nav_inner {
        position: absolute;
        top: 0%;
        left: 50% !important;
        transform: translate(-50%, 0%);
        height: 100svh;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        background: none;
    }
    .sp_h_nav_inner li {
        width: fit-content;
        overflow: hidden;
    } */

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        flex-flow: column;
        gap: 7vw;
    }
    .new_inner {
        width: 100%;
    }
    .new_item_ttl {
    }
    .new_inner time {
        font-size: 3vw;
    }
    .new_item_cat {
        font-size: 2.222vw;
    }
    .new_item_date::before,
    .new_item_date::after {
        width: 5%;
    }

    /*-------------------------------------
    TOPページ 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        flex-flow: column;
        gap: var(--m_ps5);
    }
    .top_con01_img {
        order: 0;
        width: 100%;
    }
    .desc_ttl {
        /* font-size: 5.6666vw; */
        /* margin-bottom: 5.3333333333vw; */
    }
    .top_con01_txt li {
        /* font-size: 2.667vw; */
        font-size: 3.111vw;
        padding: 1vw 1.8vw;
    }

    /*-------------------------------------
    TOPページ 2コンテンツ目
    -------------------------------------*/
    .top_con02_inner {
        flex-flow: column;
        gap: 5.3333333333vw;
    }
    .top_con02_inner .top_h2 h2 {
        margin-bottom: 0;
    }
    .service_con_cld .img {
        aspect-ratio: 16/9;
    }
    .service_con_cld .img img {
        object-position: 20% 50%;
    }

    /*-------------------------------------
サービス内容ページ
-------------------------------------*/
    .service_con .desc {
        width: 100%;
    }
    .common_btn02 a {
        padding-top: 3vw;
        padding-bottom: 3vw;
        padding-left: 5vw;
        padding-right: 7vw;
    }
    .common_btn02 a:before {
        right: 5.222vw;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_wrap {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }

    /*-------------------------------------
    施工事例一覧ページ
    -------------------------------------*/
    .works_cat_list_wrap ul {
        column-gap: calc(var(--main_mp) / 4);
        row-gap: calc(var(--main_mp) / 7);
    }
    .works_inner ul {
        display: flex;
        flex-flow: column;
    }
    .works_inner li section {
        display: flex;
        gap: var(--m_ps3);
    }
    .works_inner h2 a {
        line-height: 8.2vw;
        font-size: var(--f_stn);
    }
    .works_photo {
        margin: 0;
        width: 30%;
    }
    .works_photo img {
    }
    .works_txt {
        flex: 1;
    }
    .works_txt time {
        font-size: calc(var(--h4_font) / 1.5);
    }

    /*-------------------------------------
    施工事例末端ページ
    -------------------------------------*/
    .singleh1 {
        font-size: var(--h4_font);
    }
    .single_works_img {
        gap: calc(var(--m_ps3) / 2);
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_inner > p {
        text-align: left;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
        display: block;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;
        border: none;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        flex-flow: column;
    }
    .address_container {
        font-size: 3.467vw;
    }
    .footer_left {
        justify-content: space-between;
        /* flex-flow: column; */
        gap: 4vw;
    }
    .footer_nav {
        gap: 4vw;
    }
    .footer_nav a {
        font-size: 3.555vw;
    }
    .copyright p {
        font-size: 3.1111vw;
        padding: calc(var(--main_mp) / 4) 0;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_w: 92vw;

        --main_mp: 19.7333333333vw;
        --m_ps3: 3.3333333333vw;
        --m_ps5: 5.3333333333vw;
        --m_ps8: 8.3333333333vw;

        --f_stn: 3.467vw;
        --h1_font: clamp(22px, 3vw, 32px);
        /* --h2_font: 2.8125vw; */
        /*  --h3_font: 7.436vw; */
        /* --h4_font: 5.356vw; */
        --h5_font: 4.679vw;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        /* margin-bottom: 50px; */
    }
    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_wrap {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }

    body {
    }
    .h1,
    body:not(.home):not(.single) h1 {
        /* font-size: 25px; */
        /* padding: 0 30px; */
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        /* font-size: 6vw; */
    }
    body:not(.home) h1:before {
        font-size: 23px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    .top_h2 h2 {
        /* margin-bottom: 30px; */
        font-size: 4.466667vw;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        /* font-size: 20px; */
        /* margin-bottom: 30px; */
    }

    /*スクロールヒント*/
    .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_inner a {
        /* flex-flow: column; */
        /* padding: 0 20px; */
        gap: 3vw;
        /*  width: 100%; */
        /* padding: 2vw 6vw; */
    }
    .common_cta_right a {
        padding: 3vw 6vw;
    }
    .common_cta_inner img {
        width: 6vw;
        /* margin-bottom: 10px; */
        margin-right: 0;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .top_h2 h2 {
        /* font-size: 4.466667vw; */
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .h_nav_wrap {
        /* padding: 30px 20px; */
    }
    .h_nav_wrap.is-fixed {
        /* padding: 20px 20px; */
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 25%;
    }
    .site_ttl {
        width: 30%;
    }
    .site_ttl a {
        color: #fff;
    }
    .menu-trigger {
        /* top: 0; */
        right: 20px;
        width: 15vw;
    }
    .menu-trigger:before {
        font-size: 3vw;
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 1vw;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_txt li {
        font-size: 3.649vw;
        padding: 1.5vw 2.3vw;
    }
    .top_con02_inner {
        padding-left: 0;
        padding-right: 0;
        gap: 7vw;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_item_ttl {
        padding-right: 0;
        font-size: calc(var(--h5_font) / 1.1);
    }
    .new_inner time {
        font-size: 3.346vw;
    }
    .new_item_cat {
        font-size: 3.333vw;
    }

    /*-------------------------------------
    TOPページインスタ
    -------------------------------------*/
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }
    .new_item_date::before {
        top: 15px;
        right: 0;
    }
    .new_item_date::after {
        top: 15px;
        right: 0px;
    }

    /*-------------------------------------
    サービス内容ページ
    -------------------------------------*/
    .service_con03_inner ul {
        padding: 0;
    }

    /*-------------------------------------
    施工事例末端
    -------------------------------------*/
    .single_works_top {
        margin-bottom: calc(var(--main_mp) / 7);
    }
    .single_works_top .works_cat a,
    .single_works_top * {
        font-size: calc(var(--h4_font) / 1.5);
    }
    .single_works_inner .single_works_main > dl {
        flex-flow: column;
    }
    .single_works_inner .single_works_main > dl dt {
        width: 100%;
        padding-bottom: 0;
        font-size: var(--h5_font);
        padding-top: 3vw;
    }
    .single_works_inner .single_works_main > dl dd {
        width: 100%;
        border-top: none;
        padding-bottom: 3vw;
    }
    .single_works_inner .single_works_main > dl > dt.last {
        border-bottom: none;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_wrap {
        max-width: min(1000px, calc(100% - (30px * 2)));
    }
    .contact_inner > p {
        text-align: left;
    }
    .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;
    }

    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*確認画面*/
    .main_wrap #wpcf7cpcnf {
        z-index: 2;
    }
    #wpcf7cpcnf table th {
        width: 100%;
        display: block;
        background: none;
        border-bottom: none;
        padding-bottom: 0;
        border-left: none;
        border-right: none;
    }
    #wpcf7cpcnf table td {
        width: 100%;
        display: block;
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 130px);
        margin: 0;
    }
    .blog_photo {
    }
    .blog_photo img {
    }
    .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 50px 35px; */
        /* margin: 0; */
    }
    .breadcrumbsinner {
    }
    .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追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: calc(100% / 2);
        padding: 5px 0;
    }
    .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 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;
    }
}
