﻿@charset "UTF-8";
/*
Theme Name: arva-yasuraginosato
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "TsunagiGothic", san-serif;
    --font_ja: "MOBO", san-serif;
    --font_en: "Quicksand", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    /* --m_color: #f7b35b; */
    /* --m_color: #F28C28; */
    /* --m_color: #F28C28; */
    --m_color: #f9c677;
    /* --m_color: #efa000; */
    /* --m_color: #efe7df; */
    /* --m_color: #c0a684; */
    /* --m_color: #f1e08f; */
    /* --m_color: #dac4a4; */
    /* --m_color: #F5A623; */
    /* --a_color: #fde400; */
    --a_color: #f9ea77;
    /* --f_color: #222; */
    --f_color: #352b21;
    /* --b_color: #fffaf4; */
    /* --b_color: #fff; */
    --b_color: #fffdfb;
    /* --b_color: #faf8f4; */
    /* --b2_color: linear-gradient(45deg, var(--m_color) 0%, #fff9f1 50%, #fdefd8 100%); */
    /* --b2_color: linear-gradient(45deg, var(--m_color) 0%, #faf8f4 50%, #fff9f1 100%); */
    --b2_color: #fff9f1;
    --b2_color: #fff7ED;
    /* --b2_color: #faf8f4; */
    --w_color: #fff;
    --g_color: #525252;
    --lg_color:#ececec;
    /* --l_color:#3fad52; */
    --l_color:#2dbd6e;
    --h_color:#f7b143;
    /* --h_color:#E66A00; */
    --lh_color:#28ad64;
    --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_w2: min(100%, 1400px);
    /* --main_mp: 100px; */
    --main_mp: 140px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
}

html{
    scroll-behavior: smooth;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition:
        opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition:
        transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.block:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition:
        transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #555;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}
/*ボケながらフェードイン*/
.BlurFadeIn {
    visibility: hidden;
}
@keyframes blurAnime {
    from {
        filter: blur(30px);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
    }

    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}
.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.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_top {
    padding-top: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}

.main_pa_col{
    padding-bottom: var(--main_mp);
}

.m_a {
    max-width: var(--main_w);
    padding-left: 20px;
    padding-right: 20px;
}
.m_a2 {
    max-width: var(--main_w2);
    padding-left: 20px;
    padding-right: 20px;
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}



/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: var(--f_color);
    padding: 20px 20px;
    display: inline-block;
    background: linear-gradient(45deg, var(--a_color) 0%, #aefe00 100%);
    position: relative;
    font: 16px var(--font_en);
    letter-spacing: 0.15em;
    min-width: 250px;
    transition: var(--tr);
}
.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(--f_color);
    border-top: 1px solid var(--f_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.7;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
}
.common_cta_inner {
    text-align: center;
}

.common_cta_phone {
    width: min(100%, 50%);
    background: var(--m_color);
}

.common_cta_item{
    transition: all var(--tr);
}

.common_cta_phone a{
    /* padding-left: var(--m_ps3); */
    /* padding-right: var(--m_ps3); */
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}

.common_cta_mail {
    width: min(100%, 50%);
    background: var(--a_color);
}

.common_cta_mail a{
    /* padding-left: var(--m_ps3); */
    /* padding-right: var(--m_ps3); */
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}

.common_cta_inner a {
    font: 900 clamp(22px, 3vw, 55px) var(--font_en);
    color: var(--f_color);
    text-decoration: none;
    letter-spacing: 0.43vw;
}
.common_cta_inner img {
    width: 3vw;
    max-width: 3vw;
    margin-right: 10px;
    display: block;
}

.common_cta_item a:hover{
    opacity: 0.7;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    position: relative;
    left: 0;
    bottom: 0;
    padding: 40px 50px;
    z-index: 1;
    display: inline-block;
    letter-spacing: 0.25em;
    margin: 0;
    font: 900 var(--h1_font) var(--font_ja);
    color: var(--f_color);
    line-height: 1.8;
    z-index: 3;
}
body:not(.home):not(.single) h1:after,
body.single .h1:after {
    content: "";
    display: block;
    letter-spacing: 0;
    text-transform: uppercase;
    background: var(--f_color);
    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;
    line-height: 1.8;
}
h2 {
    margin: 0 0 50px;
    position: relative;
    line-height: 1.6;
}
.top_h2 {
    position: relative;
    z-index: 3;
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font: 900 clamp(25px,2.8vw,48px) var(--font_ja);
    color: var(--f_color);
}
.top_h2 .data_text {
    position: relative;
    font: 900 clamp(13px,3vw,16px) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.5vw;
    margin-bottom: 10px;
    line-height: 1.6;
    margin-left: clamp(4px,1vw,8px);
    color: var(--f_color);
    margin-top: clamp(16px,3vw,24px);
}

.top_h2 .data_text::before{
    position: absolute;
    top: calc(-1*clamp(30px,9vw,36px));
    left: calc(-1*clamp(60px,9vw,100px));
    content: "";
    background: var(--m_color);
    border-radius: 50%;
    width: clamp(12px,2vw,16px);
    aspect-ratio: 1/1;
}

.yoko_h2 .data_text{
    margin-left: 5px;
}

.yoko_h2 .data_text::before{
    display: none;
}

.yoko_h2 h2{
    position: relative;
    width: fit-content;
}

.yoko_h2 h2::before{
    position: absolute;
    top: -10px;
    right: -20px;
    right: calc(-1*clamp(21px,3vw,30px));
    content: "";
    background: var(--m_color);
    border-radius: 50%;
    width: clamp(12px,2vw,16px);
    aspect-ratio: 1/1;
}

.top_h2 h2:after {
    content: "";
    background: var(--f_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}
.other_h2 {
}
.other_h2 h2 {
}
.other_h2 h2:before {
}
h3 {
    margin: 0 0 50px;
    font:900 clamp(19px,2vw,25px) var(--font_ja);
    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;
} */

.anotation{
    position: relative;
    font: 400 13px var(--font_ja);
    color: #979086;
    line-height: 1.6;
    margin-left: 16px;
    margin-top: 10px;
    letter-spacing: 0.08em;
}

.anotation:before{
    position: absolute;
    top: 0px;
    left: -16px;
    content: '※';
    color: #979086;
}

.list_item{
    position: relative;
    margin-left: 20px;
}

.list_item:before{
    position: absolute;
    top: 15px;
    left: -20px;
    content: "";
    width: 7px;
    aspect-ratio: 1 / 1;
    background: var(--f_color);
    border-radius: 50%;
}


/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
    /* background: #f9f9f4; */
    /* background: #faf8f4; */
    background: var(--b2_color);
}
.main_wrap {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
    position: relative;
}

.home .main_wrap{
    padding-bottom: 0px;
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: clamp(96px,12vw,160px);
    margin: 0;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .site_ttl {
    width: clamp(80px,12vw,120px);
    top: 0px;
    left: 0px;
    padding: 20px 30px;
}
.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_inner .site_ttl{
    position: absolute;
    top: 0px;
    left: 0px;
    background: #fff9;
    backdrop-filter: blur(10px);
    border-radius: 0px 0px clamp(8px,1vw,16px) 0px;
    padding: var(--m_ps3);
    padding:clamp(16px,2.5vw,32px);
}

/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 20px 50px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    padding: 10px 50px;
}
.h_nav_inner {
    justify-content: end;
    align-items: center;
}
.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(30px, 5vw);
}
.pc_h_nav a {
    font: 900 16px var(--font_ja);
    padding: 10px 10px;
    text-decoration: none;
    color: var(--f_color);
    letter-spacing: 0.08em;
    writing-mode: vertical-lr;
    transition: all var(--tr);
}

