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


/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", san-serif;
    --font_en: "Montserrat", "serif";
    --h1_font: clamp(22px, 3vw, 48px);
    --h2_font: clamp(36px, 6.0vw, 80px);
    --h3_font: clamp(22px, 3vw, 40px);
    /* --m_color: #3a6fb7; */
    --m_color: #2b7cff;
    /* --m2_color:#44a9e0; */
    --m2_color:#2bb5ff;
    /* --m2_color:#57bff0; */
    --a_color: #f1dc75;
    --f_color: #303030;
    --b_color: #b0e1fa;
    --b_color: #E8F1F7;
    --b_color: #b3dfee;
    --b_color: #d9effc;
    --w_color: #fff;
    --line_color: #00b300;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1440px);
    --single_w: min(100%, 1240px);
    --main_mp: 150px;
    --single_mp: 150px;
    --m_ps30: 30px;
    --m_ps40: 40px;
    --m_ps50: 50px;
    --m_ps60: 60px;
    --m_ps80: 80px;
    --m_ps100: 100px;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #0689cd 50%, #7dcff4 100%);
}
fieldset {
    display: contents;
}

/*-------------------------------------
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);
}
.order_fadeUp2 {
    -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_fadeUp2-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: var(--w_color);
    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;
}

.jsCover {
    display: block;
    position: relative;
    overflow: hidden;
}
.jsCover:before {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    z-index: 7;
    /*background: #2A3893;*/
    background: var(--m2_color);
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    content: "";
}
.jsCover:after {
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
    top: 0;
    background: var(--b_color);
    z-index: 8;
    -webkit-transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    transition: all 0.9s cubic-bezier(0.77, 0, 0.185, 1);
    -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    transition-timing-function: cubic-bezier(0.77, 0, 0.185, 1);
    content: "";
}
.jsCover.jsCover__isShow:after,
.jsCover.jsCover__isShow:before {
    right: -105%;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_2 {
    display: -webkit-flex;
    display: flex;
}
.flex_c_y {
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c_t {
    -webkit-align-items: center;
    align-items: center;
}
.flex_reverse {
    flex-direction: row-reverse;
}

.main_w {
    max-width: var(--main_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.single_w {
    max-width: var(--single_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
p {
    font: normal clamp(16px, 1.5vw, 16px) var(--font_ja);
    line-height: 1.8;
}
.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;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

/* Font Awesome */
.fa-envelope:before { /*メールアイコン*/
    content: "\f0e0";
}
.fa-line:before { /*LINEアイコン*/
    content: "\f3c0";
}
.fa-phone:before { /*電話アイコン*/
    content: "\f095";
}
.fa-square-phone:before { /*電話アイコン*/
    content: "\f098";
}
.fa-facebook-f:before { /*Facebookアイコン*/
    content: "\f39e";
}
.fa-x-twitter:before { /*Xアイコン*/
    content: "\e61b";
}
.fa-home:before { /*ホームアイコン（パンくず）*/
    content: "\f015";
}
.fa-circle-chevron-right:before {
    content: "\f138";
}
.fa-chevron-up:before {
    content: "\f077";
}
.fa-history:before {
    content: "\f1da";
}
.fa-clock:before {
    content: "\f017";
}
.fa-clock-rotate-left:before {
    content: "\f1da";
}
.fa-download:before {
    content: "\f019";
}
.fa-phone-volume:before {
    content: "\f2a0";
}
.fa-pencil:before {
    content: "\f303";
}
.fa-square-x-twitter:before {
    content: "\e61a";
}
.fa-lightbulb:before {
    content: "\f0eb";
}

/* リスト */
.common_list li {
    position: relative;
    padding-left: 24px;
}
.common_list li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m2_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/* .wrap {
    background: var(--w_color);
    background-image: linear-gradient(90deg, var(--b_color) 1px, transparent 1px), linear-gradient(var(--b_color) 1px, transparent 1px);
    background-position: 10px 10px;
    background-size: 28px 28px;
} */

/*ボタン*/
.common_btn {
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}
.common_btn_center {
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
}
.common_btn_left {
    max-width: 280px;
    margin: 0 auto 0 0;
    text-align: left;
}
.common_btn a {
    text-decoration: none;
    color: var(--w_color);
    padding: 20px;
    display: block;
    background: var(--m_color);
    position: relative;
    font: bold 16px var(--font_en);
    letter-spacing: 0.15em;
    transition: var(--tr);
    border-radius: 5px;
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--w_color);
    border-top: 1px solid var(--w_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.8;
}

.common_btn a {
    text-decoration: none;
    display: inline-block;
    width: 100%;
    max-width: 320px;
    position: relative;
    margin: 0 0 10px;
    transition: all .3s ease-out;
    background: linear-gradient(90deg, var(--m_color) 0%, #1258c9 50%, var(--m_color) 100%);
    background-size: 200% 100%;
}

.common_btn a:hover {
    background-position: 100% 0;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    margin: 0 auto;
    position: relative;
    max-width: 1920px;
    background: var(--m2_color);
    padding: 80px 20px;
}
.common_cta_inner {
    align-items: center;
    justify-content: center;
}
.cta_mail a,
.cta_line a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    z-index: 1;
    border-radius: 5px;
    padding: 15px 20px;
}
.cta_mail a {
    background: var(--m_color);
    border-bottom: 6px solid #214a85;
}
.cta_line a {
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
}
.contact_line a {
    padding: 17px 20px;
    background: #02b404;
    color: var(--w_color);
}
.cta_line a span {
    color: var(--w_color);
}
.header_cta_inner .cta_mail {
    margin: 0 20px 0 0;
}
.common_cta_wrap .cta_mail {
    margin: 0 20px 0 20px;
}
.about_cta_wrap .cta_mail {
    margin: 0 auto !important;
}
.cta_mail,
.cta_line {
    max-width: 300px;
    width: 100%;
}
.cta_mail a,
.cta_line a {
    width: 100%;
    padding: 15px 20px;
}
.cta_mail .cercleArrow,
.cta_line .cercleArrow {
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: bold;
}
/* .cta_mail .cercleArrow {
    background: #f5dd0c;
    background: var(--m_color) !important;
    color: var(--w_color) !important;
}
.cta_line .cercleArrow {
    background: #09a40b;
    color: var(--w_color) !important;
} */
.common_cta_inner a:hover {
    opacity: 0.8;
}
.common_cta_inner span {
    color: var(--w_color);
}
.cta_mail_title {
    font-size: clamp(18px, 2vw, 20px);
    font-weight: bold;
}
.common_cta_inner p {
    color: var(--w_color);
    text-align: center;
    font-size: 16px;
}
.cta_phone {
    min-width: 220px;
}
.cta_phone_number {
    font-size: clamp(25px, 3vw, 48px);
    color: var(--w_color);
    text-decoration: none;
    font-family: var(--font_en);
    font-weight: bold;
    line-height: 1.4;
}
.cta_phone_number a {
    font-size: clamp(25px, 3vw, 42px);
    color: var(--w_color);
    text-decoration: none;
    font-family: var(--font_en);
    font-weight: bold;
}
.cta_phone_number i {
    margin-right: 6px;
    color: var(--w_color);
}
.cta_mail i {
    margin-right: 5px;
    color: var(--w_color);
}
.cta_line i {
    margin-right: 5px;
    color: var(--w_color);
}

/*-------------------------------------
見出し
-------------------------------------*/
/* TOPの見出し */
.top_h2 {
    position: relative;
    text-align: left;
    margin-bottom: 60px;
}
.top_h2 h2 {
    font: bold clamp(14px, 2vw, 24px) var(--font_ja);
    color: var(--m_color);
}
.top_h2 .data_text {
    margin-bottom: 15px;
    font: bold var(--h2_font) var(--font_en);
    color: var(--m2_color);
}
.top_h2 .data_text span {
        color: var(--m2_color);
}

/*========= 1文字ずつ出現させるためのCSS ===============*/

.eachTextAnime span {
    opacity: 0;
}
.eachTextAnime.appeartext span {
    animation:text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
    0% {
        opacity:0;
    }
    100% {
        opacity:1;
    }
}


.top_trouble_image img {
    width: 100%;
}
.top_trouble_h2 > div {
    font: bold clamp(14px, 2vw, 20px) var(--font_ja);
    background: var(--a_color);
    color: var(--f_color);
    margin: 0 auto 10px;
    max-width: 460px;
    text-align: center;
    border-radius: 0px;
    padding: 5px 20px;
}
.top_trouble_h2 h2 {
    font: bold clamp(24px, 3vw, 48px) var(--font_ja);
    color: var(--m2_color);
    margin: 0 auto 20px;
    text-align: center;
}

/* TOP以外の見出し */
.other_h2 h2 {
    letter-spacing: 0.15em;
    font: bold var(--h3_font) var(--font_ja);
    color: var(--f_color);
    text-align: center;
    display: inline-block;
    position: relative;
}
.other_h2 {
    text-align: center;
    position: relative;
    margin-bottom: 50px;
    /* border: solid 3px var(--m2_color);
    padding: 15px 20px; */
}
.other_h2 h2 {
    font-size: 36px;
    text-align: center;
}
.other_h2 h2:after {
    content: "";
    display: block;
    width: 120px;
    height: 4px;
    background: var(--m_color);
    margin: 30px auto 0;
}

.other_h3 {

}
.other_h3 {
    text-align: center;
    position: relative;
    margin-bottom: 20px;
    /* border: solid 3px var(--m2_color);
    padding: 15px 20px; */
}
.other_h3 h3 {
    font: bold clamp(20px, 2vw, 26px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
}

/* 背景白系 */
.heading_f h2 {
    color: var(--f_color);
}
.heading_f .data_text {
    color: var(--f_color);
}
.heading_f:before {
    background: var(--f_color);
}
/* テキスト白系 */
.heading_w h2 {
    color: var(--w_color);
}
.heading_w .data_text {
    color: var(--w_color);
}
.heading_w:before {
    background: var(--w_color);
}
/* テキスト左寄せ */
.heading_left {
    text-align: left;
}
/* テキスト中央寄せ */
.heading_center {
    text-align: center;
}
.heading_center:before {
    margin: 0 auto;
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: 270px;
    line-height: 0;
    transition: var(--tr);
    padding: 10px 0;
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 240px;
    padding: 10px 0;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.8;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 0 0 0 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: var(--tr);
    /* background: var(--w_color); */
}
body:not(.home) .h_nav_wrap {
    background: var(--w_color);
}
.h_nav_wrap.is-fixed {
    align-items: center;
    background: var(--w_color);
}
.h_nav_wrap.is-fixed .pc_h_nav {
    padding: 0;
}
.h_nav_inner {
    justify-content: space-between;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .h_nav_inner {
    transition: var(--tr);
}
.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 > ul {
    height: 100%;
    flex-wrap: wrap;
}
.pc_h_nav li {
    display: flex;
}
.pc_h_nav > ul > li {
    position: relative;
}
.pc_h_nav > ul > li span:before {
    position: absolute;
    right: 0;
    top: 50%;
    display: block;
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--f_color);
    border-top: 2px solid var(--f_color);
    transform: rotate(135deg) translateY(-50%);
    margin: -12px 0 0px 0;
    transition: var(--tr);
}
.pc_h_nav a {
    font: bold 16px var(--font_ja);
    text-decoration: none;
    color: var(--f_color);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc_h_nav > ul > li > a {
    margin-right: 40px;
}
.pc_h_nav > ul > li > a:before {
    position: absolute;
    top: -17px;
    left: 0px;
    content: "";
    width: 100%;
    height: 2px;
    z-index: 1;
    background: var(--f_color);
    opacity: 0;
    border-radius: 10px;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
.pc_h_nav li:last-child a {
    background: var(--m_color);
    color: var(--w_color);
    padding: 0 20px;
}
.pc_h_nav li:last-child a i {
    color: var(--w_color);
    margin-right: 5px;
    font-size: 18px;
}
.pc_h_nav a:hover {
    opacity: 0.8;
}
.contact_nav a img {
    margin-right: 10px;
    width: 26px;
}
.contact_nav a {
    margin-right: 0 !important;
}
/* ヘッダー画像 */
.main_image_text img {
    width: 100%;
}

.header_sns {
    align-items:flex-start;
    justify-content: flex-end;
    margin: 5px 20px 0 0;
}
.header_tel {
    margin-right: 5px;
}
.header_line {
    margin-top: 2px;
}
.header_tel i {
    font-size: 36px;
    line-height: 1;
    color: var(--f_color);
}
.header_line i{
    font-size: 30px;
    line-height: 1;
    color:#02b404;
}


/*************************************/
.h_img_wrap {
    position: relative;
}
.header_img_container {
    position: relative;
    margin: 118px 0 0;
    width: 100%;
    height: 400px;
    background-position: 70% 100%;
    background-image: url("img/header.jpg");
    background: var(--m_color);
    z-index: 0;
}
.other_h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.5;
    width: 100%;
}

/* ヘッダー画像 */
.header {
    position: relative;
    overflow: hidden;
}
.main_image_inner {
    background: var(--b_color);
    background-position: 50% 100%;
    background-size: cover;
    max-width: 1920px;
    background: linear-gradient(172deg, var(--w_color) 0%, var(--b_color) 55%, #7dcff4 55%, #7dcff4 100%);
    background: linear-gradient(172deg, var(--w_color) 0%, var(--b_color) 55%, var(--m2_color) 55%, var(--m2_color) 100%);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 100vh;
    position: relative;
    /* background-image: radial-gradient(#96dcff 1px, var(--b_color) 1px);
    background-size: 20px 20px; */
}

/* .main_image_inner:before {
    content: '';
    background-image: url(img/main_header_icon.svg);
    position: absolute;
    width: 382px;
    height: 300px;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
} */
@keyframes zoomUp {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
.add-animation {
    animation: zoomUp 7s linear 0s normal both;
}
.main_image_box {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    align-items: center;
    justify-content: space-between;
}
.main_image_text {
    padding: 0 20px;
    width: 52%;
}
.main_image_text p {
    font: 700 clamp(30px, 3vw, 60px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
    margin-bottom: 0px;
}
.main_image {
    width: 45%;
}
.main_image img {
    width: 100%;
    margin: 0 auto;
}


.single_image_wrap {
    padding: 200px 20px 120px;
    text-align: center;
    background: var(--b_color);
    /* background: #a0dbfa; */
    background-image: radial-gradient(#8ad0f3 1px, var(--b_color) 1px);
    background-size: 20px 20px;
}


.single_image_wrap h1,
.blog_h1 {
    font: bold clamp(16px, 2vw, 24px) var(--font_ja);
    color: var(--f_color);
    max-width: 1240px;
    text-align: left;
    width: 100%;
    position: relative;
    /* padding-left: 20px;
    padding-right: 20px; */
    text-align: left;
    margin: 0 auto;
}
.single_image_wrap h1:before,
.blog_h1:before {
    content: attr(data-text);
    text-transform:uppercase;
    display: block;
    font: bold clamp(40px, 6vw, 80px) var(--font_en);
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: left;
    letter-spacing: 0.5rem;
    margin-left: 0px;
}


.circle_box {
    margin: 40px auto 0;
	width: 180px;
	height: 180px;
    font: bold clamp(15px, 2vw, 26px) var(--font_ja);
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--a_color);
    border-radius: 50%;
    text-align: center;
}
.circle_box p {
	width: 180px;
    text-align: center !important;
}


.top_service_wrap {
    position: relative;
}
.top_service_wrap:before {
    content: '';
    background-image: url(img/main_header_icon.svg);
    position: absolute;
    width: 250px;
    height: 196px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -2px;
    right: 0;
    transform:rotate(180deg)
}
.top_company_wrap {
    position: relative;
}
.top_company_wrap:before {
    content: '';
    background-image: url(img/main_header_icon.svg);
    position: absolute;
    width: 250px;
    height: 196px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -2px;
    right: 0;
    transform:rotate(180deg)
}
.top_blog_inner {
    position: relative;
}
.top_blog_inner:before {
    content: '';
    background-image: url(img/main_header_icon.svg);
    position: absolute;
    width: 250px;
    height: 196px;
    background-size: contain;
    background-repeat: no-repeat;
    top: -194px;
    left: 0;
}


/*-------------------------------------
TOP サービス内容
-------------------------------------*/
.top_service_inner {
    max-width: 1440px;
    margin: 0 auto;
}
.top_service_box {
    padding: 100px 20px;
    background: var(--m2_color);
    background: #7ccaf5;
    background: var(--b_color);
    background: #a0dbfa;
    background: var(--b_color);
    background: #89cff5;
    background-image: radial-gradient(#8ad0f3 1px, var(--b_color) 1px);
    background-size: 20px 20px;
    border-radius: 20px;
}
.top_service_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
    max-width: 1240px;
    margin: 0 auto 40px;
}
.top_service_list li {
    width: calc(100% / 3 - 20px);
    min-width: 360px;
    padding: 50px;
    background: var(--w_color);
    /* border: solid 2px var(--m2_color); */
    /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); */
    border-radius: 20px;
}
.top_service_title {
    margin-bottom: 10px;
    font: bold clamp(20px, 2.0vw, 24px) var(--font_ja);
    text-align: center;
    color: var(--m2_color);
}
.top_service_image {
    margin: 0 auto 20px;
}
.top_service_image img {
    margin: 0 auto 0px;
    max-height: 130px;
    height: 100%;
}
.top_service_list p {
    text-align: center;
}
.top_company_box {
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 50px;
    background: var(--b_color);
    background-image: radial-gradient(#8ad0f3 1px, var(--b_color) 1px);
    background-size: 20px 20px;
    border-radius: 20px;
}
.top_company_text {
    width: 60%;
}
.top_company_image {
    width: 35%;
}
.top_company_image img {
    width: 100%;
}
.summary_table {
    position: relative;
    z-index: 1;
}
.summary_table table {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.summary_table tr:first-child {
    border-top: 1px solid #ccc;
}
.summary_table th {
    width: 250px;
    background: var(--m2_color);
    color: var(--w_color);
    border-bottom: 1px solid #ccc;
    padding: 20px 20px;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
}
.summary_table td {
    border-bottom: 1px solid #ccc;
    background: var(--w_color);
    padding: 20px 20px;
    text-align: left;
}


/*-------------------------------------
TOPページ 新着コラム記事
-------------------------------------*/
.top_blog {
    margin: 0 auto;
}
.top_blog_inner {
    background: var(--b_color);
    background: #d9effc;
    background: #7ccaf5;
    background: var(--m2_color);
    padding: 100px 20px;
}
.top_column_list {
    max-width: 1240px;
    margin: 0 auto 40px;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.top_column_list > li {
    width: calc(100% / 3 - 20px);
    min-width: 360px;
    background: var(--w_color);
    border-radius: 20px;
}
.single_inner h1 {
    margin-bottom: 20px;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner > ul > li {
    margin-bottom: 50px;
}
.top_blog_image img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px 20px 0 0;
}
.top_blog_text {
    text-align: left;
    padding: 50px;
}
.top_blog_text a {
    font: bold clamp(16px, 1.5vw, 18px) var(--font_ja);
    color: var(--f_color);
    text-decoration: none;
}
.post-categories li:last-child {
    margin-right: 0;
}
.blog_clock time {
    color: #999;
    font-size: 0.8125rem;
}
.top_blog_heading {
    margin-bottom: 10px;
}
.top_blog_text p{
    margin-bottom: 10px;
}
.top_blog_text_date {
    display: flex;
    align-items: center;
}

/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.top_news_wrap {
    background: var(--b_color);
    background-image: radial-gradient(#8ad0f3 1px, var(--b_color) 1px);
    background-size: 20px 20px;
}
.top_news_heading {
    width: 100%;
    max-width: 300px;
    margin-right: 60px;
}
.top_news_inner {
    position: relative;
    justify-content: space-between;
    z-index: 1;
    max-width: 1240px;
    margin: 0 auto;
    border-radius: 30px;
}
time {
    font: normal 16px/1 var(--font_en);
    margin-right: 10px;
    color: var(--f_color);
}
.news .news_meta .cat{
    display: inline-block;
    background-color: #597eb4;
    color: var(--w_color);
    font-weight: 400;
    padding: 3px 18px 0 18px;
    font-size: 12px;
    margin-right: 14px;
}
.top_news_list {
    width: 100%;
}
.top_news_list li {
    margin-bottom: 20px;
    padding: 50px 50px;
    background: var(--w_color);
    position: relative;
}
.top_news_list li:last-child {
    margin-bottom: 0;
}
.top_news_category {
    display: inline-block;
    color: var(--f_color);
    background: var(--a_color);
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    margin-right: 30px;
}
.top_news_title {
    display: inline-block;
    color: var(--f_color);
    font-weight: normal;
    padding-right: 55px;
}
.top_news_text a {
    color: #001CFD;
}
.top_news_text {
    display: none;
    margin-top: 20px;
}
.top_news_text p {
    color: var(--f_color);
    margin-bottom: 20px;
}
.top_news_text p:last-child {
    margin-bottom: 0;
}
/*アイコン*/
.top_news_title_box::before,
.top_news_title_box::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    background-color: var(--m2_color);
    transition: var(--tr);
}
.top_news_title_box::before {
    top: 62px;
    right: 50px;
    transform: rotate(0deg);
}
.top_news_title_box::after {
    top: 62px;
    right: 50px;
    transform: rotate(90deg);
}
.top_news_title_box.is-close::before {
    transform: rotate(45deg);
}
.top_news_title_box.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
サービス内容ページ
-------------------------------------*/
.service_top {
    margin-bottom: 60px;
}
.service_box {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    padding: 50px;
    background: var(--b_color);
    border-radius: 20px;
}
.service_inner section:last-child .service_box {
    margin-bottom: 0;
}
.service_image {
    width: 29%;
    margin: 0 auto;
}
.service_image img {
    display: block;
    width: 100%;
    height: 300px;
}
.service_text {
    width: 65%;
}
.service_text h2 {
    margin-bottom: 30px;
    font: bold clamp(20px, 1.5vw, 24px) var(--font_ja);
    color: var(--m_color);
}
.service_list li {
    margin-bottom: 15px;
}
.service_list_title {
    margin-bottom: 5px;
    font: bold clamp(16px, 1.5vw, 18px) var(--font_ja);
    color: var(--f_color);
}
.service_list_title {
    position: relative;
    padding-left: 24px;
}
.service_list_title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m2_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}
.service_list li p {
    padding-left: 24px;
}

/*-------------------------------------
作業の流れページ
-------------------------------------*/
.flow_inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 100px 20px;
}
.flow_box {
    width: 100%;
}
.flow_image img {
    width: 100%;
    max-width: 120px;
    z-index: 2;
}
.flow_text span {
    font: bold clamp(18px, 2vw, 20px) var(--font_en);
    color: var(--m2_color);
}
.flow_text h2 {
    margin-bottom: 20px;
    font: bold clamp(24px, 2vw, 30px) var(--font_ja);
    color: var(--f_color);
}
.flow_image {
	width: 200px;
	height: 200px;
	display: flex;
	justify-content: center;
	align-items: center;
    background: var(--b_color);
    background: #a0dbfa;
    border-radius: 50%;
    text-align: center;
    margin-right: 40px;
}
.flow_image:before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 100px;
    z-index: -1;
    display: block;
    width: 0;
    height: calc(100% - 78px - 20px);
    height: 100%;
    border-right: 2px dotted var(--m2_color);
}
.flow_inner li:last-child .flow_image:before {
    display: none;
}
.flow_image p {
	width: 150px;
}
.flow_inner li section {
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}
.flow_inner li:last-child section {
    margin-bottom: 0;
}
.flow_inner li:last-child section::before {
    display: none;
}
.flow_text {
    font: normal clamp(15px, 2vw, 16px) var(--font_ja);
    width: calc(100% - 240px);
}
.flow_text_back {
    padding: 40px;
    background: var(--b_color);
    border-radius: 20px;
}
.flow_text > div > ul > li {
    margin-bottom: 20px;
}
.flow_text > div > ul > li:last-child {
    margin-bottom: 0;
}
.flow_text > div > ul > li li {
    list-style-type: disc;
    margin-left: 24px;
}
.flow_list_title {
    position: relative;
    padding-left: 24px;
    margin-bottom: 5px;
    font: bold clamp(16px, 1.5vw, 18px) var(--font_ja);
    color: var(--f_color);
}
.flow_list_title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m2_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/* お客様の声 */
.voice_inner {
    margin-top: 60px;
}
.reviews_text_strong {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 24px) var(--font_ja);
    color: var(--m2_color);

}
.voice_inner h3 {
    margin-bottom: 40px;
    font: normal clamp(20px, 2vw, 30px) var(--font_ja);
    text-align: center;
}
.voice_list {
    margin: 0 auto;
    justify-content: space-between;
}
.voice_list li {
    width: 48%;
    padding: 20px;
    background-color: #fff;
    border: solid 2px var(--m2_color);
}
.voice_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
}
.voice_list li {
    width: calc(100% / 2 - 15px);
    min-width: 360px;
    padding: 50px;
    border-radius: 20px;
}
.voice_box {
    margin-bottom: 15px;
    align-items: center;
}
.voice_right {
    width: 100%;
}
.voice_icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 16px;
}
.voice_evaluation {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.voice_star {
    color: #f90;
    line-height: 1.0;
    font: 900 clamp(16px, 2.0vw, 20px) var(--font_ja);
}
.voice_date {
    color: var(--m2_color);
    font: normal clamp(14px, 2.0vw, 16px) var(--font_ja);
    line-height: 1.2;
}
.voice_name {
    color: #546871;
    font-size: 16px;
    line-height: 1.2;
}
.voice_text {
    font-size: 16px;
    line-height: 1.7;
}

.flow_button {
    display: flex;
    align-items: center;
}
.flow_phone {
    margin-bottom: 20px;
}
.flow_phone a {
    display: block;
    font: bold clamp(24px, 3.0vw, 36px) var(--font_en);
    text-decoration: none;
    color: var(--m_color);
}
.flow_button a:hover {
    opacity: 0.8;
}

.flow_line a,
.flow_post a {
    position: relative;
    text-decoration: none;
    display: block;
}
.flow_line a {
    padding: 17px 30px 17px 15px;
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
}
.flow_post a {
    padding: 17px 30px 17px 15px;
    background: var(--m_color);
    color: var(--w_color);
    border-bottom: 6px solid #214a85;
}
.flow_line a:before,
.flow_post a:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
}
.flow_line a:before {
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.flow_post a:before {
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.flow_line i {
    font-size: 20px;
    color: var(--w_color);
    margin-right: 5px;
    vertical-align: middle;
}
.flow_post i {
    font-size: 20px;
    color: var(--w_color);
    margin-right: 5px;
    vertical-align: middle;
}
.flow_phone i {
    color: var(--m_color);
    margin-right: 10px;
    vertical-align: middle;
}
.flow_line,
.flow_post {
    text-align: center;
}
.flow_post {
    margin-left: 10px;
}

/*-------------------------------------
よくある質問
-------------------------------------*/
.faq_box {
    margin-bottom: 60px;
    background: var(--w_color);
}
.faq_inner section:last-child .faq_box {
    margin-bottom: 0;
}
.faq_box h2 {
    margin-bottom: 30px;
    font: bold clamp(18px, 3vw, 28px) var(--font_ja);
    color: var(--m_color);
    text-align: left;
}
.accordion ul {
    margin: 10px auto;
}
.accordion li {
    margin-bottom: 5px;
    color: var(--f_color);
    font-weight: normal;
}
.accordion li:last-child {
    margin-bottom: 0;
}
.accordion-hidden {
    display: none;
}
.accordion-open {
    display: block;
    padding: 20px 50px 20px 30px;
    background: var(--b_color);
    color: var(--f_color);
    cursor: pointer;
    position: relative;
}
.accordion-open::before,
.accordion-open::after {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--m_color);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
}
.accordion-open::after {
    transform: translateY(-50%) rotate(90deg);
    transition: .5s;
}
.accordion-hidden:checked+.accordion-open:after {
    transform: translateY(-50%) rotate(0);
}
.accordion-inner {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}
.question,
.answer {
    position: relative;
    color: var(--f_color);
    font-weight: bold;
}
.question,
.answer {
    padding-left: 30px;
}
.question::before,
.answer::before {
    font-size: 1.5em;
    display: block;
    position: absolute;
    left: 0;
}
.question::before {
    content: 'Q.';
    top: -4px;
    color: var(--m_color);
}
.answer::before {
    content: 'A.';
    top: 2px;
    color: var(--m2_color);
}
.accordion-hidden:checked+.accordion-open+.accordion-inner {
    height: auto;
    opacity: 1;
    padding: 10px 10px 10px 2.5em;
}
.accordion-box {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.accordion-hidden:checked+.accordion-open+.accordion-box {
    height: auto;
    opacity: 1;
    padding: 20px 20px 20px;
}

/*-------------------------------------
ブログページ
-------------------------------------*/
.blog_wrap {
    margin: 0 auto;
}
.blog_inner,
.single_inner,
.search_inner {
    order: 2;
    width: calc(100% - 250px);
}
.single_inner h1 {
    margin-bottom: 20px;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner > ul > li {
    margin-bottom: 50px;
}
.blog_photo {
    width: 280px;
}
.blog_photo img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 16/12;
}
.blog_text {
    width: calc(100% - 280px - 20px);
    margin-left: auto;
    padding: 10px;
}
.blog_tags {
    align-items: center;
}
.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:last-child {
    margin-right: 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;
    gap: 6px;
}
.single_inner .post-categories {
    margin-right: 20px;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 1px 10px;
    font-size: 0.8125rem;
    color: var(--w_color);
    text-decoration: none;
    border-radius: 5px;
}
.post-categories li a:hover {
    background: #405178;
}
.post-categories li a:hover:before {
    color: var(--w_color);
}
.post-categories li a:before {
    content: "\f07c";
    font: 100%/1 "font awesome 6 free";
    color: var(--w_color);
    display: inline-block;
    margin: 0 5px 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: #000;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
    align-items: center;
}

/*シングル　ページネーション*/
.single_pagenavi {
    margin-top: 20px;
}
.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: var(--w_color);
    text-decoration: none;
}
.single_pagenavi :before {
    color: var(--w_color);
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: var(--f_color);
}
.blog_clock time {
    color: var(--f_color);
    padding: 0 0 0 0;
    margin-left: 5px;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: var(--m_color);
    padding: 10px 20px;
    font-size: 25px;
    color: var(--w_color);
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-left: 5px solid var(--a_color);
    padding: 0 0 0px 10px;
}
.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;
    border-bottom: 1px solid #333;
    padding: 0 0 5px;
}
.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 p {
    margin: 0 0 25px;
    line-height: 1.8;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #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;
    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 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 0;
}
.single_pagenavi .next {
    margin: 0 0 0 auto;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--a_color);
    display: block;
    padding: 10px 30px;
    color: var(--f_color);
    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: var(--m_color);
    letter-spacing: 0.08em;
    border-bottom: 1px solid;
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: 900 clamp(16px, 1.2vw, 20px) var(--font_ja);
}
.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;
}
.side_container li img {
    object-fit: cover;
    height: auto;
    width: 100%;
    aspect-ratio: 12 / 9;
}

/*検索窓*/
.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 {
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    margin-right: 10px;
}
.wp-pagenavi .current {
    background: var(--a_color);
    color: var(--f_color);
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_box {
    margin-bottom: 60px;
    background: var(--w_color);
    justify-content: space-between;
    background: var(--b_color);
    /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); */
}
.contact_box span {
    font-weight: bold;
    color: var(--m_color);
}
.contact_image {
    width: 38%;
}
.contact_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.contact_text {
    width: 62%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 50px;
}
.contact_bottom_box {
    margin-bottom: 40px;
}
.contact_bottom_box p {
    text-align: center;
}
.contact_info {
    text-align: center;
    padding: 40px 20px;
    margin: 0 auto 5vw;
    background: var(--b_color);
    /* border: solid 2px var(--m2_color); */
    justify-content: center;
    align-items: center;
}
.contact_info p {
    margin-bottom: 10px;
}
.contact_info i {
    margin-right: 10px;
}

.contact_button a:hover {
    opacity: 0.8;
}
.contact_line a {
    padding: 17px 40px 17px 20px;
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
    position: relative;
    text-decoration: none;
    display: block;
    max-width: 280px;
    margin: 20px auto 0;
}
.contact_line a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.contact_line i {
    margin-right: 10px;
    vertical-align: middle;
    font-size: 20px;
    color: var(--w_color);
}
.contact_line {
    text-align: center;
    margin-left: 10px;
}

.contact_phone {
    margin-bottom: 20px;
}
.contact_phone a {
    display: block;
    font: bold clamp(30px, 3.0vw, 42px) var(--font_en);
    text-decoration: none;
    color: var(--m_color);
}
.contact_phone a i {
    color: var(--m_color);
    margin-right: 10px;
}


/*お問い合わせフォーム内*/
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    background: var(--w_color);
}
.wpcf7_left {
    display: block;
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
}
form.wpcf7-form .required:after,
form.wpcf7-form .arbitrary:after {
    width: auto;
    display: inline-block;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
form.wpcf7-form .required:after {
    content: "必須";
    background: #e74c3c;
    color: var(--w_color);
}
form.wpcf7-form .arbitrary:after {
    content: "任意";
    background: #999;
    color: var(--w_color);
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: 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;
}
.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-top: 10px;
}
.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;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder,
input::-moz-input-placeholder,
input::-ms-input-placeholder,
textarea::placeholder,
textarea::-ms-placeholder,
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(--w_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: #555;
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    background: var(--w_color);
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme > p {
    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: var(--b_color);
    border: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
}
#wpcf7cpcnf table td {
    background: var(--w_color);
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--a_color);
    color: var(--f_color);
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: var(--w_color);
    border: none;
}
.wpcf7 p {
    display: inline;
    }
/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: var(--b_color);
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.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;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
.footer_address {
    margin: 0 50px 0 0;
}
/* フッター */
.footer_inner {
    padding: 80px 20px;
    justify-content: center;
    width: 100%;
}
.footer_nav {
    margin-right: 40px;
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    margin: 0 30px 0 0;
    font-size: 0.8125rem;
    color: var(--f_color);
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    display: inline-block;
    margin: 0 3px 0 0;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    text-align: center;
    letter-spacing: 0.15em;

}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    margin-bottom: 20px;
}
.footer_address_box {
    width: 100%;
    text-align: left;
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_sns {
    margin-top: 5px;
    text-align: left;
}
.footer_sns a {
    font-size: 25px;
}
.footer_sns i {
    color: var(--f_color);
}

/*アドレス*/
.address_container {
    font-size: 0.8125rem;
    color: var(--f_color);
}
.address_container a {
    color: var(--f_color);
    text-decoration: none;
}
.address_container p {
    font-size: 16px;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--f_color);
    font-size: 0.6875rem;
    padding: 20px 0;
    background: var(--b_color);
}
.copyright p {
    color: var(--f_color);
    font-size: 0.8125rem;
}
.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: 60px;
    height: 60px;
    /* border-radius: 60px; */
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--w_color);
    border-left: 2px solid var(--w_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 1140px) {
    .header_img_inner_text {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%) translateX(0%);
    }
}

