﻿@charset "UTF-8";
/*
Theme Name: tsunagute_MiRiSE_LP
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --a_color: #fabe00;
    --a_color2: #ee9100;
    --b_color: #ddd;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --border_r2: max(10px, min(20px, calc((100vw - 10px - 100%) * 9999)));
    --f_color: #533c15;
    --font_en: "din1451alt", san-serif;
    --font_ja: "LINESeedJP", san-serif;
    --gr: linear-gradient(45deg, var(--m_color) 0%, #007bd7 50%, #00beff 100%);
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 7vw, 55px);
    --m_color: #00a7db;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --main_mp: 100px;
    --main_w: min(100%, 1240px);
    --tr: 0.3s ease-out;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    -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;
}

.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*フェードアップアニメーション*/
.fadeUp {
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
    -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;
}

.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
    -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);
}

.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
    -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);
}

.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}

/*ボックスアニメーション*/
.block {
    overflow: hidden;
    position: relative;
    z-index: 0;
}

.block:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -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);
    width: 100%;
    z-index: 1;
}

.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}

.block:after {
    background-color: #555;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -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);
    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);
        opacity: 0;
        transform: scale(1.2);
        visibility: hidden;
    }

    to {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
        visibility: visible;
    }
}

.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}

.flex {
    display: -webkit-flex;
    display: flex;
}

.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex_c2 {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}

.flex_c_c {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}

.main_col {
    margin-bottom: var(--main_mp);
}

.main_pa {
    padding-bottom: var(--main_mp);
    padding-top: var(--main_mp);
}

.m_a {
    max-width: var(--main_w);
    padding-left: 20px;
    padding-right: 20px;
}

.m_lr {
    margin-left: auto;
    margin-right: auto;
}

.m_ps3 {
    margin-bottom: var(--m_ps3);
}

.m_ps5 {
    margin-bottom: var(--m_ps5);
}

.m_ps8 {
    margin-bottom: var(--m_ps8);
}

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

.mt10 {
    margin-top: 10px;
}

.mt20 {
    margin-top: 20px;
}

.mt30 {
    margin-top: 30px;
}

.mt40 {
    margin-top: 40px;
}

.mt50 {
    margin-top: 50px;
}

.mt60 {
    margin-top: 60px;
}

.mt70 {
    margin-top: 70px;
}

.mt80 {
    margin-top: 80px;
}

.mt90 {
    margin-top: 90px;
}

.mt100 {
    margin-top: 100px;
}

.fc {
    text-align: center;
}

.fl {
    text-align: left;
}

.fr {
    text-align: right;
}

.fb {
    font-weight: bold;
}

.annotation {
    color: gray;
    font-size: 13px;
}

address {
    font-style: normal;
}

.strong {
    background: linear-gradient(transparent 50%, rgb(0 167 219 / 20%) 50%);
}

.strong2 {
    background: linear-gradient(transparent 50%, rgb(250 190 0 / 20%) 50%);
    font-weight: bold;
}

/*ボタン*/
.common_btn {
    max-width: 350px;
    position: relative;
    z-index: 0;
}

.common_btn a {
    background: #fff;
    border: 3px solid var(--a_color);
    border-radius: var(--border_r2);
    color: var(--a_color);
    display: inline-block;
    font: bold 16px var(--font_ja);
    letter-spacing: 0.15em;
    padding: 20px 20px;
    position: relative;
    text-decoration: none;
    transition: var(--tr);
    /* width: 100%; */
    z-index: 0;
    display: block;
}

.common_btn a:before {
    border-right: 2px solid var(--a_color);
    border-top: 2px solid var(--a_color);
    content: "";
    display: block;
    height: 8px;
    margin-top: -2px;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
}

.common_btn:after {
    background: rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 8px;
    width: 100%;
    z-index: -1;
}

.common_btn a:hover {
    background-color: var(--a_color);
    color: #fff;
    transform: translate(0px, 8px);
}

.common_btn.fc {
    margin-left: auto;
    margin-right: auto;
}

/**/
.more_btn a {
    border: 2px solid;
    border-radius: 50px;
    box-shadow: 0 5px 0 rgb(0 167 219 / 10%);
    color: var(--m_color);
    display: block;
    font-weight: bold;
    padding: 20px 10px;
    position: relative;
    text-align: center;
    text-decoration: none;
}

.more_btn a:before {
    border-right: 2px solid var(--m_color);
    border-top: 2px solid var(--m_color);
    content: "";
    display: block;
    height: 8px;
    margin: -1px 0 0 0;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
}

.more_btn a:after {
    aspect-ratio: 1/1;
    border: 2px solid var(--m_color);
    border-radius: 50%;
    content: "";
    height: auto;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
}

/**/
.more_btn2 {
    min-width: 200px;
    width: min(250px, 20vw);
}

.more_btn2 a {
    background: var(--m_color);
    border-radius: 50px;
    box-shadow: 0 5px 0 rgb(0 167 219 / 10%);
    color: #fff;
    display: block;
    font-weight: bold;
    /* max-width: 250px; */
    padding: 10px 20px;
    position: relative;
    text-align: center;
    text-align: left;
    text-decoration: none;
    width: 100%;
}

.more_btn2 a:before {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    display: block;
    height: 8px;
    margin: -1px 0 0 0;
    position: absolute;
    right: 30px;
    top: 50%;
    transform: rotate(45deg) translateY(-50%);
    width: 8px;
}

.more_btn2 a:after {
    aspect-ratio: 1/1;
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
    height: auto;
    position: absolute;
    right: 17px;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
}

.more_btn2 a:hover {
    box-shadow: 0 0 0 rgb(0 167 219 / 10%);
    transform: translate(0px, 5px);
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    justify-content: space-between;
    margin-bottom: var(--m_ps5);
    position: relative;
    z-index: 0;
}

.common_cta_ttl {
    width: calc(100% / 3 - 2vw);
}

.common_cta_ttl div {
    font: 700 clamp(22px, 7vw, 45px) var(--font_ja);
    letter-spacing: 0.35vw;
    margin-bottom: 0;
    text-transform: uppercase;
}

.common_cta_phone {
    width: calc(100% / 3 - 2vw);
}

.common_cta_mail {
    width: calc(100% / 3 - 2vw);
}

.common_cta_wrap a {
    /* color: var(--f_color); */
    /* font: 700 clamp(20px, 6vw, 27px)/1 var(--font_ja); */
    /* text-decoration: none; */
}

.common_cta_img img {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 0 min(30px, 3vw);
    width: min(110px, 12vw);
}

.common_cta_img {
    border-left: 2px dotted var(--a_color2);
    border-right: 2px dotted var(--a_color2);
    width: 30%;
}

.common_cta_txt {
    padding: 0 0 0 var(--m_ps3);
    width: 70%;
}

.common_cta_txt p {
    font-size: 13px;
    margin-top: 5px;
}

.common_cta_txt p:nth-child(1) {
    font-size: 17px;
    margin-bottom: 10px;
}

.common_cta_txt .common_btn {
    position: relative;
}

.common_cta_txt .common_btn a {
    border-radius: var(--border_r);
    max-width: 100%;
    min-width: 200px;
}

.common_cta_txt .common_btn:after {
    border-radius: var(--border_r);
}

.common_cta_txt .common_btn a:hover:before {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}

body:not(.home):not(.single) h1,
body.single .h1,
body.tax-case-cat .h1 {
    background: rgba(255, 255, 255, 0.5);
    display: inline-block;
    font: 900 var(--h1_font) var(--font_ja);
    letter-spacing: 0.15em;
    margin: 0;
    padding: 40px 50px;
}

body:not(.home):not(.single) h1:after,
body.single .h1:after,
body.tax-case-cat .h1:after {
    background: var(--f_color);
    border-radius: 10px;
    content: "";
    display: block;
    height: 2px;
    letter-spacing: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    text-transform: uppercase;
    width: 100px;
}

.singleh1 {
    color: var(--f_color);
    font: 900 clamp(22px, 7vw, 35px) var(--font_ja);
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 20px;
    padding: 0;
}

h2 {
    font: 900 var(--h1_font) var(--font_ja);
    margin: 0 0 50px;
    position: relative;
}

.top_h2 {
    font: 900 clamp(25px, 3vw, 35px) / 1.3 var(--font_ja);
    z-index: 0;
}

.top_h2 h2:after {
}

.other_h2 {
    padding-left: min(90px, 12vw);
}

.other_h2:before {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 16px;
    width: min(70px, 10vw);
}

h3 {
    font-size: clamp(20px, 3vw, 25px);
    font-weight: bold;
    margin: 0 0 50px;
    position: relative;
}

h3:after {
    background: var(--m_color);
    content: "";
    display: block;
    height: 2px;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
    top: 20px;
    width: 100px;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    border: 10px solid var(--a_color);
    overflow: hidden;
    position: relative;
}

.wrap:before {
    background: url(img/header/header_bg.jpg) no-repeat left top / 78%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    pointer-events: none;
}

body:not(.home) .wrap {
    border-bottom: none;
    /* background: url(img/bg.gif); */
    margin: 0 auto;
    max-width: 1920px;
    overflow: hidden;
}

.main_wrap {
    padding-bottom: var(--main_mp);
    padding-top: var(--main_mp);
    position: relative;
}

body.home .main_wrap {
    padding-bottom: 0;
}

.main_wrap:before {
    aspect-ratio: 500/558;
    background: url(img/bg06.jpg) no-repeat 117% 0 / contain;
    bottom: -7%;
    content: "";
    position: absolute;
    right: -3%;
    width: min(500px, 25vw);
    z-index: -1;
}

/*-------------------------------------
header
-------------------------------------*/
.header {
    position: relative;
}

/* サイトタイトル */
.site_ttl {
    left: 0vw;
    line-height: 0;
    margin: 0;
    position: absolute;
    top: -14%;
    transition: var(--tr);
    width: min(250px, 13vw);
    z-index: 1;
}

body:not(.home) .site_ttl {
    bottom: 71%;
    /* top: -23%; */
    top: auto;
}

.site_ttl a {
    align-items: center;
    color: var(--f_color);
    display: flex;
    font-weight: bold;
    height: 100%;
    justify-content: center;
    margin: 0 auto;
    text-decoration: none;
    transition: var(--tr);
}

.site_ttl a img {
    height: 100%;
    width: 100%;
}

.site_ttl a:hover {
    opacity: 0.7;
}

/*ナビ*/
.h_nav_wrap {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
    margin-left: auto;
    padding: 0 50px 0;
    transition: var(--tr);
    width: 100%;
}

.pc_h_nav li {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
}

.pc_h_nav > ul > li:after {
    aspect-ratio: 1/1;
    background: rgb(0 167 219 / 50%);
    border-radius: 3px;
    content: "";
    display: block;
    height: auto;
    left: 8px;
    position: absolute;
    top: 9px;
    width: 10px;
}

.pc_h_nav a {
    color: var(--f_color);
    font: 700 clamp(13px, 1.5vw, 17px) var(--font_ja);
    height: 100%;
    padding: 0 min(25px, 2vw) 0;
    text-decoration: none;
    transition: var(--tr);
    z-index: 0;
}

.pc_h_nav > ul > li > a {
    padding-bottom: 10px;
}

.pc_h_nav > ul > li:first-child > a {
}

.pc_h_nav > ul > li:last-child > a {
    padding-right: 0;
}

.pc_h_nav a:hover {
    opacity: 0.8;
}

.pc_h_nav > ul > li:last-child:hover > a {
    opacity: 0.8;
}

.pc_h_nav ul ul {
    left: 1px;
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 100%;
    width: 250px;
    z-index: 9998;
}

.pc_h_nav ul ul li {
    height: 0;
    overflow: hidden;
    transition: var(--tr);
}

.pc_h_nav ul ul li a,
.pc_h_nav ul ul li .a {
    align-items: center;
    background: #fff;
    border: 3px solid var(--a_color);
    border-radius: 13px;
    display: flex;
    display: block;
    padding: 12px 20px;
    width: 100%;
}

.pc_h_nav ul ul li .a {
    font-weight: bold;
    height: 58px;
}

.pc_h_nav > ul > li:hover > ul > li {
    height: 60px;
    overflow: visible;
    padding: 2px 0;
    width: 100%;
}

.pc_h_nav > ul > li:hover ul li:last-child {
    border-bottom: none;
}

.pc_h_nav > ul > li ul li ul {
    left: -260px;
    list-style: none;
    margin: 0;
    padding: 0;
    padding-right: 10px;
    position: absolute;
    top: 2px;
    width: 260px;
    z-index: 9999;
}

.pc_h_nav > ul > li > ul > li:hover > ul > li {
    height: 56px;
    overflow: visible;
}

/*************************************/
.h_img_wrap {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 90vw;
    z-index: 0;
}

.h_img_wrap:before {
    aspect-ratio: 162/150;
    /* background: url(img/header/header_cover.svg) no-repeat 50% 50% / contain; */
    content: "";
    height: auto;
    left: -1px;
    position: absolute;
    top: -2px;
    width: 25vw;
}

.header_txt {
    aspect-ratio: 638/155;
    height: auto;
    left: 2%;
    position: absolute;
    top: 56%;
    width: 30vw;
}

.header_mv {
}

.header_mv img {
    border-radius: var(--border_r2);
    height: 100%;
    max-height: calc(100vh - 135.2px - var(--m_ps3) - 10px);
    object-fit: cover;
    width: 100%;
}

body:not(.home) .h_img_wrap {
    background: url(img/header/header.png) no-repeat 50% 0 / cover;
    border-radius: var(--border_r2);
    padding-bottom: var(--main_mp);
    padding-left: 20px;
    padding-right: 20px;
    padding-top: calc(var(--main_mp) * 2);
    text-align: center;
}

