﻿@charset "UTF-8";
/*
Theme Name: IRIS
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "ShipporiMincho", san-serif;
    --font_en: "Tenor Sans", san-serif;
    --h1_font: clamp(22px, 3vw, 32px);
    --h2_font: clamp(25px, 3vw, 70px);
    --h3_font: clamp(22px, 3vw, 55px);
    --m_color: #b4ac80;
    --a_color: #a18861;
    --f_color: #606060;
    --f_color2: #4b3419;
    --b_color: #c1b4a4;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_w: min(1000px, calc(100% - (var(--m_ps8) * 2)));
    --main_w2: min(1400px, calc(100% - (var(--m_ps8) * 2)));
    --main_mp: 100px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(to right, #caa148 0%, #eccc79 50%, #be9e59 100%);
    --base: 0.0625rem;
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block::before {
    transform-origin: left;
    transform: translateX(var(--beforeX, 0%));
    transition: none;
    background-color: #f0efeb;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block::after {
    transform-origin: left;
    transform: scaleX(var(--afterScaleX, 0)) translateX(var(--afterX, 0%));
    transition: none;
    background-color: var(--m_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_col {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.m_a {
    max-width: var(--main_w);
    /* padding-left: 20px; */
    /* padding-right: 20px; */
}
.m_a2 {
    max-width: var(--main_w2);
    /* padding-left: 20px; */
    /* padding-right: 20px; */
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

.con_desc {
    width: min(600px, calc(100% - (var(--m_ps8) * 2)));
    margin-left: auto;
    margin-right: auto;
}
.con_desc div:not(.top_ttl) {
    margin-bottom: 50px;
    font-size: clamp(22px, 3vw, 32px);
    color: #000;
}
.con_desc p {
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: var(--f_color);
    padding: 20px 20px;
    display: inline-block;
    background: linear-gradient(45deg, var(--a_color) 0%, #aefe00 100%);
    position: relative;
    font: 16px var(--font_en);
    letter-spacing: 0.15em;
    min-width: 250px;
    transition: var(--tr);
}
.common_btn a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    border-right: 1px solid var(--f_color);
    border-top: 1px solid var(--f_color);
    transform: rotate(45deg) translateY(-50%);
}
.common_btn a:hover {
    opacity: 0.7;
}

.common_btn01 {
}
.common_btn01 a {
    display: flex;
    align-items: center;
    gap: min(20px, 4vw);
    text-decoration: none;
    width: fit-content;
    color: var(--m_color);
    letter-spacing: 0.05em;
    font-size: clamp(16px, 3vw, 20px);
    position: relative;
}
.common_btn01.fr a {
    margin-left: auto;
}
.sp_h_nav > .common_btn00 a:before {
    left: 0;
    display: block;
    content: "";
    /* transform: translateY(-50%); */
    transition: var(--tr);
    width: 20px;
    height: auto;
    mask-image: url(img/calendar_icon.svg);
    background: #fff;
    /* position: absolute; */
    top: 50%;
    transition: var(--tr);
    aspect-ratio: 160/150;
    mask-repeat: no-repeat;
}
.common_btn01 a:before {
    background-color: var(--m_color); /* 下線の色 */
    bottom: -4px; /* 要素の下端からの距離 */
    content: ""; /* 要素に内容を追加 */
    height: 2px; /* 下線の高さ */
    left: 0; /* 要素の左端からの距離 */
    position: absolute; /* 絶対位置指定 */
    transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: left top; /* 変形の原点を左上に指定 */
    transition: transform 0.3s; /* 変形をアニメーション化 */
    width: 100%; /* 要素の幅 */
}
.common_btn01 a:hover:before {
    transform: scale(1, 1);
}
.common_btn01 a:after {
    display: block;
    content: "";
    transition: var(--tr);
    width: 16px;
    height: auto;
    mask-image: url(img/arrow.svg);
    background: var(--m_color);
    display: block;
    transition: var(--tr);
    aspect-ratio: 214 / 150;
    mask-repeat: no-repeat;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
}
.common_cta_inner {
    text-align: center;
}
.common_cta_phone {
    width: min(100%, 50%);
    background: var(--m_color);
}
.common_cta_mail {
    width: min(100%, 50%);
    background: var(--a_color);
}
.common_cta_inner a {
    font: 900 clamp(22px, 3vw, 55px) var(--font_en);
    color: var(--f_color);
    text-decoration: none;
    letter-spacing: 0.43vw;
}
.common_cta_inner img {
    width: 3vw;
    margin-right: 10px;
    display: block;
}

/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
body:not(.home):not(.single) h1,
body.single .h1 {
    content: attr(data-text);
    display: block;
    font-family: var(--font_en), var(--font_ja);
    text-transform: capitalize;
    font-size: clamp(25px, 4vw, 50px);
    font-weight: normal;
    margin-bottom: 20px;
    padding-right: min(80px, 7vw);
    letter-spacing: 0.15em;
}
body:not(.home):not(.single) h1:before,
body.single .h1:before {
    /* content: attr(data-text); */
    /* display: block; */
    /* font-family: var(--font_en); */
    /* text-transform: uppercase; */
    /* font-size: clamp(25px, 4vw, 50px); */
    /* font-weight: normal; */
    /* margin-bottom: 20px; */
}
body:not(.home):not(.single) h1:after,
body.single .h1:after {
    content: none;
    display: block;
    letter-spacing: 0;
    text-transform: uppercase;
    background: #fff;
    width: 100px;
    height: 2px;
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.singleh1 {
    /* color: var(--a_color); */
    padding: 0;
    font-size: clamp(18px, 3vw, 30px);
    margin-bottom: 20px;
    font-weight: normal;
    color: #000;
}
h2 {
    margin-bottom: 50px;
    position: relative;
}
.top_h2 {
    /* display: flex; */
    align-items: baseline;
    /* margin-bottom: var(--m_ps5); */
    gap: var(--m_ps3);
}
.top_h2 h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font-size: clamp(13px, 3vw, 16px);
    margin: 0;
    font-weight: normal;
    color: #000;
}
.top_h2 .data_text {
    font-weight: normal;
    letter-spacing: 0.1em;
    font-family: var(--font_en);
    font-size: clamp(13px, 3vw, 16px);
    /* color: var(--a_color); */
}
.top_h2 .data_text span {
    font-family: var(--font_en);
    font-size: clamp(25px, 5vw, 40px);
    font-weight: 400;
    color: #000;
}
.top_h2 h2:after {
    /* content: ""; */
    background: var(--f_color);
    width: 100px;
    height: 2px;
    display: block;
    border-radius: 10px;
    margin-top: 30px;
}
.other_h2 {
    font-weight: normal;
    letter-spacing: 0.15em;
    font-size: clamp(20px, 3vw, 25px);
    color: #000;
    margin-bottom: var(--m_ps5);
}
.other_h2 h2 {
}
.other_h2 h2:before {
}
h3 {
    font-weight: bold;
    margin: 0 0 50px;
    font-size: 25px;
    position: relative;
}
h3:after {
    /* content: ""; */
    width: 100px;
    height: 2px;
    background: var(--m_color);
    left: 0;
    top: 20px;
    display: block;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
}

/*-------------------------------------
レイアウト
-------------------------------------*/
@media only screen and (min-width: 551px) {
    body {
        min-width: 1000px;
    }
}
body {
    background: #f0efeb;
}
.wrap {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    max-width: 1920px;
}
.main_wrap {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
    position: relative;
}
.company_wrap:before {
    content: "";
    background: url(img/top_con01_bg02.png) no-repeat 50% / contain;
    aspect-ratio: 300/900;
    position: absolute;
    right: -3%;
    top: -19%;
    height: auto;
    width: min(300px, 16vw);
    z-index: 2;
    min-width: 200px;
    pointer-events: none;
}

/*-------------------------------------
header
-------------------------------------*/
.header {
    position: relative;
}

/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 130px;
    margin: 0;
    transition: var(--tr);
    position: absolute;
    left: 50px;
    top: 20px;
    /* margin-left: 50px; */
    z-index: 1;
    width: 250px;
}
.h_nav_wrap.is-fixed .site_ttl {
    width: auto;
    height: 80%;
    aspect-ratio: 300/43;
    top: 50%;
    transform: translateY(-50%);
}
.site_ttl a {
    display: block;
    color: #000000;
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
    filter: drop-shadow(0px 0px 0.5px #787878);
    display: flex;
    flex-flow: column;
    gap: min(5px, 0.5vw);
}
.header .site_ttl a:after {
    content: "myofascial release";
    font-family: var(--font_en);
    text-transform: capitalize;
    font-weight: normal;
    font-size: clamp(9px, 2.5vw, 16px);
    display: block;
    text-align: center;
}
.site_ttl a:hover {
    opacity: 0.7;
}
/*ナビ*/
.glass {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.h_nav_wrap {
    /* position: fixed; */
    margin-left: auto;
    /* padding: 20px 50px; */
    width: 100%;
    /* top: 0; */
    /* left: 0; */
    /* z-index: 9; */
    transition: var(--tr);
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 1;
}
.h_nav_wrap.is-fixed {
    /* padding: 10px 50px; */
    /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
}
.h_nav_inner {
    align-items: center;
    position: relative;
}
.header nav {
    /* height: 100%; */
    position: fixed;
    top: 0;
    right: 50px;
    z-index: 8;
}
.pc_h_nav {
    height: 100%;
}
.pc_h_nav ul {
    gap: min(30px, 5vw);
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav li {
}

.pc_h_nav a {
    text-decoration: none;
    color: var(--f_color);
    font-family: var(--font_en);
    letter-spacing: 0.05em;
    transition: var(--tr);
}
.pc_h_nav li:last-child {
}
.pc_h_nav li:last-child a {
    background: var(--m_color);
    color: #fff;
    border-radius: 100px;
    padding: 8px 30px;
    font-family: var(--font_ja);
    font-size: 13px;
}
.h_nav_wrap.is-fixed .pc_h_nav a {
    color: #fff;
}
.pc_h_nav a:hover {
    opacity: 0.8;
}

/*************************************/
.h_img_wrap {
    padding-top: 80px;
    padding-bottom: 80px;
    height: 100vh;
    padding-left: min(80px, 7vw);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
}
body:not(.home) .h_img_wrap {
    /* padding-top: calc(var(--main_mp) * 2.5); */
    padding-bottom: calc(var(--main_mp) * 1.5);
    text-align: center;
    height: 700px;
}
.h_img_wrap:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    /* background: var(--a_color); */
    mix-blend-mode: soft-light;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}
body:not(.home) .h_img_wrap:before {
    background: var(--a_color);
}
.h_img_wrap:after {
    content: "";
    position: absolute;
    left: min(80px, 7vw);
    top: 80px;
    /* background: url(img/header_bg.png) no-repeat 50% / cover; */
    width: calc(100% - min(80px, 7vw));
    height: calc(100% - (80px + 80px));
    pointer-events: none;
}
body:not(.home) .h_img_wrap:after {
    background: url(img/header_bg.png) no-repeat 50% / cover;
}
.h_img_wrap img {
    /* height: auto; */
    /* width: min(1100px, 82vw); */
    /* object-fit: cover; */
    /* aspect-ratio: 1920/1398; */
    /* position: absolute; */
    /* left: 45vw; */
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10vw 0 0 10vw;
}
.h_img_wrap > p {
    position: absolute;
    left: 16vw;
    top: 61%;
    transform: translateY(-50%);
    font-size: clamp(20px, 2.5vw, 28px);
    color: #000;
}
.h_img_wrap > p span {
    display: block;
    color: #000;
    font-family: var(--font_en);
    font-size: clamp(13px, 2.5vw, 18px);
    text-transform: capitalize;
    letter-spacing: 0.15em;
    margin-top: min(25px, 3vw);
}

.h_img_wrap > div:not(.h1) {
    position: absolute;
    /* left: min(80px, 7vw); */
    top: min(80px, 7vw);
    width: 100%;
    height: calc(100% - (min(80px, 7vw) * 2));
    height: 100%;
}
.h_img_wrap > div:not(.h1):before {
    content: "";
    background: url(img/top_con01_bg01.png) no-repeat 50% / contain;
    aspect-ratio: 300/900;
    position: absolute;
    left: 0;
    bottom: -8%;
    height: auto;
    width: min(240px, 16vw);
    z-index: 2;
    min-width: 200px;
    pointer-events: none;
}
body:not(.home) .h_img_wrap > div:not(.h1):before {
    width: min(180px, 14vw);
    min-width: 0;
}
.h_img_wrap > div:after {
    content: "";
}

/***** ハンバーガーメニュー *****/
.scroll-prevent {
    overflow: hidden;
}

/************/
.sp_h_nav {
    display: flex;
    /* gap: min(30px, 3vw); */
}
.sp_h_nav > .common_btn00 {
    background: var(--gr);
    transition: var(--tr);
}
.sp_h_nav > .common_btn00 a {
    color: #fff;
    padding: 0px 30px;
    font-family: var(--font_en);
    font-size: clamp(14px, 3vw, 20px);
    text-decoration: none;
    position: relative;
    gap: 7px;
    letter-spacing: 0.05em;
    display: flex;
    height: 100%;
    align-items: center;
    /* text-transform: capitalize; */
}
.sp_h_nav > .common_btn00 a:after {
    background: #fff;
}
.menu-trigger:hover,
.sp_h_nav > .common_btn00:hover {
    filter: brightness(1.1);
}
.menu-trigger {
    display: inline-block;
    width: 60px;
    height: auto;
    vertical-align: middle;
    cursor: pointer;
    position: relative;
    /* top: 18px; */
    /* right: 50px; */
    z-index: 100;
    aspect-ratio: 1/0.9;
    transition: var(--tr);
    background: var(--a_color);
    /* padding: 15px; */
}
.menu-trigger:after {
    content: "Menu";
    font-family: var(--font_en);
    color: #fff;
    font-size: 11px;
    display: block;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}
.h_nav_wrap.is-fixed .menu-trigger {
    top: 9px;
}
.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 15px;
    width: 50%;
    height: 1px;
    background-color: #fffffe;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .menu-trigger span {
    /* background: #fff; */
}
.menu-trigger.active span {
    background-color: #ffffff !important;
}
.menu-trigger span:nth-of-type(1) {
    top: 12px;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(4px) rotate(-45deg);
    /* width: 40%; */
}
.menu-trigger span:nth-of-type(2) {
    top: 34%;
    /* width: 60%; */
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 29px;
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(45deg);
    /* width: 40%; */
}
.sp_h_nav_inner {
    width: 100%;
    height: 100%;
    padding: 75px 0;
    position: fixed;
    top: 0;
    z-index: 8;
    left: 100%;
    transition: var(--tr);
    overflow-y: auto;
    background: rgb(49 34 5 / 25%);
    backdrop-filter: blur(5px);
}
nav.open .sp_h_nav_inner {
    left: 0;
}
.sp_h_nav_inner ul {
    height: auto;
    margin-bottom: min(100px, 7vw);
    display: flex;
    flex-flow: column;
    gap: min(30px, 7vw);
    padding-left: min(var(--main_mp), 10vw);
    padding-right: min(var(--main_mp), 10vw);
}
.sp_h_nav_inner .sp_h_nav_list li {
}
.sp_h_nav_inner .sp_h_nav_list li:not(:last-child) a {
    text-align: left;
    position: relative;
    display: block;
    text-decoration: none;
    color: #ffffff;
    /* padding: 10px 20px; */
    font-family: var(--font_en);
    font-size: clamp(22px, 4vw, 50px);
    width: fit-content;
    position: relative;
}
.sp_h_nav_inner .sp_h_nav_list li:not(:last-child) a:before {
    background-color: #fff; /* 下線の色 */
    bottom: -4px; /* 要素の下端からの距離 */
    content: ""; /* 要素に内容を追加 */
    height: 2px; /* 下線の高さ */
    left: 0; /* 要素の左端からの距離 */
    position: absolute; /* 絶対位置指定 */
    transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
    transform-origin: left top; /* 変形の原点を左上に指定 */
    transition: transform 0.3s; /* 変形をアニメーション化 */
    width: 100%; /* 要素の幅 */
}
.sp_h_nav_inner .sp_h_nav_list li:not(:last-child) a:hover:before {
    transform: scale(1, 1);
}
.sp_h_nav_inner .sp_h_nav_list li:last-child a {
    color: #fff;
    font-family: var(--font_en);
    font-size: clamp(22px, 4vw, 50px);
    text-transform: capitalize;
    border-bottom: 1px solid #fff;
}
.sp_h_nav_inner .sp_h_nav_list li:last-child a:after {
    background: #fff;
}

.sp_h_nav_inner .sp_h_nav_list_inner {
    border-bottom: none;
}
.sp_h_nav_inner .sp_h_nav_list_inner li a {
    padding: 10px 0 10px 60px;
    color: #666;
}
.sp_h_nav_inner .sp_h_nav_list_inner li a:before {
    content: "┗";
    font-weight: normal;
    left: 40px;
    color: var(--f_color);
}
.sp_h_nav_inner li:last-child {
    /* border: none; */
    /* text-align: center; */
    /* margin: 10px 0 0 0; */
    display: flex;
    justify-content: center;
}
.sp_h_nav_tel {
    padding: 30px 10px;
    text-align: center;
    width: min(500px, 90%);
    margin: 0 auto;
    background: rgb(255 255 255 / 37%); /* 透明背景色 */
    /* 角丸 */
    /* 影 */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); /* 影 */
    /* ぼかし */
    backdrop-filter: blur(5px); /* ぼかし */
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.sp_h_nav_tel a {
    text-decoration: none;
    color: #ffffff;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 0.4vw;
    font-size: clamp(22px, 3vw, 32px);
    font-family: var(--font_en);
}
.sp_h_nav_tel i {
    color: #ffffff;
    font-size: 0.8em;
    padding-right: 5px;
}
.sp_h_nav_tel p {
    color: #fff;
}
.sp_h_nav_sns {
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: min(50px, 5vw);
}
.sp_h_nav_sns a {
    background: #fbfbf8;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-decoration: none;
}
.sp_h_nav_sns a i {
    color: var(--m_color);
}
.sp_h_nav_sns img {
    max-width: 28px;
}

/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_wrap {
    position: relative;
}
.top_con01_inner {
    justify-content: center;
    gap: 15vw;
    align-items: flex-start;
}
.top_con01_inner:before {
    content: "";
    background: url(img/bg_02.png) no-repeat 50% / contain;
    aspect-ratio: 1/1;
    height: auto;
    width: min(400px, 30vw);
    position: absolute;
    right: -4%;
    bottom: calc((var(--main_mp) * -1) * 2.2);
}

.top_con01_img {
    /*     width: min(300px, 20%);
    min-height: 300px; */
    max-width: var(--main_w);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--m_ps8);
    position: relative;
}
.top_con01_img img {
    /* filter: drop-shadow(30px 33px 15px rgba(0, 0, 0, 0.2)); */
}
.top_con01_img:after {
    /* content: ""; */
    background: url(img/top_con01_img02.jpg) no-repeat 50% / contain;
    aspect-ratio: 750/500;
    position: absolute;
    left: 60%;
    top: 50%;
    height: auto;
    width: min(700px, 210%);
    display: block;
    transform: translateY(-50%);
    z-index: -1;
}
/* .top_con01_img:before {
    content: "";
    background: url(img/top_con01_img02.jpg) no-repeat 50% / contain;
    aspect-ratio: 1500/500;
    position: absolute;
    left: 50%;
    top: 50%;
    height: auto;
    width: min(1260px, 420%);
    display: block;
    transform: translate(-50%, -50%);
} */
.top_ttl {
    font-size: clamp(22px, 4vw, 32px);
    color: #000;
    letter-spacing: 0.15em;
    position: relative;
    width: fit-content;
    white-space: nowrap;
    font-weight: normal;
}
.top_ttl h2 {
    font-weight: normal;
    font-size: clamp(16px, 4vw, 18px);
    margin-bottom: 0;
    color: var(--a_color);
    font-family: var(--font_en);
    position: relative;
    color: #000;
}
.top_ttl h2:before {
    content: "";
    position: absolute;
    right: calc(100% + 10px);
    top: 15px;
    width: 10px;
    height: 1px;
    background: var(--a_color);
    background: #000;
}
.fc.top_ttl {
    margin-left: auto;
    margin-right: auto;
}
.fc.top_ttl h2 {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.fc.top_ttl h2:before {
}
.fc.top_ttl h2:after {
    content: "";
    position: absolute;
    left: calc(100% + 10px);
    top: 15px;
    width: 10px;
    height: 1px;
    background: var(--a_color);
    background: #000;
}

.top_con01_ttl {
}
.top_con01_txt {
    position: relative;
    z-index: 1;
}
@media only screen and (min-width: 1000px) {
    .top_con01_txt {
        text-shadow:
            #f0efeb 2px 0px,
            #f0efeb -2px 0px,
            #f0efeb 0px -2px,
            #f0efeb 0px 2px,
            #f0efeb 2px 2px,
            #f0efeb -2px 2px,
            #f0efeb 2px -2px,
            #f0efeb -2px -2px,
            #f0efeb 1px 2px,
            #f0efeb -1px 2px,
            #f0efeb 1px -2px,
            #f0efeb -1px -2px,
            #f0efeb 2px 1px,
            #f0efeb -2px 1px,
            #f0efeb 2px -1px,
            #f0efeb -2px -1px;
    }
}
.top_con01_ttl:before {
    left: -5%;
    display: block;
    content: "";
    transform: translate(-50%, -50%);
    transition: var(--tr);
    width: 65%;
    height: auto;
    mask-image: url(img/logo_mark.svg);
    background: #fff;
    position: absolute;
    top: 50%;
    transition: var(--tr);
    aspect-ratio: 166 / 150;
    mask-repeat: no-repeat;
    z-index: -1;
    opacity: 0.5;
}

/*-------------------------------------
TOP 2コンテンツ目
-------------------------------------*/
.top_con02_wrap {
    background: var(--gr);
    transition: background 500ms ease-in-out;
}
.top_con02_wrap:hover {
}
.top_con02_inner {
}

/*-------------------------------------
お知らせ
-------------------------------------*/
.new_wrap {
    border-top: none;
    position: relative;
}
.bg01 {
    position: relative;
}
.bg01:before {
    content: "";
    background:
        url(img/header_bg.png) no-repeat 50% / cover,
        #59371152;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    mix-blend-mode: multiply;
}
.new_inner {
    position: relative;
}
time {
    display: block;
    letter-spacing: 0.1em;
    font-family: var(--font_en);
    font-size: 14px;
    /* font-weight: bold; */
    /* color: #000; */
    color: var(--m_color);
}
.new_list {
    border-top: 1px solid var(--b_color);
    padding-top: 30px;
}
.new_list li {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--b_color);
}
.new_list li:last-child {
    margin-bottom: 0;
}
.new_item_date {
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    row-gap: 10px;
}
.new_item_date > div.flex {
    align-items: center;
    gap: 10px;
}
.new_item_cat {
    color: var(--m_color);
    border: 1px solid;
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
}
.new_item_ttl {
    color: #000000;
    padding-right: 55px;
}
.news_txt {
    margin-top: 20px;
    display: none;
}
.news_txt p {
    margin-bottom: 30px;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}