@media only screen and (min-width: 1101px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 1100px) {
    .sp_none {
        display: none;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        padding: 0px 0px 0 0;
    }
    .h_nav_wrap.is-fixed {
        padding: 0px 0px 0 0;
    }
    .h_nav_inner {
        padding: 0px 0 0px 20px;
    }
    .site_ttl {
        width: 320px;
        padding: 10px 0 10px;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 220px;
        padding: 10px 0;
    }
    .site_ttl a {
        display: block;
        color: var(--f_color);
        font-weight: bold;
        text-decoration: none;
        margin: 0 auto;
        transition: var(--tr);
    }

    /***** ハンバーガーメニュー *****/
    .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_wrap {
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 50px;
        text-decoration: none;
        color: var(--w_color);
        background: var(--m_color);
        z-index: 100;
        cursor: pointer;
        position: relative;
    }
    .menu-trigger {
        display: inline-block;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 0;
        transition: var(--tr);
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        width: 30px;
        height: 1px;
        background-color: var(--w_color);
        transition: var(--tr);
        transform: translate(-50%,-50%);
    }
    .h_nav_wrap.is-fixed .menu-trigger span {
        background-color: var(--w_color);
    }
    .menu_wrap.active span {
        background-color: var(--w_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
        left: calc(50% - 10px);
    }
    .menu_wrap.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
        left: calc(50% - 15px);
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
        left: calc(50% - 5px);
    }
    .menu_wrap.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu_wrap.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 7px;
        left: calc(50% - 15px);
    }
    .h_nav_inner {
        justify-content: space-between;
        transition: var(--tr);
    }
    .sp_h_nav {
        height: 100%;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--w_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }

    .sp_h_nav_inner ul {
        height: auto;
        margin: 0 0 10vw;
    }
    .sp_h_nav_inner .sp_h_nav_list li {
        margin: 0 0 15px;
    }
    .sp_h_nav_inner .sp_h_nav_list a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        text-align: center;
        font: 16px var(--font_ja);
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a {
        display: inline-block;
        background: var(--m2_color);
        border-radius: 5px;
        padding: 10px 30px;
        color: var(--w_color);
    }
    .sp_h_nav_inner .sp_h_nav_list li:last-child a i {
        color: var(--w_color);
        margin-right: 5px;
    }

    .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;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--a_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font: 900 25px/1 var(--font_en);
    }
    .sp_h_nav_tel a i {
        margin-right: 5px;
        color: var(--a_color);
    }
    .sp_h_nav_sns {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_h_nav_sns a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_h_nav_sns a i {
        color: var(--m_color);
    }
    .sp_h_nav_sns img {
        max-width: 28px;
    }
    /*ハンバーガーメニューここまで*/
}

