﻿@charset "UTF-8";
/*
Theme Name: cima-ltd
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    /* --font_ja: "NotoSansJP", san-serif; */
    --font_ja: "SourceHanSansJP", san-serif;
    /* --font_ja: "ZenKakuGothicNew", san-serif; */
    /* --font_ja: "NotoSansJP", san-serif; */
    /* --font_ja: "BIZUDPGothic", san-serif; */
    /* --font_ja: "Outfit", san-serif; */
    /* --font_ja: "Montserrat", san-serif; */
    /* --font_ja: "MPLUS1p", san-serif; */
    /* --font_ja: "SukimaGothic", san-serif; */
    /* --font_ja: "kakugo", san-serif; */
    /* --font_en: "UncutSans", san-serif; */
    --font_en: "Comfortaa", san-serif;
    --font_en2: "DeuxDeriche", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    --m_color: #34495E;
    --a_color: #d7ccbc;
    --f_color: #2d2d2d;
    --f2_color: #3d3d3d;
    --b_color: #efeae3;
    /* --b2_color: #eceaea; */
    --b2_color: #eeeeee;
    --w_color: #f9f9f9;
    --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(100%, 1400px);
    /* --main_w: min(100%, 1560px); */
    --main_w2: min(100%, 1400px);
    --main_mp: 150px;
    --main_mp2: 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.8s cubic-bezier(0.25, 1, 0.3, 1) 0.3s,
        -webkit-transform 1.8s cubic-bezier(0.25, 1, 0.3, 1) 0.3s;
    transition:
        opacity 1.8s cubic-bezier(0.25, 1, 0.3, 1) 0.3s,
        transform 1.8s cubic-bezier(0.25, 1, 0.3, 1) 0.3s;
    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;
}

/* マスクアニメーション */

.mask_ani{
    position: relative;
    max-width:100%;
    z-index: 0;
    mask-image: url(img/mask.svg);
    mask-mode: alpha;
    mask-position: center bottom;
    mask-repeat: no-repeat;
    mask-size: auto 200%;
    opacity: 0;
}

.mask_ani.inview{
    animation: 2s mask-animation cubic-bezier(.115,.405,.24,1) 0s forwards;
}

@keyframes mask-animation  {
    0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
}
20% {
    opacity: 1;
}
100% {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
}
}

/* テキストアニメーション */

.txt_ani{
    /* display: inline-block; */
    background: linear-gradient(to right, var(--f_color) 50%, #999 50%);
    background-size: 200% 100%;
    background-position: right bottom;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background-position 1.4s ease;
    will-change: color;
}

.txt_ani.inview{
    background-position: left bottom;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.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_mp2);
    padding-bottom: var(--main_mp2);
}

.main_pa_col{
    padding-bottom: var(--main_mp);
}

.m_a {
    max-width: var(--main_w);
    padding-left: 48px;
    padding-right: 48px;
}
.m_a2{
    max-width: var(--main_w2);
    padding-left: 24px;
    padding-right: 24px;
}

.m_a_c {
    max-width: var(--main_w);
    padding-left: 24px;
    padding-right: 24px;
}

.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;
}

.en{
    font-weight: 500;
}

/*ボタン*/
.common_btn {
    display: flex;
    justify-content: end;
}

.common_btn a {
    text-decoration: none;
    color: var(--w_color);
    padding: 24px 48px;
    display: inline-block;
    background: var(--m_color);
    position: relative;
    font: 16px var(--font_en);
    letter-spacing: 0.15em;
    min-width: clamp(250px,15vw,280px);
    transition: var(--tr);
    border-radius: 8px;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--w_color);
    border-top: 1px solid var(--w_color);
    transform: rotate(45deg) translateY(-50%);
}

.common_btn a:hover {
    opacity: 0.7;
}

/*-------------------------------------
CTA
-------------------------------------*/

.common_cta_wrap{
    position: relative;
    background: var(--b_color);
}

.common_cta_inner {
    position: relative;
    z-index: 0;
    margin-left:48px;
    margin-right: 48px;
    border-radius: 16px;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
}