body.page-template-staff .h_img_wrap {
    background: url(img/header/header_other/header_other_company.png) no-repeat 50% 0 / cover;
}
body.page-template-company .h_img_wrap {
    background: url(img/header/header_other/header_other_company.png) no-repeat 50% 0 / cover;
}

body.page-template-guide .h_img_wrap {
    background: url(img/header/header_other/header_other_guide.png) no-repeat 50% 0 / cover;
}

body.page-template-medical .h_img_wrap {
    background: url(img/header/header_other/header_other_medical.png) no-repeat 50% 50% / cover;
}

body.page-template-faq .h_img_wrap {
    background: url(img/header/header_other/header_other_faq.png) no-repeat 50% 50% / cover;
}

body.page-template-flow .h_img_wrap {
    background: url(img/header/header_other/header_other_flow.png) no-repeat 50% 0 / cover;
}

body.page-template-choice .h_img_wrap {
    background: url(img/header/header_other/header_other_choice.png) no-repeat 50% 0 / cover;
}

/* body.page-template-company .h_img_wrap {
    background: url(img/header/header_other/header_other_company.png) no-repeat 50% 0% / cover;
} */

/* body.page-template-staff .h_img_wrap {
    background: url(img/header/header_other/header_other_staff.png) no-repeat 50% 0% / cover;
}
 */
body.page-template-contact .h_img_wrap {
    background: url(img/header/header_other/header_other_contact.png) no-repeat 50% 50% / cover;
}

body.post-type-archive-case .h_img_wrap,
body.single-case .h_img_wrap {
    background: url(img/header/header_other/header_other_case.png) no-repeat 50% 50% / cover;
}

body.post-type-archive-voice .h_img_wrap,
body.single-voice .h_img_wrap {
    background: url(img/header/header_other/header_other_voice.png) no-repeat 50% 50% / cover;
}

body.post-type-archive-news .h_img_wrap,
body.single-news .h_img_wrap {
    background: url(img/header/header_other/header_other_news.png) no-repeat 50% 75% / cover;
}

body.post-type-archive-seminar-info .h_img_wrap,
body.single-seminar-info .h_img_wrap {
    background: url(img/header/header_other/header_other_seminar.png) no-repeat 50% 0 / cover;
}

body.page-template-blog .h_img_wrap,
body.single-post .h_img_wrap {
    background: url(img/header/header_other/header_other_blog.png) no-repeat 50% 0 / cover;
}

.h_nav_inner {
    justify-content: flex-end;
}

.h_nav_inner_inner {
    padding: 30px 3vw 0 0;
}

.h_nav_inner_cta {
    margin-bottom: 20px;
    margin-left: auto;
    width: min(500px, 50vw);
}

.h_nav_other {
    /* padding-bottom: 15px; */
}

.h_nav_other > div a {
    align-items: center;
    border-radius: 0 0 8px 8px;
    color: #fff;
    display: flex;
    flex-flow: column;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: bold;
    height: calc(100% - 10px);
    justify-content: center;
    padding: 10px;
    text-decoration: none;
}

.h_nav_other > div a img {
    margin-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    width: min(28px, 20vw);
}

.h_nav_other > div:nth-child(1) a {
    background: var(--m_color);
    margin-right: 10px;
    min-width: 104px;
}

.h_nav_other > div:nth-child(2) a {
    background: var(--a_color);
}

.h_nav_other > div:hover a {
    filter: saturate(150%);
}