/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    content: "";
    width: 20px;
    background: var(--b_color);
    transition: var(--tr);
    height: 1px;
}
.new_item_date::before {
    top: 18px;
    right: 15px;
    transform: rotate(0deg);
}
.new_item_date::after {
    top: 18px;
    right: 15px;
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}

/*-------------------------------------
TOPページインスタ
-------------------------------------*/
.top_sns_wrap {
}
.top_sns_ig .top_h2 h2:after {
    margin-left: auto;
    margin-right: auto;
}
.top_sns_wrap > div {
    width: 100%;
}
.top_sns_ig {
}
.insta_img_list {
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.insta_img_list:before {
    content: "";
    order: 2;
    width: calc(100% / 5 - 5px);
}
.insta_img_list:after {
    content: "";
    width: calc(100% / 5 - 5px);
}
.insta_img_list .item {
    position: relative;
    z-index: 0;
    width: calc(100% / 5 - 5px);
    overflow: hidden;
    margin-bottom: 10px;
}
.insta_img_list .item a {
    display: block;
    position: relative;
    /* height: 100%; */
    aspect-ratio: 1/1;
}
.insta_img_list .item img {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: #ffffff;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    /* content: "\f015"; */
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
Before&After
-------------------------------------*/
.beforeafter_con01 {
}
.beforeafter_con01_inner {
    margin-bottom: var(--m_ps5);
    justify-content: space-between;
    align-items: flex-end;
}
.beforeafter_con01_item_img {
    margin-bottom: 0px;
}
.beforeafter_con01_item_img .img {
    margin-bottom: 15px;
}
.beforeafter_con01_item_img .txt {
    gap: 3vw;
}
.beforeafter_con01_item_img .txt div {
    flex: 1;
    text-align: center;
    color: var(--a_color);
    font-family: var(--font_en);
    font-size: clamp(16px, 3vw, 20px);
}
.beforeafter_con01_item_txt {
}
.beforeafter_con01_item_num {
    font-family: var(--font_en);
    font-size: clamp(25px, 3vw, 70px);
    color: var(--m_color);
}
.beforeafter_con01_item_ttl {
    font-size: clamp(16px, 3vw, 18px);
}

.beforeafter_con01_txt .top_h2 {
}
.beforeafter_con01_txt .top_h2 .h2 {
    z-index: 0;
    letter-spacing: 0.15em;
    font-size: clamp(22px, 3vw, 32px);
    margin: 0;
    font-weight: normal;
    color: #000;
}
.beforeafter_con01_txt .top_h2 div {
}

/*スライダー*/
.beforeafter_con01 .swiper {
    overflow: visible;
}
.beforeafter_con01 .swiper ul {
    gap: min(80px, 5vw);
}
.beforeafter_con01 .swiper-scrollbar {
    cursor: pointer;
    height: 6px;
    left: 0;
    margin-top: 40px;
    position: static;
    width: 100%;
}
.beforeafter_con01 .swiper-scrollbar-drag {
    background: var(--m_color);
}
.beforeafter_con01 .swiper-controller {
    display: flex;
    gap: min(1.6rem, 4vw);
    align-items: center;
    justify-content: flex-end;
}
.beforeafter_con01 .swiper-pagination {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.2rem 0.8rem;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin: 0 auto 0 0;
    text-align: center;
}
.beforeafter_con01 .swiper-footer {
    margin-top: min(30px, 10vw);
    align-items: center;
    justify-content: space-between;
}
.beforeafter_con01 .swiper-pagination-bullet {
    width: 1.6rem;
    height: 3px;
    cursor: pointer;
    transition: var(--tr);
    vertical-align: top;
    background: #999;
    border-radius: 0;
    margin: 0 !important;
}
.beforeafter_con01 .swiper-pagination-bullet-active {
    width: 4rem;
    background-color: var(--m_color);
}
.beforeafter_con01 .swiper-button-prev,
.beforeafter_con01 .swiper-button-next {
    position: relative;
    /* flex-shrink: 0; */
    margin: 0;
    /* display: grid; */
    /* place-content: center; */
    width: 50px;
    height: auto;
    aspect-ratio: 1/1;
    cursor: pointer;
    transition: var(--tr);
    background: var(--m_color);
    left: 0;
}
.beforeafter_con01 .swiper-button-prev::before,
.beforeafter_con01 .swiper-button-next::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* content: ""; */
    border-radius: 50%;
    box-shadow:
        8px 8px 12px rgba(0, 0, 0, 0.05),
        -8px -8px 12px #fff;
    transition: var(--tr);
}
.beforeafter_con01 .swiper-button-prev:hover::before,
.beforeafter_con01 .swiper-button-next:hover::before {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.beforeafter_con01 .swiper-button-prev::after,
.beforeafter_con01 .swiper-button-next::after {
    width: 10px;
    height: 10px;
    content: "";
    border: solid #ddd;
    border-width: 3px 3px 0 0;
}
.beforeafter_con01 .swiper-button-prev::after {
    margin-left: 0.4rem;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.beforeafter_con01 .swiper-button-next::after {
    margin-right: 0.4rem;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.beforeafter_con01 .swiper-button-disabled {
    pointer-events: none;
    opacity: 0.5;
}

.beforeafter_con01 .swiper-button-disabled::before {
    box-shadow:
        inset 8px 8px 12px rgba(0, 0, 0, 0.05),
        inset -8px -8px 12px #fff;
}
.beforeafter_con01 .swiper-slide {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: min(1000px, 50vw);
    margin: 0 !important;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
    position: relative;
}
.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 1px solid #ddd;
}
.company_inner dt {
    float: left;
    width: 27.27%;
    padding: 23px 0;
    border-bottom: 1px solid #ddd;
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    width: 72.73%;
    border-bottom: 1px solid #ddd;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/*-------------------------------------
methodページ
-------------------------------------*/
.method_img {
    position: relative;
}
.method_img:before {
    content: "";
    background: url(img/bg_02.png) no-repeat 50% / contain;
    aspect-ratio: 1/1;
    height: auto;
    width: min(400px, 30vw);
    position: absolute;
    right: -18%;
    bottom: -10%;
}

/*-------------------------------------
priceページ
-------------------------------------*/
.price_inner {
}
.price_con01 {
}
.price_con01 ul {
    gap: var(--m_ps5);
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */ /* grid-gap: var(--m_ps5); */
    flex-wrap: wrap;
}
.price_con01 ul li {
    position: relative;
    padding: var(--m_ps5);
    width: calc(100% / 2 - (var(--m_ps5) / 2));
}
.price_con01 ul li:before {
    content: "";
    background:
        url(img/header_bg.png) no-repeat 50% / cover,
        #59371152;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.2;
    mix-blend-mode: multiply;
    pointer-events: none;
}
.price_con01_img {
    margin-bottom: 20px;
    position: relative;
}
.price_con01_ttl {
    font-size: clamp(20px, 3vw, 26px);
    color: #000;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}
.price_con01_list {
    display: flex;
    flex-flow: column;
    justify-content: center;
    margin-top: 20px;
    row-gap: 10px;
}
.price_con01_item {
    gap: 10px;
    align-items: baseline;
}
.price_con01_item_time {
    border: 1px solid;
    color: var(--m_color);
    font-size: clamp(13px, 3vw, 14px);
    line-height: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
    min-width: 100px;
}
.fast .price_con01_item_time {
    color: #fff;
    background: var(--m_color);
    border: none;
}
.fast .price_con01_item_tax span {
    color: var(--m_color);
}
.price_con01_item_tax {
    font-size: clamp(13px, 3vw, 16px);
}
.price_con01_item_tax span {
    font-size: clamp(18px, 3vw, 20px);
    padding-right: 3px;
}

/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap,
.single_wrap {
    gap: var(--m_ps8);
}
.blog_inner,
.single_inner,
.search_inner {
    flex: 1;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_inner ul:not(.post-categories) {
    display: flex;
    gap: var(--m_ps5);
    flex-flow: column;
}
.blog_inner li {
}
.blog_con {
    display: flex;
    gap: min(var(--m_ps3), 5vw);
    align-items: flex-start;
}
.blog_photo {
    width: 40%;
    aspect-ratio: 3/2;
    height: auto;
}
.blog_photo a {
    width: 100%;
    height: 100%;
    display: block;
}
.blog_photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.blog_text {
    flex: 1;
}
.blog_title {
    /* margin: 0 0 10px; */
    text-align: left;
    font-size: 16px;
}
.blog_title a {
    color: var(--f_color);
    text-decoration: none;
    font-weight: normal;
    font-size: clamp(14px, 3vw, 16px);
}
.blog_text .tags {
    margin-bottom: 10px;
}
.post-categories li {
    line-height: 1;
}
.blog_clock i {
    color: var(--m_color);
}
.blog_clock time {
    color: var(--m_color);
    font-weight: normal;
    line-height: 1;
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.post-categories li a {
    display: inline-block;
    padding: 5px 10px;
    font-size: 0.8125rem;
    color: var(--m_color);
    border: 1px solid;
    text-decoration: none;
    line-height: 1;
}
.post-categories li a:hover {
    background: #f9f9f4;
    color: var(--m_color);
}
.post-categories li a:hover:before {
    color: var(--m_color);
}
.post-categories li a:before {
    /* content: "#"; */
    /* font: 100%/1 "font awesome 6 free"; */
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;

    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: #3f51b5;
}
.share_sns_container li:nth-of-type(2) :before {
    color: #222;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: var(--a_color);
    padding: 10px 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-size: 1.4375rem;
    border-bottom: 1px solid;
    padding: 0 0 5px;
    color: var(--a_color);
    font-weight: normal;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;
    font-weight: normal;
    font-size: 1.25rem;
    color: var(--a_color);
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
    max-width: 100%;
    height: auto;
    display: block;
    width: revert-layer;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    margin: 0 0 25px;
    line-height: 1.8;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff66 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #e6f7f5;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #f9f9f4;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f9f9f4;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid var(--a_color);
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル　ページネーション*/
.single_pagenavi {
    justify-content: space-between;
}
.single_pagenavi.has-pagination {
    margin-top: var(--main_mp);
}
.single_pagenavi .next {
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    max-width: 800px;
    width: 100%;
    line-height: 1.5em;
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
}
.outline__toggle {
    display: none;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-left: 5px;
    border-radius: 5px;
}
.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}
.outline__switch + .outline__list {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: -20px 0;
    transition: var(--tr);
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    transition: var(--tr);
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}
ul.outline__list ul {
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_wrap {
    width: 250px;
    display: flex;
    flex-flow: column;
    gap: var(--m_ps5);
}
.side_wrap .widget {
}
.widget_title {
    margin-bottom: var(--m_ps3);
}
.widget_title div {
    color: var(--m_color);
    letter-spacing: 0.05em;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    font-family: var(--font_en);
    font-size: clamp(16px, 3vw, 32px);
}
.side_wrap li {
    position: relative;
    transition: var(--tr);
}
.side_wrap li:hover {
    opacity: 0.7;
}
.side_wrap li a {
    font-size: 0.8125rem;
    text-decoration: none;
    color: var(--f_color);
}
.side_wrap li a > div:nth-child(1) {
    width: 70px;
    height: auto;
    aspect-ratio: 3/2;
}
.side_wrap li a > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side_wrap li a > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.side_wrap .widget ul {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.widget_my_widget_recent_posts li a {
    gap: 10px;
    align-items: flex-start;
}
.widget_my_widget_recent_posts .news_clock {
    gap: 3px;
}
.widget_my_widget_recent_posts .news_clock * {
    line-height: 1;
}

/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    outline: 0;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    padding: 0 0 0 15px;
}
.widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: -4px;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    margin-top: var(--main_mp);
    gap: 10px;
}
.wp-pagenavi .page-numbers {
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    font-family: var(--font_en);
    font-weight: bold;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_wrap {
    max-width: min(1000px, calc(100% - (var(--m_ps8) * 2)));
}
.contact_inner {
}
.contact_info {
    text-align: center;
    background: #f1f1f1f1;
    padding: 40px 20px;
    margin: 0 auto 5vw;
    background: url(img/bg02.jpg);
}
.contact_info a {
    text-decoration: none;
    color: var(--f_color);
    width: 100%;
    cursor: pointer;
    letter-spacing: 0.05em;
    font-size: clamp(27px, 5vw, 45px);
    font-family: var(--font_en);
    gap: min(10px, 2vw);
}
.contact_info a i {
    color: var(--f_color);
    font-size: 0.8em;
}
.contact_info a:hover {
    opacity: 0.7;
}

/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    background: #fff;
}
.wpcf7_left {
    max-width: 200px;
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
}
.wpcf7_left legend {
    display: inline-block;
    width: fit-content;
}
form.wpcf7-form .required:before {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}
form.wpcf7-form .required2:before {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 5px 10px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    vertical-align: middle;
    line-height: 1;
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
    /* border-bottom: none; */
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    /* border-radius: 3px; */
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #fff;
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--m_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: #fbfbf8;
    border: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: #202020;
}
#wpcf7cpcnf table td {
    background: #fff;
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: #555;
    color: #fff;
    border: none;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
/* フッター */
.footer {
    background: #847f7e;
    position: relative;
    z-index: 0;
}
.footer_inner {
    justify-content: space-between;
    /* padding-left: var(--m_ps8); */
    /* padding-right: var(--m_ps8); */
}
.footer_nav {
}
.footer_nav a {
    text-decoration: none;
    position: relative;
    margin: 0 30px 0 0;
    font-size: 0.8125rem;
    color: #fff;
}
.footer_nav a:before {
    font-family: "Font Awesome 6 Free";
    font-weight: bold;
    content: "\f105";
    display: inline-block;
    margin: 0 3px 0 0;
}
.footer_nav a:hover {
    text-decoration: underline;
}
.footer_address {
    /* text-align: center; */
    letter-spacing: 0.15em;
    width: 50%;
    /* padding-left: var(--m_ps8); */
    /* padding-right: var(--m_ps8); */
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.footer_address .site_ttl {
    padding: 0;
    position: static;
    background: none;
    width: min(100px, 80%);
}
.footer_address .site_ttl a {
    margin: 0 auto;
}
/*sns部分*/
.footer_address_sns {
    margin-top: 20px;
    margin-bottom: 30px;
}
.footer_address_sns a {
    font-size: 25px;
    display: inline-block;
}
.footer_address_sns i {
    color: #ddd;
}
.footer_address + div {
    flex: 1;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
}
.footer_address + div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*アドレス*/
.address_container {
    /* text-align: center; */
    font-size: clamp(11px, 3vw, 13px);
    margin: 30px 0 0;
    color: #fff;
    line-height: min(22px, 65vw);
}
.address_container a {
    color: #fff;
    text-decoration: none;
}
.copyright {
    /* text-align: center; */
    border: none;
    color: #fff;
    font-size: 11px;
    /* border-top: 1px solid #474747; */
    /* padding: 35px 20px; */
}
.copyright p {
    color: #fff;
}
.copyright a {
    font-size: 0.875rem;
    color: #fff;
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--m_color);
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 1024px) {
    .wrap {
        /* background: none; */
    }
    .h_img_wrap {
        /* height: 54vh; */
    }
}
@media only screen and (min-width: 821px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 820px) {
    /*-------------------------------------
    CTA
    -------------------------------------*/

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .main_col {
        margin-bottom: 80px;
    }
    .main_pa {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .sp_none {
        display: none !important;
    }
    .main_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_img_wrap {
        /* height: 70vh; */
    }
    .h_img_wrap img {
        left: 50vw;
        /* width: 100vw; */
    }
    .h_nav_wrap {
        background: none;
        padding: 30px 30px;
    }
    .h_nav_wrap.is-fixed {
        padding: 20px 30px;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
        height: 400px;
    }

    /******使わない時はコメントアウト推奨 hader_nav.phpの部分も*****/
    /* .stripeWrapper {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 1;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        left: 0;
        top: 0;
    }
    .stripe {
        background-color: var(--m_color);
        transform: translateY(-100%);
    }
    .sp_h_nav_inner {
        position: absolute;
        top: 0%;
        left: 50% !important;
        transform: translate(-50%, 0%);
        height: 100svh;
        z-index: 2;
        opacity: 0;
        visibility: hidden;
        background: none;
    }
    .sp_h_nav_inner li {
        width: fit-content;
        overflow: hidden;
    } */

    /*ハンバーガーメニューここまで*/
    /***************************/

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }
    .new_inner {
    }
    .new_inner:before {
        font-size: 120px;
        margin-right: 20px;
    }

    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_wrap,
    .single_wrap {
        display: block;
    }
    .blog_inner,
    .single_inner,
    .search_inner,
    .side_wrap {
        width: 100%;
    }
    .blog_inner {
        margin: 0 0 50px;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
        --main_w: min(1200px, calc(100% - (30px * 2)));
        --main_w2: min(1400px, calc(100% - (30px * 2)));
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .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: 25px; */
        /* padding: 0 30px; */
    }
    body:not(.home) h1.singleh1 {
        padding: 0;
        font-size: 20px;
    }
    body:not(.home) h1:before {
        font-size: 23px;
    }
    body:not(.home) h1::after {
        left: 23px;
        top: 14px;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    .top_h2 h2 {
        margin-bottom: 30px;
    }
    .top_h2 h2:after {
        margin-top: 25px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }

    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner a {
        flex-flow: column;
        padding: 0 20px;
    }
    .common_cta_inner img {
        width: 40px;
        margin-bottom: 10px;
        margin-right: 0;
    }

    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap {
        font-size: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .h_nav_wrap {
        padding: 30px 20px;
    }
    .h_nav_wrap.is-fixed {
        padding: 20px 20px;
    }
    .site_ttl {
        width: 32vw;
        left: 20px;
        top: 29px;
    }
    .site_ttl a {
        /* color: #fff; */
    }
    .menu-trigger {
        /* top: 30px; */
        /* right: 20px; */
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 19px;
    }

    .h_img_wrap {
        height: 100vh;
        padding-bottom: 50px;
        max-height: 800px;
    }
    .h_img_wrap > p {
        left: auto;
        right: 10px;
        top: 35%;
    }
    .h_img_wrap img {
        width: 124vw;
        left: 0vw;
        max-width: none;
        width: 80vw;
    }
    .h_img_wrap > div:not(.h1) {
        height: calc(100% - (50px + 80px));
        top: 80px;
    }
    .h_img_wrap:after {
        height: calc(100% - (50px + 80px));
    }
    .header nav {
        right: 0;
    }
    .sp_h_nav > .common_btn01 a {
        padding: 0px 20px;
    }
    .h_img_wrap > div:not(.h1):before {
        width: 35vw;
        min-width: 0;
        bottom: -39%;
    }
    body:not(.home) .h_img_wrap > div:not(.h1):before {
        width: auto;
        height: 60vw;
    }

    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner {
        flex-flow: column;
        gap: 50px;
    }
    .top_con01_inner:before {
        width: min(200px, 50vw);
        bottom: -20%;
    }
    .top_con01_img {
        /*  width: 50%; */
        aspect-ratio: 300/100;
    }
    .top_con01_img img {
        filter: none;
        width: 200%;
        height: auto;
        aspect-ratio: 300/200;
        object-fit: cover;
        object-position: 100% 50%;
    }
    .top_con01_img:before {
        left: -50%;
    }
    .top_con01_ttl {
        font-size: 25px;
    }
    .top_con01_ttl:before {
        left: 50%;
        width: 50%;
    }
    .top_con01_txt p {
        /* line-height: 2; */
    }

    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_item_ttl {
        padding-right: 0;
    }
    .new_item_ttl,
    .news_txt {
        line-height: 1.8;
    }

    /*-------------------------------------
    TOPページインスタ
    -------------------------------------*/
    .insta_img_list .item {
        width: calc(100% / 2 - 5px);
        margin-bottom: 5px;
    }
    .new_item_date::before {
        top: 15px;
        right: 0;
    }
    .new_item_date::after {
        top: 15px;
        right: 0px;
    }

    /*-------------------------------------
    beforeafter_
    -------------------------------------*/
    .beforeafter_con01_inner {
        display: block;
    }
    .beforeafter_con01_txt .top_h2 div {
        margin-bottom: 10px;
    }
    .beforeafter_con01 .swiper-slide {
        width: 80vw;
    }

    /*-------------------------------------
    price
    -------------------------------------*/
    .price_con01 ul {
        flex-flow: column;
    }
    .price_con01 ul li {
        width: 100%;
    }
    .price_con01_item {
        flex-wrap: wrap;
    }
    .price_con01_item_time {
        min-width: 90px;
    }

    .company_wrap:before {
        width: 100px;
        min-width: 0;
        top: -13%;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_wrap {
        max-width: min(1000px, calc(100% - (30px * 2)));
    }
    .contact_inner > p {
        text-align: left;
    }
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .wpcf7-form_form .flex {
        display: block;
        border-bottom: 1px solid #ddd;
        padding: 0 0 15px;
    }
    .wpcf7_left {
        max-width: 100%;
        border: none;
        padding: 10px 0;
        display: block;
    }
    .wpcf7_right {
        /* border-left: 1px solid #ddd; */
        padding: 0;
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }

    /*確認画面*/
    .main_wrap #wpcf7cpcnf {
        z-index: 2;
    }
    #wpcf7cpcnf table {
        border-bottom: 1px solid #ccc;
    }
    #wpcf7cpcnf table th {
        width: 100%;
        display: block;
        background: none;
        border-bottom: none;
        padding-bottom: 0;
        border-left: none;
        border-right: none;
    }
    #wpcf7cpcnf table td {
        width: 100%;
        display: block;
        border-top: none;
        border-bottom: none;
        border-left: none;
        border-right: none;
    }

    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_text {
        width: calc(100% - 130px);
        margin: 0;
    }
    .blog_title a {
        line-height: 1.8;
        display: block;
    }
    .blog_photo {
    }
    .blog_photo img {
    }
    .post-categories li a {
        font-size: 11px;
    }
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
        font-size: 16px;
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }
    .footer {
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .footer_address + div {
        position: static;
        width: 100vw;
        margin-right: calc(50% - 50vw);
        margin-left: calc(50% - 50vw);
    }
    .copyright {
        /* padding: 35px 50px 35px; */
        margin: 0;
    }
    .breadcrumbsinner {
        padding: 30px 20px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner {
        display: block;
        /* padding-left: 20px; */
        /* padding-right: 20px; */
    }
    .footer_address {
        width: 100%;
    }

    /*-------------------------------------
    footer追従ナビ
    -------------------------------------*/
    .sp_bar {
        padding-bottom: env(safe-area-inset-bottom);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        z-index: 9;
        background: var(--m_color);
    }
    .sp_bar li {
        width: calc(100% / 2);
        padding: 5px 0;
    }
    .sp_bar a {
        color: #fff;
        padding: 0 10px;
        display: block;
        font-size: 0.6875rem;
        text-align: center;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        position: relative;
        text-decoration: none;
    }
    .sp_bar li a:before {
        font-weight: bold;
        font-family: "Font Awesome 6 Free";
        display: block;
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f0e0";
    }
    .sp_bar li:nth-of-type(1) a:before {
        content: "\f095";
    }
    .sp_bar li:nth-of-type(2) :before {
        content: "\f077";
    }
}
@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}