.h_nav_wrap.is-fixed .pc_h_nav a{
    font: 900 16px var(--font_ja);
    color: var(--f_color);
    writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
    text-shadow: none;
}
.h_nav_wrap.is-fixed .pc_h_nav ul{
    margin-top: 10px;
}

.pc_h_nav_li_contact a{
    background: #fff9;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--f_color);
    transition: all var(--tr);
    border-radius: 4px;
}

.pc_h_nav a:hover {
    opacity: 0.8;
}

.pc_h_nav_li_contact a:hover{
    background: var(--m_color);
    color: var(--w_color);
    text-shadow: none;
}

.h_nav_wrap.is-fixed .pc_h_nav_li_contact a:hover{
    color: var(--w_color);
}

/*************************************/
.h_img_wrap {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(-150deg, #bdd6e1 0%, rgba(255,255,255,0) 50%,var(--b2_color) 100%);
}

.h_img_wrap img{
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

body:not(.home) .h_img_wrap {
    background: url(img/between.svg) no-repeat;
    background-position:top center;
    padding-top: 200px;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    height:clamp(216px,36vw,500px);
}


.mv_wrap{
    height: 100vh;
    display: flex;
    align-items: end;
    align-items: center;
    margin-left: clamp(80px,8vw,140px);
    margin-right: clamp(80px,8vw,140px);
}

.container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 0px 0px;
    grid-template-areas:
        "item1 item2 item2"
        "item1 item2 item2"
        "item3 item2 item2"
    }
.item3 { grid-area: item3; }
.item1 { grid-area: item1; }
.item2 { grid-area: item2; }


.mv_img_wrap{
    width: 83%;
    margin: 0 auto;
}

.mv_copy_wrap{
    position: relative;
    width: 50%;
}

/* キャッチコピー */

.copy_wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-bottom: -270px;
    padding-bottom: 40px;
    border-bottom: 1px dotted var(--f_color);
}

.copy{
    position: relative;
    font: 600 clamp(14px,1.5vw,22px) var(--font_ja);
    line-height: 3;
    letter-spacing: 0.3em;
    z-index: 4;
    color: var(--f_color);
}

.mv_title_wrap{
    bottom: clamp(56px,5vw,80px);
    left: clamp(20px,7vw,80px);
}

.mv_title{
    position: relative;
    font: 900 clamp(23px,2.3vw,40px) var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.3em;
    z-index: 3;
    color: var(--f_color);
    margin-bottom: 80px;
    text-align: center;
}

.mv_title_t{
    font: 900 clamp(16px,1.5vw,23px) var(--font_ja);
    color: var(--f_color);
    font-weight: 600;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/

#info{
    position: relative;
    z-index: 2;
}

.features_h2{
    writing-mode: vertical-rl;
}

.features_h2 h2:after{
    display: none;
}

.top_con01_wrap{
    position: relative;
    overflow: visible;
}

/* ぼかし */

.header{
    position: relative;
}

.header::before{
    will-change: filter;
    position: absolute;
    top: 100px;
    left: -100px;
    content: "";
    width: clamp(300px,50vw,300px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, #fab9b0 0%, #fab9b0 50%, var(--m_color) 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 1;
}
.header::after{
    will-change: filter;
    position: absolute;
    top: 250px;
    left: 100px;
    content: "";
    width: clamp(200px,100vw,300px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, var(--a_color) 100%);
    filter: blur(150px);
    opacity: 0.4;
    z-index: 0;
}

.h_img_wrap{
    position: relative;
}

.top_con01_wrap_blur_1{
    will-change: filter;
    position: absolute;
    top: -200px;
    right: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, var(--a_color) 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

#features{
    position: relative;
    overflow: visible;
}

#features::before{
    will-change: filter;
    position: absolute;
    bottom: -300px;
    left: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, #fab9b0 0%, #fab9b0 50%, var(--m_color) 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

.company_wrap{
    position: relative;
    overflow: visible;
}

.company_wrap::after{
    will-change: filter;
    position: absolute;
    bottom: -300px;
    left: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--a_color) 0%, var(--a_color) 50%, var(--m_color) 100%);
    filter: blur(200px);
    opacity: 0.3;
    z-index: 0;
}

#support{
    position: relative;
}

#support::before{
    will-change: filter;
    position: absolute;
    bottom: 30%;
    right: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, #fab9b0 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

#info{
    position: relative;
}

#info::before{
    will-change: filter;
    position: absolute;
    top: -100px;
    left: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, var(--a_color) 100%);
    filter: blur(200px);
    opacity: 0.3;
    z-index: 0;
}

.sp_h_nav_inner{
    position: relative;
    overflow: hidden;
}

.sp_h_nav_inner::before{
    will-change: filter;
    position: absolute;
    top: -200px;
    left: -50px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, var(--a_color) 100%);
    filter: blur(200px);
    opacity: 0.3;
    z-index: 0;
}


.recruit_date_wrap_b{
    position: relative;
    overflow: visible;
}

