﻿
@charset "UTF-8";
/*
Theme Name: fujita-kensou
Author: fuse
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", sans-serif;
    --font_en: "Roboto", sans-serif;
    --h1_font: clamp(52px, 3vw, 70px);
    --h2_font: clamp(32px, 3vw, 52px);
    --h3_font: clamp(20px, 3vw, 26px);
    --p_font: clamp(16px, 1vw, 16px);
    --m_color: #1B2465;      /*メインカラー*/
    --a_color: #9e7810;      /*アクセントカラー*/
    --f_color: #141414;         /*フォントカラー*/
    --b_color: #ddd;         /*ベースカラー*/
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease;
    --main_w: min(1280px, calc(100% - (var(--m_ps8) * 2)));
    --main_w2: min(1440px, calc(100% - (var(--m_ps8) * 2)));
    --main_w3: min(1600px, calc(100% - var(--m_ps8)));
    --main_mp: clamp(80px, 8vw, 160px);
    --sub_mp: clamp(40px, 4vw, 80px);
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%); /*グラデーションカラー*/
    --base: 0.0625rem;
}

p,li,dd,dt{
    font-size:var(--p_font);
    font-weight: 500;
    line-height:2.0;
    font-family: var(--font_ja);
}
/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block::before {
    transform-origin: left;
    transform: translateX(var(--beforeX, 0%));
    transition: none;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block::after {
    transform-origin: left;
    transform: scaleX(var(--afterScaleX, 0)) translateX(var(--afterX, 0%));
    transition: none;
    background-color: var(--m_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_ma_b {
    margin-bottom: var(--main_mp);
}
.sub_ma {
    margin: var(--sub_mp) 0;
}
.sub_ma_t {
    margin-top: var(--sub_mp);
}
.sub_ma_b {
    margin-bottom: var(--sub_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.main_pa_t{
    padding-top: var(--main_mp);
}
.main_pa_b{
    padding-bottom: var(--main_mp);
}
.sub_pa {
    padding: var(--sub_mp) 0;
}
.sub_pa_t {
    padding-top: var(--sub_mp);
}
.sub_pa_b {
    padding-bottom: var(--sub_mp);
}
.m_a {
    max-width: var(--main_w);
}
.m_a2 {
    max-width: var(--main_w2);
}
.m_a3 {
    max-width: var(--main_w3);
}
.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;
}
.en{
    font-family: var(--font_en);
}
.annotation {
    font-size: calc(var(--p_font) - 1);
    color: gray;
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: var(--f_color);
    display: flex;
    position: relative;
    align-items: center;
    gap: 1vw;
    font: 800 var(--p_font) var(--font_ja);
    letter-spacing: 0.15em;
    transition: var(--tr);
    width: fit-content;
}
.common_btn a > div {
    background-color: var(--a_color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 35px;
}
.common_btn i:after {
    position: absolute;
    right: 35px;
    top: 50%;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    margin-top: -2px;
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    transform: rotate(45deg) translateY(-50%);
    transition: all 0.2s;
}
.common_btn i:hover:after {
    right: 30px;
}

/*ボタン2*/
.common_btn2 {
}
.common_btn2 a {
    text-decoration: none;
    color: #fff;
    display: flex;
    position: relative;
    align-items: center;
    gap: 1vw;
    font: 500 var(--p_font) var(--font_ja);
    letter-spacing: 0.15em;
    transition: var(--tr);
    width: fit-content;
}
.common_btn2 a > div {
    background-color: var(--a_color);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    border-radius: 35px;
}
.common_btn2 a i {
    color: #fff;
    display: block;
    transition: all 0.4s 0s ease;
}
.common_btn2 a:hover i{
    transform: translateX(6px);
}

/*ボタン_cta*/
.ripple:hover{
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: ripple 1.5s infinite;
    color: #fff;
}
@keyframes ripple {
    0% {box-shadow: 0 0 0 0 var(--a_color);}
    70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}



/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
}
.common_cta_inner {
    text-align: center;
}
.common_cta_phone {
    width: min(100%, 50%);
    background: var(--m_color);
}
.common_cta_mail {
    width: min(100%, 50%);
    background: var(--a_color);
}
.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;
    margin-right: 10px;
    display: block;
}

/*-------------------------------------
見出し
-------------------------------------*/
.singleh1 {
    color: var(--f_color);
    padding: 0;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
    line-height: 1.6;
}
.top_h2 {
}
.top_h2 h2 {
    letter-spacing: 0.1em;
    font: 700 var(--h2_font) var(--font_ja);
}
.top_h2 .data_text {
    font: 900 var(--h1_font) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.3vw;
    margin-bottom: 0;
}
.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 {
    color: var(--m_color);
    letter-spacing: 0.1em;
    font: 700 var(--h3_font) var(--font_ja);
}
.other_h2 .data_text {
    color: var(--m_color);
    font: 900 var(--h1_font) var(--font_en);
    text-transform: uppercase;
    letter-spacing: 0.3vw;
    margin-bottom: 0;
}
.other_h2 h2:after {
    content: "";
    background: var(--m_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}


/*-------------------------------------
レイアウト
-------------------------------------*/
@media only screen and (min-width: 551px) {
    body {
    }
}
.wrap {
    position: relative;
    margin: 0 auto;
    max-width: 1920px;
}
.main_wrap {
    position: relative;
}

/*-------------------------------------
ヘッダー
-------------------------------------*/
.header {
    position: relative;
    height: auto;
    z-index: 1001;
}

/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 220px;
    margin: 0;
    transition: var(--tr);
}
.site_ttl a {
    display: block;
    margin: 0 auto;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.7;
}

/*ナビゲーション(header_nav)*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 16px 20px;
    width: calc(100%-40px);
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: var(--tr);
    background: #fff;
    opacity: 0.98;
    box-shadow: 0 0 4px 0 #00000018;
}
.h_nav_wrap.is-fixed {
    padding: 10px 20px;
    background: #fffffff1;
}

.h_nav_inner {
    justify-content: space-between;
    align-items: center;
}
.h_nav_wrap nav {
    height: 100%;
}
.h_logo{
    align-items: center;
    gap: 30px;
}
.h_logo p{
    font-size: 13px;
    font-weight: 500;
    color: #6d6d6d;
    line-height: 1.5;
}
@media only screen and (max-width: 1280px) {
    .h_logo p{
        display: none;
    }
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.pc_h_nav ul {
    gap: 2vw;
}
.pc_h_nav a {
    font: 600 var(--p_font) var(--font_ja);
    text-decoration: none;
    color:var(--f_color);
}
.pc_h_nav a:hover {
    color: var(--m_color);
}
.pc_h_nav li#nav_contact{
    background-color: var(--a_color);
    border-radius: 10px;
    height: 100%;
}
.pc_h_nav li#nav_contact a{
    color: #fff;
    height: 100%;
    padding: 10px 2vw;
    display: inline-block;
}


/*ファーストビュー・メインビジュアル*/
.h_img_wrap {
    position:relative;
    width: 100%;
    aspect-ratio: 16/7;
    margin-top: 80px;
}
.header_txt {
    position: absolute;
    left:1vw;
    bottom: 1vw;
    z-index: 1;
    width: 80%;
}
.header_txt p{
    color: #ffffff96;
    font: 900 clamp(40px, 10vw, 200px) var(--font_en);
    display: inline-block;
    background: var(--bg);
    width: fit-content;
    letter-spacing: 0vw;
    line-height: 0.8;
    position: relative;
    padding-left: 1vw;
    font-family:"Roboto Condensed", sans-serif;
}
#h_txt_small{
    font: 900 clamp(16px, 3vw, 52px) var(--font_ja);
    line-height: 1.0;
}
.header_popup{
    position: absolute;
    right: 0;
    bottom: 1vw;
    flex-direction: column;
    gap: 1vw;
    z-index: 1;
    width:auto;
}
.header_popup p{
    color: var(--m_color);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 1vw;
}
.h_pop01,.h_pop02{
    padding: 20px;
    text-align: center;
    background-color: #fff;
    border-radius: 4px 0 0 4px ;
}
.h_pop01 img{
    margin: 0 auto;
    width: clamp(120px,10vw,200px);
}
.h_pop02 img{
    margin: 0 auto;
    width: clamp(80px,8vw,140px);
}
.h_img_wrap video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: inherit;
    z-index: 0;
}
.youtube_wrap{
    position: relative;
    width: 100%;
}
.youtube_container{
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
}
.youtube_container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.h_img_wrap>img {
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: calc(100% + var(--m_ps5));
    object-fit: cover;
    display: block;
    max-height: inherit;
    z-index: 0;
    border-radius: 0 0 0 40px;
}
body:not(.home) .h_img_wrap {
    background-color: var(--m_color);
    aspect-ratio: 16/5;
}
.t_p{
    padding-top: calc(var(--main_mp) + var(--m_ps5));
}
/*下層ヘッダー見出し*/
.page_ttl{
    position: absolute;
    left:3vw;
    bottom: 8vw;
    z-index: 1;
    text-align: start;
}
.h1 {
    color: #ffffff96;
    font: 900 clamp(16px, 2vw, 52px) var(--font_ja);
    line-height: 1.2;
    letter-spacing: 0vw;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    color: #ffffff96;
    font: 900 clamp(16px, 2vw, 52px) var(--font_ja);
    line-height: 1.2;
    letter-spacing: 0vw;
}
body:not(.home):not(.single) h1:before,    /*data-textを使って疑似要素作成*/
body.single .h1:before {
    content: attr(data-text);
    text-transform: uppercase;
    color: #ffffff96;
    font: 800 clamp(40px, 10vw, 140px) var(--font_ja);
    display: block;
    background: var(--bg);
    width: fit-content;
    letter-spacing: 0vw;
    line-height: 0.8;
    position: relative;
    font-family:"Roboto Condensed", sans-serif;
    margin-bottom: 1vw;
}
/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.new_wrap {
    background: var(--m_color);
    border-bottom: #747474 solid 1px;
}
.new_inner {
    position: relative;
}
time {
    font: 15px var(--font_en);
    display: block;
    letter-spacing: 0.1vw;
}
.new_list {
    padding-top: 3vw;
}
.new_list li {
    padding-bottom: 3vw;
}
.new_item_date {
    align-items: center;
    gap: 2vw;
}
.new_item_date > div.flex {
    align-items: center;
    gap: 2vw;
}
.new_item_date time {
    color: #fff;
}
.new_item_cat {
    background-color: #fff;
    color: var(--m_color);
    line-height: 1;
    padding: 5px 0;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    width: 70px;
    text-align: center;
}
.new_item_ttl {
    color: #fff;
    font-weight: 400;
    padding-right: 55px;
}
.news_txt {
    border-top: #747474 solid 1px;;
    margin-top: 20px;
    padding-top: 20px;
    display: none;
}
.news_txt{
    color: #fff;
    font-weight: 300;
}
.news_txt a{
    color: #ffc72e;
    text-decoration: underline;
}
.news_txt a:hover{
    color: #cc9e1f;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}
/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 1px;
    background-color: #fff;
    transition: var(--tr);
}
.new_item_date::before {
    top: calc(3vw + 15px);
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: calc(3vw + 15px);
    right: 15px;
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
TOP 1コンテンツ目 2コンテンツ目
-------------------------------------*/
.top_con01_wrap {
    position: relative;
    background-color: var(--m_color);
    padding: clamp(60px, 8vw, 120px) 0;
}
.top_con01_inner {
    gap: 6vw;
    justify-content: space-between;
    margin-left: 0;
}
.top_con01_inner div, .top_con01_inner h2,
.top_con01_inner p{
    color: #fff;
}
.top_con01_inner p{
    font-weight: 400;
}
.top_con01_img {
    left:0;
    width: 53%;
    border-radius: 0 11px 11px 0;
}
.top_con01_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 80% 80%;
    border-radius: 0 10px 10px 0;
}
.top_con01_txt {
    width: 40%;
}
.top_con01_inner .top_h2 h2:after {
    background: #fff;
}
.bl_t{
    border-top: #747474 solid 1px;;
}
/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
/* .top_con02_wrap {
    position: relative;
} 
.top_con02_inner {
    gap: 6vw;
    justify-content: space-between;
    margin-right: 0;
}
.top_con02_inner p{
    font-weight: 500;
}
.top_con02_img {
    left:0;
    width: 53%;
}
.top_con02_img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: 80% top;
}
.top_con02_txt {
    width: 40%;
}
.top_con02_txt P {
    font-weight: 600;
}
.top_con02_txt h2 {
    font-weight: 800;
} */

/*-------------------------------------
TOP 3,4コンテンツ目 インスタ ブログ
-------------------------------------*/
.cushion01{
    background-color: var(--m_color);
    height: 600px;
}.cushion02{
    background-color: #c5c5c5;
    height: 1000px;
}
/* インスタ */
.top_sns_wrap {
    position: relative;
    flex-direction: column;
    align-items: end;
    margin-top: -1600px;
    padding: clamp(60px, 8vw, 120px) 0;
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_con{
    margin: 20px 0;
}
.top_sns_ig {
    background-color: #fff;
    padding: var(--sub_mp);
    border-radius: 10px 0 0 10px;
}
.top_sns_ttl{
    align-items: end;
}
.top_sns_ttl h2{
    font-size: clamp(60px, 8vw, 120px);
    color: #c0c3da;
    margin: 0;
    line-height: 1.0;
    font-family: var(--font_en);
}
.top_sns_ttl p{
    font-size: 20px;
    color: #c0c3da;
}
.insta_img_list {
    justify-content: start;
    position: relative;
    gap: 10px;
    flex-wrap: wrap;
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc((100% - 30px)/4);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    /* height: 100%; */
    aspect-ratio: 1/1;
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* ブログ */
.top_blog_wrap {
    position: relative;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: var(--main_mp);
}
.top_blog_inner {
    background-color: var(--m_color);
    padding: var(--sub_mp) var(--sub_mp) calc(var(--sub_mp) + 20px) ;
    border-radius:  0 10px 10px 0;
}
.blog_list{
    cursor: pointer;
}
.top_blog_ttl{
    justify-content: space-between;
    align-items: center;
}
.top_blog_ttl_in{
    align-items: end;
}
.top_blog_ttl_in h2{
    font-size: clamp(60px, 8vw, 120px);
    color: #c0c3da;
    margin: 0;
    line-height: 1.0;
}
.top_blog_ttl_in p{
    font-size: 20px;
    color: #c0c3da;
}
.top_blog_con{
    margin: 20px 0;
}
.top_blog_con>ul{
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
}
.top_blog_con>ul li{
    width: 48%;
}
.list-inner{
    gap: 20px;
}

.list-thumbnail{
    aspect-ratio: 4/3;
    object-fit: cover;
    width:50%;
}
.list-thumbnail img{
    aspect-ratio: 4/3;
    object-fit: cover;
    width:100%;
    height: auto;
}
.list-content{
    flex: 1;
}
.list-title h3{
    margin-bottom: 6px;
}
.list-title h3,.list-title h3> a{
    font-size: var(--p_font);
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    line-height: 1.5;
}
.list-title>h3>a{
    text-decoration: none;
    color: #fff;
}
.list-title time{
    font-size: 14px;
    color: #ebebeb;
    margin-bottom: 6px;
}
.list-title .post-categories{
    margin-bottom:10px;
}
.list-title .post-categories a{
    background-color: var(--a_color);
    color: #fff;
    border-radius: 4px;
    padding: 4px 4px;
    margin-right: 4px;
}
.list-title .post-categories>li{
    width: auto;
}
.list-title{
    border-bottom: #c0c3da 1px solid;
}
.list-content p{
    margin: 10px 0;
}
.list-content p,
.list-content p>a,
.list-content p span{
    font-size: 15px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
}
/*-------------------------------------
TOP 5コンテンツ目 CTA
-------------------------------------*/
.top_cta_wrap {
}
.top_cta_inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    border: var(--m_color) 4px solid;
    padding: var(--sub_mp);
    gap: 2vw;
}
.top_cta_ttl{
    flex-direction: column;
    align-items: center;
}
.top_cta_ttl h2{
    font-size: clamp(60px, 8vw, 120px);
    color: #c0c3da;
    margin: 0;
    line-height: 1.0;
}
.top_cta_btn{
    gap: 1vw;
    width: 100%;
}
.cta_btn_tel,.cta_btn_mail{
    background-color: var(--a_color);
    width: 50%;
    height: 80px;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 30px;
}
.cta_btn_tel:hover,.cta_btn_mail:hover{
    display: flex;
}
.cta_btn_tel{
    color: #fff;
    text-decoration: none;
    font: 800 clamp(30px, 2.5vw, 42px) var(--font_en);
}
.cta_btn_tel i{
    font-size: 30px;
    color: #fff;
    margin-right: 10px;
}
.cta_btn_mail{
    color: #fff;
    text-decoration: none;
    font: 900 clamp(20px, 2vw, 28px) var(--font_ja);
}
.cta_btn_mail>i{
    color: #fff;
    font-size: 20px;
    margin: 2px 0 0 3vw;
    transition: all 0.4s 0s ease;
    margin-right: -20px;
}
.cta_btn_mail:hover i{
    transform: translateX(10px);
}
/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 20px 50px;
    background: #ffffff;
    border-top: var(--m_color) 1px solid;
}
.breadcrumbs {
    width: 100%;
    font-size: var(--p_font);
    line-height: 1.5;
    background: none;
    position: relative;
    display: inline;
    align-items: center;
    gap: 10px;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: #585858;
    font-family: var(--font_ja);
    font-weight: 600;
    letter-spacing: 0.15em;
    display: inline;
}
.breadcrumbs:before {
    /* content: "\f015"; */
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}
/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
}
.company_inner ul {
    padding-bottom: 20px;
}
.company_bottom > ul > li{
    width: 100%;
}
.first_list p:first-of-type {
    border-top: 1px solid var(--m_color);
}
.first_list p {
    border-top: 1px solid #ddd;
}
.company_bottom > ul > li > p:first-of-type {
    font: 700 var(--p_font) var(--font_ja);
    color: var(--m_color);
    float: left;
    width: 27%;
    padding: 50px 0;
    border-bottom: 1px solid var(--m_color);
    margin-right: 3%;
}
.company_bottom > ul > li > p,
.company_bottom > ul > li > ul{
    font: 500 var(--p_font) var(--font_ja);
    float: left;
    padding: 50px 0;
    width: 70%;
    border-bottom: 1px solid #ddd;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    aspect-ratio: 16/6;
}
/*-------------------------------------
経営理念
-------------------------------------*/
.phiosophy_wrap{
}
.phiosophy_inner{
    gap: 6vw;
    margin-left: 0;
    align-items: center;
}
.phiosophy_img{
    width: 53%;
}
.phiosophy_img img {
    width: 100%;
    aspect-ratio: 5/4;
    object-fit: cover;
    object-position: 80% 20%;
    border-radius: 0 10px 10px 0;
}
.phiosophy_inner p,
.phiosophy_inner2 p,
.po_inner dd,
.po_inner2 dd{
    color: var(--f_color);
}
.phiosophy_inner p,
.phiosophy_inner2 p,
.po_inner dd,
.po_inner2 dd{
    font-size: var(--p_font);
    line-height: 2.2;
}
.phiosophy_txt {
    width: 40%;
}
.po_inner>div{
    margin-bottom: 1vw;
    align-items: center;
}
.po_inner dt,
.po_inner2 dt{
    width: 23%;
    font-size: clamp(16px,1.5vw,18px);
    font-weight: 600;
    color: #fff;
    background-color: var(--a_color);
    border-radius: 4px;
    margin-right: 10px;
    padding: 10px 0;
    text-align: center;
}
.po_inner dd,
.po_inner2 dd{
    width: 73%;
    line-height: 1.6;
    font-weight: 500;
}
.phiosophy_sign{
    width: 100%;
    text-align: end;
}
.phiosophy_sign p{
    color: var(--m_color);
}
/*-------------------------------------
サービス
-------------------------------------*/
/*コンテンツ1*/
.service_wrap{
}
.ser1_ttl>.other_h2,
.ser2_ttl>.other_h2,
.ser3_ttl_inner>.other_h2{
    margin-bottom: var(--m_ps5);
}
.ser1_con{
    margin-top: var(--m_ps5);
    gap: 20px;
    flex-wrap: wrap;
}
.ser1_item{
    width: 31%;
    border: var(--m_color) 2px solid;
    padding: var(--m_ps3);
    position: relative;
    border-radius: 4px;
}
.ser1_item h3{
    font-size: var(--h3_font);
    color: var(--m_color);
}
.ser1_item p{
    font-size: clamp(15px,1vw,16px);
}
.ser1_item>.ser1_num{
    position: absolute;
    bottom: -25px;
    right: 5px;
    line-height: 0.8;
    color: #e8eaf0;
    font: 900 clamp(60px, 8vw, 140px) var(--font_en);
    z-index: -1;
}
/*コンテンツ2*/
.service_wrap2{
    background-color: #f3f3f3;
    border-radius: 100px;
}
.service2_inner{
    gap: var(--m_ps5);
}
.ser2_ttl{
    width: 30%;
}
.ser2_btn{
    margin-top: var(--m_ps5);
    background-color: var(--a_color);
    border-radius: 10px;
    display: inline-block;
}
.ser2_btn a{
    color: #fff;
    padding: 16px 1.5vw 16px 3vw;
    text-decoration: none;
    display: inline-block;
}
.ser2_btn i{
    color: #fff;
    font-size: 14px;
    margin: 2px 0 0 2vw;
    transition: all 0.4s 0s ease;
}
.ser2_btn:hover i{
    transform: translateX(6px);
}
.ser2_con{
    flex-direction: column;
    gap: 20px;
    flex-wrap: wrap;
    width: 65%;
}
.ser2_item{
    width: 100%;
    padding: var(--m_ps3);
    background-color: var(--m_color);
    border-radius: 10px;
}
.ser2_item>.flex{
    border-bottom: #fff 1px solid;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5vw;
    margin-bottom: 0.5vw;
}
.ser2_item>.flex span{
    font: 700 clamp(28px, 2.5vw, 34px) var(--font_en);
    color: #fff;
    line-height: 1.0;
    margin-right: 4px;
}
.ser2_item>.flex p{
    font-weight: bold;
}
.ser2_item h3{
    font-size: var(--h3_font);
    color: #fff;
    line-height: 1.2;
    padding-bottom: 10px;
}
.ser2_item p{
    font-size: clamp(15px,1vw,16px);
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    padding-top: 10px;
}
/*コンテンツ3*/
.leadtime {
    color: var(--m_color);
    margin-top: var(--m_ps3);
}
.leadtime span{
    display: inline-block;
    padding: 0 6px;
    color: var(--m_color);
    border: var(--m_color) 1px solid;
    border-radius: 4px;
    margin-right: 4px;
}
.ser3_ttl{
    width: 30%;
    position: relative
}
.ser3_ttl_inner{
    width: 100%;
    position: sticky;
    top: 120px;
}
.ser3_item{
    width: 100%;
    padding: var(--m_ps3);
    background-color: var(--m_color);
    border-radius: 10px;
    gap: var(--m_ps3);
}
.ser3_item_in{
    width: 50%;
    text-align: center;
}
.ser3_img{
    aspect-ratio: 6/5;
}
.ser3_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.ser3_item_in p{
    font: 700 clamp(24spx, 2.5vw, 34px) var(--font_en);
    color: #fff;
    line-height: 1.0;
    margin-right: 4px;
    margin: 10px 0 -10px;
}