.h_nav_other > div:nth-child(2):hover a {
    filter: saturate(550%);
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_wrap {
}

.top_con01_inner {
    background: url(img/bg01.jpg);
    border-radius: var(--border_r2);
    justify-content: space-between;
    padding: var(--m_ps8) min(80px, 5vw);
}

.top_con01_desc {
    justify-content: space-between;
}

.top_con01_desc h2 {
    font: bold clamp(20px, 3vw, 28px) var(--font_ja);
    padding-right: 2vw;
    text-align: center;
    width: fit-content;
}

.top_con01_desc h2 > span {
    color: var(--a_color2);
    font: 900 clamp(25px, 4vw, 45px) / 1.3 var(--font_ja);
}

.top_con01_desc p {
    width: 68%;
}

.top_con01_wrap ul {
    justify-content: space-between;
}

.top_con01_wrap li {
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 56% 44% 70% 30% / 29% 55% 45% 71%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: var(--m_ps3) var(--m_ps5);
    width: calc(100% / 3 - 2vw);
}

.top_con01_wrap li:nth-child(2) {
    border-radius: 34% 66% 33% 67% / 61% 55% 45% 39%;
}

.top_con01_wrap li:nth-child(3) {
    border-radius: 50% 50% 54% 46% / 48% 33% 67% 52%;
}

.top_con01_img {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.top_con01_txt {
    font: bold clamp(16px, 4vw, 20px) var(--font_ja);
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: url(img/bg04.jpg) no-repeat 117% 0 / contain;
    padding-top: var(--main_mp);
}

.top_con02_wrap h2 {
    font: 900 clamp(18px, 3vw, 32px) var(--font_ja);
    padding-left: 20px;
    padding-right: 20px;
}

.top_con02_wrap h2 span {
    font: 900 clamp(25px, 3vw, 35px) / 1.3 var(--font_ja);
}

.top_con02_wrap h2:before {
    aspect-ratio: 220/150;
    background: url(img/icon03.svg) no-repeat 50% / contain;
    bottom: calc(100% + 10px);
    content: "";
    left: 50%;
    min-width: 80px;
    position: absolute;
    transform: translateX(-50%);
    width: min(150px, 10vw);
}

.top_con02_inner {
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
}

.top_con02_chld {
    background: #fff;
    border: 10px solid rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    width: 47%;
}

.top_con02_chld h3 {
    background: #fff;
    border: solid 5px #fef2cc;
    color: var(--a_color2);
    display: inline-block;
    font: 900 clamp(16px, 3vw, 22px) var(--font_ja);
    margin: 0 -30px;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 15px 10px;
    position: relative;
    text-align: center;
    width: calc(100% + 60px);
}

.top_con02_chld02 h3 {
    border-color: #ccedf8;
    color: var(--m_color);
}

.top_con02_chld h3:before {
    border: none;
    border-bottom: solid 15px transparent;
    border-right: solid 20px #e3d8b2;
    content: "";
    left: -4px;
    position: absolute;
    top: calc(100% + 5px);
}

.top_con02_chld h3:after {
    background: none;
    border: none;
    border-bottom: solid 15px transparent;
    border-left: solid 20px #e3d8b2;
    height: auto;
    left: auto;
    margin: 0;
    position: absolute;
    right: -4px;
    top: calc(100% + 5px);
    width: auto;
}

.top_con02_chld02 h3:before {
    border-right: solid 20px #aad5e4;
}

.top_con02_chld02 h3:after {
    border-left: solid 20px #aad5e4;
}

.top_con02_chld02 {
    border-color: rgb(0 167 219 / 20%);
}

.top_con02_chld_ttl01 {
    background: #fef2cc;
    border-radius: 100px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px;
    text-align: center;
    width: 90%;
}

.top_con02_chld02 .top_con02_chld_ttl01 {
    font: bold clamp(17px, 3vw, 19px) var(--font_ja);
}

.top_con02_chld02 .top_con02_chld_ttl02 {
    background: #ccedf8;
    border-radius: 100px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px;
    text-align: center;
    width: 90%;
}

.top_con02_chld_ttl02:before {
}

.top_con02_chld_ttl02:after {
}

.top_con02_chld ul {
    padding: 20px 3vw 40px;
}

.top_con02_chld li {
    margin-bottom: 15px;
    padding-left: 44px;
    position: relative;
}

.top_con02_chld li:last-child {
    margin-bottom: 0;
}

.top_con02_chld ul:nth-of-type(1) li:before {
    aspect-ratio: 10/10;
    aspect-ratio: 1/1;
    background: url(img/top/icon_ok.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: -2px;
    width: 35px;
}

.top_con02_chld ul:nth-of-type(2) li:before {
    aspect-ratio: 1/1;
    background: url(img/top/icon_ng.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: -1px;
    width: 35px;
}

/*-------------------------------------
TOP 3コンテンツ目
-------------------------------------*/
.top_con03_wrap {
    position: relative;
}

.top_con03_wrap:before {
    background: url(img/bg02.jpg);
    border-radius: var(--border_r2);
    color: #e5f6fb;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1000px, 60%);
    z-index: -1;
}

.top_con03_inner {
}

.top_con03_ttl,
.top_con04_ttl {
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--m_ps5);
}

.top_con03_inner h2,
.top_con04_inner h2 {
    margin-bottom: 0;
    padding-left: min(90px, 10vw);
}

.top_con03_inner h2:before,
.top_con04_inner h2:before {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 11px;
    width: min(70px, 10vw);
}

.top_con03_inner ul {
    justify-content: space-between;
}

.top_con03_inner li {
    width: calc(100% / 3 - 2vw);
}

.top_con03_inner li {
    background: #fff;
    /* border: 5px solid rgb(0 167 219 / 20%); */
    border-radius: var(--border_r2);
    box-shadow: 0 5px 0 rgb(72 60 52 / 10%);
    padding: 10px;
    transition: var(--tr);
}

.top_con03_inner li:hover {
    box-shadow: none;
    transform: translate(0px, 5px);
}

.top_con03_img {
    aspect-ratio: 16/9;
    border-radius: var(--border_r2);
    overflow: hidden;
}

.top_con03_txt {
    padding: 30px 10px 20px;
}

.top_con03_txt h3 {
    font-size: clamp(16px, 3vw, 20px);
    margin-bottom: 0;
}

.top_con03_txt h3:after {
    content: none;
}

/*-------------------------------------
TOP 4コンテンツ目
-------------------------------------*/
.top_con04_wrap {
}

.top_con04_inner {
}

.top_con04_inner > ul {
    justify-content: space-between;
}

.top_con04_inner > ul > li {
    width: calc(100% / 3 - 2vw);
}

/*-------------------------------------
TOP 5コンテンツ目
-------------------------------------*/
.top_con05_wrap {
    position: relative;
    z-index: 0;
}

.top_con05_wrap:before {
    aspect-ratio: 740/776;
    background: url(img/bg05.jpg) no-repeat 117% 0 / contain;
    content: "";
    position: absolute;
    right: 81%;
    top: -12%;
    width: min(400px, 21vw);
    z-index: -1;
}

.top_con05_inner {
    margin-top: var(--m_ps3);
}

.top_con05_img {
    position: relative;
}

.top_con05_img img {
    border-radius: var(--border_r2);
}

.top_con05_ttl {
    background: #fff;
    border-radius: 0 var(--border_r2) 0 0;
    margin-top: -99.5px;
    padding: 30px 20px;
    position: relative;
    width: 45%;
}

.top_con05_ttl:before {
    aspect-ratio: 1/1;
    background: url(img/border_point01.svg) no-repeat 50% 50% / contain;
    bottom: calc(100% + -1px);
    content: "";
    left: -1px;
    position: absolute;
    transform: scale(-1, 1);
    width: 2vw;
}

.top_con05_ttl:after {
    aspect-ratio: 1/1;
    background: url(img/border_point01.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    left: 100%;
    position: absolute;
    transform: scale(-1, 1);
    width: 2vw;
}

.top_con05_ttl h2 {
    margin-bottom: 0;
    padding-left: min(90px, 7vw);
}

.top_con05_ttl h2:before {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 11px;
    width: min(70px, 6vw);
}

/*-------------------------------------
TOP 6コンテンツ目
-------------------------------------*/
.top_con06_wrap {
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.top_con06_wrap div {
    width: 48%;
}

.top_con06_wrap div a {
    background: #f3f3f3;
    border-radius: var(--border_r2);
    box-shadow: 0 5px 0 rgb(72 60 52 / 10%);
    display: block;
    height: 200px;
    overflow: hidden;
}

.top_con06_wrap div a:hover {
    box-shadow: none;
    transform: translate(0px, 5px);
}

/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.new_wrap {
    background: #fff;
    border-radius: var(--border_r2) 0 0 0;
    border-top: none;
    bottom: 0;
    max-width: 780px;
    padding: 40px 0 var(--m_ps3) var(--m_ps3);
    position: relative;
    position: absolute;
    right: 0;
    width: 100%;
}

.new_wrap:before {
    aspect-ratio: 1/1;
    background: url(img/border_point01.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    position: absolute;
    right: 100%;
    width: 2vw;
}

.new_wrap:after {
    aspect-ratio: 1/1;
    background: url(img/border_point01.svg) no-repeat 50% 50% / contain;
    bottom: 100%;
    content: "";
    position: absolute;
    right: 0;
    width: 2vw;
}

.new_wrap h2 {
    color: var(--m_color);
    font-size: 20px;
    letter-spacing: 0.1vw;
    margin-bottom: 25px;
    padding-left: 48px;
    width: fit-content;
    z-index: 0;
}

.new_wrap h2:before {
    aspect-ratio: 1/1;
    background: url(img/header/header_news_icon.svg) 50% 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
}

.new_wrap h2:after {
    background: rgb(250 190 0 / 50%);
    border-radius: 3px;
    bottom: 6px;
    content: "";
    display: block;
    height: 12px;
    left: 41px;
    position: absolute;
    width: 90%;
    z-index: -1;
}

.new_inner {
    justify-content: space-between;
}

.new_inner > div a {
    /* padding: 10px 20px; */
    /* text-align: left; */
}

time {
    display: block;
    font: 16px/1 var(--font_ja);
    margin-right: 10px;
}

.new_list {
}

.new_list li {
}

.new_list li a {
    text-decoration: none;
}

.new_item_date {
    align-items: center;
    margin-bottom: 10px;
}

.new_item_date time {
    font-size: 14px;
}

.new_item_cat {
    background: var(--a_color);
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    margin-right: 30px;
    padding: 5px 10px;
}

.new_item_ttl {
    font-weight: bold;
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
    display: block;
}

.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}

.top_sns_wrap > div {
    width: 100%;
}

.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}

.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}

.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}

.insta_img_list .item {
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: calc(100% / 5 - 5px);
    z-index: 0;
}

.insta_img_list .item a {
    /* height: 100%; */
    aspect-ratio: 1/1;
    display: block;
    position: relative;
}

.insta_img_list .item img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    background: rgb(255 255 255);
    padding: 30px 50px 0;
    width: 100%;
}

.breadcrumbs {
    background: none;
    font-size: 0.875rem;
    line-height: 1.5;
    position: relative;
    width: 100%;
}

.breadcrumbs a,
.breadcrumbs span {
    color: var(--f_color);
    font-family: var(--font_ja);
    font-size: 14px;
    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;
}

/*-------------------------------------
はじめての方へページ
-------------------------------------*/
.guide_desc {
    max-width: 700px;
}

.guide_desc div {
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.guide_con01 {
    background: url(img/bg01.jpg);
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.guide_con01_inner {
    background: #fff;
    border: 10px solid var(--a_color);
    border-radius: var(--border_r2);
    justify-content: space-between;
    padding: var(--m_ps8) var(--main_mp);
    position: relative;
}

.guide_con01_inner h2 {
    background: var(--a_color);
    border-radius: 100px;
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps3);
    margin-bottom: var(--m_ps8);
    margin-left: auto;
    margin-right: auto;
    margin-top: -119px;
    padding: 10px 50px;
    padding-left: 50px;
    text-align: center;
    width: fit-content;
}

.guide_con01_img {
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: min(900px, 70vw);
}

.guide_con01_txt {
    background: #fff;
}

.guide_con02 h2 {
}

.guide_con02 h2 > span {
    display: block;
}

.guide_con02 h2 > span span {
    color: var(--m_color);
    font: 900 clamp(25px, 7vw, 55px) / 1.3 var(--font_ja);
    margin-right: 5px;
}

.guide_con02 ol {
    justify-content: space-between;
}

.guide_con02 li {
    border: 5px solid var(--m_color);
    border-radius: var(--border_r2);
    box-shadow: 0 0 0 10px rgb(0 167 219 / 20%);
    padding: var(--m_ps3);
    position: relative;
    width: calc(100% / 5 - 2vw);
}

.guide_con02 li:not(:last-child):before {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: calc(100% + -1px);
    position: absolute;
    top: 50%;
    transform: rotate(90deg) translateY(-50%);
    width: min(27px, 10vw);
}

.guide_con02_img {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 70px;
}

.guide_con02_no {
    background: var(--m_color);
    color: #ffffff;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    padding: 5px 10px;
}

.guide_con02_no span {
    color: #ffffff;
    line-height: 1;
}

.guide_con02_ttl {
    font-weight: bold;
    line-height: 1.6;
}

.guide_con02 .more_btn2 {
    margin-left: auto;
    margin-right: auto;
}

.guide_con03 {
    background: url(img/bg02.jpg);
}

.guide_con03_inner {
    justify-content: space-between;
    position: relative;
}

.guide_con03_inner h2 {
}

.guide_con03_inner h2 > span {
}

.guide_con03_inner h2 > span span {
    color: var(--m_color);
    font: 900 clamp(35px, 4vw, 55px) var(--font_ja);
}

.guide_con03_inner ol {
    padding-left: var(--m_ps5);
    position: relative;
}

.guide_con03_inner ol:before {
    aspect-ratio: 8/30;
    background: url(img/bg03.svg) repeat-y 50% / contain;
    content: "";
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 4px;
}

.guide_con03_inner li:not(:last-child) {
    margin-bottom: var(--main_mp);
}

.guide_con03_item {
    align-items: flex-start;
    justify-content: space-between;
}

.guide_con03_img {
    position: relative;
    width: 45%;
}

.guide_con03_img img {
    border-radius: var(--border_r2);
    overflow: hidden;
}

.guide_con03_txt {
    width: 50%;
}

.guide_con03_txt_txt {
    background: #fff;
    border-radius: var(--border_r2);
    padding: var(--m_ps5);
}

.guide_con03_subttl {
    color: var(--a_color);
    font: bold clamp(20px, 7vw, 30px) var(--font_ja);
    font-weight: bold;
    left: 5%;
    position: absolute;
    text-shadow:
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff,
        0 0 3px #fff;
    top: -13%;
}

.guide_con03_subttl span {
    color: var(--a_color);
    font: 900 clamp(22px, 7vw, 50px) var(--font_ja);
}

.guide_con03_ttl {
    color: var(--m_color);
    line-height: 1.5;
    margin-bottom: 20px;
    padding-left: 3vw;
}

.guide_con03_ttl:before {
    aspect-ratio: 162/150;
    background: url(img/icon06.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    min-width: 30px;
    position: absolute;
    top: -6px;
    width: 3vw;
}

.guide_con03_ttl:after {
    content: none;
}

.guide_con04 {
    position: relative;
    z-index: 1;
}

.guide_con04 h2:after {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    width: min(70px, 15vw);
}

/*-------------------------------------
医療・介護関係者の方へページ
-------------------------------------*/
.medical_inner {
}

.medical_desc {
    max-width: 700px;
}

.medical_desc > div {
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.medical_con01 h2 {
    border-bottom: 4px dotted var(--a_color);
    border-top: 4px dotted var(--a_color);
    padding-bottom: 20px;
    padding-top: 20px;
}

.medical_con01 h2 span {
    font-size: clamp(22px, 7vw, 32px);
    font-weight: 900;
    margin-left: 10px;
    margin-right: 10px;
}

.medical_con01 img {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
}

.medical_con01_bottom_ttl {
    font-size: var(--h1_font);
    font-weight: bold;
    padding-left: 20px;
    padding-right: 20px;
}

.medical_con01_bottom_ttl span {
    font-size: clamp(25px, 7vw, 45px);
    font-weight: 900;
}

.medical_con01_bottom_ttl:before {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) repeat-y 50% 0 / contain;
    content: "";
    display: block;
    height: min(116px, 9vw);
    margin-bottom: var(--m_ps3);
    margin-left: auto;
    margin-right: auto;
    transform: scale(1, -1);
    width: min(65px, 5vw);
}

.medical_con02 {
    background: #fff;
    border: 10px solid rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    padding: var(--m_ps5);
    position: relative;
    width: 95%;
    z-index: 1;
}

.medical_con02 h2 {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -8%;
    max-width: 800px;
}

.medical_con02 > div {
    font: 900 clamp(18px, 3vw, 32px) var(--font_ja);
    margin-bottom: var(--m_ps5);
    text-align: center;
}

.medical_con02 > div:after {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    width: min(70px, 13vw);
}

/*-------------------------------------
よくある質問ページ
-------------------------------------*/
.faq_desc_link > div {
    min-width: 250px;
}

.faq_desc_link > div:nth-child(1) {
    margin-right: var(--m_ps3);
}

.faq_inner {
    border: 10px solid var(--a_color);
    border-radius: 25px;
    padding: var(--m_ps8) var(--m_ps5) var(--m_ps5);
    position: relative;
}

.faq_inner2 {
    background: #fff;
    border-color: var(--m_color);
    border-radius: 25px;
    position: relative;
    z-index: 1;
}

.faq_inner h2 {
    background: var(--a_color);
    border-radius: 100px;
    color: #fff;
    left: 50%;
    margin-bottom: 0;
    max-width: 400px;
    padding: 5px 30px;
    position: absolute;
    text-align: center;
    top: -32px;
    transform: translateX(-50%);
    width: 100%;
}

.faq_inner2 h2 {
    background: var(--m_color);
}

.faq_inner dl {
    counter-reset: number 0;
}

.faq_inner dt {
    border-bottom: 4px dotted var(--a_color);
    font-size: clamp(18px, 3vw, 20px);
    font-weight: bold;
    margin-bottom: 20px;
    padding: 15px 10px 15px 60px;
    position: relative;
}

.faq_inner2 dt {
    border-color: var(--m_color);
}

.faq_inner dt:before {
    aspect-ratio: 145/150;
    background: url(img/circle01.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 11px;
    width: 45px;
}

.faq_inner dt.odd:before {
    background: url(img/circle02.svg) no-repeat 50% / contain;
}

.faq_inner dt:after {
    color: #fff;
    content: counter(number);
    counter-increment: number 1;
    font-size: clamp(18px, 7vw, 23px);
    left: 15px;
    position: absolute;
    top: 16px;
}

.faq_inner dd {
    background: rgb(249 190 0 / 10%);
    border-radius: var(--border_r);
    margin-bottom: var(--m_ps3);
    padding: 20px 10px 0;
    padding: var(--m_ps3);
    position: relative;
}

.faq_inner2 dd {
    background: rgb(0 167 219 / 10%);
}

.faq_inner dd:before {
    content: "";
    position: absolute;
}

.faq_inner dd:last-child {
    margin-bottom: 0;
}

/*-------------------------------------
ご入居までの流れページ
-------------------------------------*/
.flow_desc {
    max-width: 700px;
}

.flow_desc div {
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.flow_inner {
    counter-reset: number 0;
}

.flow_inner li {
    align-items: flex-start;
    background: #fff;
    border: 10px solid rgb(0 167 219 / 20%);
    border-radius: var(--border_r2);
    justify-content: space-between;
    padding: var(--m_ps5);
    position: relative;
    z-index: 1;
}

.flow_inner li:nth-child(even) {
    border-color: rgb(250 190 0 / 20%);
}

.flow_inner li {
    margin-bottom: var(--m_ps5);
    position: relative;
}

.flow_inner li:last-child {
    margin-bottom: 0;
}

.flow_inner li:not(:last-child):before {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) no-repeat;
    content: "";
    height: auto;
    left: 50%;
    position: absolute;
    top: calc(100% + 4%);
    transform: scale(1, -1) translateX(-50%);
    width: min(40px, 10vw);
}

.flow_img {
    border-radius: 10px;
    box-shadow: 0 5px 0 rgb(0 167 219 / 20%);
    overflow: hidden;
    width: 30%;
}

.flow_inner li:nth-child(even) .flow_img {
    box-shadow: 0 5px 0 rgb(254 242 204);
}

.flow_img img {
}

.flow_txt {
    width: 65%;
}

.flow_ttl {
    font: bold clamp(20px, 4vw, 25px) var(--font_ja);
    margin-bottom: 20px;
    padding-left: 55px;
    position: relative;
}

.flow_ttl:before {
    aspect-ratio: 145/150;
    background: url(img/circle01.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: -4px;
    width: 45px;
}

.flow_inner li.odd .flow_ttl:before {
    background: url(img/circle02.svg) no-repeat 50% / contain;
}

.flow_ttl:after {
    color: #fff;
    content: counter(number);
    counter-increment: number 1;
    font-size: clamp(18px, 7vw, 23px);
    left: 15px;
    position: absolute;
    top: 2px;
}

.flow_txt_txt {
}

.flow_txt_link {
}

.flow_txt_link > div:nth-child(1) {
    margin-right: var(--m_ps5);
}

.flow_txt_link > div:nth-child(1) img {
    width: min(300px, 20vw);
}

/*-------------------------------------
ホーム選びのポイントページ
-------------------------------------*/
.choice_desc {
    margin-bottom: calc(var(--main_mp) * 1.8);
    max-width: 700px;
}

.choice_desc div {
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.choice_inner > ol {
    margin-top: var(--main_mp);
}

.choice_inner > ol > li {
    background: #fff;
    border: 10px solid var(--a_color);
    border-radius: var(--border_r2);
    margin-bottom: calc(var(--main_mp) * 1.5);
    padding: var(--m_ps8);
    position: relative;
    z-index: 1;
}

.choice_inner > ol > li:last-child {
    margin-bottom: 0;
}

.choice_inner > ol > li:after {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) no-repeat;
    content: "";
    height: auto;
    left: 50%;
    position: absolute;
    top: calc(100% + 46px);
    transform: scale(1, -1) translateX(-50%);
    width: min(40px, 30vw);
}

.choice_inner > ol > li:last-child:after {
    content: none;
}

.choice_step {
}

.choice_step_ttl {
    left: 50%;
    max-width: 700px;
    position: absolute;
    top: -78px;
    transform: translateX(-50%);
    width: 100%;
}

.choice_step_ttl div {
    color: var(--a_color);
    font: bold clamp(18px, 7vw, 23px) var(--font_ja);
    padding-left: min(115px, 14vw);
    text-transform: uppercase;
}

.choice_step_ttl h2 {
    background: var(--a_color);
    border-radius: 100px;
    color: #fff;
    font-size: clamp(18px, 3vw, 32px);
    margin: 0;
    padding: 10px var(--m_ps5);
    position: relative;
    text-align: center;
}

.choice_step_ttl h2:before {
    aspect-ratio: 61/61;
    background: url(img/case/h_icon02.svg) no-repeat 50% 50% / contain;
    bottom: 100%;
    content: "";
    left: 22px;
    position: absolute;
    top: auto;
    width: min(85px, 10vw);
}

.choice_step01_cld h3 {
    font: bold var(--h1_font) var(--font_ja);
}

.choice_step01_cld h3:after {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    width: min(70px, 10vw);
}

.choice_step01_cld ol {
}

.choice_step01_cld li {
    background: rgb(250 190 0 / 10%);
    border-radius: var(--border_r2);
    justify-content: space-between;
    margin-bottom: var(--m_ps5);
    padding: var(--m_ps5);
}

.choice_step01_cld li:last-child {
    margin-bottom: 0;
}

.choice_step01_txt {
    width: 70%;
}

.choice_step01_img {
    display: flex;
    flex-flow: column;
    justify-content: center;
    width: 25%;
}

.choice_step01_img img {
    width: 100%;
}

.choice_step01_subttl {
    background: #fff;
    border-radius: 50px;
    color: var(--a_color2);
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    margin-right: 10px;
    max-width: 150px;
    padding: 7px 10px;
    text-align: center;
    text-decoration: none;
    width: 100%;
}

.choice_step01_ttl {
    color: var(--a_color2);
    font: 900 clamp(21px, 3vw, 25px) var(--font_ja);
    margin-bottom: var(--m_ps3);
}

.choice_step02_img {
    justify-content: space-between;
}

.choice_step02_img div {
    width: calc(100% / 3 - 2vw);
}

.choice_step02_img img {
}

.choice_step02_cld .choice_step01_ttl {
    position: relative;
    text-align: center;
}

.choice_step02_cld .choice_step01_ttl:before {
    aspect-ratio: 220/150;
    background: url(img/icon03.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    width: min(100px, 10vw);
}

.choice_step02_cld .choice_step01_txt {
    width: 100%;
}

.choice_step02_cld_cld {
}

.choice_step02_cld_cld_item {
    background: #ffffff;
    border-radius: 100px;
    margin-bottom: 30px;
    padding: 20px var(--m_ps5);
}

.choice_step02_cld_cld_item > div {
    font: bold clamp(18px, 3vw, 20px) var(--font_ja);
    margin-bottom: 0;
    padding-left: min(42px, 10vw);
    position: relative;
}

.choice_step02_cld_cld_item > div:before {
    aspect-ratio: 1/1;
    background: url(img/header_news_icon.svg) no-repeat 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 0;
    width: min(30px, 10vw);
}

.choice_step02_cld_cld_item > p {
    padding-left: min(42px, 10vw);
}

.choice_step03 h3 {
    border-bottom: 4px dotted var(--a_color);
    border-top: 4px dotted var(--a_color);
    font: 900 var(--h1_font) var(--font_ja);
    padding-bottom: 20px;
    padding-top: 20px;
}

.choice_step03 h3:after {
    content: none;
}

.choice_step03 ol {
}

.choice_step03 li {
}

.choice_step03 h3 {
    border-bottom: 4px dotted var(--a_color);
    border-top: 4px dotted var(--a_color);
    font: 900 var(--h1_font) var(--font_ja);
    padding-bottom: 20px;
    padding-top: 20px;
}

.choice_step03 h3:after {
    content: none;
}

.choice_step03 ol {
    counter-reset: number 0;
    justify-content: space-between;
}

.choice_step03 li {
    border: 5px solid var(--m_color);
    border-radius: var(--border_r2);
    box-shadow: 0 0 0 10px rgb(0 167 219 / 20%);
    padding: calc(var(--m_ps3) * 1.2) var(--m_ps3) var(--m_ps3);
    position: relative;
    width: calc(100% / 3 - 2vw);
}

.choice_step03 li:before {
    background: var(--m_color);
    border-radius: 100px;
    color: #fff;
    content: "POINT" counter(number, decimal-leading-zero);
    counter-increment: number 1;
    font: 900 clamp(18px, 3vw, 22px) var(--font_ja);
    left: 50%;
    padding: 0 20px;
    position: absolute;
    top: -23px;
    transform: translate(-50%, 0);
}

.choice_step03_cld_img {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
}

.company_con01 {
}

.company_con01_inner {
    justify-content: space-between;
}

.company_con01_img {
    width: 45%;
}

.company_con01_img img {
    border-radius: var(--border_r2);
}

.company_con02 {
    background: url(img/bg01.jpg);
}

.company_con02_inner {
}

.company_con02_inner h2:after {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2vw;
    width: min(70px, 10vw);
}

.company_con02_inner ul {
    justify-content: center;
}

.company_con02_inner li {
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 56% 44% 70% 30% / 29% 55% 45% 71%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin: 0 1.5vw;
    padding: var(--m_ps3) var(--m_ps5);
    position: relative;
    width: calc(100% / 2 - 2vw);
}

.company_con02_inner li:nth-child(2) {
    border-radius: 34% 66% 33% 67% / 61% 55% 45% 39%;
}

.company_con02_inner li:nth-child(3) {
    border-radius: 50% 50% 54% 46% / 48% 33% 67% 52%;
}

.company_con02_subttl {
    display: flex;
    font: clamp(16px, 3vw, 20px) var(--font_ja);
    justify-content: center;
    margin-bottom: var(--m_ps3);
    text-align: center;
    text-transform: uppercase;
}
.company_con02_subttl:before {
    aspect-ratio: 162/150;
    background: url(img/icon06.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    margin-right: 3px;
    max-width: 30px;
    width: 29px;
}

.company_con02_img {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.company_con02_ttl {
    background: linear-gradient(transparent 60%, var(--a_color) 60%);
    font: 700 clamp(20px, 3vw, 25px) var(--font_ja);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    width: fit-content;
}

.company_con02_inner li p {
}

.company_con01_txt {
    width: 48%;
}

.company_name {
    font: 900 var(--h1_font) var(--font_ja);
    text-align: right;
}

.company_inner dl {
    border-top: 1px solid #ddd;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.company_inner dt {
    border-bottom: 1px solid #ddd;
    float: left;
    padding: 23px 0;
    width: 27.27%;
}

.company_inner dd {
    border-bottom: 1px solid #ddd;
    float: left;
    padding: 23px 0;
    width: 72.73%;
}
.company_inner dd .sp_flex span {
}
.company_inner dd img {
    margin-right: 5px;
    max-width: 30px;
}

.company_googlemap iframe {
    border: none;
    height: 450px;
    width: 100%;
}

/*cta部分に画像挿入*/
.company_desc {
    margin-bottom: var(--m_ps5);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 48px;
}
.company_desc div {
}
.company_desc div img {
}

/*-------------------------------------
スタッフ紹介ページ
-------------------------------------*/
.staff_inner ul {
    flex-wrap: wrap;
    justify-content: space-between;
}
.staff_inner ul:after {
    content: "";
    width: calc(100% / 3 - 2vw);
}

.staff_inner li:not(:nth-child(1)) {
    margin-bottom: var(--m_ps8);
    position: relative;
    width: calc(100% / 3 - 2vw);
    z-index: 1;
}

.staff_inner li:nth-child(1) {
    justify-content: space-between;
    margin-bottom: var(--m_ps8);
    width: 100%;
}

.staff_inner li:not(:nth-child(1)) .staff_img {
    margin-bottom: 20px;
}

.staff_inner li:nth-child(1) .staff_img {
    border-radius: var(--border_r2);
    overflow: hidden;
    position: relative;
    width: 45%;
}

.staff_inner li:not(:nth-child(1)) .staff_img {
    position: relative;
}

.staff_inner li:not(:nth-child(1)) .staff_img_pos {
    background: var(--a_color);
    border-radius: 50px;
    color: #fff;
    left: var(--m_ps3);
    padding: 5px 30px;
    position: absolute;
    top: 20px;
    font-size: clamp(12px, 3vw, 16px);
}

.staff_inner li:nth-child(1) .staff_img_pos {
    background: var(--a_color);
    border-radius: 50px;
    color: #fff;
    margin-bottom: 30px;
    padding: 5px 30px;
    width: fit-content;
}

.staff_inner li:not(:nth-child(1)) .staff_img_img {
    border-radius: var(--border_r2);
    margin-bottom: 20px;
    overflow: hidden;
}

.staff_inner li:nth-child(1).staff_img_img {
}

.staff_inner li:nth-child(1) .staff_txt {
    justify-content: center;
    width: 47%;
}

.staff_name {
    color: var(--m_color);
    font: bold clamp(17px, 3vw, 22px) var(--font_ja);
    margin-right: 10px;
}

.staff_kana {
    color: var(--m_color);
    text-transform: uppercase;
}

/*-------------------------------------
採用情報ページ
-------------------------------------*/
.recruit_wrap dl {
    border-top: 1px solid #ddd;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.recruit_wrap dt {
    border-bottom: 1px solid #ddd;
    float: left;
    padding: 23px 0;
    width: 27.27%;
}

.recruit_wrap dd {
    border-bottom: 1px solid #ddd;
    float: left;
    padding: 23px 0;
    width: 72.73%;
}

/*-------------------------------------
セミナー講師依頼ページ
-------------------------------------*/
.seminar_inner {
}

.seminar_desc {
    max-width: 700px;
}

.seminar_desc div {
    font: 900 var(--h1_font) var(--font_ja);
    margin-bottom: var(--m_ps5);
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.seminar_con01 {
}

.seminar_con01 section {
    border: 10px solid var(--a_color);
    border-radius: var(--border_r);
    box-shadow: 0 0 0 10px rgb(250 190 0 / 20%);
    padding: var(--m_ps5);
    width: 47%;
}

.seminar_con01_inner {
    justify-content: space-between;
}

.seminar_con01_img {
    margin-bottom: var(--m_ps3);
}

.seminar_con01_inner h2 {
    margin-bottom: var(--m_ps3);
    text-align: center;
}

.seminar_con01_inner h2:before {
    aspect-ratio: 61/61;
    background: url(img/case/h_icon02.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    width: min(70px, 10vw);
}

.seminar_con01_inner h2:after {
    background: var(--a_color);
    border-radius: 10px;
    content: "";
    display: block;
    height: 5px;
    margin-top: 10px;
    width: 100%;
}

.seminar_con01 .more_btn2 {
    margin-left: auto;
}

.seminar_con02 {
}

.seminar_con02 ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

.seminar_con02 li {
    position: relative;
    width: calc(100% / 2 - 2vw);
    z-index: 1;
}

.seminar_con02 li div {
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
}

.seminar_con02 li div:before {
    aspect-ratio: 1/1;
    background: url(img/seminar/man.svg) no-repeat 50% / contain;
    content: "";
    display: inline-block;
    width: min(80px, 10vw);
}

.seminar_con02 li div.uman:before {
    background: url(img/seminar/uman.svg) no-repeat 50% / contain;
}

.seminar_con02 li p {
    background: #d9f2fa;
    border-radius: 10px;
    margin-bottom: var(--m_ps3);
    padding: var(--m_ps5);
    position: relative;
}

.seminar_con02 li p:before {
    border-bottom: 15px solid #d9f2fa;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    display: block;
    height: 0;
    left: 20px;
    position: absolute;
    top: -15px;
    width: 0;
}

.seminar_con02 li:nth-child(2) p,
.seminar_con02 li:nth-child(3) p {
    background: rgb(250 190 0 / 15%);
}

.seminar_con02 li:nth-child(2) p:before,
.seminar_con02 li:nth-child(3) p:before {
    border-bottom: 15px solid rgb(250 190 0 / 15%);
}

/*-------------------------------------
セミナー情報 アーカイブページ
-------------------------------------*/
.seminar-info_inner li {
    position: relative;
    z-index: 1;
}

.seminar-info_inner li:not(:last-child) {
    border-bottom: 4px dotted var(--a_color);
    margin-bottom: var(--m_ps8);
    padding-bottom: var(--m_ps8);
}

.seminar-info_inner li section {
    align-items: flex-start;
    justify-content: space-between;
}

.seminar-info_img {
    aspect-ratio: 16/9;
    border: 10px solid rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    padding: 15px;
    width: 37%;
}

.seminar-info_img a {
    border-radius: var(--border_r);
    display: block;
    overflow: hidden;
}

.seminar-info_img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.seminar-info_txt {
    width: 58%;
}

.seminar-info_txt h2 {
    font: 900 clamp(16px, 3vw, 32px) var(--font_ja);
    margin-bottom: 20px;
}

.seminar-info_txt h2 a {
    text-decoration: none;
}

.seminar-info_txt_table {
    border: 2px solid var(--a_color);
    border-radius: var(--border_r);
    margin-bottom: var(--m_ps3);
}

.seminar-info_txt_table > div:not(:last-child) {
    border-bottom: 2px solid var(--a_color);
}

.seminar-info_txt_table .th {
    align-items: center;
    background: rgb(250 190 0 / 10%);
    display: flex;
    font-weight: bold;
    justify-content: center;
    padding: 10px;
    width: 27.27%;
}

.seminar-info_txt_table .td {
    align-items: center;
    display: flex;
    padding: 7px 30px;
    width: 72.73%;
}

.seminar-info_txt .more_btn2 {
    margin-left: auto;
}

/*-------------------------------------
セミナー情報 末端ページ
-------------------------------------*/
.single_seminar-info_inner .share_sns_container {
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: 0;
    width: fit-content;
}

.single_seminar-info_desc h2 {
    color: var(--a_color2);
    font-size: clamp(20px, 7vw, 25px);
    margin-bottom: 10px;
    padding-left: min(50px, 7vw);
}

.single_seminar-info_desc h2::before {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 19px;
    width: min(40px, 6vw);
}

.single_seminar-info_inner {
    position: relative;
    z-index: 1;
}

.single_seminar-info_inner .singleh1 {
    margin-bottom: 50px;
}

.single_seminar-info_img img {
    margin-left: auto;
    margin-right: auto;
}

.seminar-info_cta {
    border: 5px solid var(--a_color);
    border-radius: var(--border_r);
    margin-left: auto;
    margin-right: auto;
    padding: var(--m_ps3) var(--m_ps5);
    width: fit-content;
}

.seminar-info_cta_ttl {
    margin-bottom: var(--m_ps3);
    margin-top: -11%;
    text-align: center;
    width: min(700px, 100%);
}

.seminar-info_cta_inner {
    align-items: center;
    justify-content: center;
}

.seminar-info_cta_inner > div:nth-child(1) {
    margin-right: var(--m_ps5);
    width: min(300px, 30vw);
}

/*-------------------------------------
ご相談事例 アーカイブページ
-------------------------------------*/
body.tax-case-cat h1 {
    display: block !important;
    margin-bottom: 50px !important;
    padding: 0 !important;
}

body.tax-case-cat h1:after {
    content: none !important;
}

/*********/

.case_inner > ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

.case_inner > ul > li {
    background: #fff;
    border: 10px solid var(--a_color);
    border-radius: var(--border_r2);
    box-sizing: border-box;
    margin-bottom: var(--m_ps5);
    padding: 3.5vw;
    position: relative;
    z-index: 1;
}

.case_inner > ul > li:nth-child(10) {
    margin-bottom: var(--main_mp);
}

.case_inner li section {
    justify-content: space-between;
}

.case_no {
    align-items: center;
    color: var(--a_color);
    display: flex;
    font: var(--h1_font) var(--font_ja);
    justify-content: center;
    width: min(100px, 20vw);
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.case_no span {
    color: var(--a_color);
    font: var(--h1_font) var(--font_ja);
}

.case_txt {
    width: calc(100% - 100px - 2vw);
}

.case_txt time {
    margin-bottom: 10px;
}

.case_txt h2 {
    color: var(--f_color);
    font: bold clamp(18px, 3vw, 24px) var(--font_ja);
    margin-bottom: var(--m_ps3);
}

.case_txt h2 a {
    color: var(--f_color);
    font: bold clamp(18px, 3vw, 24px) var(--font_ja);
    text-decoration: none;
}

/*-------------------------------------
ご相談事例 末端ページ
-------------------------------------*/
.single_case_wrap {
    max-width: 1000px;
}

.single_case_cat {
}

.single_case_main h2 {
    font-size: clamp(20px, 3vw, 30px);
}

.single_case_cat li a {
    border: 1px solid;
    border-radius: 3px;
    color: var(--m_color);
    display: block;
    line-height: 1;
    margin-right: 10px;
    padding: 5px 10px;
    text-decoration: none;
}

.single_case_con01_wrap {
    background: #fff;
    border: 10px solid var(--a_color);
    border-radius: 20px;
    box-shadow: 0 5px 0 rgb(72 60 52 / 5%);
    padding: var(--m_ps5) var(--m_ps5) var(--m_ps5);
}

.single_case_con01 h2,
.single_case_con02 h2 {
    color: var(--a_color2);
    font-size: clamp(20px, 5vw, 25px);
    margin-bottom: 20px;
    padding-left: min(50px, 7vw);
}

.single_case_con01 h2:before,
.single_case_con02 h2:before {
    aspect-ratio: 300/73;
    background: url(img/h_icon.svg) no-repeat 50% 50% / contain;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: 10px;
    width: min(40px, 6vw);
}

.single_case_con01 dl,
.single_case_con02 dl {
    flex-wrap: wrap;
}

.single_case_con01 dt,
.single_case_con02 dt {
    font-weight: bold;
    margin-bottom: 15px;
    width: 27.27%;
}

.single_case_con01 dt span,
.single_case_con02 dt span {
    align-items: center;
    background: rgb(250 190 0 / 10%);
    border-radius: 60px;
    display: flex;
    justify-content: center;
    padding: 10px;
}

.single_case_con01 dd,
.single_case_con02 dd {
    margin-bottom: 15px;
    margin-bottom: 15px;
    padding: 10px;
    width: 72.73%;
}

.single_case_con01 dt:last-child,
.single_case_con02 dt:last-child,
.single_case_con01 dd:last-child,
.single_case_con02 dd:last-child {
    margin-bottom: 0;
}

.single_case_con03 {
}

.single_case_con03 h2 {
    background: var(--a_color);
    border-radius: 50px;
    font-size: clamp(20px, 3vw, 25px);
    padding: 10px 10px;
    text-align: center;
}

.single_case_con03 h2 span {
    position: relative;
}

.single_case_con03 h2 span:before {
    aspect-ratio: 61/61;
    background: url(img/case/h_icon01.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    position: absolute;
    right: 100%;
    width: min(85px, 10vw);
}

.single_case_con04 {
}

.single_case_con04 h2 {
    margin-bottom: 30px;
    padding-left: min(95px, 13vw);
    width: fit-content;
}

.single_case_con04 h2:before {
    aspect-ratio: 61/61;
    background: url(img/case/h_icon02.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    height: auto;
    left: 0;
    position: absolute;
    top: auto;
    width: min(85px, 15vw);
}

.single_case_con04 h2:after {
    background: var(--m_color);
    border-radius: 10px;
    content: "";
    display: block;
    height: 5px;
    margin-top: 10px;
    width: 100%;
}

.single_case_con04 > div {
    background: rgb(0 167 219 / 7%);
    border-radius: 10px;
    padding: var(--m_ps5);
    position: relative;
}

.single_case_con04 > div:before {
    border-bottom: 15px solid rgb(0 167 219 / 7%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    content: "";
    display: block;
    height: 0;
    left: 20px;
    position: absolute;
    top: -15px;
    width: 0;
}

.single_case_con05 {
    position: relative;
    z-index: 1;
}

.single_case_con05 h2 {
    background: var(--m_color);
    border-radius: 50px;
    color: #fff;
    font-size: clamp(20px, 3vw, 25px);
    padding: 10px 10px;
    text-align: center;
}

.single_case_con05 h2 span {
    color: #fff;
    position: relative;
}

.single_case_con05 h2 span:before {
    aspect-ratio: 61/61;
    background: url(img/case/h_icon03.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    position: absolute;
    right: calc(100% + 2%);
    width: min(85px, 13vw);
}

.single_case_con05 h2 span:after {
    aspect-ratio: 121/60;
    background: url(img/case/h_icon04.svg) no-repeat 50% 50% / contain;
    bottom: 0;
    content: "";
    height: auto;
    left: calc(100% + 5%);
    position: absolute;
    width: min(110px, 13vw);
}

.single_case_con05 > div {
}

.single_case_con05_1 {
    background: #fff;
    border: 10px solid var(--a_color);
    border-radius: 10px;
    box-shadow: 0 5px 0 rgb(72 60 52 / 5%);
    /* padding-bottom: var(--m_ps5); */
    position: relative;
}

.single_case_con05_1:before {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) no-repeat 50% 50% / contain;
    bottom: calc(100% + 10%);
    content: "";
    height: auto;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) scale(1, -1);
    width: min(50px, 10vw);
}

.single_case_con05_1 h3 {
    background: var(--a_color);
    margin-bottom: 0;
    padding: 5px 10px 15px;
    z-index: 0;
}

.single_case_con05_1 h3:after {
    content: none;
}

.single_case_con05_1 h3 span {
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    position: relative;
    width: fit-content;
}

.single_case_con05_1 h3 span:after {
}

.single_case_con05_1 > div {
    padding: var(--m_ps5);
}

/*-------------------------------------
お客様の声 アーカイブページ
-------------------------------------*/
.voice_inner ul {
    flex-wrap: wrap;
    justify-content: space-between;
}

.voice_inner li {
    background: #fff;
    border-radius: var(--border_r2);
    box-shadow: 0 5px 0 rgb(72 60 52 / 10%);
    margin-bottom: var(--m_ps5);
    overflow: hidden;
    padding: 10px;
    position: relative;
    width: calc(100% / 2 - 2vw);
    z-index: 1;
}

.voice_img {
    aspect-ratio: 16/9;
    border-radius: var(--border_r2);
    overflow: hidden;
    position: relative;
}

.voice_img:before {
    background: rgb(0 167 219 / 10%);
    content: "";
    height: 100%;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.voice_img img {
    height: 100%;
    object-fit: cover;
    object-position: 0 0;
    width: 100%;
}

.voice_txt {
    justify-content: space-between;
    padding: var(--m_ps5) var(--m_ps3);
}

.voice_txt_left {
    background: #fff;
    border-radius: 10px;
    margin-bottom: calc(((100vh - var(--m_ps3)) / 8) * -1);
    margin-top: calc(((100vh - var(--m_ps3)) / 8) * -1);
    padding: var(--m_ps3);
    position: relative;
    text-orientation: upright;
    width: 120px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    z-index: 1;
}

.voice_txt_left div {
    display: block;
}

.voice_txt_left h2 {
    font-size: clamp(17px, 3vw, 23px);
    margin-bottom: 0;
}

.voice_txt_left h2 a {
    display: block;
    text-decoration: none;
}

.voice_txt_right {
    width: calc(100% - 120px - 2vw);
}

/*-------------------------------------
お客様の声 末端ページ
-------------------------------------*/
.single_voice_inner time {
    margin-bottom: 10px;
}

.single_voice_inner h1 {
    margin-bottom: 10px;
}

.single_voice_desc {
    margin-bottom: var(--m_ps5);
}

.single_voice_desc div:not(:last-child) {
    margin-right: 10px;
}

.single_voice_img {
    background: #fff;
    border: 10px solid rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
    padding: var(--m_ps3);
    position: relative;
    z-index: 1;
}

.single_voice_img img {
    height: auto;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/*-------------------------------------
お知らせ アーカイブページ
-------------------------------------*/
.news_inner ul {
    border-top: 5px solid rgb(250 190 0 / 20%);
}

.news_inner li {
    border-bottom: 5px solid rgb(250 190 0 / 20%);
    cursor: pointer;
    padding: 20px min(var(--main_mp), 10vw) 20px min(100px, 6vw);
    position: relative;
    z-index: 1;
}

.news_inner li:before {
    aspect-ratio: 167/150;
    background: url(img/icon01.svg) no-repeat 50% / contain;
    content: "";
    display: block;
    height: auto;
    position: absolute;
    right: min(var(--main_mp), 5vw);
    top: 44%;
    transform: rotate(90deg);
    width: min(20px, 10vw);
}

.news_inner li section {
    align-items: center;
}

.news_inner time {
    margin-right: var(--m_ps3);
}

.news_inner time p {
    color: var(--a_color);
    font: bold clamp(12px, 7vw, 14px) var(--font_ja);
}

.news_inner time span {
    color: var(--a_color);
    font: 900 clamp(23px, 7vw, 35px) var(--font_ja);
}

.news_inner li h2 {
    line-height: 1;
    margin-bottom: 0;
}

.news_inner li a {
    color: var(--f_color);
    font: bold 16px/1.8 var(--font_ja);
    text-decoration: none;
}

.news_inner_cat {
    background: var(--a_color);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    padding: 0 20px;
    width: fit-content;
}

/*-------------------------------------
お知らせ 末端ページ
-------------------------------------*/
.single_news_wrap {
    max-width: 1000px;
}

.single_news_inner {
    position: relative;
    z-index: 1;
}

.single_news_top {
    align-items: flex-end;
    margin-bottom: 10px;
}

.single_news_top time p {
    color: var(--a_color);
    font: bold clamp(12px, 7vw, 14px) var(--font_ja);
}

.single_news_top time span {
    color: var(--a_color);
    font: 900 clamp(23px, 7vw, 35px) var(--font_ja);
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap,
.single_wrap {
    justify-content: space-between;
    margin: 0 auto;
}

.blog_inner,
.single_inner,
.search_inner {
    order: 2;
    width: calc(100% - 250px - 5vw);
}

.my_result_count {
    margin: 0 0 20px;
}

.blog_inner > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog_inner > ul > li {
    margin-bottom: var(--m_ps5);
    position: relative;
    width: calc(100% / 2 - 2vw);
}

.blog_photo {
    aspect-ratio: 267/150;
    border-radius: var(--border_r2);
    box-shadow: 0 5px 0 rgb(72 60 52 / 10%);
    height: auto;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
    transition: var(--tr);
    width: 100%;
}

.blog_photo:hover {
    box-shadow: none;
    transform: translate(0px, 5px);
}

.blog_photo a {
    display: block;
    height: 100%;
    -webkit-mask-image: url(img/blog_mask.svg);
    mask-image: url(img/blog_mask.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    position: relative;
    width: 100%;
}

.blog_photo:before {
    aspect-ratio: 150/151;
    background: url(img/icon02.svg) no-repeat 50% 50% / contain;
    height: auto;
    position: absolute;
    /* content: ""; */
    right: 0;
    top: 20px;
    width: min(100px, 10vw);
}

.blog_photo img {
    aspect-ratio: 267/150;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.blog_mask {
}

.blog_text {
}

.blog_title {
    line-height: 1;
    margin: 0;
    text-align: left;
}

.blog_title::after {
    content: none;
}

.blog_title a {
    color: var(--f_color);
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
    text-decoration: none;
}

.post-categories li {
    margin: 0 10px 5px 0;
}

.blog_clock time {
    font-size: 0.8125rem;
    margin: 0;
}

.blog_inner .blog_clock {
    position: absolute;
    right: 0.5vw;
    top: 0.2vw;
}

.blog_inner .blog_clock span:nth-child(1) {
    color: var(--a_color2);
    display: block;
}

.blog_inner .blog_clock span:nth-child(2) {
    color: var(--a_color2);
    display: block;
    font: clamp(22px, 2vw, 22px) / 1 var(--font_ja);
}

.post-categories {
    align-items: center;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.post-categories li a {
    border: 1px solid;
    border-radius: 20px;
    color: var(--m_color);
    display: inline-block;
    font-size: 0.8125rem;
    line-height: 1;
    padding: 5px 10px;
    text-decoration: none;
}

.post-categories li a:hover {
    background: var(--m_color);
    color: #fff;
}

.post-categories li a:hover:before {
    color: #fff;
}

.post-categories li a:before {
    color: var(--m_color);
    content: "#";
    display: inline-block;
    font: 100%/1 "font awesome 6 free";
    margin: 0 2px 0 0;
    transition: var(--tr);
}

.share_sns_container {
    margin: 0 0 0 auto;
}

.share_sns_container li :before {
    display: block;
    font-size: 1.875rem;
    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: #2196f3;
}

.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}

.article_top {
    align-items: center;
    margin: 0 0 10px;
}

.article_top + .tags {
    margin-bottom: 20px;
}

/*記事内装飾*/
.article_main h2 {
    background: var(--m_color);
    color: #ffffff;
    font-size: 25px;
    margin: 30px 0 20px 0;
    padding: 10px 20px;
    text-align: left;
}

.article_main h3 {
    border-bottom: 1px solid #333;
    font-size: 1.4375rem;
    font-weight: bold;
    margin: 30px 0 20px 0;
    padding: 0 0 5px;
}

.article_main h3:after {
    content: none;
}

.article_main h3:before {
    content: none;
}

.article_main h4 {
    font-size: 1.25rem;
    font-weight: bold;
    margin: 30px 0 20px 0;
}

.article_main h5 {
    font-weight: bold;
    margin: 30px 0 20px 0;
}

.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}

.box5 {
    background: #ffdd40;
    color: #555;
    display: inline-block;
    font-size: 16px;
    margin: 1.5em 0;
    max-width: 100%;
    min-width: 120px;
    padding: 7px 10px;
    position: relative;
}

.box5:before {
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
    content: "";
    left: 50%;
    margin-left: -15px;
    position: absolute;
    top: 100%;
}

.box6 {
    background: #ffdd40;
    color: #555;
    display: inline-block;
    font-size: 16px;
    margin: 1.5em 0;
    max-width: 100%;
    min-width: 120px;
    padding: 7px 10px;
    position: relative;
}

.box6:before {
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
    content: "";
    left: 50%;
    margin-left: -15px;
    position: absolute;
    top: -30px;
}

.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 {
    border-radius: var(--border_r);
    display: block;
    height: auto;
    margin: 0 auto 30px;
}

.article_main img {
    display: block;
    margin: 0 auto 30px;
}

.article_main p {
    line-height: 1.8;
    margin: 0 0 25px;
}

.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}

.article_main table {
    border-right: 1px solid var(--b_color);
    border-top: 1px solid var(--b_color);
    margin: 0 0 25px;
}

.article_main table th {
    background: #e6f7f5;
    border-bottom: 1px solid var(--b_color);
    border-left: 1px solid var(--b_color);
    font-weight: bold;
    padding: 10px 20px;
}

.article_main table td {
    border-bottom: 1px solid var(--b_color);
    border-left: 1px solid var(--b_color);
    font-size: 15px;
    padding: 10px 20px;
}

.article_main ul {
    border-bottom: solid 1px #ddd;
    border-top: solid 1px #ddd;
    margin: 0 0 30px;
    padding: 20px 20px 20px 30px;
}

.article_main ul li {
    line-height: 1.5em;
    padding: 0.5em 0.5em 0.5em 30px;
    position: relative;
}

.article_main ul li:before {
    background: #333;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 10px;
    left: 0;
    line-height: 25px;
    position: absolute;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 10px;
}

.article_main ol {
    background: rgb(250 190 0 / 10%);
    border: solid 1px #f9f9f4;
    margin: 0 0 30px;
    padding: 20px 20px 20px 50px;
    position: relative;
}

.article_main ol li {
    line-height: 1.5;
    list-style-type: none !important;
    padding: 0.5em 0;
    position: relative;
}

.article_main ol li:before {
    color: gray;
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    left: -18px;
    position: absolute;
}

.article_main dt {
    background: rgb(250 190 0 / 10%);
    margin: 0 0 10px;
    padding: 10px;
}

.article_main dd {
    border-left: 1px solid #333;
    line-height: 1.8;
    margin: 0 0 25px;
    padding: 0 0 0 10px;
}

/*シングル　ページネーション*/
.single_pagenavi {
    margin-top: var(--main_mp);
    position: relative;
}

.single_pagenavi .next {
    margin: 0 0 0 auto;
}

.single_pagenavi .list {
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.single_pagenavi .list a,
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    border-radius: 10px;
    color: #fff;
    display: block;
    padding: 15px 30px;
    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;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.5em;
    margin: 10px 0 30px;
    max-width: 800px;
    padding: 30px;
    width: 100%;
}

.outline__title {
    font-size: 1rem;
    font-weight: bold;
}

.outline__toggle {
    display: none;
}

.outline__switch::before {
    background: #fff;
    border: solid 1px #eee;
    border-radius: 5px;
    content: "開く";
    cursor: pointer;
    font-size: 0.8rem;
    margin-left: 5px;
    padding: 5px 10px;
}

.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}

.outline__switch + .outline__list {
    border: none;
    height: 0;
    margin: -20px 0;
    overflow: hidden;
    padding: 0;
    transition: var(--tr);
    width: 0;
}

.outline__toggle:checked + .outline__switch + .outline__list {
    background: none;
    border-bottom: none;
    border-top: solid 1px #ddd;
    height: auto;
    margin: 20px 0 0;
    padding: 17px 20px 0;
    transition: var(--tr);
    width: auto;
}

ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}

ul.outline__list li:before {
    content: "-";
    height: 0;
    line-height: 1.6;
    top: 6px;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    width: 0;
}

ul.outline__list ul {
    background: none !important;
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
}

.outline__link {
    color: #191919 !important;
    position: relative;
}

span.outline__number {
    display: none;
}

label.outline__switch {
    float: right;
    position: relative;
}

.outline ul {
    -webkit-padding-start: 1.2em;
}

/*-------------------------------------
サイドバー
-------------------------------------*/
.side_container {
    order: 2;
    width: 250px;
}

.side_container > div {
    margin: 0 0 30px;
}

.widget_title div {
    border-bottom: 2px solid;
    color: var(--m_color);
    font: 700 clamp(20px, 1.5vw, 50px) var(--font_ja);
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}

.widget_title div:before {
    aspect-ratio: 162/150;
    background: url(img/icon06.svg) no-repeat;
    content: "";
    display: inline-block;
    width: 30px;
}

.side_container li {
    padding: 10px 0 10px;
    position: relative;
    transition: var(--tr);
}

.side_container li:hover {
    opacity: 0.7;
}

.side_container li a {
    color: var(--f_color);
    font-size: 0.8125rem;
    text-decoration: none;
}

.side_container li a > div:nth-child(1) {
    height: auto;
    width: 70px;
}

.side_container li a > div:nth-child(2) {
    margin-left: auto;
    width: calc(100% - 80px);
}

/*検索窓*/
.widget_search {
    position: relative;
}

.widget_search input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    background-image: none;
    border: 2px solid rgba(0, 0, 0, 0.16);
    border-radius: var(--border_r);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    outline: 0;
    padding: 5px 33px 5px 10px;
}

.widget_search input[type="text"] {
    width: 100%;
}

.widget_search input[type="submit"] {
    background: none;
    border: none;
    color: #aaa;
    cursor: pointer;
    font-family: "font awesome 6 free";
    font-weight: bold;
    padding: 7px 16px;
    position: absolute;
    right: 0;
    top: 1px;
}

/*最近の投稿*/
.widget_my_recent_posts img {
    aspect-ratio: 16/9;
    border-radius: 8px;
    height: auto;
    object-fit: cover;
    width: 100%;
}

.widget_my_recent_posts time {
    color: var(--m_color);
    font-size: 0.6875rem;
    font-weight: bold;
    margin-bottom: 5px;
}

/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 15px;
}

.widget_archive li:before,
.widget_categories li:before {
    background: var(--a_color);
    border-radius: 10px;
    content: "";
    height: 4px;
    left: 0;
    position: absolute;
    top: 21px;
    width: 8px;
}

/*アーカイブ　ページネーション*/
.wp-pagenavi {
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-flex;
    display: flex;
}

.wp-pagenavi .page-numbers {
    background: #e5e5e5;
    border-radius: 7px;
    color: var(--f_color);
    display: block;
    margin-right: 10px;
    padding: 10px 22px;
    text-decoration: none;
}

.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}

.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_info {
    /* background: #fff; */
    /* border: 5px dotted var(--a_color); */
    /* border-radius: var(--border_r2); */
    margin: 0 auto 5vw;
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    /* padding: 40px 20px; */
    text-align: center;
}

.contact_info a {
    color: var(--a_color);
    cursor: pointer;
    font: bold clamp(20px, 7vw, 70px) / 1 var(--font_ja);
    margin: 0 0 5px;
    text-decoration: none;
    width: 100%;
}

.contact_info a img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
}

.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/

.wpcf7-list-item-label {
    margin-left: 5px;
}

.wpcf7-form_form {
    border: 10px solid rgb(250 190 0 / 20%);
    border-radius: var(--border_r2);
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    padding: var(--m_ps5);
}

.wpcf7_left {
    display: block;
    list-style: none;
    max-width: 200px;
    padding: 20px 0;
    width: 100%;
}

form.wpcf7-form .required:before {
    background: #e74c3c;
    color: #fff;
    content: "必須";
    /* display: inline-block; */
    font-size: 10px;
    font-weight: normal;
    margin: 0 5px 0 0;
    padding: 2px 5px;
    vertical-align: middle;
    width: auto;
}

.wpcf7_right {
    border-left: none;
    padding: 20px 0;
    width: 100%;
    /* border-bottom: none; */
}

.wpcf7_checkbox_title {
    background: #f3f3f3;
    border: 1px solid #ddd;
    border-bottom: none;
    max-width: 200px;
    width: 100%;
}

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;
    color: #e94e43;
    font-size: 14px;
    margin: 30px 0;
}

@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}

.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}

.wpcf7_container #info2 {
    margin: 10px 0 0;
}

.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    background: #f3f3f3;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 100%;
    outline: none;
    /* border-radius: 3px; */
    padding: 8px;
    width: 100%;
}

.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}

.form_privacy {
    display: block;
    margin: 30px 0;
    text-align: center;
}

.wpcf7c-elm-step2 {
    text-align: center;
}

.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

input::placeholder {
    color: #ddd;
}

input::-moz-input-placeholder {
    color: #ddd;
}

input::-ms-input-placeholder {
    color: #ddd;
}

textarea::placeholder {
    color: #ddd;
}

textarea::-ms-placeholder {
    color: #ddd;
}

textarea::-moz-placeholder {
    color: #ddd;
}

/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
    -webkit-box-sizing: content-box;
    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;
    color: #e94e43;
    font-size: 14px;
    margin: 30px 0;
}

.wpcf7-form span.wpcf7-not-valid-tip {
    color: #e94e43;
    font-size: 14px;
}

/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}

.wpcf7c_submit input {
    border: none;
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin: 15px auto 0;
    max-width: 250px;
    outline: none;
    padding: 15px;
    width: 100%;
    z-index: 0;
}

.wpcf7c_submit input[type="submit"] {
    background: var(--m_color);
    border-radius: var(--border_r);
    text-align: center;
}

.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 {
    background: #fff;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    width: 78%;
}

.readme dl {
    margin: 20px 0 0;
}

.readme dt {
    font-weight: bold;
}

.readme dd {
    margin: 0 0 0 15px;
}

.readme ol li {
    list-style: decimal-leading-zero;
    margin: 0 0 0 40px;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}

#wpcf7cpcnf table th {
    background: #fbfbf8;
    border: 1px solid #ccc;
    color: #202020;
    padding: 10px 15px;
    text-align: left;
    width: 25%;
}

#wpcf7cpcnf table th p {
    color: #202020;
}