@media only screen and (max-width: 820px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --single_mp: 80px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none {
        display: none !important;
    }
    .flex {
        display: block;
    }

        .site_ttl {
        width: 160px;
        padding: 10px 0 10px;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 120px;
        padding: 10px 0;
    }
    .menu_wrap {
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px 40px;
        text-decoration: none;
        z-index: 100;
        cursor: pointer;
        position: relative;
    }

/* ヘッダー画像 */
.header {
    position: relative;
    overflow: hidden;
}
.main_image_inner {
    max-width: 1920px;
    background: linear-gradient(172deg, var(--b_color) 0%, var(--b_color) 55%, var(--m2_color) 55%, var(--m2_color) 100%);
    margin: 0 auto;
    padding: 100px 20px 50px;
    width: 100%;
    height: 100%;
    position: relative;
}

.main_image_box {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    position: static;
    left: 50%;
    top: 50%;
    transform: translate(0,0);
    align-items: center;
}
.main_image_text {
    padding: 0;
    margin: 0 auto 20px;
    width: 100%;
}
.main_image_text p {
    font: 700 clamp(30px, 3vw, 60px) var(--font_ja);
    text-align: center;
    color: var(--f_color);
    margin-bottom: 0px;
}
.main_image {
    width: 100%;
    max-width: 320px;
}
.main_image img {
    width: 100%;
    margin: 0 auto;
}


.single_image_wrap {
    padding: 120px 20px 60px;
}

/*************************************/
.h_img_wrap {
    position: relative;
}
.header_img_container {
    position: relative;
    margin: 118px 0 0;
    width: 100%;
    height: 400px;
    background: var(--m_color);
    z-index: 0;
}
.other_h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    line-height: 1.5;
    width: 100%;
}