.recruit_wrap{
    position: relative;
    overflow: visible;
}

.recruit_wrap::before{
    will-change: filter;
    position: absolute;
    top: -100px;
    right: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--m_color) 0%, var(--m_color) 50%, var(--a_color) 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

.recruit_wrap{
    position: relative;
    overflow: visible;
}

.recruit_wrap::after{
    will-change: filter;
    position: absolute;
    bottom: -100px;
    left: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: linear-gradient(45deg, #fab9b0 0%, #fab9b0 50%, var(--m_color) 100%);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

@-moz-document url-prefix() {
    .top_con01_wrap_blur_1{
    will-change: filter;
    position: absolute;
    top: -200px;
    right: -100px;
    content: "";
    width: clamp(300px,500vw,500px);
    height: clamp(300px,500vw,500px);
    border-radius: 50%;
    background: var(--m_color);
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

#features::before{
    will-change: filter;
    position: absolute;
    bottom: -300px;
    left: -100px;
    content: "";
    width: clamp(300px,500vw,500px);
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: #fab9b0;
    filter: blur(200px);
    opacity: 0.4;
    z-index: 0;
}

.company_wrap::after{
    will-change: filter;
    position: absolute;
    bottom: -300px;
    left: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--a_color);
    filter: blur(200px);
    opacity: 0.2;
    z-index: 0;
}

.recruit_wrap::before{
    will-change: filter;
    position: absolute;
    top: -300px;
    right: -100px;
    content: "";
    width: 500px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--m_color);
    filter: blur(200px);
    opacity: 0.3;
    z-index: 0;
}
}

.top_con01_inner {
    justify-content: space-between;
    flex-direction: column-reverse;
    gap: var(--m_ps8);
}
.top_con01_img {
    position: relative;
    /* width: 50%; */
    width: 40%;
    margin: auto 0 auto auto;
    /* margin-top: calc(-1*clamp(0px,6vw,100px)); */
    margin-top: calc(-1*clamp(0px,6vw,80px));
    z-index: 3;
}

.top_con01_txt {
    position: relative;
    display: flex;
    gap: clamp(50px,8vw,100px);
    z-index: 3;
}

.top_con01_txt p{
    font: 600 clamp(16px,3vw,23px) var(--font_ja);
    letter-spacing: 0.2em;
    line-height: 2.7;
}

.info_img_wrap{
    position: absolute;
    bottom: 370px;
    left: 0;
    width: 34%;
    z-index: 2;
}

.info_img_wrap_sp{
    display: none;
}
.info_img_wrap_sp_con2{
    display: none;
}

.info_img_inner{
    position: relative;
}

.info_img_t{
    position: absolute;
    top: 0px;
    top: -210px;
    left: 0px;
    width: 64%;
    transform: translateY(-50%);
    z-index: 3;
    border-radius: 0px 16px 16px 0px;
}

.info_img_b{
    margin-left: -10px;
    object-fit: cover;
    border-radius: 16px;
}

.top_con01_txt_q{
    padding: 0 8px;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: var(--gr);
    transition: background 500ms ease-in-out;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
}

.info_h2{
    writing-mode: vertical-rl;
}

.info_h2 h2:after{
    display: none;
}

.top_con02_txt p{
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.8;
}

.company_bottom{
    width: 60%;
}

.company_h3_wrap h3{
    padding-bottom: 16px;
    margin-bottom: 27px;
    border-bottom: 2px solid var(--m_color);
    letter-spacing: 0.12em;
}

.between_wrap{
    position: relative;
    background: var(--b2_color);
    background: linear-gradient(to bottom , rgba(255,255,255,0) 0%,var(--b2_color) 100%);
    z-index: 3;
}

.between_img_wrap_t{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 104px;
    width: 100%;
    margin-top: 30px;
}

.company_bottom_t{
    position: relative;
    margin-bottom: clamp(48px,8vw,80px);
    padding-top: 104px;
    z-index: 3;
    border-right: 1px solid var(--m_color);
    border-bottom: 1px solid var(--m_color);
    border-radius: clamp(12px,1vw,16px) 0px clamp(12px,1vw,16px) 0px;
    padding: min(80px,8vw);
    background: #fffdf9;
}

.company_bottom_b{
    border-right: 1px solid var(--m_color);
    border-bottom: 1px solid var(--m_color);
    border-radius: 16px 0px 16px 0px;
    padding: min(80px,8vw);
    background: #fffdf9;
}

.between_copy_wrap{
    /* width: 50%; */
    width: fit-content;
}

.between_copy{
    position: relative;
    font: 600 clamp(19px,2vw,28px) var(--font_ja);
    letter-spacing: 0.3em;
    line-height: 2.4;
    z-index: 3;
    color: var(--f_color);
    z-index: 8;
}

.between_img_wrap_b{
    /* width: 60%; */
    /* width: 40%; */
    width: 35%;
}

.fa-house{
    color: #efbb00;
    color: var(--m_color);
}

.fa-truck{
    color: #59bfbc;
    color: #b2d0ce;
}

.fa-comments{
    color: #ed8e8c;
    color: #fab9b0;
}

.fa-handshake-angle{
    color: #efbb00;
    color: var(--m_color);
}

.fa-person-walking{
    color: #59bfbc;
    color: #b2d0ce;
}

.fa-shield-heart{
    color: #ed8e8c;
    color: #fab9b0;
}

.fa-money-bill-wave{
    color: #efbb00;
    color: var(--m_color);
}

.fa-bowl-food{
    color: #59bfbc;
    color: #b2d0ce;
}

.fa-heart{
    color: #ed8e8c;
    color: #fab9b0;
}

/*-------------------------------------
支援内容
-------------------------------------*/
#support{
    position: relative;
    z-index: 3;
    background: linear-gradient(to bottom, var(--b2_color) 0%, #faf7f1 30%,#fffdf8 100%);
}

.support_wrap{
    position: relative;
}

.support_h3_wrap{
    font: 400 28px var(--font_ja);
    padding-bottom: 16px;
    margin-bottom: var(--m_ps3);
    border-bottom: 2px solid var(--m_color);
    letter-spacing: 0.1em;
}

.support_h3_wrap h3{
    margin-bottom: 0px;
}

.support_date_wrap .support_h3_wrap{
    margin-bottom: var(--m_ps5);
}