/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap,
.single_wrap {
    background-color: #F3F3F3;
}
.blog_wrap a,
.single_wrap a {
    text-decoration: none;
}
.blog_main_inner{
    gap: var(--m_ps3);
}
.blog_inner,
.single_inner,
.search_inner {
    flex: 1;
}
.my_result_count {
    margin-bottom: 10px;
    color: var(--m_color);
}
.blog_inner ul:not(.post-categories) {
    display: flex;
    gap: 20px;
    flex-flow: column;
}
.blog_inner>ul>li {
    background-color: #fff;
    padding: var(--m_ps3);
    border-radius: 10px;
}
.blog_con {
    gap: min(var(--m_ps3), 5vw);
    align-items: flex-start;
}
.blog_photo {
    width: 50%;
    aspect-ratio: 3/2;
    height: auto;
}
.blog_photo a{
    width: 100%;
    height: 100%;
    aspect-ratio: 3/2;
    display: block;
}
.blog_photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.blog_text {
    flex: 1;
}
.blog_title{
    line-height: 0;
}
.blog_title a {
    margin: 10px 0;
    text-align: left;
    font-size: clamp(18px,1.2vw,20px);
    color: var(--m_color);
    text-decoration: none;
    line-height: 1.5;
}
.blog_title a:hover {
    color: var(--m_color);
}
.blog_text .tags {
    margin-bottom: 1vw;
}
.post-categories li {
    line-height: 1;
}
.blog_clock time {
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.post-categories li a {
    background: var(--a_color);
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8125rem;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    border-radius: 4px;
}
.post-categories li a:hover {
    background: var(--m_color);
}
.post-categories li a:hover:before {
}
.post-categories li a:before {
    content: "#";
    /* font: 100%/1 "font awesome 6 free"; */
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.blog_text p{
    font-weight: 500;
    line-height: 1.5;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;
    display: block;
    margin-right: 10px;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

/*シングルページ*/
.single_inner{
    background-color: #fff;
    padding: var(--m_ps5);
    border-radius: 10px;
}
.article_main p{
    font-weight: 400;
    margin: 0 0 25px;
    line-height: 1.8;
}
.article_main h2 {
    margin: 30px 0 25px;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
    color: var(--f_color);
    text-align: left;
    border-left: var(--m_color) 8px solid;
    border-bottom: var(--m_color) 1px solid;
}
.article_main h3 {
    margin: 30px 0 25px;
    font-weight: bold;
    font-size: 20px;
    background-color: #f5f6ff;
    padding: 5px 10px;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 10px;
    font-weight: bold;
    font-size: 18px;
}
.article_main h5 {
    font-size: var(--p_font);
    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: #ffdd81;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd81;
}
.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: #ffdd81;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd81;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
    max-width: 100%;
    height: auto;
    display: block;
    width: revert-layer;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffe59e 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 40px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #f3f3f3;
    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;
    margin: 0 0 40px;
    background: #fafafa;
    border: solid 1px #ddd;
}
.article_main ul li {
    position: relative;
    padding-top: 10px;
    padding-left: 20px;
    line-height: 1.5em;
    font-weight: 400;
}
.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 30px;
    position: relative;
    border: solid 1px #ddd;
    margin: 0 0 40px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    position: relative;
    font-weight: 400;
}
.article_main ol li:before {
    content: counter(list-item);
    color: #fff;
    font-size: 14px;
    font-family: var(--font_en);
    margin-right: 10px;
    padding: 3px 8px;
    border-radius: 30px;
    background-color: #6d6d6d;
}
.article_main dl {
}
.article_main dt {
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding-left: 10px;
    margin: 0 0 20px;
    line-height: 1.8;
    font-weight: 400;
}
/*シングル　ページネーション*/
.single_pagenavi {
    justify-content: space-between;
}
.single_pagenavi.has-pagination {
    margin-top: var(--main_mp);
}
.single_pagenavi .next {
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    display: block;
    padding: 4px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}
.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;
    transition: var(--tr);
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
    transition: var(--tr);
}
.outline__toggle {
    display: none !important;
}
.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 {
    display: none;
    opacity: 0;
    transition-behavior: allow-discrete;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    display: block;
    opacity: 1;
    transition: opacity 0.3s, display 0.3s allow-discrete;
    width: auto;
    height: auto;
    margin: 20px 0 0;
    border: none;
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;

    @starting-style {
        opacity: 0;
    }
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
}
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 {
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_wrap {
    width: 25%;
}
.side_inner{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    padding-bottom: 70px;
    position: -webkit-sticky;
    position: sticky;
    top: 120px;
}
.side_wrap .widget {
    background-color: #fff;
    padding: var(--m_ps3);
    border-radius: 10px;
}
.widget_title {
    margin-bottom: 14px;
}
.widget_title div {
    color: var(--m_color);
    font-family: var(--font_ja);
    font-weight: bold;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.0;
}
.side_wrap li {
    position: relative;
    transition: var(--tr);
    border-bottom: #e6e6e6 1px solid;
}
.side_wrap li:hover {
    opacity: 0.7;
}
.side_wrap li a {
    font-size: var(--p_font);
    text-decoration: none;
    color: var(--f_color);
    line-height: 2.5;
}
.side_wrap li a > div:nth-child(1) {
    width: 70px;
    height: auto;
    aspect-ratio: 3/2;
}
.side_wrap li a > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side_wrap li a > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.side_wrap .widget ul {
    display: flex;
    flex-flow: column;
}
.widget_my_widget_recent_posts li a {
    gap: 10px;
    align-items: flex-start;
}
.widget_my_widget_recent_posts .news_clock {
    gap: 3px;
}
.widget_my_widget_recent_posts .news_clock * {
    line-height: 1;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: #c7c7c7 2px solid;
    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: 2px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
    color: var(--m_color);
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 15px;
}
.widget_archive li:before{
    content: "-";
    margin: 4px 5px 0 0;
    position: absolute;
    left: 0;
    top: -2px;
}
.widget_categories li:before {
    content: "#";
    margin: 2px 5px 0 0;
    position: absolute;
    left: 0;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    margin-top: 20px;
    gap: 10px;
}
.wp-pagenavi .page-numbers {
    padding: 4px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    font-family: var(--font_en);
    font-weight: bold;
    border-radius: 4px;
}
.wp-pagenavi .current {
    background: var(--a_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}
/*-------------------------------------
よくある質問
-------------------------------------*/
.faq-item{
    flex-direction: column;
    gap: 20px;
}
.faq-item>li{
    padding: var(--m_ps5);
    border-radius: 10px;
    background-color: #F3F3F3;
}
.faq-q,.faq-a{
    align-items: start;
}
.faq-q{
    position: relative;
}
.faq-q>p{
    font-size: calc(var(--p_font) + 2px);
    font-weight: 600;
    padding-right: 40px;
}
.faq-q i{
    padding: 10px;
    color: #fff;
    background-color: var(--m_color);
    border-radius: 4px;
    margin-right: var(--m_ps3);
}
.faq-a{
    padding-top: 20px;
    border-top: #ffffff 1px solid;
    margin-top: 20px;
    display: none;
}
.faq-a>p{
    font-size: var(--p_font);
    font-weight: 500;
}
.faq-a i{
    padding: 10px;
    color: #fff;
    background-color: #636363;
    border-radius: 4px;
    margin-right: var(--m_ps3);
}
.faq-a[style*="display: block"] {
    display: flex!important;
}
.faq-q::before,
.faq-q::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--m_color);
    transition: var(--tr);
}
.faq-q::before {
    top: 17px;
    right: 15px;
    transform: rotate(0deg);
}
.faq-q::after {
    top: 17px;
    right: 15px;
    transform: rotate(90deg);
}
.faq-q.is-close::before {
    transform: rotate(45deg);
}
.faq-q.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_wrap {
}
.contact_inner {
    padding: 0 5%;
}
.contact_info,
.contact_info2{
    margin-bottom: 20px;
}
.contact_info a,
.contact_info2 div {
    text-decoration: none;
    color: var(--m_color);
    font: 900 clamp(27px, 4vw, 36px) / 1 var(--font_en);
    text-align: center;
    background: #dddeeb;
    border-radius: 4px;
    padding: 40px 20px;
    margin: 0 0 5px;
    width: 100%;
    letter-spacing: 0.05em;
}
.contact_info a i,
.contact_info2 div i {
    color: var(--m_color);
    font-size: 0.8em;
    padding-right: min(10px, 2vw);
}
.contact_info a:hover,
.contact_line a:hover{
    opacity: 0.7;
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.contact_line{
}
.contact_line a{
    background-color: #4CAF50;
    padding: 40px 20px;
    border-radius: 4px;
    gap: 20px;
}
.contact_line p:first-of-type {
    font: 900 clamp(18px, 2vw, 24px) / 1 var(--font_en);
}
.contact_line p {
    color: #fff;
    font: 900 clamp(20px, 4vw, 32px) / 1 var(--font_en);
}


/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
}
.wpcf7-form_form {
    background: #fff;
}
.wpcf7-form_form fieldset legend{
    display: inline-block;
}
.wpcf7_left {
    max-width: 240px;
    width: 100%;
    padding: 20px 15px 20px 0;
}
.wpcf7_left legend {
    display: inline-block;
    width: fit-content;
}
form.wpcf7-form .required:before {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 13px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
    border-radius: 2px;
}
form.wpcf7-form .required2:before {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 13px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
    border-radius: 2px;
}
.wpcf7_right{
    width: 100%;
    padding: 12px 0 10px;
    border-left: none;
    /* border-bottom: none; */
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: -1px;
    width: 1.43rem;
    height: 1.43rem;
    margin-right: 1vw;
    padding: 0;
    border: 2px solid #e7e7e7;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="checkbox"]::after,
input[type="radio"]::after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--f_color);
    transition: var(--tr);
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
}
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    opacity: 1;
}
span.wpcf7-list-item input[type="checkbox"]::after {
    top: 11px;
    left: 11px;
    background-color: var(--m_color);
}