.top_service_wrap:before,
.top_company_wrap:before,
.top_blog_inner:before {
    display: none;
}


/*-------------------------------------
PC版追従バー
-------------------------------------*/
.side_banner {
    position: fixed;
    right: 0;
    top: 100px;
    transform: translateY(0);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 2;
    display: flex;
}
.side_banner a {
    color: var(--w_color);
    display: block;
    display: flex;
    font-size: 14px;
    justify-content: center;
    padding: 5px 5px;
    text-decoration: none;
    margin: 0px 0px;
    height: 250px;
    font-weight: bold;
}
.side_banner a i {
    margin: 0 auto 5px;
}

.header_img_inner_text_three {
    margin-bottom: 20px;
}

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        padding: 40px 20px;
    }
    .cta_mail a,
    .header_mail a {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-decoration: none;
        padding: 15px 20px;
    }
    .cta_mail, .cta_line {
        max-width: 360px;
        margin: 0 auto;
    }
.header_cta_inner .cta_mail {
    margin: 0 0px 10px 0;
}
.common_cta_wrap .cta_mail {
        margin:0 auto 10px;
    }
    .cta_mail a {
        width: 100%;
        margin: 0 auto;
    }
    .header_mail {
        max-width: 480px;
        margin: 0 auto;
    }
    .header_mail a {
        width: 100%;
    }
    .common_cta_inner a:hover {
        opacity: 0.8;
    }
    .cta_phone {
        margin-bottom: 20px;
    }
    .cta_phone_number {
        margin-right: 0;
    }