#wpcf7cpcnf table td {
    background: #fff;
    border: 1px solid #ccc;
    padding: 5px 15px;
    width: 75%;
}

.wpcf7cp-btns {
    text-align: center;
}

.wpcf7cp-btns button {
    cursor: pointer;
    font-weight: bold;
    padding: 15px 20px;
}

.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    border: none;
    color: #202020;
}

.wpcf7cp-cfm-submit-btn {
    background: #555;
    border: none;
    color: #fff;
}

/*recaptcha*/
.grecaptcha-badge {
    display: none;
}

/*-------------------------------------
プライバシーポリシーページ
-------------------------------------*/
.privacypolicy_wrap section:not(:last-child) {
    margin-bottom: var(--m_ps8);
}

.privacypolicy_wrap h2 {
    margin-bottom: var(--m_ps3);
}

.privacypolicy_wrap ol {
    margin-bottom: 15px;
    margin-top: 15px;
}

.privacypolicy_wrap ol ul {
    margin-bottom: 15px;
    margin-top: 15px;
    padding-left: var(--m_ps3);
}

/*-------------------------------------
フッター部分
-------------------------------------*/
/* フッター */
footer {
    border-bottom: 20px solid var(--a_color2);
}

.footer {
    background: var(--a_color);
    position: relative;
    z-index: 0;
}