.common_cta_inner::before{
    content: '';
    border-radius: 16px;
    background: url(img/header.jpg);
    background: image-set(url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x);
    background: -webkit-image-set((url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: brightness(40%) blur(3px);
    z-index: -1;
}

.common_cta_container{
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.common_cta_link_wrap{
    position: relative;
}
.common_cta_link_wrap::before{
    position: absolute;
    content: url(img/cta-arrow.svg);
    top: 100px;
    right: calc(-1*clamp(30px,8vw,150px));
    width: clamp(100px,8vw,150px);
}

.common_cta_item{
    transition: all var(--tr);
    padding: var(--m_ps5) clamp(24px,3vw,32px);
    z-index: 2;
    background: transparent;
}

.common_cta_inner a {
    display: flex;
    align-items: center;
    font: 700 clamp(25px, 3vw, 36px) var(--font_ja);
    color: var(--w_color);
    text-decoration: none;
    gap: clamp(32px,3vw,48px);
}

.common_cta_phone p{
    letter-spacing: 0.08em;
}

.common_cta_mail  a{
    letter-spacing: 0.5vw;
}

.common_cta_line  p{
    letter-spacing: 0.5vw;
}

.common_cta_line img{
    fill: var(--w_color);
    stroke: var(--w_color);
}

.common_cta_item a:hover{
    opacity: 0.7;
}

.common_cta_item i{
    color: var(--w_color);
    background: var(--b2_color);
    background: #c7bba8;
    padding: clamp(24px,3vw,32px);
    border-radius: 50%;
    box-shadow: 0px 0px 20px #535353;
}

.common_cta_item p{
    display: inline-block;
    color: var(--w_color);
    margin: 0 auto;
    text-align: center;
    text-shadow: 0px 0px 20px #000000;
}

.common_cta_txt{
    color: var(--w_color);
    font: 400 16px var(--font_ja);
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-align: center;
    text-shadow: 0px 0px 20px #000000;
}

.cta_illust_wrap{
    position: absolute;
    left: clamp(24px,8vw,70px);
    bottom: clamp(32px,6vw,100px);
}

.cta_illust_wrap img{
    width: clamp(180px,16vw,300px);
    min-width: clamp(180px,16vw,300px);
    height: auto;
    z-index: 8;
}

.common_cta_time_wrap{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
}

.common_cta_time{
    font: 400 clamp(13px,2vw,16px) var(--font_ja);
    color: var(--w_color);
    letter-spacing: 0.1em;
    text-wrap: balance;
    word-break: auto-phrase;
    text-align: center;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    display: grid;
    place-items: center;
    position: relative;
    left: 0;
    bottom: 0;
    padding: clamp(20px,5vw,80px) 50px;
    z-index: 1;
    letter-spacing: 0.25em;
    margin: 0;
    font: 700 var(--h1_font) var(--font_ja);
    color: var(--w_color);
    z-index: 8;
    text-shadow: 0px 0px 20px #000000;
}
/* 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: #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(56px,5vw,60px);
    position: relative;
    line-height: 1.8;
}

.top_h2 h2 {
    position: sticky;
    top: 0;
    z-index: 0;
    letter-spacing: 0.26em;
    font: bold clamp(23px,3vw,28px) var(--font_ja);
    line-height: 1.8;
}
.top_h2 .data_text {
    position: relative;
    font: 400 clamp(12px,3vw,14px) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.top_h2_sm{
    font: 400 clamp(19px,3vw,23px) var(--font_ja);
}

.h2_deco{
    display: inline-block;
    padding-left: 2px;
    padding-right: 2px;
}

.center_h2 h2{
    text-align: center;
    line-height: 1.8;
}
.center_h2 .data_text{
    text-align: center;
    line-height: 1.4;
}
.center_h2 h2:after{
    margin: 0 auto;
    margin-top: 30px;
}

.other_h2 {
}
.other_h2 p {
    z-index: 0;
    letter-spacing: 0.5vw;
    font: bold 28px var(--font_ja);
    color: var(--w_color);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 48px;
    text-shadow: 0px 0px 20px #535353;
}

.other_h2 .data_text {
    font: 400 16px var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--w_color);
    text-align: center;
    text-shadow: 0px 0px 20px #535353;
}

.other_h2 p:after {
    content: "";
    background: var(--w_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 30px;
    text-shadow: 0px 0px 20px #535353;
}
h3 {
    font-weight: bold;
    margin: 0 0 48px;
    font-size: 25px;
    position: relative;
    line-height: 1.6;
}
/* h3:after {
    content: "";
    width: 100px;
    height: 2px;
    background: var(--m_color);
    left: 0;
    top: 20px;
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
} */

.anotation{
    position: relative;
    font: 400 13px var(--font_ja);
    color: var(--g_color);
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.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%;
}

.list{
    margin: 0 auto;
}

.list a{
    display: grid;
    place-items: center;
    color: var(--g_color);
    text-decoration: none;
    margin: 0 auto;
    text-align: center;
    padding: 10px;
    font-size: clamp(16px, 3vw, 24px);
    font-family: var(--font_ja);
    font-weight: 400;
    letter-spacing: 0.04em;
    border-bottom: 2px solid var(--g_color);
}

.list a:hover{
    border: none;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
/* @media only screen and (min-width: 551px) {
    body {
        min-width: 1000px;
    }
} */

body{
    background: var(--b_color);
}

.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}
.main_wrap {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
    position: relative;
    background: var(--b_color);
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: clamp(48px,6vw,70px);
    margin: 0;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 48px;
}
.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;
    padding: 20px 48px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
    border-bottom: 1px solid var(--w_color);
}
.h_nav_wrap.is-fixed {
    padding: 10px 48px;
    background: var(--b_color);
}

.h_nav_wrap.is-fixed .h_nav_wrap{
    border-bottom: 1px solid var(--f_color);
}

.h_nav_inner {
    justify-content: center;
    align-items: center;
    gap: 80px;
}
.h_nav_wrap nav {
    height: 100%;
}
.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: min(16px, 5vw);
}

.pc_h_nav a {
    font: 500 16px var(--font_ja);
    padding: 10px 10px;
    text-decoration: none;
    color: var(--w_color);
    letter-spacing: 0.12em;
    text-shadow: 0px 0px 20px #535353;
}

.h_nav_wrap.is-fixed .pc_h_nav a{
    color: var(--f_color);
    text-shadow: none;
}

.pc_h_nav a:hover {
    opacity: 0.8;
}

/*************************************/

.h_img_wrap {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url(img/header.jpg);
    background: image-set(url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x);
    background: -webkit-image-set((url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    clip-path: polygon(25% 0%, 75% 0%, 98% clamp(12%,17vw,30%), 98% 100%, 2% 100%, 2% clamp(12%,17vw,32%));
    /* clip-path: path("M1456,0H436.7c-9.64,0-19.05,2.99-27.01,8.57L20.84,281.25c-13.04,9.15-20.84,24.31-20.84,40.52v709.15c0,27.11,21.43,49.08,47.85,49.08h1776.29c26.43,0,47.85-21.97,47.85-49.08V307.25c0-16.21-7.8-31.37-20.84-40.52L1483.01,8.57c-7.96-5.58-17.37-8.57-27.01-8.57Z"); */
}

.slick-slide img{
    filter: brightness(60%);
}

.h_img_wrap img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

body:not(.home) .h_img_wrap {
    position: relative;
    background: url(img/header.jpg) 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); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position:center;
    padding-top: 200px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    height:clamp(216px,50vw,500px);
    clip-path: none;
    z-index: 0;
    border-radius: 0 0 clamp(12px,3vw,16px) clamp(12px,3vw,16px);
}

body:not(.home) .h_img_wrap::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(40%);
    z-index: -1;
    pointer-events: none;
}

/* コピー */
.copy_wrap{
    width: 100%;
    position: absolute;
    /* top: 78%; */
    top: 71%;
    left: clamp(40%,60vw,60%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 2;
}

.copy{
    font: 400 clamp(16px,3vw,28px) var(--font_ja);
    color: var(--w_color);
    letter-spacing: 0.8vw;
    line-height: 2;
    text-shadow: 0px 0px 20px #888888;
    text-align: start;
}

.copy_t{
    width: 32%;
    display: inline-block;
    font: 700 clamp(25px,6vw,67px) var(--font_ja);
    letter-spacing: 0.5vw;
    line-height: 1.5;
    text-align: start;
    color: var(--w_color);
    margin-bottom: 12px;
    text-shadow: 0px 0px 20px #888888;
}

.copy_t img{
    width: 100%;
    height: auto;
    margin: 0 auto;
}

/* イラスト */

.mv_illust_wrap{
    position: absolute;
    right: var(--m_ps8);
    bottom: -20px;
}
.mv_illust_wrap img{
    width: clamp(150px,17vw,400px);
    height: auto;
    z-index: 3;
    opacity: 0.9;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/

.top_con01_h2{
    margin-bottom: clamp(64px,8vw,104px);
}

.top_con01_inner {
    justify-content: space-between;
}
.top_con01_img {
    width: 50%;
}

.top_con01_txt_wrap{
    display: flex;
    justify-content: space-between;
    gap: clamp(32px,5vw,104px);
}

.top_con01_txt {
    width: 60%;
}

.top_con01_txt_copy_wrap{
    margin-bottom: clamp(46px,3vw,60px);
}

.top_con01_txt_copy{
    font: 700 clamp(21px,3vw,28px) var(--font_ja);
    line-height: 2.3;
    letter-spacing: 0.12em;
    word-break: auto-phrase;
}

.top_con01_txt_title{
    font: 700 18px var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 2;
    margin-bottom: 16px;
}

.top_con01_txt_p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.12em;
    /* letter-spacing: 0.08em; */
    line-height: 2;
    margin-bottom: clamp(48px,3vw,56px);
}

.top_con01_txt_list_wrap{
    padding: 12px 0;
}
.top_con01_txt_list_wrap li{
    position: relative;
    margin-bottom: 8px;
    margin-left: 20px;
}

.top_con01_txt_list_wrap li::before{
    content: "・";
    position: absolute;
    top: 0;
    left: -20px;
}

.top_con01_txt_ex{
    padding-top: 12px;
}

.top_con01_illust_wrap img{
    width: 350px;
    min-width: 350px;
    height: auto;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: var(--w_color);
    border-radius: 16px;
    margin-left: 48px;
    margin-right: 48px;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
}

/* 悩み */

.top_con02_worry_wrap{
    position: relative;
    margin-bottom: var(--m_ps5);
}

.top_con02_worry_list{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--m_ps5);
}

.top_con02_worry_title{
    font: 500 clamp(19px,3vw,23px) var(--font_en);
    letter-spacing: 0.1em;
    color: var(--w_color);
    z-index: 3;
    background: var(--f2_color);
    margin-bottom: 48px;
    padding: 16px 24px;
    border-radius: 8px;
    text-transform: uppercase;
}

.top_con02_worry_item{
    position: relative;
}

.top_con02_worry_item p{
    /* font: 500 clamp(16px,3vw,19px) var(--font_ja); */
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    /* letter-spacing: 0.1em; */
    letter-spacing: 0.12em;
    line-height: 1.8;
    text-wrap: balance;
    word-break: auto-phrase;
    text-align: center;
}

.top_con02_worry_item img{
    display: inline-block;
    margin-bottom: 32px;
    border-radius: clamp(8px,3vw,12px);
    aspect-ratio: 3/2;
    object-fit: cover;
    filter: brightness(80%);
}

/* 解決 */

.top_con02_solution_title{
    font: 500 clamp(19px,3vw,23px) var(--font_en);
    /* letter-spacing: 0.1em; */
    letter-spacing: 0.12em;
    color: var(--f_color);
    z-index: 3;
    background: var(--b_color);
    margin-bottom: 48px;
    padding: 16px 24px;
    border-radius: 8px;
    text-transform: uppercase;
}

.top_con02_solution_wrap{
    margin-bottom: var(--m_ps8);
}

.top_con02_solution_list{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--m_ps5);
}