.top_about_inner {
    padding: 50px 0px 0;
}
.top_change_wrap {
    padding: 300px 20px 50px;
    background-position: 100% 0%;
    background-size: 500px;
}


/*-------------------------------------
TOP サービス内容
-------------------------------------*/
.top_service_box {
    padding: 50px 20px;
}
.top_service_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 30px;
    max-width: 1240px;
    margin: 0 auto 40px;
}
.top_service_list li {
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
    padding: 20px;
}
.top_service_list li:last-child {
    margin-bottom: 0;
}
.top_service_title {
    margin-bottom: 10px;
}
.top_service_image {
    margin: 0 auto 10px;
}
.top_service_image img {
    margin: 0 auto 0px;
    max-height: 60px;
    height: 100%;
}
.top_service_list p {
    text-align: center;
}

.top_company_box {
    margin-bottom: 60px;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}
.top_company_text {
    width: 100%;
}
.top_company_image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}

/*-------------------------------------
TOPページ 新着コラム記事
-------------------------------------*/
.top_blog {
    margin: 0 auto;
}
.top_blog_inner {
    padding: 50px 20px;
}
.top_column_list {
    max-width: 1240px;
    margin: 0 auto 40px;
}
.top_column_list > li {
    width: 100%;
    min-width: 100%;
    margin-bottom: 20px;
}
.single_inner h1 {
    margin-bottom: 20px;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner > ul > li {
    margin-bottom: 50px;
}
.top_blog_image img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 20px 20px 0 0;
}
.top_blog_text {
    text-align: left;
    padding: 20px;
}

    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .top_news_inner {

        margin: 0 auto 150px;
        padding: 150px 20px 0;
    }
    .top_news_list li:last-child {
        margin-bottom: 0;
    }
    .top_news_title {
        color: var(--f_color);
        font-weight: normal;
        padding-right: 55px;
    }
    .top_news_title a {
        text-decoration: none;
        color: var(--f_color);
    }
    .top_news_inner {
        margin: 0px auto 0px;
        padding: 50px 20px;
    }
    .top_news_list {
        width: 100%;
    }
    .top_news_title {
        padding-right: 55px;
    }
    .top_news_text {
        margin-top: 20px;
    }
    .top_news_text p {
        margin-bottom: 20px;
    }
    .top_news_text p:last-child {
        margin-bottom: 0;
    }
    .top_news_list {
        width: 100%;
    }
    .top_news_list > li {
        padding: 20px;
    }
    .top_news_category {
        font-size: 12px;
        margin-right: 30px;
    }