.footer_googlemap {
    background: linear-gradient(180deg, transparent 0%, transparent 50%, var(--a_color) 50%, var(--a_color) 100%);
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    z-index: 1;
}

.footer_googlemap_inner {
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 1200px;
}

.footer_googlemap iframe {
    /* aspect-ratio: 1200/500; */
    border-radius: var(--border_r2);
    height: auto;
    /* max-width: var(--main_w); */
    min-height: 350px;
    width: 100%;
    /* width: calc(100% / 2 - 1vw); */
}

.footer_inner {
    align-items: flex-end;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--main_w);
    padding-left: 20px;
    padding-right: 20px;
}

.footer_nav {
}

.footer_nav ul {
    padding-left: 20px;
}

.footer_nav li {
}

.footer_nav a,
.footer_nav .a {
    color: var(--f_color);
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    position: relative;
    text-decoration: none;
}

.footer_nav > div > ul > li > a {
    font-weight: 700;
}

.footer_nav > div > ul > li > a:before {
    aspect-ratio: 1/1;
    background: #fff;
    border-radius: 50%;
    content: "";
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    height: auto;
    margin: 0 8px 3px 0;
    width: 8px;
}

.footer_nav ul ul a:before,
.footer_nav ul ul .a:before {
    background: #fff;
    content: "";
    display: inline-block;
    height: 2px;
    margin: 0 8px 4px 0;
    width: 5px;
}