.top_con02_solution_item{
    position: relative;
}

.top_con02_solution_item img{
    display: inline-block;
    margin-bottom: 32px;
    border-radius: clamp(12px,3vw,20px);
    aspect-ratio: 3/2;
    object-fit: cover;
}

.top_con02_solution_item p{
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
    text-wrap: balance;
    word-break: auto-phrase;
    text-align: center;
}

/*-------------------------------------
TOP 3コンテンツ目
-------------------------------------*/
.top_con03_h3_wrap{
    position: relative;
    z-index: 0;
}

.top_con03_h3_nm{
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(-50%);
    font: 400 clamp(230px,3vw,300px) var(--font_en2);
    color: var(--w_color);
    letter-spacing: 0.1em;
    opacity: 0.5;
    z-index: -1;
}

.top_con03_txt_wrap{
    display: flex;
    justify-content: space-between;
}

.top_con03_content_container{
    width: 60%;
}

.top_con03_content_wrap{
    margin-bottom: clamp(70px,3vw,80px);
}

.top_con03_content_list{
    border-bottom: 1px solid var(--f_color);
    padding-bottom: 48px;
}

.top_con03_content_first{
    border-top: 1px solid var(--f_color);
    padding-top: 48px;
}

.top_con03_title{
    position: relative;
    letter-spacing: 0.12em;
    line-height: 1.8;
    margin-left: var(--m_ps5);
    margin-bottom: clamp(56px,3vw,60px);
}

.top_con03_title_span{
    position: absolute;
    right: -100px;
    top: -50px;
    display: inline-block;
    font: 400 16px var(--font_ja);
    background: var(--w_color);
    padding: 24px 24px;
    border-radius: 8px;
}

.top_con03_title_sm{
    font: 400 19px var(--font_ja);
}

.top_con03_txt_item{
    list-style: circle;
    margin-left: 20px;
    /* font: 500 clamp(16px,3vw,19px) var(--font_ja); */
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.1em;
    /* letter-spacing: 0.08em; */
}

.top_con03_txt_list li:not(:last-child){
    margin-bottom: 24px;
}

.top_con03_img{
    position: relative;
}

.top_con03_img_img{
    aspect-ratio: 16/7;
    object-fit: cover;
    margin-bottom: var(--m_ps5);
    border-radius: clamp(12px,3vw,12px);
}

.top_con03_h3_point{
    position: absolute;
    top: calc(-1*clamp(48px,5vw,90px));
    right: clamp(16px,3vw,40px);
    width: clamp(150px,10vw,200px);
    z-index: 3;
}


/*-------------------------------------
TOP 4コンテンツ目
-------------------------------------*/

.top_con04_txt_wrap{
    display: flex;
    justify-content: space-between;
}

.top_con04_content_wrap{
    width: 60%;
    margin-bottom: var(--m_ps8);
    padding-left: clamp(40px,4vw,48px);
}

.top_con04_item{
    margin-left: 20px;
    margin-bottom: var(--m_ps5);
    font: 500 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.12em;
}

.top_con04_item_sm{
    font: 400 clamp(13px,3vw,16px) var(--font_ja);
    margin-left: 8px;
}

.top_con04_item p{
    position: relative;
}

.top_con04_nm{
    position: relative;
    position: absolute;
    top: -4px;
    left: calc(-1*clamp(56px,3vw,80px));
    display: grid;
    place-items: center;
    color: var(--w_color);
    background: var(--f2_color);
    border-radius: 50%;
    width: clamp(32px,3vw,40px);
    aspect-ratio: 1/1;
    font: 500 16px / 1 var(--font_en);
    letter-spacing: 0.1rem;
    line-height: 1;
}

.nm_inner{
    color: var(--w_color);
    font: 500 16px / 1 var(--font_en);
    transform: translateY(2px);
}

.top_con04_list li:not(:last-child) .top_con04_nm:after{
    position: absolute;
    left: 50%;
    bottom: -50%;
    transform:translateX(-50%) translateY(50%);
    content: "";
    width: 2px;
    height: 12px;
    background: var(--f_color);
}

/*-------------------------------------
事業内容ページ
-------------------------------------*/

.service_txt_wrap{
    position: relative;
    z-index: 1;
}

.service_txt_wrap .data_text{
    position: relative;
    z-index: 0;
}

.service_txt_nm{
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%,-50%);
    font:400 200px var(--font_en2);
    color: var(--b2_color);
    opacity: 0.7;
    letter-spacing: 0.1em;
    z-index: -1;
}

.service_content_wrap{
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap:clamp(32px,5vw,80px);
}

.service_content_wrap:nth-child(2n+1){
    flex-direction: row-reverse;
}

.service_txt_wrap{
    width: 60%;
    background: var(--w_color);
    padding: var(--m_ps8);
    border-radius: clamp(12px,3vw,16px);
}

.service_img_wrap{
    width: 40%;
}

.service_img_wrap img{
    border-radius: clamp(12px,3vw,16px);
    height: 100%;
    object-fit: cover;
}