.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{
    width: 100%;

}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    /* border-radius: 3px; */
    padding: 16px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-form-control {
    display: flex;
    justify-content: center;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
    margin-top: var(--sub_mp);
}
.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;
}
.wpcf7-acceptance + .wpcf7-not-valid-tip{
    text-align: center;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 500px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #fff;
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 16px;
    letter-spacing: 0.4em;
    border-radius: 10px;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--a_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    background-position: right center;
    background-size: 200% auto;
    -webkit-animation: pulse 2s infinite;
    animation: ripple 1.5s infinite;
    color: #fff;
}
@keyframes wpcf7c_submit>input {
    0% {box-shadow: 0 0 0 0 var(--a_color);}
    70% {box-shadow: 0 0 0 10px rgb(27 133 251 / 0%);}
    100% {box-shadow: 0 0 0 0 rgb(27 133 251 / 0%);}
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 100%;
    height: 500px;
    margin: var(--sub_mp) auto 20px;
    overflow-y: scroll;
    padding: var(--m_ps5);
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: #eeeeee;
    border: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
}
#wpcf7cpcnf table td {
    background: #fff;
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 4px 20px;
    font-weight: 500;
    font-size: var(--p_font);
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
    border-radius: 10px;
}
.wpcf7cp-cfm-submit-btn {
    background: #555;
    color: #fff;
    border: none;
    border-radius: 10px;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}