.footer_nav a:hover {
    text-decoration: underline;
}

.footer_address {
    letter-spacing: 0.15em;
}

.footer_address .site_ttl {
    background: none;
    max-width: 150px;
    padding: 0;
    position: static;
    width: 80%;
}

.footer_address .site_ttl a {
    margin: 0 auto;
}

/*sns部分*/
.footer_address_sns {
    margin-top: 20px;
}

.footer_address_sns a {
    display: inline-block;
    font-size: 25px;
}

.footer_address_sns i {
    color: var(--f_color);
}

/*アドレス*/
.address_container {
    color: var(--f_color);
    font-size: 0.8125rem;
    margin: 30px 0 0;
}

.address_container a {
    color: var(--f_color);
    text-decoration: none;
    width: 100%;
}

.address_container img {
    max-width: 300px;
}

.copyright {
    border: none;
    font-size: 0.6875rem;
    margin-top: 30px;
}

.copyright p {
    color: var(--f_color);
}

.copyright a {
    color: #fff;
    font-size: 0.875rem;
}

/* topに戻る */
#page-top {
    bottom: 20px;
    position: fixed;
    right: 20px;
    z-index: 6;
}

#page-top a {
    aspect-ratio: 1/1;
    background: var(--m_color);
    border-radius: var(--border_r2);
    box-shadow: 0 5px 0 rgb(0 167 219 / 10%);
    display: block;
    height: auto;
    padding: 10px 12px;
    position: relative;
    width: 70px;
}