.service_list{
    background: var(--b2_color);
    padding:clamp(48px,3vw,60px) clamp(32px,5vw,60px);
    border-radius: clamp(12px,3vw,16px);
}

.service_list_title{
    display: inline-block;
    font: 700 19px var(--font_ja);
    margin-bottom: 24px;
}

.service_item{
    position: relative;
    margin-left: clamp(60px,8vw,72px);
    margin-bottom: var(--m_ps5);
    font: 400 16px var(--font_ja);
    letter-spacing: 0.12em;
    line-height: 1.8;
}

.service_txt_container ul li:last-child{
    margin-bottom: 0px;
}

.service_nm{
    position: absolute;
    top: -8px;
    left: calc(-1*clamp(60px,8vw,80px));
    display: grid;
    place-items: center;
    color: var(--w_color);
    background: var(--f2_color);
    border-radius: 50%;
    width: clamp(40px,3vw,48px);
    aspect-ratio: 1/1;
}

.service_txt_p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    /* letter-spacing: 0.06em; */
    /* letter-spacing: 0.08em; */
    line-height: 1.8;
}

.service_txt_strong{
    background: var(--b2_color);
    padding: var(--m_ps3) var(--m_ps5);
    border-radius: clamp(8px,3vw,12px);
    font: 400 16px var(--font_ja);
    letter-spacing: 0.12em;
    line-height: 2;
    text-wrap: balance;
    text-align: center;
}

.service_txt_strong_b{
    font: 600 20px var(--font_ja);
    line-height: 2;
}

.service_point_img{
    position: absolute;
    top: calc(-1*clamp(14px,3vw,48px));
    right: 14px;
    width: clamp(150px, 11vw, 240px);
    z-index: 5;
}

.service_point_img img{
    position: relative;
    z-index: 5;
}

/*-------------------------------------
工事の流れページ
-------------------------------------*/

.flow_apply_item{
    position: relative;
    margin-left: 72px;
    margin-bottom: var(--m_ps8);
}

.flow_apply_title{
    font: 700 clamp(19px,3vw,25px) var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: var(--m_ps5);
}

.flow_apply_h3{
    margin-bottom: clamp(20px,3vw,24px);
}

.flow_apply_txt{
    font: 500 16px var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-left: 24px;
}

.flow_apply_nm{
    position: relative;
    position: absolute;
    top: 4px;
    left: calc(-1*clamp(68px,8vw,80px));
    display: grid;
    place-items: center;
    color: var(--w_color);
    background: var(--f2_color);
    border-radius: 50%;
    width: clamp(40px,3vw,48px);
    aspect-ratio: 1/1;
    font: 500 19px var(--font_en);
    letter-spacing: 0.1rem;
    line-height: 1.8;
}

.flow_apply_list li:not(:last-child) .flow_apply_nm:after{
    position: absolute;
    left: 50%;
    bottom: -100%;
    transform:translateX(-50%) translateY(100%);
    content: "";
    width: 2px;
    height: var(--m_ps5);
    background: var(--f_color);
}

.flow_apply_strong_txt{
    display: inline-block;
    font: 400 19px var(--font_ja);
    background: var(--w_color);
    padding: var(--m_ps3) var(--m_ps5);
    line-height: 2;
    border-radius: clamp(4px,3vw,8px);
    letter-spacing: 0.1em;
    line-height: 1.8;
}


/* 施工の流れ */

.flow_construction_item{
    display: flex;
    align-items: center;
    gap: clamp(48px,8vw,104px);
    margin-bottom: var(--m_ps5);
}

.flow_construction_item img{
    width: 30%;
    aspect-ratio: 1/1;
    border-radius: clamp(12px,3vw,16px);
    object-fit: cover;
}

.flow_construction_title{
    font: 700 clamp(19px,3vw,23px) var(--font_ja);
    letter-spacing: 0.12em;
    line-height: 1.8;
    margin-bottom: var(--m_ps5);
}

.flow_construction_title_sm{
    display: inline-block;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    margin-left: 8px;
}

.flow_construction_txt{
    font: 500 16px var(--font_ja);
    letter-spacing: 0.1em;
    /* line-height: 1.8; */
    line-height: 2;
}

/* 10年に一度の機能復旧工事で住宅のメンテナンスをしましょう！ */

.flow_pr_wrap{
    position: relative;
    background: var(--w_color);
    padding: var(--m_ps8);
    border-radius: clamp(12px,3vw,16px);
}

.flow_pr_title{
    position: relative;
    font: 700 clamp(22px,3vw,25px) var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: clamp(40px,3vw,48px);
    margin-left: clamp(32px,3vw,40px);
    width: fit-content;
}

.flow_pr_list_title{
    position: relative;
    font: 700 19px var(--font_ja);
    margin-bottom: 32px;
}

.flow_pr_item{
    position: relative;
    margin-left: clamp(32px,3vw,40px);
    margin-right: clamp(32px,3vw,40px);
}

.flow_pr_span{
    position: relative;
    display: inline-block;
    font: 600 19px var(--font_ja);
    margin-bottom: 12px;
    margin-left: 24px;
}

.flow_pr_span::before{
    position: absolute;
    top: 8px;
    left: -24px;
    content: "";
    background: var(--f_color);
    width: 2px;
    height: 16px;
    rotate: -12deg;
}
.flow_pr_span::after{
    position: absolute;
    top: 8px;
    right: -16px;
    content: "";
    background: var(--f_color);
    width: 2px;
    height: 16px;
    rotate: 12deg;
}

.flow_pr_title i{
    position: absolute;
    top: 10px;
    left: -32px;
}

.flow_pr_txt{
    font: 400 clamp(16px,2vw,17px) var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 2;
    margin-bottom:clamp(56px,5vw,60px);
}

.flow_pr_strong{
    font: 400 clamp(16px,2vw,17px) var(--font_ja);
    background: var(--b2_color);
    padding:48px var(--m_ps5);
    border-radius: clamp(12px,3vw,16px);
    line-height: 2;
    letter-spacing: 0.1em;
    margin-bottom: clamp(56px,5vw,56px);
}

.flow_illust_wrap{
    position: absolute;
    top: -120px;
    right: 80px;
}

.flow_illust_wrap{
    width: clamp(224px,20vw,350px);
    height: auto;
}

.strong_txt{
    font:700 clamp(20px,3vw,22px) var(--font_ja);
    background:linear-gradient(transparent 60%, #d7ccbc 60%);
    margin-left: 4px;
    margin-right: 4px;
    letter-spacing: 0.11em;
    line-height: 1.8;
}


/*-------------------------------------
事例ページ
-------------------------------------*/
.case_content_wrap{
    display: flex;
    justify-content: space-between;
    gap: clamp(0px,3vw,104px);
}

.case_img_wrap{
    width: 50%;
}

.case_img_container{
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: var(--m_ps5);
}

.case_content_wrap h3{
    display: inline-block;
    margin: 0 0 var(--m_ps5);
    font:900 clamp(20px,3vw,25px) var(--font_ja);
    position: relative;
    line-height: 1.6;
    letter-spacing: 0.1em;
}
.case_content_wrap h4{
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}
.case_p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    /* letter-spacing: 0.08em; */
    line-height: 1.8;
    margin-bottom: 48px;
}