.support_content_wrap{
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.support_img_wrap{
    position: absolute;
    bottom: -90px;
    right: 0;
    width: 40%;
}

.support_date_wrap{
    width: 77%;
}

.support_date_t_wrap{
    padding-top: 104px;
    padding-top: 120px;
}

.support_date_t_wrap ul{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-wrap: wrap;
    gap: clamp(16px,3vw,30px);
    margin-bottom: 30px;
    border-collapse: collapse;
}

.support_date_t_wrap li{
    display: grid;
    place-items: start;
    padding: clamp(16px, 3vw, 40px) 16px clamp(24px, 3vw, 50px) clamp(16px,3vw,34px);
    gap: var(--m_ps5);
    border-right: 1px dotted var(--m_color);
    border-bottom: 1px dotted var(--m_color);
    background: #fffdf9;
    border-radius: clamp(8px,1vw,16px) 0 clamp(8px,1vw,16px) 0;
}

.support_date_t_wrap i{
    font-size: clamp(27px,3vw,32px);
}

.support_date_wrap{
    letter-spacing: 0.15em;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
}

.support_date_wrap ul{
    margin-bottom: var(--m_ps5);
}

.support_date_b_wrap li{
    position: relative;
    margin-left: 20px;
    letter-spacing: 0.13em;
    margin-bottom: 20px;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
}
.support_date_b_wrap li::before{
    position: absolute;
    top: 10px;
    left: -20px;
    content: "";
    width: 8px;
    aspect-ratio: 1 / 1;
    background: var(--m_color);
    border-radius: 50%;
}

.support_txt_b{
    display: block;
    letter-spacing: 0.1em;
    font: 400 clamp(16px,3vw,19px) var(--font_ja);
    line-height: 1.8;
    text-align: end;
}

/*-------------------------------------
TOP 3コンテンツ目
-------------------------------------*/
#recruit{
    position: relative;
    /* background: #fffdf8; */
    /* background: #faf7f1; */
    background: linear-gradient(to bottom, #fffdf8 0%, #faf7f1 30%,#fffdf8 100%);
    z-index: 2;
}

.recruit_content_wrap{
    display: flex;
    justify-content: space-between;
    gap: clamp(30px,8vw,120px);
}

.recruit_h2{
    margin-bottom: clamp(50px,8vw,100px);
}

.recruit_h3_wrap{
    position: relative;
    display: grid;
    width: 32%;
    border-radius: 0px 0px 20px 0px;
    border-right: 2px solid var(--m_color);
    border-bottom: 2px solid var(--m_color);
    z-index: 3;
}

.recruit_h3_wrap h3{
    text-align: center;
    width: fit-content;
    line-height: 1.8;
    letter-spacing: 0.1em;
}

.recruit_date_wrap{
    position: relative;
    width: 73%;
    z-index: 3;
}

.recruit_inner dl{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: var(--f_color);
}

.recruit_inner dt{
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #e2dad0;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    color: var(--f_color);
    letter-spacing: 0.12em;
}

.recruit_inner dd{
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #e2dad0;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.12em;
}

.recruit_date_nm_wrap li{
    list-style-type: decimal;
    margin-left: 16px;
    letter-spacing: 0.12em;
}

.recruit_date_list_wrap li{
    position: relative;
    margin-left: 16px;
    letter-spacing: 0.12em;
}
.recruit_date_list_wrap li::before{
    position: absolute;
    top: 10px;
    left: -22px;
    content: "";
    width: 8px;
    aspect-ratio: 1/1;
    background: var(--m_color);
    border-radius: 50%;
}

.recruit_txt{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.12em;
}

.recruit_time_t{
    margin-bottom: 20px;
}

.recruit_time_list_wrap{
    margin-bottom: 10px;
}

.between_img_wrap{
    position: relative;
    width: 100%;
    object-fit: cover;
    z-index: 0;
    margin-bottom: -200px;
}

.between_img_wrap img{
    display: inline-block;
    position: relative;
    width: 100%;
    object-fit: cover;
    z-index: 0;
}

.info_house_img_container{
    display: flex;
    gap: 12px;
}

.info_house_img_wrap{
    width: 50%;
}

.info_house_img_wrap img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: var(--m_ps3);
    border-radius: clamp(8px,1vw,12px);
}

/*-------------------------------------
お知らせ
-------------------------------------*/
.new_wrap {
    border-top: none;
    background: #fff;
    position: relative;
    /* max-width: 1340px; */
}

.new_inner {
    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;
    padding-top: 30px;
}
.new_list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #edecec;
}
.new_list li:last-child {
    margin-bottom: 0;
}
.new_item_date {
    display: block;
    align-items: center;
}
.new_item_date > div.flex {
    align-items: center;
}
.new_item_cat {
    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;
}

.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;
}
.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.1em;
    transition: all var(--tr);
    padding: 3px 10px;
    border: 1px solid var(--f_color);
    border-radius: 3px;
}

.new_item_cat a:hover{
    opacity: 0.7;
}

/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--f_color);
    transition: var(--tr);
}
.new_item_date::before {
    top: 18px;
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: 18px;
    right: 15px;
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
    display: block;
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_ig {
}
.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}
.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc(100% / 5 - 5px);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    aspect-ratio: 1/1;
    transition: all var(--tr);
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.insta_img_list .item a:hover{
    opacity: 0.7;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: #e5e5e5;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}

.breadcrumbs_icon{
    width: 14px;
    max-width: 14px;
    margin-right: 3px;
}

.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/

#info{
    position: relative;
    z-index: 2;
}

.company_inner{
    display: flex;
    justify-content: space-between;
}

.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 42px;
}
.company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #efebe6;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    color: var(--f_color);
    letter-spacing: 0.12em;
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #efebe6;
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    color: var(--f_color);
    letter-spacing: 0.12em;
}

.company_googlemap{
    width: 50%;
}

.company_googlemap iframe {
    position: relative;
    width: 100%;
    border: none;
    height: 300px;
    z-index: 3;
    border-radius:clamp(8px,1vw,12px);
}