#page-top a::after {
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
    content: "";
    display: block;
    height: 15px;
    left: 50%;
    position: absolute;
    top: 58%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 15px;
}

#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (min-width: 1301px) {
    .main_wrap .new_wrap {
        display: none;
    }
}

@media only screen and (max-width: 1300px) {
    body:not(.home) .site_ttl {
        bottom: 61%;
    }

    .common_cta_wrap {
        flex-wrap: wrap;
        justify-content: center;
    }

    .common_cta_ttl {
        margin-bottom: var(--m_ps3);
        text-align: center;
        width: 100%;
    }

    .common_cta_phone .common_cta_txt {
        padding: 0 var(--m_ps3);
    }

    .common_cta_phone {
        width: 50%;
    }

    .common_cta_mail {
        width: 50%;
    }

    .common_cta_img img {
        margin: 0 auto;
    }

    .h_img_wrap .new_wrap {
        display: none;
    }

    .main_wrap .new_wrap {
        background: none;
        border-radius: 0;
        display: block;
        max-width: 100%;
        padding-bottom: var(--main_mp);
        padding-left: 20px;
        padding-right: 20px;
        padding-top: var(--main_mp);
        padding-top: var(--m_ps3);
        position: relative;
        width: var(--main_w);
    }
}

@media only screen and (max-width: 1250px) {
    .site_ttl {
        top: -5%;
    }

    body:not(.home) .site_ttl {
        top: -11%;
    }
}

@media only screen and (max-width: 1024px) {
    .wrap {
        background: none;
    }
}

@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
}

@media only screen and (max-width: 820px) {
    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        display: block;
    }

    .common_cta_phone {
        margin-bottom: 30px;
        width: 100%;
    }

    .common_cta_mail {
        width: 100%;
    }

    .common_cta_img {
        width: min(100px, 30%);
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }

    .main_pa {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .sp_none {
        display: none !important;
    }

    .main_wrap {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 20px 10px;
    }

    body:not(.home) .h_img_wrap {
        padding-bottom: 80px;
        padding-top: 80px;
    }

    .h_nav_inner_inner {
        padding-right: 60px;
        padding-top: 10px;
    }

    .h_nav_inner_cta {
        margin-bottom: 0;
    }

    .h_img_wrap {
        position: static;
    }

    .site_ttl {
        left: 30px;
        top: 15px;
    }

    body:not(.home) .site_ttl {
        top: 15px;
    }

    .header_txt {
        bottom: 5vw;
        top: auto;
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }

    .overlay {
        background-color: rgba(0, 0, 0, 0.5);
        content: "";
        display: block;
        height: 0;
        left: 0;
        opacity: 0;
        position: absolute;
        top: 0;
        transition: opacity var(--tr);
        width: 0;
        z-index: 2;
    }

    .overlay.open {
        height: 100%;
        opacity: 1;
        width: 100%;
    }

    .menu-trigger {
        cursor: pointer;
        display: inline-block;
        height: 45px;
        position: fixed;
        right: 10px;
        top: 20px;
        vertical-align: middle;
        width: 50px;
        z-index: 100;
    }

    .menu-trigger span {
        background-color: var(--a_color);
        box-sizing: border-box;
        display: inline-block;
        height: 3px;
        left: 10px;
        position: absolute;
        transition: var(--tr);
        width: 30px;
    }

    .menu-trigger.active span {
        background-color: #ffffff !important;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 12px;
        width: 10px;
    }

    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
    }

    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
    }

    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }

    .menu-trigger.active span:nth-of-type(3) {
        bottom: 6px;
        transform: translateY(-12px) rotate(45deg);
    }

    .sp_h_nav_inner {
        background: var(--m_color);
        height: 100%;
        left: 100%;
        overflow-y: auto;
        padding: 75px 0;
        position: fixed;
        right: 0;
        top: 0;
        transition: var(--tr);
        width: 100%;
        z-index: 8;
    }

    nav.open .sp_h_nav_inner {
        left: 0;
    }

    .sp_h_nav_list {
        border-top: 2px dotted #fff;
        height: auto;
        margin: 0 0 10vw;
        margin-left: auto;
        margin-right: auto;
        width: 85%;
    }

    .sp_h_nav_inner .sp_h_nav_list > li {
        /* margin: 0 0 15px; */
        border-bottom: 2px dotted #fff;
    }

    .sp_h_nav_inner .sp_h_nav_list a,
    .sp_h_nav_inner .sp_h_nav_list .a {
        color: #ffffff;
        display: block;
        font: bold 16px var(--font_ja);
        padding: 10px 20px 10px 25px;
        position: relative;
        position: relative;
        text-align: left;
        text-decoration: none;
    }

    .sp_h_nav_inner .sp_h_nav_list > li > a:before {
        aspect-ratio: 1/1;
        background: #fff;
        border-radius: 50%;
        content: "";
        height: auto;
        left: 10px;
        position: absolute;
        top: 17px;
        width: 8px;
    }

    .sp_h_nav_inner .sp_h_nav_list > li ul {
        border-top: 2px dotted #fff;
    }

    .sp_h_nav_inner .sp_h_nav_list > li li {
        border-bottom: 2px dotted #fff;
        padding-left: 20px;
    }

    .sp_h_nav_inner .sp_h_nav_list > li li:last-child {
        border-bottom: none;
    }

    .sp_h_nav_inner .sp_h_nav_list > li li a,
    .sp_h_nav_inner .sp_h_nav_list > li li .a {
        font-weight: normal;
    }

    .sp_h_nav_inner .sp_h_nav_list > li li a:before,
    .sp_h_nav_inner .sp_h_nav_list > li li .a:before {
        content: "-";
        margin-right: 10px;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner {
        border-bottom: none;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner li a {
        color: #666;
        padding: 10px 0 10px 60px;
    }

    .sp_h_nav_inner .sp_h_nav_list_inner li a:before {
        color: var(--f_color);
        content: "┗";
        font-weight: normal;
        left: 40px;
    }

    .sp_h_nav_inner li:last-child {
        /* border: none; */
        /* margin: 10px 0 0 0; */
    }

    .sp_h_nav_tel {
        background: #f9f9f4;
        margin: 0 auto;
        padding: 20px 20px;
        text-align: center;
        width: 90%;
    }

    .sp_h_nav_tel a {
        color: var(--m_color);
        display: block;
        font: 900 25px/1 var(--font_en);
        letter-spacing: 0.4vw;
        /* margin: 0 0 10px; */
        text-decoration: none;
    }

    .sp_h_nav_tel img {
        /* max-width: 40px; */
    }

    .sp_h_nav_sns {
        -webkit-align-items: center;
        align-items: center;
        display: -webkit-flex;
        display: flex;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
        text-align: center;
    }

    .sp_h_nav_sns a {
        -webkit-align-items: center;
        align-items: center;
        background: #fbfbf8;
        border-radius: 50%;
        display: inline-block;
        display: -webkit-flex;
        display: flex;
        font-size: 16px;
        height: 40px;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-align: center;
        text-decoration: none;
        width: 40px;
    }

    .sp_h_nav_sns a i {
        color: var(--m_color);
    }

    .sp_h_nav_sns img {
        max-width: 28px;
    }

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }

    .new_inner {
    }

    /*-------------------------------------
    TOPページ ３つの特長
    -------------------------------------*/
    .top_con01_desc {
        align-items: center;
        flex-flow: column;
    }

    .top_con01_desc h2 {
        margin-bottom: 30px;
        padding-right: 0;
    }

    .top_con01_desc h2 > span {
        padding-left: 5px;
    }

    .top_con01_desc p {
        text-align: center;
        width: 100%;
    }

    .top_con01_wrap ul {
        display: block;
    }

    .top_con01_wrap li {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        max-width: 400px;
        width: 100%;
    }

    /*-------------------------------------
    topページ　違い
    -------------------------------------*/
    .top_con02_inner {
        display: block;
    }

    .top_con02_chld {
        width: 100%;
    }

    .top_con02_chld01 {
        margin-bottom: var(--m_ps5);
    }

    /*-------------------------------------
    topページ　スタッフブログ
    -------------------------------------*/
    .top_con04_inner > ul {
        display: block;
    }

    .top_con04_inner > ul > li {
        margin-bottom: 30px;
        width: 100%;
    }

    .blog_inner .blog_clock span:nth-child(1) {
        font: clamp(22px, 5vw, 33px) / 1.5 var(--font_ja);
    }

    .blog_inner .blog_clock span:nth-child(2) {
        font: clamp(22px, 8vw, 63px) / 1 var(--font_ja);
    }

    .blog_photo {
    }

    /*-------------------------------------
    初めての方へページ
    -------------------------------------*/
    .guide_con02 ol {
        display: block;
        margin-bottom: var(--m_ps5);
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
    }

    .guide_con02 li {
        margin-bottom: 50px;
        width: 100%;
    }

    .guide_con02 li:not(:last-child):before {
        left: 44%;
        top: 100%;
        transform: rotate(180deg) translate(-50%, -18px);
    }

    .guide_con03_inner ol {
        padding-left: 0;
    }

    .guide_con03_inner ol:before {
        content: none;
    }

    .guide_con03_item {
        display: block;
    }

    .guide_con03_img {
        margin-bottom: 20px;
        width: 100%;
    }

    .guide_con03_subttl {
        top: -9%;
    }

    .guide_con03_txt {
        width: 100%;
    }

    /*-------------------------------------
    お客様の声ページ
    -------------------------------------*/
    .voice_txt {
        display: block;
    }

    .voice_txt_left {
        letter-spacing: 0;
        margin-bottom: 0;
        margin-top: calc(((100vh - var(--m_ps3)) / 10) * -1);
        width: 100%;
        writing-mode: inherit;
    }

    .voice_txt_right {
        width: 100%;
    }

    /*-------------------------------------
    ご入居までの流れページ
    -------------------------------------*/
    .flow_inner li {
        display: block;
        margin-bottom: 80px;
    }

    .flow_img {
        margin-bottom: 25px;
        width: 100%;
    }

    .flow_txt {
        width: 100%;
    }

    .flow_txt_link > div:nth-child(1) img {
        width: min(300px, 40vw);
    }

    /*-------------------------------------
    ホーム選びのポイント ページ
    -------------------------------------*/
    .choice_inner > ol > li {
        padding-left: 20px;
        padding-right: 20px;
    }

    /*-------------------------------------
    会社概要 ページ
    -------------------------------------*/
    .company_con02_inner ul {
        display: block;
    }

    .company_con02_inner ul li {
        margin-bottom: 30px;
        margin-left: auto;
        margin-right: auto;
        max-width: 500px;
        width: 100%;
    }

    .company_con02_inner ul li:last-child {
        margin-bottom: 0;
    }

    /*-------------------------------------
    スタッフ紹介ページ
    -------------------------------------*/
    .staff_inner li:not(:nth-child(1)) {
        width: calc(100% / 2 - 2vw);
    }

    /*-------------------------------------
    セミナー情報 末端ページ
    -------------------------------------*/
    .seminar-info_cta {
        width: 100%;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }

    .blog_inner,
    .single_inner,
    .search_inner,
    .side_container {
        width: 100%;
    }

    .blog_inner > ul {
        display: block;
    }

    .blog_inner > ul > li {
        width: 100%;
    }

    .side_container {
        margin-top: var(--m_ps5);
    }
}