.voice_p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    /* letter-spacing: 0.08em; */
    line-height: 1.8;
}

.case_txt_nm{
    position: absolute;
    top: -32px;
    right: 0;
    font: 400 180px var(--font_en2);
    rotate: -16deg;
    color: var(--b2_color);
    opacity: 0.7;
}

.case_img_wrap img{
    border-radius: clamp(8px,3vw,12px);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.case_before_img_wrap{
    position: relative;
    width: 50%;
}

.case_arrow{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% ,-50%);
    margin: 0 auto;
}

.case_arrow img{
    width: clamp(80px,8vw,120px);
    min-width: clamp(80px,8vw,120px);
    aspect-ratio: auto;
    color: var(--m_color);
}

.case_img_txt{
    position: absolute;
    bottom: calc(-1*clamp(16px,3vw,32px));
    right: clamp(4px,1vw,8px);
    font: 400 clamp(54px,8vw,96px) var(--font_en2);
    color: var(--w_color);
    z-index: 3;
    rotate: -12deg;
}

.case_after_img_wrap{
    position: relative;
    width: 50%;
}

.case_txt_wrap{
    position: relative;
    width: 50%;
    background: var(--w_color);
    padding: var(--m_ps8);
    border-radius: clamp(12px,3vw,16px);
}

.case_txt_wrap li{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
    margin-bottom: 8px;
}

.case_txt_wrap ul:not(:last-child) li{
    margin-bottom: 8px;
}

.case_voice_wrap{
    background: var(--b2_color);
    padding: 48px var(--m_ps5);
    border-radius: clamp(8px,3vw,12px);
}


/*-------------------------------------
会社概要ページ
-------------------------------------*/

/* 会社概要 */
.company_wrap {
}

.company_bottom{
    display: flex;
    justify-content: space-between;
}

.company_inner dl {
    width: 60%;
    -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;
    font: 700 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.12em;
}
.company_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.1em;
}

.company_map_wrap{
    width: 30%;
}

.company_googlemap iframe {
    width: 100%;
    border: none;
    height: clamp(300px,20vw,450px);
    border-radius: clamp(12px,3vw,16px);
}

/* 求人 */
.recruit_wrap{
    display: flex;
    justify-content: space-between;
}

/*-------------------------------------
お知らせ
-------------------------------------*/

.new_container{
    display: grid;
    place-items: center;
    width: 100%;
}

.new_wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 104px;
    border-top: none;
    position: relative;
    padding: clamp(24px,6vw,80px);
    padding-bottom: 0px;
    border-radius: clamp(12px,3vw,16px);
}

.new_inner {
    width: 60%;
    position: relative;
}
time {
    font: 17px/1 var(--font_en);
    display: block;
    letter-spacing: 0.1vw;
    margin-right: 10px;
}
.new_list {
    /* border-top: 1px solid #edecec; */
    /* border-top: 1px solid var(--f_color); */
    /* padding-top: 30px; */
}
.new_list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    /* border-bottom: 1px solid #edecec; */
    border-bottom: 1px solid var(--f_color);
}
.new_list li:last-child {
    margin-bottom: 0;
}
.new_item_date {
    position: relative;
    display: block;
    align-items: center;
}
.new_item_date > div.flex {
    align-items: center;
    margin-bottom: 12px;
}
.new_item_cat {
    display: none;
    color: var(--f_color);
    border: 1px solid var(--f_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 30px;
    border-radius: 3px;
    letter-spacing: 0.1em;
}

.new_item_ttl {
    color: var(--h_color);
    font-weight: bold;
    /* padding-right: 55px; */
}
.news_txt {
    margin-top: 20px;
    display: none;
}
.news_txt p {
    margin-bottom: 30px;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    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;
    line-height: 1.6;
}

.new_item_cat a:hover{
    opacity: 0.7;
}

/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--f_color);
    transition: var(--tr);
}
.new_item_date::before {
    top: 8px;
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: 8px;
    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 {
    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;
    /* height: 100%; */
    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 0px;
    background: var(--b_color);
}
.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;
}


/*-------------------------------------
ブログ
-------------------------------------*/
.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;
    object-fit: cover;
    width: 100%;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
    object-fit: cover;
}
.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.04em;
}
.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;
    /* width: clamp(180px, 17vw, 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);
    padding-left: 10px;
}
.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_cta_wrap{
    width: 30%;
}

.contact_form_wrap{
    width: 60%;
}

.contact_contaciner {
}
.contact_inner {
    display: flex;
    justify-content: space-between;
}

.contact_txt{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.contact_info_wrap{
    display: flex;
    flex-direction: column;
}

.contact_info {
    position: relative;
    text-align: center;
    margin-bottom: 12px;
    border-radius: clamp(12px,3vw,16px);
    z-index: 0;
    overflow: hidden;
}

.contact_info:before{
    content: '';
    border-radius: clamp(12px,3vw,16px);
    background: url(img/header.jpg);
    background: image-set(url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x);
    background: -webkit-image-set((url(img/header.jpg) 1x center top, url(img/retina/header2x.jpg) 2x));
    background-position: top;
    background-repeat: no-repeat;
    background-size: auto;
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    filter: brightness(40%) blur(3px);
    z-index: -1;
}

.contact_info a {
    text-decoration: none;
    color: var(--w_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
    padding: 40px 20px;
}

.contact_info_title{
    font-family: var(--font_en);
    color: var(--w_color);
    text-shadow: 0px 0px 20px #000000;
}

.contact_info a img {
    margin-right: 10px;
    display: block;
    width: max(30px, 3vw);
}

.contact_info i{
    color: var(--w_color);
    background: var(--a_color);
    padding: var(--m_ps3);
    border-radius: 50%;
    box-shadow: 0px 0px 20px #535353;
}

.contact_info_tel_wrap {
    gap: var(--m_ps3);
    align-items: center;
    flex-direction: column;
    color: var(--w_color);
    font:900 clamp(23px, 2.2vw, 33px) / 1 var(--font_en);
    letter-spacing: 0.1em;
    margin-bottom: var(--m_ps3);
}

.contact_info_time{
    font: 400 clamp(16px, 3vw, 18px) / 1 var(--font_ja);
    color: var(--w_color);
    letter-spacing: 0.1em;
    text-shadow: 0px 0px 20px #000000;
}

.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}

.wpcf7_left {
    display: block;
    width: 100%;
    padding: min(25px,3vw) 0px;
    list-style: none;
    border-left: none;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.wpcf7_right {
    display: block;
    width: 100%;
    padding-bottom: min(25px, 3vw);
    border-left: none;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.1em;
    line-height: 1.8;
}

form.wpcf7-form .required:after {
    content: "必須";
    width: auto;
    display: inline-block;
    background: var(--m_color);
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: var(--w_color);
    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;
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #fff;
    outline: none;
    border-radius: 4px
}
.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;
}

.wpcf7c-elm-step2 p{
    letter-spacing: 0.1em;
}

.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: clamp(250px, 15vw, 280px);
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #fff;
    font: 700 16px var(--font_ja);
    z-index: 0;
    border: none;
    padding: 18px 48px;
    letter-spacing: 0.4em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
    border-radius: 8px;
}
.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;
    background: #fff;
    border-radius: 8px;
}
.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: 10px 15px;
}

#wpcf7-f1028-o1 div#wpcf7cpcnf{
    background-color: #fff;
    padding: var(--m_ps5);
    padding: clamp(28px,3vw,32px);
    border-radius: 20px;
    z-index: 2;
}

#wpcf7cpcnf table th p {
    color: #202020;
    font: 900 16px var(--font_ja);
    letter-spacing: 0.04em;
}

#wpcf7cpcnf table td {
    width: 75%;
    padding: 5px 15px;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
}
.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;
    font: 900 16px var(--font_ja);
    letter-spacing: 0.04em;
    transition: all var(--tr);
    font-size: 16px;
    border-radius: 8px;
}
.wpcf7cp-cfm-submit-btn {
    background: #555;
    background:var(--m_color);
    color: #fff;
    border: none;
    font: 900 16px var(--font_ja);
    letter-spacing: 0.04em;
    transition: all var(--tr);
    font-size: 16px;
    border-radius: 8px;
}

.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{
    background: var(--b_color);
}

.footer {
    background:var(--f2_color);
    position: relative;
    z-index: 0;
    margin-left:48px;
    margin-right: 48px;
    border-radius: 16px 16px 0px 0px;
}

.footer_inner{
    align-items: center;
}

.footer_nav {
    margin: 0 5% 0 0;
    padding: 0 5% 0 0;
    border-right: 1px solid #555;
}
.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.12em;
}
.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: 80%;
    margin: 0 auto;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*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.12em;
    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: 4px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    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;
}


/*-------------------------------------
News(記事一覧)追加
-------------------------------------*/