/*-------------------------------------
ブログ
-------------------------------------*/
.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: 50px;
}
.blog_photo {
    width: 350px;
}
.blog_photo img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 16/9;
}
.blog_text {
    width: calc(100% - 350px - 30px);
    margin-left: auto;
}
.blog_title {
    margin: 0 0 10px;
    text-align: left;
}
.blog_title a {
    font-size: 16px;
    color: var(--f_color);
    text-decoration: none;
}
.post-categories li {
    margin: 0 5px 5px 0;
}
.blog_clock time {
    color: #999;
    font-size: 0.8125rem;
}
.post-categories {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
}
.post-categories li a:hover {
    background: #f9f9f4;
    color: var(--m_color);
}
.post-categories li a:hover:before {
    color: var(--m_color);
}
.post-categories li a:before {
    content: "\f07c";
    font: 100%/1 "font awesome 6 free";
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;
    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
    align-items: center;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: #000000;
    padding: 10px 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-bottom: 1px solid #333;
    padding: 0 0 5px;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    font: 400 16px var(--font_ja);
    margin: 0 0 25px;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #e6f7f5;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #f9f9f4;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f9f9f4;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル　ページネーション*/
.single_pagenavi {
    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 50px 0 0;
    width: 250px;
}
.side_container > div {
    margin: 0 0 30px;
}
.widget_title div {
    color: #555;
    letter-spacing: 0.08em;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: 900 clamp(20px, 1.5vw, 50px) var(--font_en);
}
.side_container li {
    position: relative;
    padding: 10px 0;
    transition: var(--tr);
}
.side_container li:hover {
    opacity: 0.7;
}
.side_container li a {
    font-size: 0.8125rem;
    text-decoration: none;
    color: var(--f_color);
}
.side_container li a > div:nth-child(1) {
    width: 70px;
    height: auto;
}
.side_container li a > div:nth-child(2) {
    width: calc(100% - 80px);
    margin-left: auto;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    outline: 0;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 10px;
}
.widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: 5px;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.wp-pagenavi .page-numbers {
    font: 400 16px var(--font_en);
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    margin-right: 10px;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/

#contact{
    position: relative;
    z-index: 3;
    background: var(--b2_color);
}

#contact:before{
    content: url(img/contact.svg);
    position: absolute;
    top: clamp(48px,6vw,100px);
    left: 0px;
    width: 100%;
}

.contact_wrap{
    /* padding-top: clamp(160px,32vw,600px); */
    padding-top: clamp(160px,32vw,520px);
}

.contact_contaciner {
}
.contact_inner {
    position: relative;
    background: #fffdfb;
    z-index: 3;
    padding: min(80px,8vw);
    border-radius: 16px;
}

.contact_txt{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.11em;
    color: var(--f_color);
}

.contact_info_container{
    display: flex;
    gap: var(--m_ps3);
}

.contact_info {
    text-align: center;
    background: var(--m_color);
    border-radius: 12px;
    width: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
    transition: all var(--tr);
}

.contact_info_line{
    background: var(--l_color);
}

.contact_info a {
    text-decoration: none;
    color: var(--m_color);
    margin: 0 0 5px;
    width: 100%;
    cursor: pointer;
    padding: 40px 20px;
}

.contact_info a img {
    margin-right: 10px;
    display: block;
    width: max(30px, 3vw);
}

.contact_info_tel_wrap {
    gap: 5px;
    color: var(--b_color);
    font:900 clamp(32px, 3vw, 70px) / 1 var(--font_en);
    letter-spacing: 0.04em;
    margin-bottom: var(--m_ps3);
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 3vw, 20px);
}

.contact_info_tel_wrap i{
    font-size: clamp(30px,3vw,50px);
    color: var(--b_color);
}

.contact_info_time{
    font: 400 clamp(16px, 3vw, 18px) / 1 var(--font_ja);
    color: var(--f_color);
    letter-spacing: 0.12em;
}

.contact_info:hover{
    background: var(--h_color);
}

.contact_info_line:hover{
    background: var(--lh_color);
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
    color: var(--f_color);
    letter-spacing: 0.12em;
}

.wpcf7-form_form {
    background: #fffdfb;
    padding: clamp(30px,5vw,80px);
    padding-bottom: 0px;
}

.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.12em;
    line-height: 1.6;
    color: var(--f_color);
}

.wpcf7_right {
    display: block;
    width: 100%;
    padding: min(25px, 3vw) 0px;
    border-left: none;
    font: 400 16px var(--font_ja);
    letter-spacing: 0.04em;
    line-height: 1.6;
    color: var(--f_color);
}

form.wpcf7-form .required:after {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: clamp(8px,1vw,12px);
    vertical-align: middle;
    letter-spacing: 0.08em;
}
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;
    letter-spacing: 0.08em;
}

.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: #f3f3f3;
    outline: none;
    letter-spacing: 0.1em;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    display: inline-block;
    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;
    color: var(--f_color);
    letter-spacing: 0.12em;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--b_color);
    font: 700 16px var(--font_ja);
    z-index: 0;
    border: none;
    padding: 15px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
    letter-spacing: 0.4em;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    background: var(--h_color);
    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;
    color: var(--f_color);
}
.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%;
    /* width: 100%; */
    padding: 10px 15px;
    letter-spacing: 0.1em;
}

#wpcf7-f6-o1 div#wpcf7cpcnf{
    padding: clamp(0px,3vw,50px);
    z-index: 2;
    /* margin-top: var(--m_ps5); */
}

#wpcf7cpcnf table th p {
    color: #202020;
    font: 900 16px var(--font_ja);
    letter-spacing: 0.1em;
}

#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: 700;
    cursor: pointer;
    letter-spacing: 0.15em;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
    border-radius: 6px;
    transition: all var(--tr);
    font-size: 16px;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: var(--b_color);
    border: none;
    border-radius: 6px;
    transition: all var(--tr);
    font-size: 16px;
}

.wpcf7cp-cfm-edit-btn:hover{
    opacity: 0.7;
}

.wpcf7cp-cfm-submit-btn:hover{
    background: var(--h_color);
}