.top_news_title_box::before {
    top: 32px;
    right: 20px;
    transform: rotate(0deg);
}
.top_news_title_box::after {
    top: 32px;
    right: 20px;
    transform: rotate(90deg);
}
.top_news_title_box.is-close::before {
    transform: rotate(45deg);
}
.top_news_title_box.is-close::after {
    transform: rotate(-45deg);
}


/*-------------------------------------
サービス内容ページ
-------------------------------------*/
.service_top {
    margin-bottom: 20px;
}
.service_box {
    margin-bottom: 20px;
    padding: 20px;
}
.service_image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
}
.service_image img {
    width: 100%;
}
.service_text {
    width: 100%;
}
.service_text h2 {
    margin-bottom: 10px;
}
.service_list li {
    margin-bottom: 15px;
}
.service_list_title {
    margin-bottom: 5px;
}
.service_list_title {
    position: relative;
    padding-left: 24px;
}
.service_list_title:after {
    width: 16px;
    height: 16px;
    top: 6px;
    left: 0;
}
.service_list li p {
    padding-left: 24px;
}

/*-------------------------------------
作業の流れページ
-------------------------------------*/
.flow_inner {
    padding: 100px 20px;
}
.flow_image img {
    max-width: 120px;
}
.flow_text h2 {
    margin-bottom: 20px;
}
.flow_image {
	width: 200px;
	height: 200px;
    margin: 0 auto 20px;
}
.flow_image:before {
    display: none;
}
.flow_image p {
	width: 150px;
}
.flow_inner li section {
    margin-bottom: 50px;
}
.flow_inner li:last-child section {
    margin-bottom: 0;
}
.flow_inner li:last-child section::before {
    display: none;
}
.flow_text {
    width: 100%;
}
.flow_text_back {
    padding: 20px;
}
.flow_text > div > ul > li {
    margin-bottom: 20px;
}
.flow_text > div > ul > li:last-child {
    margin-bottom: 0;
}
.flow_text > div > ul > li li {
    margin-left: 24px;
}
.flow_list_title {
    padding-left: 24px;
    margin-bottom: 5px;
}
.flow_list_title:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    top: 6px;
    left: 0;
}