@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
        --main_mp: 80px;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        /* margin-bottom: 50px; */
    }

    .main_pa {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }

    .main_wrap {
        /* padding-top: 50px; */
        /* padding-bottom: 50px; */
    }

    .sp_none2 {
        display: none !important;
    }

    .pc_none2 {
        display: block;
    }

    .h1,
    body:not(.home):not(.single) h1 {
        font-size: 22px;
        padding: 20px 20px;
    }

    body:not(.home) h1.singleh1 {
        font-size: 20px;
        padding: 0;
    }

    body:not(.home) h1:before {
        font-size: 23px;
    }

    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }

    h2:before {
        font-size: 45px;
        top: -70px;
    }

    .top_h2 h2 {
        margin-bottom: 30px;
    }

    .top_h2 h2:after {
        margin-top: 25px;
    }

    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
        white-space: nowrap;
    }

    .js-scrollable::-webkit-scrollbar {
        display: none;
    }

    .scroll-hint-icon {
        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%);
        background: #2c3e57;
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        height: 66px;
        left: auto;
        right: 10px;
        top: 10px;
        width: 66px;
    }

    .scroll-hint-icon:before {
        height: 30px;
        width: 25px;
    }

    .scroll-hint-icon:after {
        background-size: contain;
        height: 10px;
        width: 30px;
    }

    .scroll-hint-text {
        font-size: 13px;
        margin-top: 0;
        white-space: normal;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner a {
        flex-flow: column;
        padding: 0 20px;
    }

    .common_cta_inner img {
        margin-bottom: 10px;
        margin-right: 0;
        width: 40px;
    }

    .common_cta_txt .common_btn a {
        padding: 10px 20px;
    }

    .footer_googlemap {
        background: linear-gradient(180deg, transparent 0%, transparent 35%, var(--a_color) 35%, var(--a_color) 100%);
    }

    .footer_googlemap_inner {
        display: block;
    }

    .footer_googlemap iframe {
        width: 100%;
    }

    .footer_googlemap iframe:nth-child(1) {
        /* margin-bottom: 20px; */
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        border: 5px solid var(--a_color);
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }

    .h_nav_wrap {
        margin-bottom: 10px;
    }

    .h_nav_inner_inner {
        padding-top: 0;
    }

    .h_nav_inner_cta {
        width: min(150px, 40vw);
    }

    .site_ttl {
        left: 10px;
        width: 100px;
    }

    .site_ttl a {
        color: #fff;
    }

    .menu-trigger {
        right: 10px;
        top: 15px;
    }

    .header_txt {
        width: 70vw;
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .main_wrap .new_wrap {
        padding-top: 0;
    }

    .new_list {
        border-top: 5px solid rgb(250 190 0 / 20%);
        margin-bottom: 30px;
        padding-top: 15px;
    }

    .new_wrap h2 {
    }

    .new_list li {
        border-bottom: 5px solid rgb(250 190 0 / 20%);
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_desc p {
        text-align: left;
    }

    .top_con01_wrap li {
        padding-left: 50px;
        padding-right: 50px;
    }

    /*-------------------------------------
    TOP 2コンテンツ目
    -------------------------------------*/
    .top_con02_inner {
        padding-left: 25px;
        padding-right: 25px;
    }

    /*-------------------------------------
    TOP 3コンテンツ目
    -------------------------------------*/
    .top_con03_wrap:before {
        width: 85%;
    }

    .top_con03_ttl,
    .top_con04_ttl {
        display: block;
    }

    .top_con03_inner h2,
    .top_con04_inner h2 {
        padding-left: min(51px, 14vw);
        text-align: left;
    }

    .top_con03_inner ul {
        display: block;
    }

    .top_con03_inner li {
        margin-bottom: 30px;
        width: 100%;
    }

    /*-------------------------------------
    TOP 5コンテンツ目
    -------------------------------------*/
    .top_con05_ttl {
        margin-top: 0;
        padding-bottom: 0;
        width: 100%;
    }

    /*-------------------------------------
    初めての方へページ
    -------------------------------------*/
    .guide_con01_inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .guide_con01_inner h2 {
        font-size: clamp(20px, 4vw, 32px);
        margin-left: -10px;
        margin-top: -80px;
        padding: 10px 20px;
        width: calc(100% + 20px);
    }

    .guide_con02 li:not(:last-child):before {
        transform: rotate(180deg) translate(-14%, -18px);
    }

    .guide_con02 li {
        text-align: center;
    }

    .guide_con02 ol + p {
        text-align: left;
    }

    .guide_con03_ttl {
        padding-left: 33px;
    }

    /*-------------------------------------
    お客様の声ページ
    -------------------------------------*/
    .voice_inner ul {
        display: block;
    }

    .voice_inner li {
        width: 100%;
    }

    /*-------------------------------------
    お客様の声ページ 末端
    -------------------------------------*/
    .single_voice_desc {
        flex-wrap: wrap;
    }

    /*-------------------------------------
    ご相談事例ページ
    -------------------------------------*/
    .case_inner > ul > li {
        border-width: 5px;
    }

    .case_inner li section {
        display: block;
    }

    .case_no {
        display: block;
        margin-bottom: 10px;
        width: 100%;
        writing-mode: inherit;
    }

    .case_txt {
        width: 100%;
    }

    .single_case_cat {
        flex-wrap: wrap;
        margin-bottom: 10px;
    }

    .single_case_cat li {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    ご相談事例ページ 末端
    -------------------------------------*/
    .single_case_con01_wrap {
        padding: 30px 20px;
    }

    .single_case_con01 h2,
    .single_case_con02 h2 {
        padding-left: 44px;
    }

    .single_case_con01 h2:before,
    .single_case_con02 h2:before {
        width: min(40px, 10vw);
    }

    .single_case_con01 dl,
    .single_case_con02 dl {
        display: block;
    }

    .single_case_con01 dt,
    .single_case_con02 dt {
        margin-bottom: 10px;
        width: 100%;
    }

    .single_case_con01 dt span,
    .single_case_con02 dt span {
        display: block;
        padding: 5px 20px;
    }

    .single_case_con01 dd,
    .single_case_con02 dd {
        margin-bottom: 20px;
        padding: 0 20px;
        width: 100%;
    }

    .single_case_con04 h2 {
        padding-left: 60px;
    }

    .single_case_con05 h2 span:before {
        bottom: calc(100% + 5px);
        left: 40%;
        right: auto;
        transform: translateX(-50%);
    }

    .single_case_con05 h2 span:after {
        bottom: calc(100% + 5px);
        left: 60%;
        right: auto;
        transform: translateX(-50%);
    }

    /*-------------------------------------
    医療・介護関係者の方へページ
    -------------------------------------*/
    .medical_con02 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .medical_con02 h2 {
        margin-top: -16%;
    }

    .medical_con02 > div {
        text-align: left;
    }

    .medical_con02 > div:after {
        margin-top: 20px;
    }

    /*-------------------------------------
    よくある質問ページ
    -------------------------------------*/
    .faq_desc > p {
        text-align: left;
    }

    .faq_desc_link {
        flex-flow: column;
    }

    .faq_desc_link > div {
        margin-left: auto;
        margin-right: auto !important;
    }

    .faq_desc_link > div:nth-child(1) {
        margin-bottom: 20px;
    }

    .faq_inner {
        padding-left: 20px;
        padding-right: 20px;
    }

    .faq_inner dt {
        line-height: 1.6;
    }

    .faq_inner dt:after {
        top: 20px;
    }

    /*-------------------------------------
    ご入居までの流れページ
    -------------------------------------*/
    .flow_inner .other_h2 {
        margin-bottom: 20px;
    }

    .flow_inner li {
        margin-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .flow_txt_link {
        display: block;
    }

    .flow_txt_link > div:nth-child(1) {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .flow_txt_link > div:nth-child(1) img {
        width: 100%;
    }

    /*-------------------------------------
    ホーム選びのポイント ページ
    -------------------------------------*/
    .choice_step_ttl div {
        padding-left: 85px;
    }

    .choice_step_ttl h2:before {
        width: min(85px, 15vw);
    }

    .choice_inner > ol > li {
        border-width: 5px;
        margin-bottom: 150px;
    }

    .choice_step01_cld li {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }

    .choice_step01_img {
        margin-bottom: 20px;
        width: 100%;
    }

    .choice_step01_txt {
        width: 100%;
    }

    .choice_step01_subttl {
        margin-left: auto;
        margin-right: auto;
    }

    .choice_step02_img {
        display: block;
    }

    .choice_step02_img > div {
        margin-bottom: 30px;
        width: 100%;
    }

    .choice_step02_img > div:last-child {
        margin-bottom: 0;
    }

    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    .company_con02_inner ul li {
        aspect-ratio: auto;
        border-radius: 20px !important;
        padding-left: 20px;
        padding-right: 20px;
    }

    /*-------------------------------------
    スタッフ紹介ページ
    -------------------------------------*/
    .staff_inner li:nth-child(1) .staff_img_pos {
        line-height: 1.3;
        margin-bottom: 10px;
        padding: 5px 15px;
        text-align: center;
        width: 100%;
    }

    .staff_inner li:not(:nth-child(1)) {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .staff_inner li:last-child {
        margin-bottom: 0;
    }

    .staff_inner li:not(:nth-child(1)) .staff_img {
        margin-bottom: 0;
        width: 45%;
    }

    .staff_inner li:not(:nth-child(1)) .staff_img_img {
        margin-bottom: 0;
    }

    .staff_inner li:not(:nth-child(1)) .staff_txt {
        flex-flow: column;
        justify-content: center;
        width: 50%;
    }

    .staff_inner li:not(:nth-child(1)) .staff_img_pos {
        line-height: 1.3;
        margin-bottom: 10px;
        padding: 5px 15px;
        position: static;
        text-align: center;
    }

    .staff_name {
        margin-right: 0;
    }

    .staff_kana {
        font-size: 11px;
    }

    /*-------------------------------------
    お知らせページ
    -------------------------------------*/
    .news_inner li section {
        display: block;
    }

    .news_inner time {
        align-items: flex-end;
        display: flex;
        margin-bottom: 5px;
        margin-right: 0;
    }

    .news_inner time p {
        font-size: 13px;
    }

    .news_inner time span {
        font-size: 13px;
        font-weight: bold;
        padding-left: 3px;
    }

    .news_inner_cat {
        line-height: 1.3;
        padding: 3px 15px;
    }

    /*-------------------------------------
    お知らせページ 末端
    -------------------------------------*/
    .single_news_inner .news_inner_cat {
        margin-bottom: 0;
    }

    .single_news_inner .news_inner time {
        margin-bottom: 0;
        margin-right: 10px;
    }

    /*-------------------------------------
    セミナー情報 アーカイブページ
    -------------------------------------*/
    .seminar-info_inner li:not(:last-child) {
        border-bottom: 2px dotted var(--a_color);
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .seminar-info_inner li section {
        display: block;
    }

    .seminar-info_img {
        border-width: 5px;
        margin-bottom: 20px;
        width: 100%;
    }

    .seminar-info_txt {
        width: 100%;
    }

    /*-------------------------------------
    セミナー情報 末端ページ
    -------------------------------------*/
    .seminar-info_cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .seminar-info_cta_inner {
        display: block;
    }

    .seminar-info_cta_inner > div:nth-child(1) {
        margin-bottom: 20px;
        width: 100%;
    }

    .seminar-info_cta_inner > div:nth-child(2) {
        width: 100%;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_inner > p {
        text-align: left;
    }

    .wpcf7 {
        margin: 30px 0 0;
    }

    .wpcf7-form_form {
        border-width: 5px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .wpcf7-form_form span.flex_c2 {
        display: block;
    }

    .wpcf7_checkbox_title {
        border: none;
    }

    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }

    .wpcf7-form_form .flex {
        border-bottom: 1px solid #ddd;
        display: block;
        padding: 0 0 15px;
    }

    .wpcf7_left {
        border: none;
        max-width: 100%;
        padding: 10px 0;
    }

    .wpcf7_right {
        border: none;
        /* border-left: 1px solid #ddd; */
        padding: 0;
    }

    .readme {
        height: 150px;
        margin: 30px 0 10px;
        width: 100%;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .top_con04_inner > ul > li > section {
        align-items: flex-start;
        display: flex;
    }

    .blog_inner > ul > li > section {
        align-items: flex-start;
        display: flex;
    }

    .blog_inner > ul > li {
    }

    .blog_text {
        margin: 0;
        width: calc(100% - 130px);
    }

    .blog_inner .blog_clock {
        margin-bottom: 5px;
        position: static;
    }

    .blog_clock time {
        align-items: center;
        display: flex;
    }

    .blog_inner .blog_clock span {
        font-size: 15px !important;
    }

    .blog_inner .blog_clock span:nth-child(1) {
        margin-right: 5px;
    }

    .blog_photo {
        aspect-ratio: 267/150;
        border-radius: 10px;
        margin-bottom: 15px;
        margin-right: 15px;
        width: 120px;
    }

    .blog_photo a {
        -webkit-mask-image: none;
    }

    .blog_photo img {
        /* height: 100px; */
        /* width: 120px !important; */
        /* height: 100%; */
        aspect-ratio: auto;
    }

    .post-categories li {
        line-height: 1;
        margin: 0 5px 3px;
    }

    .post-categories li a {
        font-size: 10px;
        padding: 3px 5px;
    }

    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cat_container + div {
        padding: 6px 0 0 0;
    }

    .article_main p {
        font-size: 16px;
    }

    .article_main h2 {
        font-size: 18px;
    }

    .article_main h3 {
        font-size: 18px;
    }

    /*目次*/
    .outline {
        padding: 20px;
    }

    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }

    .footer {
    }

    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }

    .footer_nav li {
        margin: 0 0 5px;
    }

    .copyright {
        margin: 0;
        padding: 35px 20px 0;
        text-align: center;
    }

    .breadcrumbsinner {
        padding: 30px 20px 0;
    }

    .article_main img {
        height: auto;
        object-fit: contain;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer_address .site_ttl {
        margin-left: auto;
        margin-right: auto;
    }
    .footer_address a img {
        margin-left: auto;
        margin-right: auto;
    }

    .footer_nav {
        border: none;
        margin-top: 30px;
        padding: 0;
    }

    .footer_nav ul {
        padding: 0;
    }

    .address_container {
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        background: var(--a_color);
        bottom: 0;
        left: 0;
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        width: 100%;
        z-index: 9;
    }

    .sp_bar li {
        padding: 5px 0;
        width: 25%;
    }

    .sp_bar li:nth-of-type(1) {
        width: 50%;
    }

    .sp_bar a {
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        display: block;
        font-size: 0.6875rem;
        height: 100%;
        padding: 0 10px;
        position: relative;
        text-align: center;
        text-decoration: none;
    }

    .sp_bar li a:before {
        display: block;
        font-family: "Font Awesome 6 Free";
        font-weight: bold;
        line-height: 1.3;
        width: 100%;
    }

    .sp_bar li:nth-of-type(1) a:before {
        content: none;
    }

    .sp_bar li:nth-of-type(2) a:before {
        content: "\f0e0";
    }

    .sp_bar li:nth-of-type(3) :before {
        content: "\f077";
    }

    .sp_bar a img {
        align-items: center;
        display: flex;
        height: 100%;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 150px;
    }
}

@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;
    }
}