/*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 {
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    padding-left: 50px;
    padding-right: 50px;
    background: linear-gradient(25deg, #bdd6e1 0%, var(--b2_color) 50%, var(--b2_color) 100%);
}

.footer::before{
    content: url(img/footer.svg);
    position: absolute;
    bottom: calc(-1*clamp(0vh,57vw,120vh));
    z-index: -1;
    width: 150%;
    left: -28%;
}

.footer_inner{
    padding-bottom: 50px;
}

.footer_nav_wrap{
    margin: 0 5% 0 0;
    padding: 0 5% 0 0;
    border-right: 1px solid #2421218c;
}

.footer_nav_wrap .site_ttl{
    padding: 0;
    position: static;
    background: none;
    width: clamp(130px,7vw,150px);
    margin-inline: auto;
    margin-bottom: var(--m_ps3);
    padding-left: 20px;
}

.footer_nav a {
    display: flex;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    position: relative;
    margin: 0 30px 0 0;
    font-size: 15px;
    color: var(--f_color);
    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 {
    display: grid;
    place-items: center;
    text-align: center;
    letter-spacing: 0.15em;
}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    width: clamp(140px,8vw,180px);
    margin: 0 auto;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_address_sns {
    /* margin-top: 20px; */
    /* margin: 0 auto; */
}
.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: var(--f_color);
}

.footer_address_sns_icon{
    width: 25px;
}

.footer_address_sns a:hover{
    opacity: 0.7;
}

/*アドレス*/

.address_container_wrap{
    display: flex;
    gap: var(--m_ps5);
}

.address_container {
    text-align: center;
    font-size: 15px;
    margin: 40px 0 0;
    color: var(--f_color);
    border-bottom: 1px solid #2421218c;
    padding-bottom: 40px;
    letter-spacing: 0.12em;
    line-height: 2.2;
}
.address_container_b {
    text-align: center;
    font-size: 15px;
    margin: 40px 0 0;
    color: var(--f_color);
    border-bottom: 1px solid #2421218c;
    padding-bottom: 40px;
    letter-spacing: 0.12em;
    line-height: 2.2;
}

.time_container{
    text-align: center;
    font-size: 15px;
    margin: 40px 0 40px;
    color: var(--f_color);
    letter-spacing: 0.12em;
    line-height: 2.2;
}

.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.address_container_b a {
    color: var(--f_color);
    text-decoration: none;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--f_color);
    font-size: 0.8125rem;
    border-top: 1px solid #2421218c;
    /* padding: 50px 50px 300px; */
    /* padding: 50px 50px clamp(260px,16vw,300px); */
    padding: 50px 50px clamp(170px,16vw,300px);
    margin: 0;
}

.copyright p {
    color: var(--f_color);
    letter-spacing: 0.1em;
}
.copyright a {
    font-size: 0.875rem;
    color: var(--f_color);
}

/* 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 var(--b_color);
    border-left: 1px solid var(--b_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    background: var(--h_color);
}

/*-------------------------------------
404
-------------------------------------*/

.nofind_inner a{
    color: var(--m_color);
    transition: all var(--tr);
}

.nofind_inner a:hover{
    color: var(--h_color);
}

.nofind_inner p{
    font: 400 16px var(--font_ja);
    line-height: 1.8;
    letter-spacing: 0.11em;
    color: var(--f_color);
}

/***** 改行 *****/

/* モバイルのみ改行 */
@media only screen and (min-width: 550px){
    .br_sp{
        display: none;
    }
}