/*-------------------------------------
404
-------------------------------------*/
.btn_404{
    margin-top: var(--m_ps5);
    background-color: var(--a_color);
    border-radius: 10px;
    display: inline-block;
}
.btn_404 a{
    color: #fff;
    padding: 16px 2vw 16px 3vw;
    text-decoration: none;
    display: inline-block;
}
.btn_404 i{
    color: #fff;
    font-size: 14px;
    margin: 2px 0 0 2vw;
    transition: all 0.4s 0s ease;
}
.btn_404:hover i{
    transform: translateX(6px);
}

/*-------------------------------------
フッター
-------------------------------------*/
.footer {
    background: #ffffff;
    position: relative;
    z-index: 0;
    padding: var(--sub_mp) 0 var(--main_mp);
    border-top: var(--m_color) 1px solid;
}
.footer_inner {
    justify-content: space-between;
    width: 100%;
}
/*左側*/
.footer_left {
    letter-spacing: 0.1em;
    padding: 0;
    position: static;
    background: none;
    margin: 0 auto;
    flex-direction: column;
    justify-content: space-between;
    gap: 3vw;
    width: 40%;
}
.footer_site_ttl {
    width: min(500px, 100%);
}
.address_container{
    flex-direction: column;
    gap: 1vw;
}
.address_container,.address_container p {
    font-weight: 600;
    font-size: 15px;
    color: #333333;
}
.address_container a {
    color: var(--a_color);
    text-decoration: none;
    font: 800 30px var(--font_en);
}
.address_container i{
    color: var(--a_color);
}
/*右側*/
.footer_right{
    flex-direction:column ;
    justify-content: space-between;
    align-items: end;
    width: 60%;
    padding-left: 40px;
}
.footer_nav {
    gap: 2vw;
    justify-content: end;
    flex-wrap: wrap;
}
.footer_nav li,.footer_nav a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    font-weight: 600;
    color: var(--f_color);
    line-height: 1.0;
}
.footer_nav a:hover {
    color: var(--m_color);
}
/*右側_下部*/
.footer_right_bottom{
    margin-top: var(--sub_mp);
    flex-direction: column;
    align-items: end;
}
/*sns部分*/
.footer_address_sns {
    justify-content: end;
    align-items: end;
    gap: 1vw;
}
.foot_insta {
    font-size: 40px;
}
.foot_insta:hover{
    opacity: 0.8;
}
.foot_insta i {
    color: var(--f_color);
}
.foot_line:hover{
}
.foot_line>a{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    background-color: #4CAF50;
    padding: 10px 30px;
    margin: 10px 0;
    border-radius: 4px;
}
.foot_line>a:hover{
    display: flex;
    opacity: 0.8;
}
.foot_line>a>p{
    color: #fff;
    line-height: 1.6;
}
.foot_line img{
    width: 100px;
    aspect-ratio: 1/1;
}
/*コピーライト*/
.copyright {
    background: #ffffff;
    color: var(--f_color);
    font-size: 14px;
    padding-top: 1vw;
}
.copyright p {
    font-size: 13px;
    color: var(--f_color);
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    background: #4553A3;
    width: 80px;
    height: 80px;
    border-radius: 40px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 55%;
}
#page-top a:hover {
    opacity: 0.7;
}
@media only screen and (min-width: 1280px) {
    .pc_none1280{
        display: none;
    }
}
@media only screen and (max-width: 1280px) {
    .sp_none1280{
        display: none;
    }
    .pc_none1280{
        display: block;
    }
    .br_1280 {
        display: none;
    }
    /*ヘッダー*/
    .h_img_wrap{
        aspect-ratio: 16/7;
    }
    body:not(.home) .h_img_wrap{
        aspect-ratio: 16/5;
    }
    /*ボタン*/
    .common_btn a > div,.common_btn2 a > div {
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }
    .common_btn a:after,.common_btn2 a:after {
        right: 25px;
        top: 50%;
        width: 8px;
        height: 8px;
        margin-top: -2px;
        border-right: 2px solid var(--m_color);
        border-top: 2px solid var(--m_color);
        transform: rotate(45deg) translateY(-50%);
        transition: all 0.2s;
    }
    .common_btn a:hover:after,.common_btn2 a:hover:after {
        right: 15px;
    }
    /*TOP 3,4コンテンツ目 インスタ ブログ*/
    /* インスタ */
    .po_inner2{
        width: fit-content;
    }
    /* ブログ */
    .top_blog_con>ul li{
        width: 100%;
    }
    .list-thumbnail{
        width:300px;
    }
    /* 経営理念 */
    .po_inner2{
        margin-top: calc(var(--sub_mp) + var(--m_ps3));
    }
    .po_inner2>div{
        margin-bottom: 6px;
        align-items: center;
    }
    .po_inner2 dt{
        width: 130px;
        padding: 6px 0;
    }
    .po_inner2 dd{
        width: auto;
    }
    .phiosophy_txt2{
        margin-top: var(--sub_mp);
    }
    /* サービス */
    .ser1_item>.ser1_num{
        bottom: -10px;
        right: 5px;
    }
    /* ブログ */
    .blog_main_inner{
        gap: 20px;
    }
    .blog_con .blog_text p{
        font-size: 14px;
        font-weight: 500;
        line-height: 1.5;
    }
    /* お問い合わせ */
    .contact_inner {
        padding: 0;
    }
    /* フッター */
    .footer {
        padding: var(--main_mp) 0;
    }
    .footer_inner {
        flex-direction: column;
        max-width: var(--main_w);
    }
    .footer_left{
        width: 100%;
        padding-bottom: var(--sub_mp);
    }
    .footer_left img{
        width: 60%;
    }
    .footer_right{
        width: 100%;
        padding-top: var(--sub_mp);
        align-items: flex-start;
        justify-content: space-between;
        border-top: var(--m_color) 1px solid;
        padding-left: 0;
    }
    .footer_right_bottom{
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }
    .footer_nav{
        justify-content: flex-start;
    }
    .footer_nav li,.footer_nav a {
    }
    .footer_address_sns{
        flex-direction: row-reverse;
        justify-content: start;
    }
    .copyright {
        font-size: 14px;
    }
}
@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
    .sp_br {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    .sp_none {
        display: none;
    }
    .pc_br {
        display: none;
    }
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_w: min(1280px, calc(100% - (var(--m_ps5) * 2)));
        --main_w2: min(1440px, calc(100% - (var(--m_ps5) * 2)));
        --main_w3: min(1600px, calc(100% - var(--m_ps5)));
        --main_mp: clamp(60px, 8vw, 120px);
        --sub_mp: clamp(30px, 4vw, 60px);
        --m_ps3: 20px;
        --m_ps5: 40px;
        --m_ps8: 60px;
    }
    /*-------------------------------------
    CTA
    -------------------------------------*/
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    /*-------------------------------------
    ヘッダー
    -------------------------------------*/
    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    /***ハンバーガー部分***/
    .menu-trigger {
        display: inline-block;
        width: 32px;
        height: auto;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 30px;
        right: 30px;
        z-index: 100;
        aspect-ratio: 2/1.5;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .menu-trigger{
        top: 24px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background-color: var(--a_color);
        transition: var(--tr);
    }
    .menu-trigger.active span {                   /*Jsで追加クラス名.active*/
        background-color: #fff !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
        width: 100%;
    }
    .menu-trigger.active span:nth-of-type(1) {    /*Jsで追加クラス名.active*/
        transform: translateY(10px) rotate(-45deg);
    }
    .menu-trigger span:nth-of-type(2) {
        top: 10px;
        width: 100%;
    }
    .menu-trigger.active span:nth-of-type(2) {    /*Jsで追加クラス名.active*/
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {    /*Jsで追加クラス名.active*/
        transform: translateY(-10px) rotate(45deg);
    }

    /***ハンバーガーから出てくる部分***/
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 5vw;
        background: var(--m_color);
        position: fixed;
        top: 0;
        z-index: 8;
        left: 100%;    /***右の画面外に飛ばしてる***/
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {    /*Jsでnavに追加クラス名.open*/
        left: 0;   /***右の画面外から画面内に戻している***/
    }
    .sp_h_nav_inner ul {
        height: auto;
        margin-bottom: 3vw;
    }
    .sp_h_nav_list li {
        border-top: #b1b1b1 1px solid;
    }
    .sp_h_nav_inner p{
        font-size: clamp(60px, 8vw, 120px);
        color: #c0c3da;
        margin-bottom: 4vw;
    }
    .sp_h_nav_list a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #fff;
        padding: 4vw;
        font: 600 clamp(18px,2.2vw,20px) var(--font_ja);
    }
    .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--a_color);
        border-radius: 20px;
        color: #fff;
        margin-top: 5vw;
        width: 100%;
    }
    .sp_h_nav_list li:last-child {
        text-align: center;
    }
    .sp_h_nav_sns a {
        text-decoration: none;
        color: #fff;
        font: 600 clamp(16px,2.2vw,20px) var(--font_en);
        display: inline-block;
        text-align: center;
        background: #4CAF50;
        border-radius: 20px;
        padding: 4vw;
        width: 100%;
    }
    .sp_h_nav_sns a,.sp_h_nav_sns img {
    }

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*ファーストビュー・メインビジュアル*/
    .h_pop01,.h_pop02{
        padding: 16px;
    }
    .h_pop01 img{
        margin: 0 auto;
        width: clamp(80px,10vw,200px);
    }
    .h_pop02 img{
        margin: 0 auto;
        width: clamp(40px,8vw,140px);
    }
    body:not(.home) .h_img_wrap{
        aspect-ratio: 16/6;
    }
    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .new_inner {
        max-width: 100%;
        margin: 0 var(--m_ps5);
    }
    .new_list {
        padding-top: 5vw;
    }
    .new_list li {
        padding-bottom: 5vw;
    }
    .new_item_date::before,.new_item_date::after{
        top: calc(5vw + 15px);
    }
    .new_item_cat {
        padding: 5px 8px;
    }
    .new_item_ttl {
        font-size: 16px;
    }
    .news_txt{
        font-size: 16px;
    }
    /*-------------------------------------
    TOP 1コンテンツ目 2コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        flex-direction: column;
    }
    .top_con01_img {
        width: 100%;
    }
    .top_con01_img img {
        height: auto;
        aspect-ratio: 16/9;
    }
    .top_con01_txt {
        margin-left: var(--m_ps5);
        width: calc(100% - var(--m_ps5));
    }
    /*-------------------------------------
    TOP 3,4コンテンツ目 インスタ ブログ
    -------------------------------------*/
    .cushion01{
        height: 1000px;
    }.cushion02{
        height: 1600px;
    }
    .top_sns_wrap{
        margin-top: -2600px;
    }
    .top_sns_ig,
    .top_blog_inner {
        padding: 40px;
    }
    .top_sns_ttl{
        flex-direction: column;
        align-items: flex-start;
    }
    .insta_img_list {
        flex-wrap: wrap;
    }
    .insta_img_list .item {
        width: calc((100% - 10px)/2);
    }
    .top_blog_ttl_in{
        flex-direction: column;
        align-items: flex-start;
    }
    .top_blog_con>ul{
        flex-wrap: wrap;
    }
    .top_blog_con>ul li{
        width: 100%;
    }
    /*-------------------------------------
    TOP 5コンテンツ目 CTA
    -------------------------------------*/
    .top_cta_inner p {
        line-height: 1.6;
    }
    .top_cta_btn{
        flex-direction: column;
        padding: 10px 0;
    }
    .cta_btn_tel,.cta_btn_mail{
        width: 100%;
    }
    /*-------------------------------------
    会社概要
    -------------------------------------*/
    .company_bottom > ul > li > p:first-of-type,
    .company_bottom > ul > li > p,
    .company_bottom > ul > li > ul{
        padding: 25px 0;
    }
    .company_googlemap iframe {
        aspect-ratio: 16/9;
    }
    /*-------------------------------------
    経営理念
    -------------------------------------*/
    .phiosophy_inner{
        flex-direction: column;
    }
    .phiosophy_img{
        width: 100%;
    }
    .phiosophy_img img {
        width: 100%;
        aspect-ratio: 16/7;
    }
    .phiosophy_txt {
        margin-left: var(--m_ps5);
        width: calc(100% - var(--m_ps5));
    }
    .po_inner2{
        width: 100%;
        margin-top: var(--sub_mp);
    }
    .po_inner2 dt{
        width: 23% ;
    }
    .po_inner2 dd{
        width: 77% ;
    }
    .phiosophy_sign{
        margin-top: var(--sub_mp);
    }
    /*-------------------------------------
    サービス
    -------------------------------------*/
    /*コンテンツ1*/
    .ser1_item{
        width: 46%;
    }
    /*コンテンツ2*/
    .service_wrap2{
        border-radius: 60px;
    }
    .service2_inner{
        flex-direction: column;
        align-items: start;
    }
    .ser2_ttl,.ser3_ttl{
        width: 100%;
    }
    .ser2_con{
        width: 100%;
    }
    .ser2_btn2{
        background-color: var(--a_color);
        border-radius: 10px;
        display: inline-block;
    }
    .ser2_btn2 a{
        color: #fff;
        padding: 16px 3vw;
        text-decoration: none;
        display: inline-block;
    }
    .ser2_btn2 i{
        color: #fff;
        font-size: 14px;
        margin: 2px 0 0 2vw;
        transition: all 0.4s 0s ease;
    }
    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_main_inner{
        flex-direction: column;
    }
    .wp-pagenavi {
        justify-content: center;
    }
    .side_wrap{
        width: 100%;
    }
    .side_inner{
        padding-bottom: 0;
    }
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    form.wpcf7-form .required:before,
    form.wpcf7-form .required2:before {
        display: block;
        width: 40px;
        padding: 5px 8px;
        font-size: 11px;
    }
    .wpcf7_left {
        max-width: 28%;
        width: 100%;
        padding: 16px 15px 16px 0;
    }
    .wpcf7_right{
        padding: 8px 0 7px;
    }
    /*-------------------------------------
    404
    -------------------------------------*/
    .btn_404 a{
        padding: 16px 30px;
    }
    /*-------------------------------------
    フッター
    -------------------------------------*/
    .footer_right_bottom{
        flex-direction: column;
        justify-content: flex-start;
        align-items: start;
    }

}
@media only screen and (min-width: 551px) {
    .pc_none2{
        display: none;
    }
    .sp2_br {
        display: none;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 50px;
        --sub_mp: 25px;
        --m_ps3: 20px;
        --m_ps5: 25px;
        --m_ps8: 50px;
        --h1_font: clamp(38px, 10vw, 70px);
        --h2_font: clamp(18px, 5vw, 32px);
        --h3_font: clamp(20px, 3vw, 32px);
        --p_font: clamp(16px, 1.2vw, 16px);
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    .annotation {
        font-size: 12px;
        line-height: 1.6;
    }
    /*-------------------------------------
    見出し
    -------------------------------------*/
    .singleh1 {
        font-size: clamp(20px, 3vw, 32px);
    }
    .top_h2 h2 {
        line-height: 1.0;
    }
    .other_h2 h2:after {
        width: 50px;
        margin-top: 20px;
    }
    /*スクロールヒント*/
    .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;
    }
    /*-------------------------------------
    ヘッダー
    -------------------------------------*/
    header{
    }
    .h_nav_wrap {
        padding: 10px 12px;
    }
    .h_nav_wrap.is-fixed{
        padding: 8px 20px;
    }
    .site_ttl {
        width: 130px;
    }
    .site_ttl a {
        color: #fff;
    }
    .menu-trigger {
        top: 14px;
        right: 12px;
        width: 28px;
    }
    .menu-trigger span {
        height: 3px;
        border-radius: 2px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 9px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
    }
    .h_nav_wrap.is-fixed .menu-trigger{
        top: 14px;
    }
    /*ファーストビュー・メインビジュアル*/
    .h_img_wrap{
        margin-top: 48px;
    }
    .header_txt {
        width: 98%;
        line-height: 0;
    }
    .header_txt p {
        font: 900 clamp(28px, 10vw, 200px) var(--font_ja);
        line-height: 1.1;
    }
    #h_txt_small{
        font: 900 clamp(10px, 3.6vw, 52px) var(--font_ja);
    }
    .header_popup{
        display: flex;
        position: static;
        flex-direction: row;
    }
    .header_popup p{
        display: block;
        font-size: 15px;
        margin-top: 2vw;
    }
    .h_pop01,.h_pop02{
        padding: 12px;
        width: 50%;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .h_pop02{
        border-left: var(--m_color) 1px solid;
    }
    .h_pop01 img{
        margin: 0 auto;
        width: clamp(120px,10vw,200px);
    }
    .h_pop02 img{
        margin: 0 auto;
        width: clamp(40px,8vw,140px);
    }
    .h_img_wrap>img {
        object-position: 70% 0%;
    }
    body:not(.home) .h_img_wrap {
        background-color: var(--m_color);
        aspect-ratio: 16/10;
    }
    /*下層ヘッダー見出し*/
    .page_ttl{
        left: 20px;
    }
    .h1 {
        font: 900 clamp(16px, 5vw, 52px) var(--font_ja);
        line-height: 1.2;
    }
    body:not(.home):not(.single) h1,
    body.single .h1 {
        font: 900 clamp(16px, 5vw, 52px) var(--font_ja);
        line-height: 1.2;
    }
    body:not(.home):not(.single) h1:before,    /*data-textを使って疑似要素作成*/
    body.single .h1:before {
        font: 900 clamp(40px, 12vw, 140px) var(--font_ja);
        line-height: 0.8;
        margin-bottom: 3vw;
    }
    .error404 h1:before {
        font: 800 clamp(32px, 10vw, 120px) var(--font_ja) !important;
        line-height: 0.8 !important;
    }
    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .new_item_date {
        flex-direction: column;
        align-items: flex-start;
        gap: 1vw;
    }
    .new_item_date::before,.new_item_date::after{
        top: calc(20px + 10px);
    }
    .new_item_time{
        width: 200px;
    }
    .new_item_ttl {
        margin-top: 10px;
        padding-right: 0;
        flex-basis: auto;
        overflow-wrap: break-word;
        line-height: 1.8;
    }
    .new_list{
        padding-top: 25px;
    }
    .new_list li{
        padding-bottom: 20px;
    }
    /*-------------------------------------
    TOP 3.4コンテンツ目 インスタ ブログ
    -------------------------------------*/
    .top_sns_ig,
    .top_blog_inner {
        padding: var(--sub_mp);
    }
    .top_sns_ig{
        overflow-x: hidden;
    }
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }
    .top_sns_ttl h2,.top_blog_ttl h2{
        font-size: clamp(50px, 8vw, 120px);
        color: #dadbe9;
    }

     /* ブログ */
    .top_blog_inner .common_btn2 {
        display: flex;
        margin-top: 10px;
    }
    .list-inner{
        gap: 10px;
    }
    .list-thumbnail{
        width:40%;
    }
    .list-content > p{
        display: none;
    }
    .list-title {
        border-bottom: none;
    }
    /*-------------------------------------
    TOP 5コンテンツ目 CTA
    -------------------------------------*/
    .top_cta_ttl h2{
        font-size: clamp(50px, 8vw, 120px);
        color: #dadbe9;
        margin-bottom: -20px;
    }
    .top_cta_btn {
        gap: 10px;
    }
    .cta_btn_tel,.cta_btn_mail{
        height: 60px;
        padding: 0 20px;
    }
    .cta_btn_tel{
        font: 800 clamp(24px, 2.5vw, 42px) var(--font_en);
    }
    .cta_btn_tel i {
        font-size: 20px;
    }
    .cta_btn_mail{
        font: 900 clamp(18px, 2vw, 28px) var(--font_ja);
    }
    .cta_btn_mail>i {
        font-size: 16px;
        margin-right: 0;
    }
    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    .company_bottom > ul > li{
        flex-direction: column;
        align-items: start;
    }
    .company_bottom > ul > li > p:first-of-type,
    .company_bottom > ul > li > p,
    .company_bottom > ul > li > ul{
        padding: 20px 0;
    }
    .company_inner ul{
        padding-bottom: 0;
    }
    .company_googlemap iframe {
        aspect-ratio: 3/2;
    }
    .first_list p:first-of-type {
        border-top: none;
    }
    .first_list p {
        border-top: none;
    }
    .company_bottom > ul > li > p:first-of-type {
        float: none;
        width: auto;
        padding: 10px 0;
        margin: 0;
    }
    .company_bottom > ul > li > p,
    .company_bottom > ul > li > ul {
        font-weight: 500;
        float: none;
        padding: 20px 0;
        width: 100%;
        margin-bottom: 20px;
    }
    /*-------------------------------------
    経営理念
    -------------------------------------*/
    .phiosophy_img img{
        aspect-ratio: 16 / 12;
    }
    .phiosophy_txt .other_h2{
        flex-direction: column;
        align-items: start;
    }
    .po_inner2>div{
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
        align-items: start;
    }
    .po_inner2 dt{
        width: auto;
        padding: 2px 20px;
    }
    .po_inner2 dd{
        width: 100%;
    }
    /*-------------------------------------
    サービス
    -------------------------------------*/
    /*コンテンツ1*/
    .ser1_item{
        width: 100%;
    }
    .ser1_con,.ser2_con{
        gap: 10px;
    }
    /*コンテンツ2*/
    .service_wrap2{
        border-radius: 40px;
    }
    .ser2_item,
    .ser3_item{
        border-radius: 10px;
    }
    .ser2_item h3{
        line-height: 1.2;
        font-size: 16px;
    }
    .ser2_item >div > p{
        text-align: end;
    }
    .ser2_item>.flex span{
        font-size: 24px;
    }
    .ser2_btn2{
        width: 100%;
        text-align: center;
    }
    .ser2_btn2 a{
        width: 100%;
    }
    /*コンテンツ3*/
    .ser3_item{
        padding: 16px;
        gap: 16px;
    }
    .ser3_item_in p{
        margin: 4px 0 -4px;
    }
    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .cushion01{
        height: 600px;
    }.cushion02{
        height: 1000px;
    }
    .top_sns_wrap {
        margin-top: -1600px;
    }
    .blog_inner ul:not(.post-categories) {
        gap: 10px;
    }
    .blog_con {
        gap: 10px;
    }
    .blog_photo{
        width: 40%;
    }
    .blog_title a{
        margin: 0 0 6px;
    }
    .wp-pagenavi{
    }
    .side_wrap{
        gap: 10px;
    }
    .post-categories li a {
        font-size: 13px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    .article_main ul,
    .article_main ol{
        padding: 10px 10px 10px 20px;
    }
    /*目次*/
    .outline {
        padding: 16px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 0;
    }
    .breadcrumbsinner {
        padding: 20px 20px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }
    /*-------------------------------------
    よくある質問
    -------------------------------------*/
    .faq-a{
        padding-top: 16px;
        margin-top: 16px;
    }
    .faq-q i,.faq-a i{
        margin-right: 12px;
    }
    .faq-q>p{
        font-size: var(--p_font);
    }
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_wrap {
    }
    .contact_info,
    .contact_info2{
        margin-bottom:10px;
    }
    .contact_info a,
    .contact_info2 div,
    .contact_line a{
        padding: 25px 20px;
    }
    form.wpcf7-form .required:before,
    form.wpcf7-form .required2:before{
        display: inline-block;
        width: auto;
    }
    .wpcf7_container>div>label>.flex,
    .wpcf7_container>div>label>.flex {
        flex-direction: column;
        padding: 0 0 10px;
    }
    .wpcf7_left {
        max-width: 100%;
        padding: 0 0 6px 0;
        display: block;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 400px;
    }
    .wpcf7-list-item-label{
        font-size: 14px;
    }

    /*確認画面*/
    .main_wrap #wpcf7cpcnf {
        z-index: 2 !important;
    }
    #wpcf7cpcnf table {
        border-bottom: 1px solid #ccc;
    }
    #wpcf7cpcnf table th {
        width: 100%;
        height: 50px;
        display: block;
        background: #eeeeee;
    }
    #wpcf7cpcnf table td {
        width: 100%;
        height: 50px;
        display: block;
    }
    /*-------------------------------------
    パンくず
    -------------------------------------*/
    .breadcrumbs a,
    .breadcrumbs span {
        font-size: 12px;
    }
    /*-------------------------------------
    フッター
    -------------------------------------*/
    .footer{
        padding-bottom: calc(var(--main_mp) + 30px);
    }
    .sp_h_nav_inner {
        padding-bottom: 80px ;
    }
    .footer_nav{
        gap: 4vw;
        margin: 3vw 0;
    }
    .footer_address_sns{
        gap: 3vw;
    }
    .address_container p {
        font-weight: 500;
        font-size: 14px;
    }
    .foot_line>a {
        padding: 10px 20px;
    }
    .copyright {
        margin-top: var(--sub_mp);
        width: auto;
    }
    .foot_line>div>p{
        font-size: 13px;
    }
    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: calc(100% / 3);
    }
    .sp_bar a {
        color: #fff;
        display: block;
        font-size: 13px;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
        margin-bottom: -10px;
    }
    .sp_bar li:nth-of-type(1) :before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(2) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(2) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(3) :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;
    }
}