.works_wrap{
    background: var(--w_color);
}

/* .works_wrap::before{
    position: absolute;
    top: 0px;
    left: 0px;
    content: '';
    height: 10px;
    width: 100%;
    background: var(--f_color);
} */

.works_container{
    flex-direction: row-reverse;
    justify-content: start;
}

.works_inner{
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
}

.works_content_wrap{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--m_ps3);
    margin-bottom: var(--m_ps5);
}

.works_content{
    display: grid;
    grid-template-columns:1fr 1fr;
    /* flex-direction: column; */
    gap: 20px;
}

.works_item{
    display: flex;
    width: calc(100%/2 - clamp(15px,2vw,30px));
}

.works_photo img{
    width: 400px;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.blog_info_wrap{
    align-items: center;
}



/*-------------------------------------
ブログ追加
-------------------------------------*/
.my_result_count {
    text-align: end;
}

.blog_text {
    flex: 1;
}

.blog_title {
    margin: 0 0 10px;
    text-align: left;
}

.blog_title a {
    font:400 clamp(14px,1vw,18px) var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.blog_title a:hover{
    opacity: 0.7;
    transition: var(--tr);
}

.blog_clock_wrap{
    margin-left: 20px;
}

.blog_clock time {
    color:#595959;
    font:400 clamp(0.8125rem,1vw,17px) var(--font_en);
    letter-spacing: 0.04em;
}

.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}

.widget_search input[type="text"] {
    width: 100%;
    margin-bottom: 10px;
}

.widget_title{
    border-bottom: 1px solid var(--f_color);
    padding-bottom: 10px;
    font: 400 16px  var(--font_en);
}

/*-------------------------------------
404
-------------------------------------*/

.nofind_inner a{
    color: var(--m_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 (max-width: 1280px) {

    .top_con02_worry_list{
        grid-template-columns: 1fr 1fr;
    }

    .top_con02_solution_list{
        grid-template-columns: 1fr 1fr;
    }

    .common_cta_link_wrap::before{
        display: none;
    }
}
@media only screen and (max-width: 1024px) {
    .wrap {
        background: none;
    }

    .top_con02_arrow_pc{
        display: none;
    }

    .top_con02_arrow{
        display: grid;
        place-items: center;
    }

    body:not(.home) .h_img_wrap {
        padding-top: clamp(180px, 10vw, 200px);
        padding-bottom: 80px;
    }

    /* 事業内容 */
    .service_content_wrap:nth-child(2n+1){
        flex-direction: column-reverse;
    }
    .service_content_wrap{
        flex-direction: column-reverse;
    }

    .service_img_wrap{
        width: 100%;
    }

    .service_img_wrap img{
        aspect-ratio: 3/2;
    }

    .service_txt_wrap{
        width: 100%;
    }

    .service_content_wrap{
        gap: 24px;
    }

    /* 工事の流れ */

    .flow_construction_item{
        align-items: start;
    }

    .flow_pr_wrap{
        margin-top: 250px;
    }

    .flow_illust_wrap{
        top: -156px;
        right: 50%;
        transform: translateX(50%);
    }

    .flow_pr_h2{
        text-align: center;
    }

    .flow_pr_title{
        margin-left: 0;
        text-align: center;
        width: fit-content;
        margin: 0 auto;
        /* margin-bottom: 48px; */
        margin-bottom: var(--m_ps5);
    }

    /* 事例 */

    .case_content_wrap{
        flex-direction: column;
        gap: 0;
    }

    .case_img_wrap{
        width: 100%;
    }

    .case_txt_wrap{
        width: 100%;
    }

    .case_sound_img_wrap{
        margin-bottom: var(--m_ps8);
    }

    /* お問い合わせ */

    .contact_cta_wrap{
        width: 90%;
        margin: 0 auto;
    }

    .contact_inner{
        flex-direction: column;
    }

    .contact_form_wrap{
        width: 80%;
        margin: 0 auto;
    }

    .contact_info_wrap{
        flex-direction: row;
        justify-content: space-between;
        margin-bottom: var(--m_ps3);
    }

    .contact_info{
        width: calc(100%/2 - 2vw);
    }
}
@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    /*-------------------------------------
    CTA
    -------------------------------------*/

    .common_cta_inner{
        margin-left: clamp(24px,3vw,48px);
        margin-right: clamp(24px,3vw,48px);
    }

    .common_cta_link_wrap::before{
        display: block;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }
    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .main_pa_col{
        padding-bottom: 80px;
    }

    .sp_none {
        display: none !important;
    }
    .main_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .m_a {
    padding-left: clamp(24px,3vw,48px);
    padding-right: clamp(24px,3vw,48px);
    }
    .m_a2{
    padding-left: clamp(24px,3vw,48px);
    padding-right: clamp(24px,3vw,48px);
    }
    .m_a_c {
    padding-left: clamp(24px,3vw,48px);
    padding-right: clamp(24px,3vw,48px);
    }

    .center_sp_h2{
        text-align: center;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 20px 10px;
    }
    body:not(.home) .h_img_wrap {
        padding-top: clamp(120px, 10vw, 200px);
        padding-bottom: 80px;
        height: clamp(216px, 37vw, 500px);
    }

    .h_nav_inner{
        justify-content: start;
    }

    .mv_illust_wrap{
        right: -16px;
        bottom: -16px;
    }

    .h_nav_inner{
        justify-content: center;
        gap: 0;
    }

    .copy_wrap{
        top: 78%;
        left: 40%;
    }

    .copy_t{
        width: 100%;
    }

    .copy_t img{
        width: 57%;
    }

    /***** ハンバーガーメニュー *****/
    .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: 24px;
        right: 20px;
        z-index: 100;
        transition: var(--tr);
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 10px;
        width: 30px;
        height: 1px;
        background-color: var(--f_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {
        background-color: var(--m_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 6px;
    }

    body:not(.home) .menu-trigger span{
        background-color: var(--w_color);
    }

    body:not(.home) .h_nav_wrap.is-fixed .menu-trigger span{
        background-color: var(--f_color);
    }

    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background:var(--b_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
        height: 100vh;
    }
    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:500 16px var(--font_ja);
        transition: all var(--tr);
        letter-spacing: 0.1em;
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--m_color);
        border-radius: 8px;
        padding: 10px 30px;
        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: #fff;
        text-align: center;
        width: 90%;
        margin: 0 auto;
        border-radius: clamp(12px,3vw,16px);
    }
    .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{
        flex-direction: column;
        gap: 24px;
        color: var(--m_color);
        font: 900 25px/1 var(--font_en);
    }

    .tel_wrap i{
        color: var(--w_color);
        background: var(--a_color);
        padding: clamp(16px,3vw,24px);
        border-radius: 50%;
        font-size: 24px;
    }

    .sp_h_nav_tel_time{
        color: var(--f_color);
        font: 400 16px var(--font_ja);
        margin-top: 20px;
        line-height: 1.8;
        letter-spacing: 0.1em;
    }

    .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 {
        background: #fbfbf8;
        border-radius: 50%;
        width: 60px;
        aspect-ratio: 1/1;
        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;
        text-decoration: none;
        transition: all var(--tr);
    }
    .sp_h_nav_sns a i {
        color: var(--m_color);
        font-size: 24px;
    }
    .sp_h_nav_sns img {
        max-width: 24px;
    }

    .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;
    }

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/

    .top_con01_txt_wrap{
        flex-direction: column;
        gap: 0;
    }

    .top_con01_txt{
        width: 80%;
        margin: 0 auto;
    }

    .top_con01_illust_wrap img{
        margin: 0 auto;
        margin-bottom: 64px;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/
    .top_con02_wrap{
        margin-left: clamp(24px,3vw,48px);
        margin-right: clamp(24px,3vw,48px);
    }

    .top_con02_worry_title{
        text-align: center;
    }
    .top_con02_solution_title{
        text-align: center;
    }

    /*-------------------------------------
    TOP 3コンテンツ目
    -------------------------------------*/

    .top_con03_txt_wrap{
        flex-direction: column;
    }

    .top_con03_content_container{
        width: 100%;
    }

    .top_con03_img_img{
        aspect-ratio: 16 / 9;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/

    .footer{
        margin-left: clamp(24px,3vw,48px);
        margin-right: clamp(24px,3vw,48px);
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/

    .common_cta_container{
        flex-direction: column;
    }

    .common_cta_txt_wrap{
        margin-bottom: 48px;
    }

    .cta_illust_wrap{
        bottom: -12px;
    }

    /*-------------------------------------
    会社概要
    -------------------------------------*/

    /* 会社概要 */
    .company_bottom{
        flex-direction: column;
    }

    .company_map_wrap{
        width: 100%;
    }

    .company_inner dl{
        width: 100%;
    }

    .company_googlemap iframe{
        margin-bottom: var(--m_ps5);
    }

    /* 求人 */

    .recruit_wrap{
        flex-direction: column;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/

    .contact_cta_wrap{
        width: 100%;
    }

    .contact_form_wrap{
        width: 90%;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        flex-direction: column;
        gap: 0px;
        margin-left: 24px;
        margin-right: 24px;
    }
    .new_inner {
        width: 100%;
    }
    .new_inner:before {
        font-size: 120px;
        margin-right: 20px;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }

    .single_news_container{
        flex-direction: column-reverse;
    }

    /*-------------------------------------
    ブログ追加
    -------------------------------------*/

    .works_content{
        grid-template-columns:1fr;
        width: 100%;
    }

    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        /* width: 100%; */
    }

    .works_item{
        width: 100%;
    }

    .side_container {
        margin: 0 30px 0 0;
    }

    .blog_text {
        padding: clamp(20px,4vw,50px);
    }

    .blog_photo{
        height: 100%;
    }

    .blog_photo img{
        height: 100%;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --m_ps3: 24px;
        --m_ps5: 32px;
        --m_ps8: 48px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        /* margin-bottom: 48px; */
    }
    .main_pa {
        /* padding-top: 48px; */
        /* padding-bottom: 48px; */
    }
    .main_wrap {
        /* padding-top: 48px; */
        /* padding-bottom: 48px; */
    }

    .m_a {
    padding-left: 24px;
    padding-right: 24px;
    }
    .m_a2{
    padding-left: 24px;
    padding-right: 24px;
    }
    .m_a_c {
    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:before {
        font-size: 45px;
        top: -70px;
    }

    .top_h2{
        margin-top: 0px;
    }

    .top_h2 h2 {
        letter-spacing: 0.2em;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .center_sp_h2{
        text-align: center;
    }

    .center_sp_h2 h2{
        margin-bottom: 48px;
    }

    .flow_pr_span{
        margin-left: 0px;
    }

    /*スクロールヒント*/
    .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{
        margin-left: 24px;
        margin-right: 24px;
        padding-bottom: 100px;
    }

    .common_cta_inner a {
        flex-flow: column;
        gap: 32px;
    }

    .common_cta_item{
        margin-bottom: 16px;
    }

    .common_cta_container{
        flex-direction: column;
    }

    .common_cta_txt_wrap{
        margin-bottom: 48px;
    }

    .cta_illust_wrap{
        bottom: 12px;
        left: 24px;
    }

    .common_cta_link_wrap::before{
        top: 200px;
        right: -30px;
    }

    .common_btn_center{
        justify-content: center;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_ttl {
        width: 48px;
    }
    .site_ttl a {
        color: #fff;
    }

    .h_nav_wrap{
        padding: 16px 12px;
    }

    .h_nav_wrap.is-fixed .site_ttl{
        width: 32px;
    }

    .menu-trigger {
        top: 16px;
        right: 14px;
    }

    .h_nav_wrap.is-fixed{
        padding: 10px 20px;
        background: transparent;
    }

    .h_nav_wrap.is-fixed .menu-trigger{
        top: 5px;
    }

    .copy_wrap{
        top: 72%;
        left: 49%;
    }

    .copy{
        letter-spacing: 0.3em;
    }

    .copy_t img{
        width: 76%;
    }


    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        display: block;
    }
    .top_con01_img {
        width: 100%;
        margin-bottom: 30px;
    }
    .top_con01_txt {
        width: 100%;
    }

    .top_con01_illust_wrap img{
        margin-bottom: 56px;
        width: 100%;
        min-width: auto;
    }

    .top_con01_txt_content p{
    letter-spacing: 0.11em;
    }

    .top_con04_nm{
        top: 0px;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/

    .top_con02_wrap{
        margin-left: 24px;
        margin-right: 24px;
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .top_con02_worry_list{
        display: block;
        margin-bottom: 80px;
    }

    .top_con02_worry_item{
        margin-bottom: 48px;
    }

    .top_con02_solution_list{
        display: block;
    }

    .top_con02_solution_item{
        margin-bottom: 48px;
    }

    /*-------------------------------------
    TOP 3コンテンツ目
    -------------------------------------*/

    .top_con03_txt_wrap{
        flex-direction: column;
    }

    .top_con03_content_container{
        width: 100%;
    }

    .top_con03_title{
        text-align: center;
        margin-left: 0px;
    }

    .top_con03_title_span{
        top: -120px;
        right: -35px;
    }

    .top_con03_img_img{
        aspect-ratio: 16/14;
    }

    .top_con04_content_wrap{
        width: 100%;
    }

    .top_con03_h3_point{
        top: -24px;
        right: -16px;
    }

    /*-------------------------------------
    TOP 4コンテンツ目
    -------------------------------------*/

    .top_con04_txt_wrap{
        flex-direction: column;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/

    .footer{
        margin-left: 24px;
        margin-right: 24px;
    }

    /*-------------------------------------
    事業内容
    -------------------------------------*/


    .service_content_wrap:nth-child(2n+1){
        flex-direction: column-reverse;
        gap: 16px;
    }

    .service_content_wrap{
        flex-direction: column-reverse;
        gap: 16px;
        align-items: normal;
    }

    .service_img_wrap{
        width: 100%;
        aspect-ratio: 3/2;
    }

    .service_txt_wrap{
        width: 100%;
        padding: 80px 24px;
    }

    .service_txt_strong{
        padding: 40px 24px;
    }

    .service_list{
        padding:48px 24px;
    }

    .service_nm{
        top: 4px;
    }

    .service_point_img {
    top: -30px;
    right: -17px;
    width: 120px;
    }

    .service_h2{
        margin-bottom: 32px;
    }

    /*-------------------------------------
    工事の流れ
    -------------------------------------*/

    .flow_apply_txt{
        margin-left: 0px;
    }

    .flow_construction_item{
        flex-direction: column;
        gap: 32px;
    }

    .flow_construction_item img{
        width: 100%;
    }

    .flow_pr_wrap{
        padding: 80px 24px;
    }

    .flow_pr_item{
        margin-left: 20px;
        margin-right: 20px;
    }

    .flow_pr_txt{
        margin-bottom: 40px;
    }

    .flow_pr_h2 h2{
        margin-bottom: 32px;
    }

    .flow_pr_txt_wrap ul li:last-child{
        margin-bottom: 0px;
    }

    .flow_pr_list_title{
        text-align: center;
    }

    .flow_illust_wrap{
        top: -180px;
    }

    .flow_apply_strong_txt{
        padding: 40px 24px;
    }

    .flow_pr_title{
        margin-top: 80px;
        margin-bottom: 24px;
    }

    .flow_pr_title i{
        top: -32px;
        left: 50%;
        transform: translateX(-50%);
    }

    /*-------------------------------------
    事例
    -------------------------------------*/
    .case_content_wrap{
        flex-direction: column;
        gap: 0px;
    }

    .case_img_wrap{
        width: 100%;
    }

    .case_img_container{
        width: 100%;
    }

    .case_before_img_wrap{
        width: 100%;
    }

    .case_after_img_wrap{
        width: 100%;
    }

    .case_txt_wrap{
        width: 100%;
        padding: 48px 24px;
    }

    .case_sound_img_wrap{
        margin-bottom: 48px;
    }

    .case_arrow img{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin: 0 auto;
    }

    /*-------------------------------------
    会社概要
    -------------------------------------*/
    /* 会社概要 */

    .company_bottom{
        flex-direction: column;
    }

    .company_map_wrap{
        width: 100%;
    }

    .company_inner dl{
        width: 100%;
    }

    .company_inner dt{
        width: 30%;
    }
    .company_inner dd{
        width: 70%;
    }

    /* 求人 */

    .recruit_wrap{
        flex-direction: column;
    }

    /*-------------------------------------
    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;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_form_wrap{
        width: 100%;
    }

    .contact_info_wrap{
        flex-direction: column;
    }

    .contact_info{
        width: 100%;
    }

    .wpcf7 {
        /* margin: 30px 0 0; */
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        /* border-bottom: 1px solid #ddd; */
        /* padding: 0 0 15px; */
        margin-bottom: 20px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        /* padding: 10px 0; */
        padding: 16px 0;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;
        border: none;
        margin-bottom: 16px;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
    }

    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
    }

    .contact_txt{
        text-align: start;
    }

    .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: 30px 20px; */
        padding: 30px 20px 0px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/

    .footer{
        margin-left: 20px;
        margin-right: 20px;
    }

    .footer_inner {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer_nav {
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }
    .address_container {
    }

    .footer_address .site_ttl{
        width: 120px;
    }

    /*-------------------------------------
    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:8px 8px 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:first-child a{
        border-radius:8px 0px 0px 0px;
    }
    .sp_bar ul li:last-child a{
        border-right: none;
        border-radius: 0px 8px 0px 0px;
    }

    .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";
    }

    /*-------------------------------------
    ブログ追加
    -------------------------------------*/

    .works_container{
        flex-direction: column;
    }

    .works_inner{
        flex-direction: column;
    }

    .works_wrapper{
        width: 100%;
    }

    .blog_info_wrap{
        flex-direction: column;
        align-items: start;
        gap: 5px;
    }

    .blog_info {
        flex-direction: column;
        align-items: start;
        gap: 10px;
        margin-bottom: 10px;
    }

    .works_content{
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
        align-items: center;
        flex-wrap: nowrap;
    }

    .new_item_date > div.flex{
        align-items: start;
    }

    .blog_text {
    /*width: calc(100% - 130px); */
    }

    .blog_photo {
        height: 100%;
    }

    .blog_photo img{
        object-fit: cover;
    }

    .wp-pagenavi{
        margin-bottom: 50px;
    }

    .single_news_inner{
        margin-left: 0px;
        margin-right: 0px;
    }

    .single_pagenavi .prev a, .single_pagenavi .next a{
        padding: 5px 20px;
    }

    .blog_inner, .single_inner, .search_inner, .side_container{
        width: 100%;
    }

    .side_container{
        padding-left: 10px;
        padding-right: 10px;
    }

    .news_inner_cat{
        margin-bottom: 10px;
    }

    .blog_text {
        /* padding: clamp(30px,9vw,50px) 20px; */
    }

    .blog_clock_wrap{
    margin-left: 0px;
    margin-top: 10px;
    }
}

@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;
    }
}