@media only screen and (max-width: 375px){
    .br_sp_2{
        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: 1366px){
    .top_h2 .data_text::before{
    right: 10px;
    }
}

@media only screen and (max-width: 1280px) {
    .h_img_wrap{
        background-position:clamp(30%,30vw,36%);
    }
}
@media only screen and (max-width: 1024px) {

    body:not(.home):not(.single) h1{
        padding: 0px 50px;
    }

    .container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        gap: 0px 0px;
        grid-template-areas:
            "item1"
            "item2"
            "item3"
        }
    .item3 { grid-area: item3; }
    .item1 { grid-area: item1; }
    .item2 { grid-area: item2; }

    .copy_wrap{
        margin-bottom: -250px;
    }

    .mv_img_wrap{
        margin-bottom: -160px;
    }

    .mv_title{
        margin-bottom: 0px;
    }

    .mv_img_wrap{
        width: 61%;
    }

    .copy_wrap{
        border-bottom: none;
    }

    .mv_wrap{
        align-items: center;
        margin-left: 48px;
        margin-right: 48px;
    }

    .mv_img_wrap{
        z-index: 3;
    }

    .support_date_t_wrap ul{
        grid-template-columns: repeat(3, 1fr);
    }
}
@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    /*-------------------------------------
    CTA
    -------------------------------------*/

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }

    .main_pa_col{
        padding-bottom: 80px;
    }

    .main_top{
        padding-top: 80px;
    }

    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sp_none {
        display: none !important;
    }
    .main_wrap {
        padding-top: 80px;
        /* padding-bottom: 80px; */
    }
    .m_a {
    padding-left: clamp(20px,7vw,50px);
    padding-right: clamp(20px,7vw,50px);
    }
    .m_a2{
    padding-left: clamp(20px,7vw,50px);
    padding-right: clamp(20px,7vw,50px);
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 20px 10px;
    }

    body:not(.home) .h_img_wrap {
        padding-top: clamp(90px, 10vw, 200px);
        padding-bottom: 80px;
        height: clamp(200px, 37vw, 500px);
    }

    body:not(.home):not(.single) h1, body.single .h1{
        padding: 40px 50px;
    }

    .mv_img_wrap{
        width: 83%;
    }

    .copy_wrap{
        z-index: 3;
        line-height: 3;
    }

    .h_img_wrap img{
        margin-bottom: 0;
    }

    .mv_title_wrap{
        left: 12px;
    }

    .top_con01_wrap_blur_1{
    filter: blur(400px);
    }

    #features::before{
    filter: blur(400px);
    }

    /* ぼかし */
    #support::before{
    right: -200px;
    }

    /***** ハンバーガーメニュー *****/
    .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: 20px;
        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: 2px;
        background-color: var(--f_color);
        transition: var(--tr);
    }

    .h_nav_wrap.is-fixed .menu-trigger{
        background: #fff9;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 4px;
    }

    .h_nav_wrap.is-fixed .menu-trigger span{
        background-color: var(--m_color);
    }

    .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;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--b2_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:900 16px var(--font_ja);
        letter-spacing: 0.15em;
        transition: all var(--tr);
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--m_color);
        padding: 10px 30px;
        color: var(--b_color);
        border-radius: 6px;
    }

    .sp_h_nav_inner .sp_h_nav_list a:hover{
        opacity: 0.7;
    }

    .sp_h_nav_inner .sp_h_nav_list li:last-child a:hover{
        background: var(--h_color);
        opacity: 1;
    }

    .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:var(--b_color);
        text-align: center;
        width: 90%;
        margin: 0 auto;
        border-radius: 8px;
    }
    .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);
    }

    .sp_h_nav_tel a:hover{
        color: var(--h_color);
    }

    .tel_wrap{
        gap: 5px;
        color: var(--m_color);
        font: 900 25px/1 var(--font_en);
        transition: all var(--tr);
    }

    .tel_wrap i{
        color: #33291f;
    }

    .sp_h_nav_tel_time{
        color: var(--f_color);
        font: 400 16px var(--font_ja);
        margin-top: 20px;
        letter-spacing: 0.12em;
    }

    .tel_wrap:hover{
        color: var(--h_color);
    }

    .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;
    }
    .sp_h_nav_sns a {
        display: inline-block;
        text-align: center;
        font-size: 24px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
        transition: all var(--tr);
    }
    .sp_h_nav_sns a i {
        color: var(--l_color);
        transition: all var(--tr);
    }
    .sp_h_nav_sns img {
        max-width: 24px;
    }

    .sp_h_nav_sns a i:hover{
        color: var(--lh_color);
        opacity: 1;
    }

    .h_nav_inner .site_ttl{
        padding: 16px;
    }

    .h_nav_wrap.is-fixed{
        padding: 10px 20px;
    }

    .h_nav_wrap.is-fixed .site_ttl{
        width: 90px;
        padding: 16px;
        border-radius:0px 0px 8px 0px;
    }

    .menu-trigger {
        top: 20px;
        right: 20px;
    }

    .h_nav_wrap.is-fixed .menu-trigger{
        top: 0px;
        right: 0px;
        border-radius: 0px 0px 0px 4px;
    }

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_img {
        /* width: 80%; */
        /* width: 60%; */
        width: 56%;
        margin-bottom: 80px;
        margin-top: 0px;
    }
    .top_con01_txt {
        flex-direction: column;
        width: 100%;
        gap: 30px;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/

    .company_inner{
        gap: 50px;
    }

    .company_bottom{
        width: 74%;
        margin-bottom: 80px;
    }

    .info_img_t{
        left: -64px;
    }

    .info_img_t{
        top: calc(-1*clamp(20px,6vw,70px));
        left: clamp(24px,3vw,30px);
    }

    .info_img_b{
        position: relative;
        z-index: 3;
    }

    .company_inner{
        gap: 0px;
        padding-bottom: 200px;
    }

    .info_img_wrap{
        width: 70%;
        bottom: calc(-1*clamp(60px,38vw,290px));
    }

    .info_img_wrap_sp_con2{
        display: block;
        position: absolute;
        bottom: calc(-1*clamp(0px,9vw,68px));
        width: 40%;
        z-index: 3;
        right: 20px;
    }

    .info_img_wrap_sp{
        display: block;
        position: absolute;
        top: -36px;
        width: 32%;
    }

    .info_house_img_container{
        flex-direction: column;
        gap: 0px;
    }

    .info_house_img_wrap{
        width: 100%;
    }

    .info_house_img_wrap img{
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
        margin-bottom: var(--m_ps3);
    }

    .company_googlemap{
        width: 100%;
    }

    .company_googlemap iframe{
        height: auto;
        aspect-ratio: 1/1;
        object-fit: cover;
    }

    /*-------------------------------------
    支援内容
    -------------------------------------*/

    .support_h2{
        margin-right: 0px;
    }

    .support_date_t_wrap ul{
        grid-template-columns: repeat(2, 1fr);
    }

    .support_date_wrap{
        width: 74%;
    }

    .support_img_wrap{
        display: none;
        bottom: 48%;
    }

    /* .between_img_wrap_t{
        margin-top: 104px;
    } */

    /*-------------------------------------
    TOP 3コンテンツ目
    -------------------------------------*/

    .recruit_h3_wrap{
        width: 37%;
    }

    .recruit_inner dt{
        width: 31%;
    }
    .recruit_inner dd{
        width: 69%;
    }

    .between_img_wrap_t{
        background-position: 100%;
        flex-direction: column;
        /* gap: var(--m_ps5); */
        gap: var(--m_ps8);
        margin-top: clamp(210px,47vw,360px);
    }

    .between_copy_wrap{
        width: 100%;
        width: 0 auto;
        width: fit-content;
    }

    .between_copy{
        letter-spacing: 0.23em;
    }

    .between_img_wrap_b{
        /* width: 80%; */
        /* width: 50%; */
        width: 48%;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/

    .wpcf7-form_form{
        padding: 30px 0px 0px;
    }

    .contact_info_container{
        flex-direction: column;
    }

    .contact_info{
        width: 100%;
    }

    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
    }

    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner{
        justify-content: space-around;
    }

    .address_container_wrap{
        flex-direction: column;
    }

    .address_container_wrap{
        gap: 0px;
    }

    .footer::before{
        bottom: -34vh;
    }

    .copyright{
        /* padding: 50px 50px clamp(130px,37vw,300px); */
        padding: 50px 50px clamp(130px,37vw,220px);
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }
    .new_inner {
    }
    .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;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --m_ps3: 24px;
        --m_ps5: 32px;
        --m_ps8: 48px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        /* margin-bottom: 50px; */
    }
    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .main_wrap {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }
    .m_a {
    padding-left: 24px;
    padding-right: 24px;
    }
    .m_a2{
    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 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner a {
        flex-flow: column;
        padding: 0 20px;
    }
    .common_cta_inner img {
        width: 40px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_ttl {
        /* width: 90px; */
    }
    .site_ttl a {
        color: #fff;
    }

    .mv_copy_wrap{
        width: 140%;
    }

    .mv_wrap{
        margin-left: 24px;
        margin-right: 24px;
    }

    .h_img_wrap{
        background: linear-gradient(-170deg, #bdd6e1 0%, rgba(255,255,255,0) 30%,var(--b2_color) 100%);
    }

    .copy_wrap{
        margin-bottom: -250px;
    }

    .mv_img_wrap{
        margin-bottom: -160px;
    }

    .mv_title{
        margin-bottom: 0px;
    }

    /* ナブ */

    .h_nav_wrap.is-fixed .site_ttl{
        width: 56px;
        padding: 8px;
    }

    /* ぼかし */

    .header::after{
        background: transparent;
    }

    .header::before{
        background: transparent;
    }

    .top_con01_wrap_blur_1{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
        top: 100px;
    }

    #features::before{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
        bottom: 0px;
    }

    #support::before{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
        top: 100px;
    }

    #info::before{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
        right: -100px;
        left: auto;
    }

    .company_wrap::after{
        opacity: 0.3;
    }

    .recruit_wrap::before{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
    }

    .recruit_wrap::after{
        width: 250px;
        aspect-ratio: 1/1;
        height: auto;
        filter: blur(100px);
        opacity: 0.3;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_img {
        /* width: 100%; */
        /* width: 90%; */
        width: 82%;
        margin-bottom: 50px;
    }
    .top_con01_txt {
        gap: 50px;
    }

    .top_con01_txt p{
        letter-spacing: 0.3em;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/
    .info_h2{
        margin: auto auto auto 0;
    }

    .company_h3_wrap h3{
        text-align: center;
    }

    .company_bottom_t{
        padding: 50px 24px;
    }

    .company_bottom_b{
        padding: 48px 24px;
    }

    .company_bottom{
        width: 100%;
        margin: auto 0 auto auto;
    }

    .info_img_wrap_sp{
        width: 60%;
        top: -230px;
    }

    .company_inner{
        flex-direction: column;
        gap: 20px;
        margin-bottom: 80px;
    }

    .company_inner dt{
        width: 37%;
    }
    .company_inner dd{
        width: 63%;
    }

    .between_img_wrap_t{
        margin-top: 210px;
    }

    .between_copy_wrap{
        margin: 0 auto;
    }

    .between_img_wrap_b{
        /* width: 100%; */
        /* width: 80%; */
        width: 72%;
    }

    .company_h3_wrap h3{
        letter-spacing: 0.128em;
    }

    .company_inner dt{
        letter-spacing: 0.128em;
    }
    .company_inner dd{
        letter-spacing: 0.128em;
    }

    /*-------------------------------------
    支援内容
    -------------------------------------*/

    .support_h2{
        margin-right: 0px;
    }

    .support_content_wrap{
        flex-direction: column;
    }

    .support_date_t_wrap ul{
        grid-template-columns: repeat(2, 1fr);
    }

    .support_date_wrap{
        width: 100%;
    }

    .support_date_t_wrap{
        padding-top: 0px;
        margin-bottom: 50px;
    }

    .info_img_wrap{
        width: 100%;
        bottom: calc(-1 * clamp(60px, 47vw, 290px));
    }

    .info_img_wrap_sp_con2{
        width: 52%;
        bottom: -80px;
    }

    /*-------------------------------------
    TOP 3コンテンツ目
    -------------------------------------*/
    .recruit_content_wrap{
        flex-direction: column;
        gap: 30px;
    }

    .recruit_h3_wrap{
        width: 100%;
        place-items: center;
        padding-top: 30px;
    }

    .recruit_h3_wrap h3{
        writing-mode:horizontal-tb;
    }

    .recruit_date_wrap{
        width: 100%;
    }

    .tate_span2{
        rotate: 0deg;
    }

    .recruit_h3_wrap h3{
        letter-spacing: 0.128em;
    }

    .recruit_inner dt{
        letter-spacing: 0.128em;
    }

    .recruit_inner dd{
        letter-spacing: 0.128em;
    }

    .recruit_date_list_wrap li{
        letter-spacing: 0.128em;
    }

    .recruit_txt{
        letter-spacing: 0.128em;
    }

    /*-------------------------------------
    TOP 4コンテンツ目
    -------------------------------------*/

    .between_img_wrap{
        height: 180px;
    }

    .between_img_wrap img{
        height: 450px;
    }

    /*-------------------------------------
    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;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .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{
        /* padding: 10px; */
    }

    .wpcf7-form_form .flex {
        display: block;
        margin-bottom: 20px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 16px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
        margin-bottom: 12px;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    .contact_info_tel_wrap{
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .contact_inner{
        padding: 24px;
    }

    .wpcf7-form_form{
        padding: 0;
    }

    .contact_info{
        padding: 20px;
    }

    .contact_txt{
        text-align: start;
    }

    #wpcf7cpcnf table th p{
        letter-spacing: 0.12em;
    }

    /*recaptcha*/
    .grecaptcha-badge {
    bottom: 47px !important;
    right: -179px !important;
    /* transform: scale(0.85); */
    transform: scale(0.8);
    }

    .contact_txt{
        letter-spacing: 0.12em;
    }

    .wpcf7_left{
        letter-spacing: 0.128em;
    }

    .wpcf7-list-item-label{
        letter-spacing: 0.128em;
    }

    .wpcf7c-elm-step2{
        letter-spacing: 0.128em;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .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 {
        padding-left: 0px;
        padding-right: 0px;
    }
    .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 {
        margin: 0;
    }
    .breadcrumbsinner {
        padding: 30px 20px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }
    .footer_nav {
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }

    .footer_address .site_ttl{
        margin-top: 50px;
    }

    .footer_nav_wrap{
        margin: 0;
        padding: 0;
        border-right: none;
    }

    .footer_nav_wrap .site_ttl{
        padding-left: 0px;
        margin-bottom: 10px;
    }

    .footer_nav_wrap{
        display: flex;
        flex-direction: column-reverse;
    }

    .footer_nav a{
        letter-spacing: 0.15em;
    }

    .address_container{
        letter-spacing: 0.15em;
    }

    .address_container_b{
        letter-spacing: 0.15em;
    }

    .time_container{
        letter-spacing: 0.15em;
    }

    .copyright{
        padding: 50px 50px clamp(130px,81vw,380px);
        /* padding: 50px 50px clamp(130px,69vw,380px); */
    }

    .copyright p{
        letter-spacing: 0.1em;
    }

    .footer::before{
        width: 270%;
        left: -60%;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        transition: all var(--tr);
    }
    .sp_bar li {
        width: calc(100% / 2);
    }
    .sp_bar a {
        color: var(--m_color);
        background: #fff9;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);;
        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;
        letter-spacing: 0.12em;
    }

    .sp_bar a:hover{
        background: var(--h_color);
    }

    .sp_bar ul li:last-child a{
        border-right: none;
    }

    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }
}

@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}