/* お客様の声 */
.voice_inner {
    margin-top: 20px;
}
.voice_inner h3 {
    margin-bottom: 20px;;
    text-align: center;
}
.voice_list li {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
    min-width: auto;
}
.voice_box {
    margin-bottom: 15px;
}
.voice_right {
    width: 100%;
}
.voice_evaluation {
    margin-bottom: 8px;
}

.flow_button {
    display: block;
    align-items: center;
}
.flow_phone {
    margin-bottom: 20px;
}
.flow_phone a {
    display: block;
    font: bold clamp(24px, 3.0vw, 36px) var(--font_en);
}
.flow_line a {
    padding: 17px 30px 17px 15px;
}
.flow_post a {
    padding: 17px 30px 17px 15px;
}
.flow_line a:before,
.flow_post a:before {
    position: absolute;
    right: 15px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
}
.flow_line {
    margin-bottom: 10px;
}
.flow_post {
    margin-left: 0;
}

/*-------------------------------------
よくある質問
-------------------------------------*/
.faq_box {
    margin-bottom: 60px;
    background: var(--w_color);
    /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.16); */
}
.faq_inner section:last-child .faq_box {
    margin-bottom: 0;
}
.faq_box h2 {
    margin-bottom: 30px;
    font: bold clamp(18px, 3vw, 28px) var(--font_ja);
    color: var(--m_color);
    text-align: left;
}
.accordion ul {
    margin: 10px auto;
}
.accordion li {
    margin-bottom: 5px;
    color: var(--f_color);
    font-weight: normal;
}
.accordion li:last-child {
    margin-bottom: 0;
}
.accordion-hidden {
    display: none;
}
.accordion-open {
    display: block;
    padding: 20px 50px 20px 20px;
}
.accordion-open::before,
.accordion-open::after {
    width: 20px;
    height: 2px;
    top: 50%;
    right: 20px;
}
.accordion-inner {
    display: block;
    height: 0;
    overflow: hidden;
    padding: 0;
    opacity: 0;
}
.question,
.answer {
    position: relative;
    color: var(--f_color);
    font-weight: bold;
}
.question,
.answer {
    padding-left: 30px;
}
.question::before,
.answer::before {
    font-size: 1.5em;
    display: block;
    position: absolute;
    left: 0;
}
.question::before {
    content: 'Q.';
    top: -4px;
    color: var(--m_color);
}
.answer::before {
    content: 'A.';
    top: 2px;
    color: var(--m2_color);
}
.accordion-hidden:checked+.accordion-open+.accordion-inner {
    height: auto;
    opacity: 1;
    padding: 10px 10px 10px 2.5em;
}
.accordion-box {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}
.accordion-hidden:checked+.accordion-open+.accordion-box {
    height: auto;
    opacity: 1;
    padding: 20px 20px 20px;
}

    /* 採用情報ページ */
    .summary_table table tr {
        border-bottom: none;
        padding: 0 !important;
        display: block;
    }
    .summary_table table tr:first-child {
        border-top: none;
    }
    .summary_table th,
    .summary_table td {
        display: block;
        width: 100%;
        padding: 10px 10px;
        text-align: left;
        border: none;
    }
    .summary_table th {
        margin-bottom: 5px;
    }

    .company_googlemap iframe {
        width: 100%;
        border: none;
        height: 450px;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }

    .footer_address {
        width: 100%;
        max-width: 600px;
        margin: 0 0px 20px 0;
    }
    .company_googlemap {
        height: 200px;
    }
    .company_googlemap iframe {
        width: 100%;
        border: none;
        height: 200px;
    }

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_box {
    margin-bottom: 30px;
}
.contact_image {
    width: 100%;
}
.contact_text {
    width: 100%;
    display: block;
    padding: 20px;
}
.contact_bottom_box {
    margin-bottom: 40px;
}
.contact_info {
    padding: 40px 20px;
    margin: 0 auto 5vw;
}
.contact_info p {
    margin-bottom: 10px;
}
.contact_info a {
    margin-bottom: 10px;
}
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
    }
    .wpcf7_right {
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer {
        background: var(--w_color);
        position: relative;
        z-index: 0;
        padding-bottom: 72px;
}
    .footer_inner {
        display: block;
        padding: 40px 20px;
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        padding: 20px;
        margin: 0 0 0;
    }

}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 60px;
        --single_mp: 60px;
        --m_ps30: 20px;
        --m_ps50: 30px;
        --m_ps60: 40px;
        --m_ps100: 50px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }
    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 16px;
        padding: 0;
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }

    /* TOPの見出し */
    .top_h2 {
        margin-bottom: 40px;
    }
    .top_h2 h2 {
        font: bold 16px var(--font_ja);
    }
    .top_h2 .data_text {
        margin-bottom: 15px;
        font: bold var(--h2_font) var(--font_en);
    }
    .heading_left {
        text-align: center;
    }

    /* TOP以外の見出し */
    .other_h2 h2 {
        letter-spacing: 0.15em;
        font: bold var(--h3_font) var(--font_ja);
        color: var(--f_color);
        text-align: center;
        z-index: 0;
        display: inline-block;
        font-weight: 900;
        position: relative;
    }
    .other_h2 {
        text-align: center;
        position: relative;
        margin-bottom: 50px;
    }
    .other_h2 h2:before {
        content: attr(data-text);
        position: absolute;
        text-transform: uppercase;
        color: #fff;
        z-index: -1;
        font: 900 clamp(22px, 12vw, 120px) var(--font_en);
        left: 50%;
        top: 35%;
        transform: translate(-50%, -50%);
        letter-spacing: 0.5vw;
    }


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

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

    /*-------------------------------------
    TOP 導入
    -------------------------------------*/
    .top_about_image {
        height: 70px;
        margin: 20px auto 10px;
    }
    .top_one_image {
        width: 200px;
        margin: 0 auto;
    }
    .top_one_text {
        width: 100%;
    }
    .top_one_text ul {
        max-width: 900px;
        margin: 60px auto 30px;
        display: block;
    }
    .top_one_text li {
        width: 100%;
    }
    .top_one_text li:first-child {
        margin-bottom: 40px;
    }
    .block-body {
        padding: 0 20px 20px;
        border-radius: 10px;
    }
    .block-title span {
        padding: 0px 10px 2px;
        margin: 0 0 0 4px;
        border-radius: 10px;
    }
    .block-title {
        margin: -20px 0 13px;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 140px);
        margin: 0;
    }
    .blog_photo {
        margin: 0 20px 0 0;
    }
    .blog_photo {
        width: 120px !important;
    }
    .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;
    }

    /*-------------------------------------
    パンくずリスト
    -------------------------------------*/
    .breadcrumbsinner {
        padding: 30px 20px;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: 100%;
        padding: 0;
        line-height: 1.0;
    }
    .sp_bar a {
        color: var(--w_color);
        padding: 10px 10px;
        display: block;
        /* font-size: 0.6875rem; */
        font-size: 13px;
        text-align: center;
        position: relative;
        text-decoration: none;
        line-height: 1.3;
    }
    .sp_bar li:nth-of-type(4) a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
        margin-bottom: 2px;
    }
    .sp_bar li a i {
        display: block;
        margin-bottom: 6px;
        color: var(--w_color);
    }
    .sp_bar li:nth-of-type(1) a {
        background: var(--m_color);
    }
    .sp_bar li:nth-of-type(2) a {
        background: var(--line_color);
    }
    .sp_bar li:nth-of-type(3) a {
        background: var(--m2_color);
    }
    .sp_bar li:nth-of-type(4) a {
        background: var(--f_color);
    }
    /* .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f3c0";
    }
    .sp_bar li:nth-of-type(3) :before {
        content: "\f095";
    } */
    .sp_bar li:nth-of-type(4) :before {
        content: "\f077";
    }
}