﻿@charset "UTF-8";
/*
Theme Name: atoro_2026
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", sans-serif;
    --font_eng: "JosefinSans", sans-serif;
    --m_color: #e8a600;
    --a_color: #1a1a1a;
    --shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
Navigation,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    color: #333;
    line-height: 1.8;
    font-size: 100%;
    vertical-align: baseline;
    background-color: transparent;
    font-weight: normal;
    font-family: var(--font_ja);
    font-size: 16px;
    font-weight: 500;
}
*,
*:after,
*:before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    line-height: 2;
    word-wrap: break-word;
    font-size: 16px;
    counter-reset: wpp-ranking;
    color: #333;
    position: relative;
    -webkit-text-size-adjust: 100%;
    font-weight: 500;
}
body.home{
    background: var(--m_color);
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
Navigation,
nav,
section {
    display: block;
}
nav ul {
    list-style: none;
    height: 100%;
}
ul,
ol,
li {
    list-style: none;
    padding: 0;
}
blockquote,
q {
    quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
    content: none;
}
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}
del {
    text-decoration: line-through;
}
abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #eee;
    margin: 1em 0;
    padding: 0;
}
input,
select {
    vertical-align: middle;
}
input {
    box-sizing: border-box;
}
strong {
}
a,
a:visited {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background-color: transparent;
    text-decoration: none;
    transition: .2s;
}
a:hover {
    text-decoration: none;
    opacity: .8;
}
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}
.clearfix:after {
    content: "";
    display: block;
    clear: both;
    overflow: hidden;
    height: 0px;
}
.clear {
    clear: both;
}
img {
    width: auto;
    max-width: 100%;
    vertical-align: bottom;
    margin: 0;
    padding: 0;
}
.t_center{
    text-align: center !important;
}
.t_left{
    text-align: left !important;
}
.t_right{
    text-align: right !important;
}
.radius_10{
    border-radius: 10px;
}
.radius_20{
    border-radius: 20px;
}
.radius_40{
    border-radius: 40px;
}
.bg_orange {
    background-color: var(--m_color);
}
.bg_gradation::before,
.bg_gradation::after {
	content: "";
	width: 70vmax;
	height: 70vmax;
	position: absolute;
	background: rgba(255, 255, 255, 0.07);
	left: -20vmin;
	top: -20vmin;
	/*animation: morph 15s linear infinite alternate, spin 20s linear infinite;*/
	z-index: 1;
	/*will-change: border-radius, transform;*/
    border-radius: 100%;
	transform-origin: 55% 55%;
	pointer-events: none;
    z-index: 1;
    justify-content: space-between;
}
.bg_gradation::after {
    width: 70vmin;
    height: 70vmin;
    left: auto;
    right: -10vmin;
    top: auto;
    bottom: 0;
    /*animation: morph 5s linear infinite alternate, spin 26s linear infinite reverse;*/
    transform-origin: 20% 20%;
}
@keyframes Gradient {
	0% {
		background-position: 0 50%
	}
	50% {
		background-position: 100% 50%
	}
	100% {
		background-position: 0 50%
	}
}
@keyframes morph {
    0% {
        border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    }
    100% {
        border-radius: 40% 60%;
    }
}
@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}
.bg_dotted{
    background-image: radial-gradient(rgba(255,255,255,0.4) 2px, transparent 2px), radial-gradient(rgba(255,255,255,0.4) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0,30px 30px;
    background-repeat: repeat;
}
.zindex2{
    z-index: 2;
}
.br0{
    border-radius: 0;
}
/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/* その場で */
.fadeIn {
    opacity : 0;
    transition : all 1.5s;
}
.fadeIn.active{
    opacity : 1;
}
/*フェードアップアニメーション*/
.fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.fadeUp:nth-child(2 + 2n) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.fadeUp-is-show {
    animation: fadeIn 0.5s ease forwards;
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*フェードアップ（下向き）アニメーション*/
.fadeDown {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, -20%, 0);
    transform: translate3d(0, -20%, 0);
}
.fadeDown:nth-child(2 + 2n) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.fadeDown-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/*-------------------------------------
共通パーツ
-------------------------------------*/
/*ボタン*/
/*コンテンツタイトル*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.header{
    position: relative;
}
body .wrap .header .other_h {
    background: none;
    width: 100%;
    max-width: 1500px;
    height: auto;
    margin: 0 auto;
    position: relative;
}
body:not(.home) h1 {
    z-index: 1;
    display: block;
    position: absolute;
    top: 50%;
    text-align: left;
    color: #fff;
    font-size: 20px;
    padding: 0;
    max-width: 1500px;
    margin: 0 auto;
    left: 50%;
    transform: translate(-50%,-50%);
    font-weight: 400;
    width: calc(100% - 40px);
    letter-spacing: 0.05em;
}
body:not(.home) h1:before {
    content: attr(data-text);
    display: block;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 0;
    font-family: var(--font_eng);
}
body:not(.home) .img_area {
    width: 50%;
    width: 100%;
    height: 100%;
    position: relative;
}
body:not(.home) .img_area:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(img/mv.jpg);
    background-position: center 53%;
    background-repeat: no-repeat;
    background-size: cover;
}
body:not(.home) .img_area .cat{
    position: absolute;
    z-index: 2;
    top: calc(50% + 70px);
    left: 0;
    right: 0;
    text-align: center;
    font-weight: 600;
    background-color: #fff;
    max-width: 160px;
    margin: 0 auto;
    color: #64b54f;
    display: inline-block;
    padding: 4px 0;
    border-radius: 4px;
}
body.error404 h1 {
    position: static;
    padding: 0;
    margin: 0 auto;
    font-weight: bold;
    font-size: 25px;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
    transform: none;
    margin-bottom: 30px;
    color:#333;
}
body.error404 h1 span{
    font-size: 100px;
    line-height: 1;
    display: block;
    padding: 0;
}
h2 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}
h3 {
    font-weight: bold;
    margin: 0 0 50px;
    font-size: 25px;
    position: relative;
    padding: 0 0 0 30px;
}
.full{
    width: 100% !important;
}
.flex {
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.flex_center {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_center_center {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_reverce .flex_img{
    order: 2;
}
.flexwrap{
    flex-wrap: wrap;
}
.between{
    justify-content: space-between;
}
.inner,
.inner_s,
.inner_m,
.inner_l{
    max-width: 1600px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}
.inner_s{
    max-width: 1000px;
}
.inner_m{
    max-width: 1200px;
}
.inner_l{
    max-width: 1800px;
}
.m0auto {
    margin:0 auto;
}
.mb0 {
    margin-bottom: 0px !important;
}
.mb10 {
    margin-bottom: 10px !important;
}
.mb20 {
    margin-bottom: 20px !important;
}
.mb30 {
    margin-bottom: 30px !important;
}
.mb40 {
    margin-bottom: 40px !important;
}
.mb60 {
    margin-bottom: 60px !important;
}
.mt0 {
    margin-top: 0px !important;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 20px !important;
}
.mt30 {
    margin-top: 30px !important;
}
.mt40 {
    margin-top: 40px !important;
}
.mt50 {
    margin-top: 50px !important;
}
.mt60 {
    margin-top: 60px !important;
}
.mr10{
    margin-right: 10px;
}
.ml10{
    margin-left: 10px;
}
.pt0 {
    padding-top: 0px !important;
}
.pt40 {
    padding-top: 40px !important;
}
.pb0 {
    padding-bottom: 0px !important;
}
.pb40 {
    padding-bottom: 40px !important;
}
.px20{
    padding-right:20px;
    padding-left: 20px;
}
.pr{
    position: relative;
}
.pa{
    position: absolute;
}
.fw3{
    font-weight: 300;
}
.fw4{
    font-weight: 400;
}
.fw6{
    font-weight: 600;
}
.fs14{
    font-size: 14px;
}
.fs16{
    font-size: 16px;
}
.fs18{
    font-size: 18px;
}
.fs24{
    font-size: 24px;
}
.line_2{
    line-height: 2.5;
}
.c_white{
    color:#fff !important;
}
.c_gray{
    color: #7b7b7b !important;
}
.c_gray_thin{
    color: #eeeeee !important;
}
.c_orange{
    color: var(--m_color) !important;
}
.bg_white{
    background-color: #fff;
}
.bg_black{
    background-color: #333;
}
.bg_orange{
    background-color: var(--m_color);
}
.bg_beige{
    background-color: #f9f5ed;
}
.bg_gray{
    background-color: #eee;
}
.i_block{
    display: inline-block;
}
.ds_block{
    display:block;
}
br.sp{
    display: none;
}
.height_full{
    height: 100%;
}
.eng{
    font-family: var(--font_eng);
}
/*-------------------------------------
共通追加
-------------------------------------*/
.btn{
    width: 200px;
    position: relative;
    margin: 60px 0 0 0;
}
.btn a{
    height: 100%;
    display: block;
    transition: .2s ease-in-out;
    text-decoration: none;
    width: 100%;
    max-width: 100%;
    padding: 20px 10px 14px 10px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    letter-spacing: 0.1em;
    color: #543a2e;
    border: 1px solid;
    font-family: "JosefinSans","游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.btn:hover a{
    opacity: 1;
}
.btn a:before{
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    border-top: 1px solid #543a2e;
    border-right: 1px solid #543a2e;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%) rotate(45deg);
    left: auto;
    right: 20px;
    transition: .2s ease-in-out;
}
.btn a.c_white:before{
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
}
.btn a:hover{
    color:#f6f4f2;
    background-color: #543a2e;
}
.btn a.c_white:hover{
    border:1px solid #543a2e;
}
.btn a:hover:before{
    border-top: 1px solid #f6f4f2;
    border-right: 1px solid #f6f4f2;
}
.sec_h2{
    font-size: 16px;
    margin-bottom: 80px;
    text-align: left;
    letter-spacing: 0.1em;
    font-weight: 600;
    position: relative !important;
    z-index: 2;
    padding-bottom: 0;
}
.sec_h2 .sec_h2_small{
    font-size: 60px;
    line-height: 1;
    letter-spacing: 0.15em;
    margin-top: 10px;
    position: relative;
    display: block;
}
.sec_h2.t_left .sec_h2_small{
    padding: 0 20px 10px 0;
}
.sec_h2 .sec_h2_small.no_square{
    padding: 0;
}
.sec_h2 .sec_h2_small.no_square:after{
    display: none;
}
h3.sec_h2 .sec_h2_small{
    font-size: 40px;
}
.sec_h2_small{
    font-family: "JosefinSans";
}
.sec_h2_small span{
    font-size: 60px;
    font-family: "游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","ヒラギノ角ゴ ProN W6",sans-serif;
    font-weight: bold;
    margin-top: 18px;
}
h3 {
    font-weight: 400;
    margin: 0 0 40px;
    font-size: 20px;
    position: relative;
    letter-spacing: 0;
    text-align: left;
    padding: 0 0 14px 0;
}
h4{
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 20px;
    padding-left: 0;
}
.sec_h4 {
    font-size: 16px;
}
.flex_txt{
    width: calc(50% - 160px);
    margin: 0 100px;
    position: relative;
    z-index: 2;
}
.flex .img_container{
    height: 500px;
    background-image: url(img/cta.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.flex_img{
    width: calc(100% - 550px);
    position: relative;
    z-index: 2;
}
.flex_img img{
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
}
.flex_reverse .flex_txt{
    order: 2;
    margin:0 0 0 60px;
}
.flex_reverse .flex_img{
    order: 1;
    margin:0;
}
.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 .5s ease-in-out infinite alternate;
	-moz-animation:blink .5s ease-in-out infinite alternate;
	animation:blink .5s ease-in-out infinite alternate;
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.object-fit-img{
    display: block;
    position: relative;
}
.object-fit-img:before{
    content:'';
    display: block;
    padding-top: 60%;
    pointer-events: none;
}
.object-fit-img img{
    margin: 0 auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    object-position: center;
}
/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    margin: 0 auto;
    max-width: 1920px;
    position: relative;
    /*overflow: hidden;*/
}
/*-------------------------------------
header
-------------------------------------*/
body.home .header {
    position: relative;
    background-size: cover;
}
.header_nav_container {
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1001;
    max-height: 102px;
    position: fixed;
    transition: .2s;
    height: 90px;
    align-items: center;
    box-shadow: none !important;
}
body.home .header_nav_container{
    transition: .2s;
    opacity: 0;
}
.is-loaded body.home .header_nav_container{
    animation: header_fadein 1s forwards;
}
@keyframes header_fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/*.header_nav_container.shadow{
    border: none;
    background-color: #fff;
}
body:not(.home) .header_nav_container{
    background-color: #fff;
}*/
.header_nav_container.shadow .pc_header_nav ul{
    border: none;
}
.header_nav_container .pc_header_nav a,
.header_nav_container .pc_header_nav span{
    text-shadow: none;
    color: #fff;
}
/*body:not(.home) .header_nav_container .pc_header_nav a,
body:not(.home) .header_nav_container .pc_header_nav span,
.header_nav_container.shadow .pc_header_nav a,
.header_nav_container.shadow .pc_header_nav span{
    color: #000;
}*/
.header_nav_container .pc_header_nav a i,
.header_nav_container .pc_header_nav span i{
    font-size: 12px;
    margin-left: 6px;
}
.header_nav_container .pc_header_nav span.header_eng{
    display: block;
    font-weight: 600;
    text-align: center;
    height: auto;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1.2;
}
.header_nav_container .pc_header_nav .header_contact a{
    background: linear-gradient(135deg, #3ba7fa 0%, #66e7f6 100%);
    background: -webkit-linear-gradient(-45deg, #3ba7fa 0%, #66e7f6 100%);
    color: #fff !important;
    padding: 12px 30px;
}
.header_nav_container .pc_header_nav .header_contact a span.header_eng{
    color: #fff !important;
}
/* サイトタイトル */
.site_title {
    z-index: 11;
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 20px;
    left: 20px;
    display: block;
    transition: .3s;
}
.site_title a{
    position: relative;
    z-index: 2;
}
.site_title img{
    transition: .3s;
}
/*ナビ*/
.header_inner {
    display: flex;
    padding: 0 20px;
    margin: 0px auto 25px;
    position: relative;
}
.header_nav {
    margin: 0 0 0 auto;
    height: 100%;
}
.header_nav nav {
    height: 100%;
}
.sp_trigger_nav{
    display: none;
}
.pc_header_nav {
    height: 100%;
    background-color: var(--m_color);
    padding: 0 40px;
    border-radius: 0 0 0 20px;
    filter: drop-shadow(0 6px 6px rgba(0, 0, 0, 0.2));
}
.pc_header_nav ul ul{
    display: none;
}
.pc_header_nav li ,
.pc_header_nav li.join_btn.schedule_btn{
    margin: 0 clamp(10px,2vw,42px) 0 0;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.pc_header_nav li:last-of-type{
    margin: 0;
}
.pc_header_nav a,
.pc_header_nav span {
    text-decoration: none;
    height: auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
    margin: auto;
}
.pc_header_nav a:hover {
    opacity: 0.8;
}
.pc_header_nav > ul > li.join_btn{
    margin: 0;
    cursor: pointer;
}
.pc_header_nav > ul > li.join_btn a,
.pc_header_nav > ul > li.login_btn a,
.pc_header_nav > ul > li.join_btn span{
    color: #000;
    padding: 12px;
    text-shadow: none;
}
.join_list{
    position: absolute;
    top: calc(100% + 12px) !important;
    left: 0;
    height: auto;
    background-color: var(--m_color);
    max-width: 1100px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .5s, transform .5s, visibility .5s;
    border-radius: 10px;
}
.join_list:before{
    content: "";
    position: absolute;
    margin: auto 0;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-left: 14px solid var(--m_color);
    border-bottom: 10px solid transparent;
    bottom: calc(100% - 3px);
    left: 10px;
    transform: rotate(-90deg);
    opacity: 0;
    transition: opacity .5s;
}
.join_list.open{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.join_list.open:before{
    opacity: 1;
}
.join_list ul{
    display: block !important;
    margin:0 auto;
    align-items: stretch;
    justify-content: space-between;
}
.join_list ul li{
    font-size: 16px;
    margin: 0;
    height: auto;
    width: 100%;
}
.join_list ul li + li{
    border-top: 1px dashed #fff;
}
.join_list ul li:before{
    display: none;
}
.join_list ul li:last-of-type{
    margin: 0;
}
.join_list ul li:last-child:after{
    display: none !important;
}
.join_list ul li a{
    border-radius: 5px;
    display: block;
}
.header_nav_container .pc_header_nav .join_list ul li a{
    text-align: left;
    position: relative;
    margin: 0;
    padding: 20px;
}
.join_list ul li a i{
    position: absolute;
    top: 50%;
    right: 10px;
    color: #fff;
    transform: translateY(-50%);
}
.join_list ul li a .jl_name{
    margin-top: auto;
    color: #fff !important;
    display: block;
}
/*.pc_header_nav li.header_cta{
    position: absolute;
    top: calc(100% + 10px);
    right: 20px;
    margin: 0;
    height: 50px;
}*/
.pc_header_nav li.header_cta a{
    /*background-color: var(--m_color);
    height: 100%;
    display: flex;
    padding: 0 20px;
    border-radius: 30px;*/
    background-color: var(--a_color);
    height: 50px;
    padding: 0 30px;
    border-radius: 30px;
}
.pc_header_nav li.header_cta a i{
    color: #fff;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}
.header_img_container {
    position: relative;
    opacity: 1;
    transition: .2s;
}
.header_img_container.mv_hidden{
    opacity: 0;
}
.img-wrap {
    overflow: hidden;
    position: relative;
}
.img-wrap:before {
    animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    background: #fff;
    bottom: 0;
    content: "";
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}
@keyframes img-wrap {
    100% {
        transform: translateX(100%);
    }
}
body:not(.home) .header_img_container > div:not(.header_img_inner_img) {
    background-position: center;
    height: 500px;
    position: relative;
    overflow: hidden;
}
body:not(.home) .header_img_container > div:not(.header_img_inner_img):before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: linear-gradient(45deg, rgba(0,0,0,0.3),transparent);
    z-index: 1;
    opacity: .6;
    top: 0;
    left: 0;
}
body.home .header_img_container {
    padding: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    mask-image: url(img/circle_mask.svg);
    mask-mode: alpha;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: 0px auto;
}
html.is-loaded body.home .header_img_container {
    mask-image: none;
}
.slick-slider div{
    height: 100%;
}
.slick{
    height: 100%;
}
.slick .mv_sp{
    display: none;
}
.slick_container{
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 100%;
    justify-content: space-between;
    align-items: stretch;
}
.mv_img{
    background-image: url(img/mv.jpg);
    background-position: center 70%;
    height: 100%;
    position: relative;
    background-size: cover;
}
.mv_txt{
    position: absolute;
    left: 10%;
    z-index: 2;
    width: clamp(500px, 32vw, 595px);
    top: 50%;
    transform: translateY(-50%);
}
/*-------------------------------------
トップ
-------------------------------------*/
/*html.is-loaded .loading {
  display: none;
}*/
/*ローディングアニメーション*/
.loading{
    position:absolute;
    width: 100%;
    height: 100dvh;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1003;
    overflow: hidden;
}
body:not(.home) .loading,
html.is-loaded .loading{
    display: none;
}
/*ロゴ*/
.loading_txt_1{
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1007;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 30px;
    animation-name: txtslidInAnime_1;
    animation-duration:4s;
    animation-fill-mode:forwards;
    display: flex !important;
}
@keyframes txtslidInAnime_1{
    0% {
        opacity: 0;
    }
    25%{
        opacity: 1;
    }
    80%{
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.loading_txt_1_wall{
    width: 200px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%,-50%);
    animation-name: loading_anime1;
    animation-delay: 3s;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    background: #fff;
    z-index: 1006;
    backface-visibility: hidden;
}
@keyframes loading_anime1{
    0% {
        transform: translate(-50%,-50%);
    }
    100% {
        transform: translate(-50%,calc(-50% - 10px));
        opacity: 0;
    }
}
/*.loading_txt_2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    z-index: 1006;
    display: flex;
    justify-content: center;
}
.loading_txt_2 .loading_slidetxt_box{
    overflow: hidden;
    display: inline-block;
}
.loading_txt_2 .loading_slidetxt_box span{
    color: #fff;
    font-size: clamp(24px, 14vw, 180px);
    transform: translateX(calc(100% + 2px));
    animation-name: txtslidInAnime_2;
    animation-delay: 4s;
    animation-duration:4s;
    animation-fill-mode:forwards;
    display: inline-block;
    font-family: var(--font_eng);
}
@keyframes txtslidInAnime_2{
    0% {
        transform: translateX(100%);
    }
    30%{
        transform: translateX(0%);
    }
    60%{
        transform: translateX(0%);
    }
    90% {
        transform: translateX(100%);
    }
}*/
.loading_logo{
    max-width: 150px;
    padding-bottom: 10px;
}
/*.loading_back{
    background: var(--m_color);
    position: absolute;
    inset:0;
    width: 100%;
    height: 100%;
    z-index: 1004;
    animation-name: fadeOutAnime_1;
    animation-fill-mode:forwards;
    animation-delay: 3.75s;
    animation-duration:.3s;
    top: 0;
    left: 0;
}
@keyframes fadeOutAnime_1{
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}*/
.header_img_inner_img{
    height: 100%;
    background-image: url('img/header.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0 0 0 auto;
    z-index: 2;
    width: 100%;
    border-radius: 0;
}
.header_img_inner_img img{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-50%);
    z-index: 2;
}
.header_img_inner_img .slick img {
    max-height: 100%;
    position:absolute;
    top:0;
    bottom:auto;
    left:auto;
    right:0;
    margin:0 auto;
    width: 100%;
    height: 100%;
    object-fit: cover;
    font-family: 'object-fit: cover;';
    max-width: 100%;
    object-position: 0 0;
    object-position: 50% 50%;
}
.header_img_inner_img .slick img.sp{
    display: none;
}
.header_img_inner_img .slide_txt{
    position: absolute;
    width: 600px;
    bottom: 20%;
    left: 3%;
    max-width: 70%;
}
.header_img_inner_img .slide_txt img{
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255,0.7));
    width: 100%;
}
.header_img_inner_img .slide_txt p{
    font-size:20px;
    font-weight: 600;
    margin-left: 115px;
    text-shadow: 0 0 10px rgb(255, 255, 255);
}
/* メインビジュアル */
.sec_space_1{
    padding: 200px 0;
}
.sec_space_2{
    padding: 140px 0;
}
.sec_space_3{
    padding: 80px 0;
}
.sec_space_4{
    padding: 40px 0;
}
/*.large_txt{
    font-size: 22px;
    line-height: 2.5;
}
.large_txt span{
    font-size: 18px;
}
.sec_ttl{
    font-size: 60px;
    margin-bottom: 80px;
}
.sec_ttl_eng {
    display: block;
    line-height: 1;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.sec_ttl_1{
    font-size: 72px;
    margin-bottom: 80px;
    line-height: 1.5;
}
.sec_ttl_1_small{
    font-size: 20px;
    display: block;
}
.sec_ttl_2{
    font-size: 76px;
    margin-bottom: 60px;
    line-height: 1.5;
    font-weight: 400;
}
.sec_ttl_2_small{
    display: block;
    line-height: 1;
    font-size: 20px;
    letter-spacing: 0;
}
.sec_ttl_2_nam{
    font-size: 28px;
}
.sec_ttl_3{
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 400;
}
.sec_ttl_3_small{
    font-size: 16px;
    display: block;
}
.sec_ttl_4{
    font-size: 32px;
}
.sec_ttl_5{
    display: block;
    font-size: 28px;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.sec_ttl_5:before,
.sec_ttl_5:after{
    content: '';
    width: 30px;
    height: 1px;
    background-color: var(--m_color);
    position: absolute;
    bottom: 0;
    left: 0;
}
.sec_ttl_5:after{
    width: 60px;
    bottom: 8px;
}
.news{
    position: relative;
    z-index: 2;
}
.news .top_news_list li{
    border-bottom: 1px solid #ddd;
}
.news .top_news_list li:first-of-type{
    border-top: 1px solid #ddd;
}
.news .news_meta{
    position: relative;
    z-index: 2;
    cursor: pointer;
    padding: 10px 0;
    display: block;
}
.top_news_txt{
    padding-right: 50px;
}
.news_meta time{
    margin-right: 20px;
    font-size: 14px;
    display: inline-block;
}
.news_titlearea{
    padding: 10px 0 20px 0;
}
.news_titlearea span{
    background-color: var(--m_color);
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
}
.news_txt{
    padding: 0 0 20px 0;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.news_txt a{
    color: var(--m_color);
    text-decoration: underline;
}
.news_txt a:hover{
    text-decoration: none;
}
.news_arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 1px solid var(--m_color);
    border-radius: 100%;
    width: 30px;
    height: 30px;
}
.news_arrow::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--m_color);
    border-right: 1px solid var(--m_color);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(2px, -50%) rotate(45deg);
}
.news .flex{
    justify-content: space-between;
}
.news_img img{
    width: 100%;
}
.news_txt_words{
    width: calc(100% - 300px);
    font-size: 14px;
    letter-spacing: 0.05em;
}
.news_txt_words a{
    text-decoration: underline;
    transition: .3s;
}
.news_txt_words a:hover{
    text-decoration: none;
}
.news .flex .btn{
    width: 260px;
}
.logo_bg{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%,-50%);
    width: 30vw;
    z-index: 1;
}
.logo_bg_2{
    left: auto;
    right: 0;
    transform: translate(50%,-50%);
}*/
/*トップコンテンツ*/
.mv_scroll{
    position: absolute;
    font-size: 20px;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
}
.mv_scroll i{
    display: block;
}
.home .main_wrap{
    position: relative;
    z-index: 3;
    padding-top: 100vh;
}
.top_inner{
    background-color: #f9f5ed;
    border-radius: clamp(20px,3vw,40px) clamp(20px,3vw,40px) 0 0;
}
.top_about{
    background-color: var(--m_color);
}
.top_about .flex_center_center{
    align-items: flex-start;
}
.top_about_ttl{
    width: 545px;
    display: flex;
    justify-content: center;
}
.top_about_ttl h2{
    font-size: clamp(28px,3vw,70px);
    font-family: "JosefinSans", "NotoSansJP" , sans-serif;
    line-height: 1.5;
}
.top_about_txt{
    width: calc(100% - 545px);
    max-width: 680px;
    margin-top: 80px;
}
.top_about_txt p,
.top_about_txt p .i_block{
    font-size: clamp(16px,2vw,20px);
}
.btn_container{
    overflow: hidden;
    position: relative;
    display: inline-block;
    border-radius: 40px;
    max-width: 100%;
}
.su_button_circle{
    background-color: red;
    border-radius: 1000px;
    position: absolute;
    left:0;
    top:0;
    width: 0px;
    height: 0px;
    margin-left: 0px;
    margin-top: 0px;
    pointer-events: none;
    /*animation-timing-function: ease-in-out; */
}
.button_su_inner{
    display: inline-block;
    background: var(--m_color);
    font-weight: normal;
    width: 300px;
    text-align: center;
    transition: 400ms;
    text-decoration: none;
    padding: 18px 20px 16px 20px;
    z-index: 1000;
    color: #fff;
    max-width: 100%;
}
.button_su_inner:after{
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--a_color);
    transition: .3s;
}
.button_su_inner:hover:after{
    color: #fff;
}
.button_su_inner:hover{
    opacity: 1;
}
.btn_inner .button_su_inner{
    background: var(--m_color);
}
.button_text_container{
    position:relative;
    z-index: 100;
    font-weight: 600;
    font-size: clamp(17px,2vw,20px);
    transition: .3s;
}
.button_text_container i{
    font-size: 24px;
    vertical-align: middle;
}
.button_su_inner:hover .button_text_container{
    color: #fff;
}
.explode-circle {
    animation: explode 0.85s forwards;
}
.desplode-circle{
    animation: desplode 0.85s forwards;
}
@keyframes explode {
    0% {
      width: 0px;
      height: 0px;
      margin-left: 0px;
      margin-top: 0px;
      background-color: rgba(255, 255, 255,0.5);
    }
    100% {
      width: 1000px;
      height: 1000px;
      margin-left: -600px;
      margin-top: -600px;
      background-color: var(--a_color);
    }
}
@keyframes desplode {
    0% {
        width: 1000px;
        height: 1000px;
        margin-left: -600px;
        margin-top: -600px;
        background-color: var(--a_color);
    }
    100% {
        width: 0px;
        height: 0px;
        margin-left: 0px;
        margin-top: 0px;
        background-color: rgba(255, 255, 255,0.5);
    }
}
.top_about_slide{
    aspect-ratio: 5.75 / 1;
    background-image: url(img/top_about_slide.png);
    position: relative;
    background-repeat: repeat-x;
    background-size: 130vw;
    z-index: 2;
    width: 100%;
    margin: 100px 0 0 0;
    animation: slide_move 35s linear infinite;
}
@keyframes slide_move{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -130vw 0;
    }
}
.top_about .btn_container{
    border: 2px solid #fff;
}
.top_about .button_text_container{
    color: #fff;
}
.top_about .button_su_inner:after{
    color: #fff;
}
.roller_animetion_perent{
    position: relative;
}
.roller_animation{
    position: absolute;
    width: clamp(100px, 11vw, 200px);
    top: 0;
    left: 0;
    transform: translate(15vw,-2vw);
}
.roller_animation.animation_trigger_active{
    animation: roller_move 1.4s linear forwards;
}
@keyframes roller_move{
    0% {
        transform: translate(15vw,-2vw);
    }
    30% {
        transform: translate(35vw,4vw);
    }
    60% {
        transform: translate(50vw,0vw);
    }
    90%{
        opacity: 1;
        transform: translate(65vw,7vw);
    }
    100% {
        opacity: 0;
        transform: translate(65vw,7vw);
    }
}
.roller_animetion_perent .fadeUp.fadeUp-is-show{
    animation-delay: 1.45s;
}
.top_reform{
    overflow: hidden;
    background-color: #f9f5ed;
}
.top_reform_ttl{
    max-width: 345px;
    width: 25%;
    margin-top: 5vw;
}
.sec_ttl_1{
    font-size: clamp(28px,2vw,36px);
    font-family: "JosefinSans", "NotoSansJP", sans-serif;
}
.sec_ttl_1_small{
    color: var(--m_color);
    display: inline-block;
    position: relative;
    font-size: 24px;
    background-color: var(--a_color);
    height: 50px;
    line-height: 2.4;
    padding: 0 40px;
    transform: rotate(-3deg);
    margin-bottom: 20px;
    font-weight: 600;
}
.sec_ttl_1_small:before{
    content: '';
    background: var(--a_color);
    height: calc(tan(60deg) * 30px / 2);
    width: 50px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin: 0;
    position: absolute;
    top: 0;
    transform: rotate(-90deg) translateX(-24%);
    right: calc(100% - 12px);
}
.sec_ttl_1_small_orange{
    background-color: var(--m_color);
    color: var(--a_color);
}
.sec_ttl_1_small_orange:before{
    background: var(--m_color);
}
.sec_ttl_1_icon{
    display: inline-block;
}
.sec_ttl_1_icon i{
    font-size: 32px;
}
.sec_ttl_2{
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: 20px;
    line-height: 1.5;
}
.sec_ttl_2_small{
    display: inline-block;
    font-weight: 600;
}
.top_reform_img{
    width: 50%;
    max-width: 700px;
}
.top_reform_photo {
    max-width: 468px;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    margin: 0 auto;
    position: absolute;
    bottom: 1.75vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: calc(100% - 12vw);
}
.top_reform_photo img{
    object-position: center;
    z-index: 3;
}
.top_reform_bg{
    position: relative;
    background-image: url(img/house_orange.svg);
}
.top_reform_bg img{
}
.top_reform_bg .house_orange{
    opacity: 0;
}
.animation_trigger_active .top_reform_bg img{
    animation: top_reform_bg_hidden 1s linear forwards;
    animation-delay: 2s;
}
@keyframes top_reform_bg_hidden{
    80%{
        opacity: 1;
    }
    100%{
        opacity: 0;
    }
}
.top_reform_txt{
    margin-top: 5vw;
}
.top_reform_damage{
    position: absolute;
    top: 40px;
    left: 50px;
    width: 160px;
    z-index: 2;
}
.top_reform_damage_2{
    top: auto;
    left: auto;
    right: 40px;
    bottom: 20px;
}
.animation_trigger_active .top_reform_damage{
    animation: top_reform_damage_move 0.5s linear forwards;
    animation-delay: 1s;
}
@keyframes top_reform_damage_move{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translate(-40px,-40px) rotate(-180deg);
    }
}
.animation_trigger_active .top_reform_damage_2{
    animation: top_reform_damage_move_2 0.5s linear forwards;
    animation-delay: 2s;
}
@keyframes top_reform_damage_move_2{
    0%{
        opacity: 1;
    }
    100%{
        opacity: 0;
        transform: translate(40px,40px) rotate(180deg);
    }
}
.top_reform_hammer{
    position: absolute;
    width: 100px;
    top: 0;
    left: -40px;
    z-index: 6;
}
.animation_trigger_active .top_reform_hammer{
    animation: hammer_move 3s linear forwards;
}
@keyframes hammer_move{
    0% {
        transform: rotate(-20deg);
    }
    5% {
        transform: rotate(60deg);
    }
    15% {
        transform: rotate(-20deg);
    }
    20% {
        transform: rotate(60deg);
    }
    30% {
        transform: rotate(-20deg);
    }

    40% {
        transform: translate(35vw,30vw) rotate(-20deg) ;
    }

    40% {
        transform: translate(35vw,30vw) rotate(-20deg) ;
    }
    45% {
        transform: translate(35vw,30vw) rotate(-100deg) ;
    }
    55% {
        transform: translate(35vw,30vw) rotate(-20deg) ;
    }
    60% {
        transform: translate(35vw,30vw) rotate(-100deg) ;
    }
    70% {
        transform: translate(35vw,30vw) rotate(-20deg) ;
    }
    
    95% {
        transform: translate(35vw,30vw) rotate(-20deg);
        opacity: 1;
    }
    100% {
        transform: translate(35vw,30vw) rotate(-20deg);
        opacity: 0;
    }
}
.top_reform_clean{
    position: absolute;
    top: 50px;
    left: 50px;
    width: 100px;
    z-index: 2;
    opacity: 0;
}
.top_reform_clean_2{
    top: auto;
    left: auto;
    right: 20px;
    bottom: 20px;
}
.animation_trigger_active .top_reform_clean{
    animation: top_reform_clean 1s linear forwards;
    animation-delay: 2.5s;
}
@keyframes top_reform_clean{
    80%{
        opacity: 0;
        transform: translateY(10px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
.achievements_area{
    /*padding-left: clamp(80px, 60dvh, 200px);*/
    position: relative;
}
.achievements_area:before{
    content: '';
    width: calc(100% - 40px);
    max-width: 1760px;
    height: 100%;
    position: absolute;
    border-radius: 20px;
    background-color: var(--a_color);
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.achievements_area .btn_container{
    border: 2px solid var(--a_color);
    transition: .3s;
}
.achievements_area .btn_container:hover{
    border: 2px solid #fff;
}
.achievements_area .slick-track{
    display: flex;
    align-items: stretch;
}
.achievements_area_flex{
    justify-content: space-between;
    align-items: center;
    padding: 0 60px;
}
.achievements_area .sec_ttl_1{
    /*text-shadow: 0 0 10px rgba(244, 135, 135, .9);*/
}
/*.achievements_area .btn_container a{
    width: 300px;
    color: var(--m_color);
    background: #fff;
}
.achievements_area .btn_container a .fa-arrow-right{
    color: var(--m_color);
}*/
.top_achievements_list{
    flex-wrap: nowrap;
    max-width: 1800px;
    margin: 0 0 0 auto;
    padding-left: 70px;
}
.top_achievements_list li{
    width: 350px;
    margin: 0 10px;
    backdrop-filter: blur(20px);
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--m_color);
    height: auto;
}
.top_achievements_list li section{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.top_achievements_list li a{
    padding: 0;
    /*height: 100%;*/
    display: flex;
    flex-direction: column;
}
.purchase_photo{
    background-image: url(img/default_w.jpg);
    background-position: center;
    background-size: cover;
}
.slick-prev, .slick-next{
    left: 20px;
    z-index: 5;
    top: 88px;
}
.slick-next{
    left: auto;
    right: 55px;
}
.slick-prev:before, .slick-next:before {
    content: '\f060';
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    left: 0;
    color: #fff;
    font-size: clamp(24px, 2vw, 28px);
    opacity: 1;
    border-radius: 100px;
    border: 3px solid #fff;
    box-shadow: 0 0 20px rgba(1, 106, 55, 0.3);
    background-color: var(--m_color);
    padding: 10px;
    width: 54px;
    height: 54px;
}
.slick-next:before {
    content: '\f061';
}
.top_achievements_list_txt{
    padding: 20px;
}
.top_achievements_list_txt .purchase_title{
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    padding: 0;
}
.top_achievements_list_time{
    padding: 4px 20px 10px 20px;
    margin-top: auto;
    border-top: 1px dotted #fff;
}
.top_achievements_list_time i,
.top_achievements_list_time time{
    font-size: 14px;
    color: #fff;
}
.top_works_category{
    margin-top: auto;
    padding: 20px;
    border-top: 1px dotted #fff;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.top_works_category li{
    width: auto;
    margin: 0;
}
.top_works_category li a{
    flex-direction: row;
    align-items: center;
    background-color: var(--a_color);
    color: #fff;
    font-size: 14px;
    padding: 2px 20px;
    border-radius: 20px;
}
.top_works_category li a span{
    display: inline-block;
    font-size: 10px;
    margin-right: 6px;
    color: #fff;
}
.top_area{
    margin-top: 40px;
}
.top_area .flex{
    justify-content: space-between;
    align-items: stretch;
}
.top_area_left {
    width: clamp(500px,20vw,600px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}
.top_area_right{
    width: calc(100% - clamp(500px,20vw,600px) - 40px);
    padding: clamp(40px, 4vw, 60px);
    position: relative;
}
.area_pin{
    position: absolute;
    max-width: clamp(60px,6vw,100px);
    left: 42.5%;
    bottom: 29%;
}
.area_map{
    width: calc(100% - 40px);
    max-width: 790px;
    margin: auto;
}
.top_others{

}
.others_left{
    width: 30%;
    background-image: url(img/others_atoro.svg),url(img/others_paint.svg);
    background-repeat: no-repeat,repeat-y;
    background-size: 150px auto,150px auto;
    background-position: center top,center top;
    max-width: 600px;
    pointer-events: none;
}
.others_left:before{
    content: '';
    width: 100%;
    height: 50vw;
    position: absolute;
    left: 0;
    bottom: 0;
}
.top_others_flex{
    align-items: stretch;
}
.others_left_img{
    position: sticky;
    top: 80%;
    height: 50vh;
    background-color: #F9F5ED;
}
.top_others_roller{
    width: 180px;
    margin: 0 auto;
    transform: translateX(6px);
}
.others_right{
    max-width: 1170px;
    width: 70%;
}
.sns_instagram{

}
.insta_img_list {
    flex-wrap: wrap;
    gap: 10px;
}
.insta_item {
    width: calc((100% - 30px) / 4);
}
.insta_item a{
    aspect-ratio: 1 / 1;
    border-radius: 4px;
    overflow: hidden;
}
.insta_item a img{
}
.top_youtube iframe{
    width: 100%;
    aspect-ratio: 1.857142857142857 / 1;
}
/*-------------------------------------
cta
-------------------------------------*/
.cta{
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.cta_ttl{
    aspect-ratio: 15 / 1;
    background-image: url(img/contact_ttl.svg);
    position: relative;
    background-repeat: repeat-x;
    background-size: 130vw;
    z-index: 2;
    width: 100%;
    animation: slide_move 35s linear infinite;
}
.cta .bg_white{
    position: relative;
}
/*.cta .bg_white:before,
.cta .bg_white:after{
    content: '';
    width: clamp(100px, 20%, 371px);
    background-image: url(img/cta_1.svg);
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1 / 1.2;
    bottom: -20px;
    left: -60px;
    background-position: center bottom;
    z-index: 2;
}
.cta .bg_white:after{
    left: auto;
    right: -60px;
    background-image: url(img/cta_2.svg);
}*/
.cta_txt{
    font-size: 28px;
}
.cta_flex{
    max-width: 900px;
    margin: 0 auto;
    gap: 20px;
    width: 100%;
    display: flex !important;
}
.cta .btn_container{
    margin-top: 0;
    width: calc(50% - 10px);
    border-radius: 10px;
}
.cta .btn_container a{
    max-width: none;
    padding: 34px clamp(17px,2vw,20px);
    background: var(--a_color);
    color: #000;
    display: block;
    width: 100%;
    border-radius: 10px;
}
.cta .btn_container.cta_tel{
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-radius: 0;
    border: none;
}
.cta .btn_container.cta_tel a{
    font-weight: 600;
    max-width: none;
    background: var(--m_color);
    display: block;
    border-radius: 10px;
}
.cta .btn_container.cta_tel a .cta_tel_txt{
    font-size: clamp(42px,4vw,64px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    display: flex !important;
}
.cta .btn_container.cta_tel a .cta_tel_txt i{
    font-size: clamp(24px, 3vw, 40px);
    margin-right: 20px;
}
.cta .btn_container.cta_tel a span{
    width: 100%;
    font-size: 18px;
    border-top: 2px solid;
    max-width: 488px;
    display: block;
    margin: 8px auto 0 auto;
    padding-top: 8px;
}
.breadcrumbsinner {
    width: 100%;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
    color: #fff;
    padding: 0 0 60px 0;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color:#fff;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 5 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}
/*-------------------------------------
トップ お知らせ
-------------------------------------*/
.news .top_news_list li{
    border-bottom: 1px solid #fff;
}
.news .top_news_list li:first-of-type{
    border-top: 1px solid #fff;
}
.news .news_meta{
    position: relative;
    z-index: 2;
    cursor: pointer;
    padding: 10px 0;
    display: block;
}
.top_news_txt{
    padding-right: 50px;
}
.news_meta time{
    margin-right: 20px;
    font-size: 14px;
    display: inline-block;
}
.news_titlearea{
    padding: 10px 0 20px 0;
}
.news_titlearea span{
    background-color: var(--a_color);
    font-weight: 600;
    color: #fff;
    display: inline-block;
    padding: 4px 10px;
}
.news_txt{
    padding: 0 0 20px 0;
    font-size: 14px;
    letter-spacing: 0.1em;
}
.news_txt a{
    color: var(--m_color);
    text-decoration: underline;
}
.news_txt a:hover{
    text-decoration: none;
}
.news_arrow{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    border: 1px solid var(--a_color);
    border-radius: 100%;
    width: 30px;
    height: 30px;
}
.news_arrow::before{
    content: '';
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--a_color);
    border-right: 1px solid var(--a_color);
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(2px, -50%) rotate(45deg);
}
.news .flex{
    justify-content: space-between;
}
.news_img img{
    width: 100%;
}
.news_txt_words{
    width: calc(100% - 300px);
    font-size: 14px;
    letter-spacing: 0.05em;
}
.news_txt_words a{
    text-decoration: underline;
    transition: .3s;
}
.news_txt_words a:hover{
    text-decoration: none;
}
.news .flex .btn{
    width: 260px;
}
.news{
    position: relative;
    z-index: 2;
    background-color: var(--a_color);
    border-radius: 20px;
    padding: 60px clamp(20px, 4vw, 60px);
}
.news .top_news_list{
}
.news .top_news_list li{
    padding: 0 20px;
}
.news .news_meta{
    padding: 20px 20px 20px 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
}
.news_meta:after{
    content: '\f063';
    position: absolute;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    right: 0px;
    top: -2px;
    left: auto;
    bottom: auto;
    transform: translateY(25px);
    font-size: 18px;
    color: #fff;
}
.news .news_meta time{
    margin-right: 20px;
    font-size: 16px;
    line-height: 1.5;
    padding: 2px 20px 0 20px;
    border-radius: 20px;
    background-color: #fff;
    width: 130px;
    text-align: center;
    color: var(--m_color);
    vertical-align: text-top;
}
.news .news_meta .cat{
    display: inline-block;
    background-color: #264990;
    color: #fff;
    font-weight: 400;
    padding: 3px 18px 0 18px;
    font-size: 12px;
    margin-right: 14px;
}
.news .news_meta p{
    display: inline-block;
    font-size: 16px;
    width: calc(100% - 150px);
    color: #fff;
    vertical-align: text-top;
}
.news .news_txt{
    padding: 0 20px 20px 20px;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #fff;
}
.news .flex{
    justify-content: space-between;
}
.news .flex .btn{
    width: 260px;
}
/*-------------------------------------
ブログ
-------------------------------------*/
.shadow {
    box-shadow: var(--shadow);
}
.blog_container {
    margin: 0 auto;
    padding-top: 80px;
    padding-bottom: 80px;
    max-width: 1400px;
}
.blog_inner,
.single_inner,
.search_inner {
    width: calc(100% - 250px);
}
.blog_inner > .flex{
    gap: 60px 40px;
    align-items: stretch;
}
.blog_list_flex{
    height: 100%;
    display: flex;
    flex-direction: column;
}
.blog_inner > ul > li {
    width: calc((100% - 80px) / 3);
}
.blog_inner > ul > li > section{
    height: 100%;
}
.blog-cats{
    gap: 6px;
    display: flex;
    flex-wrap: wrap;
}
.blog-cats a{
    display: inline-block;
    font-size: 12px;
    border-radius: 40px;
    color: #000;
    background-color: #f7f7f5;
    padding: 0 15px;
}
.blog-cats a:before{
    content: '●';
    color: var(--m_color);
    margin-right: 2px;
}
.blog_photo{
    overflow: hidden;
    margin: 0 0 20px 0;
}
.blog_photo img {
    object-fit: cover;
    font-family: "object-fit: cover;";
    height: auto;
    width: 100% !important;
    margin: 0 auto;
    aspect-ratio: 1.5 / 1;
}
.blog_photo a{
    transition: .2s;
}
.blog_text {
    width: 100%;
    margin: 0;
    padding: 0;
}
.blog_title {
    margin: 0 0 14px;
    text-align: left;
    font-size: 16px;
}
.blog_title a{
}
.blog_list_flex .details{
    margin-top: auto;
}
.read-more {
    text-align: right;
}
.read-more a {
    position: relative;
    transition: .3s;
    text-decoration: none;
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: 0.1em;
    display: inline-block;
    background: linear-gradient(45deg, #e5d597 0%, #9c782d 100%);
    background: -webkit-linear-gradient(45deg, #e5d597 0%, #9c782d 100%);
    color: #fff;
}
.blog_inner li:hover .read-more a {
    opacity: .8;
}
.details .date i,
.blog_clock time {
    display: inline-block;
    line-height: 1;
    font-family: var(--font_eng);
}
.post-categories {
    font-size: 14px;
    display: inline-block;
    padding-right: 10px;
    line-height: 1;
    margin-bottom: 6px;
    list-style: none;
}
.post-categories li a{
    align-items: center;
    background-color: var(--m_color);
    color: #fff;
    font-size: 14px;
    padding: 2px 20px;
    border-radius: 20px;
}
.post-categories li a:before{
    content: '●';
    display: inline-block;
    font-size: 10px;
    margin-right: 6px;
    color: #fff;
    vertical-align: text-top;
}
.post-categories li a:hover {
    opacity: .8;
}
.my_result_count{
    margin-bottom: 20px;
}
.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: #2196f3;
}
.share_sns_container li:nth-of-type(3) :before {
    color: #4caf50;
}
.article_top {
    margin: 0 0 30px;
    align-items: center;
}
.article_main h2 {
    margin: 30px 0 20px 0;
    background: var(--m_color);
    padding: 14px 20px;
    font-size: 25px;
    color: #fff;
    text-align: left;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-bottom: 2px solid var(--m_color);
    padding: 0 0 5px;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;

    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
    max-width: 100%;
    max-height: 500px;
}
.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 #222;
    border-right: 1px solid #222;
}
.article_main table th {
    background: rgba(0, 127, 235, 0.1);
    font-weight: bold;
    border-left: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid #222;
    padding: 10px 20px;
    border-bottom: 1px solid #222;
    font-size: 15px;
}
.article_main ul:not(.post-categories) {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul:not(.post-categories) li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul:not(.post-categories) 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 whitesmoke;
    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 5 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f3f3f3;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル*/
.single .main_wrap{
    margin-top: 80px;
}
body:not(.home).single h1{
    position: static;
    transform: none;
    color: #333;
    font-weight: 600;
    font-size: 24px;
    margin: 0 0 16px 0;
    border-bottom: 3px solid var(--m_color);
    padding: 2px 0 16px 0;
    width: 100%;
    max-width: none;
}
.single_txt_area{
    padding: clamp(40px, 4vw, 60px) clamp(20px, 4vw, 60px);
    margin-bottom: 60px;
    box-shadow: var(--shadow);
}
.wp-embedded-content{
    max-width: 100%;
}
.single_pagenavi {
    margin: 60px 0 0 0;
    gap: 20px;
    justify-content: space-between;
}
.single_pagenavi .prev,
.single_pagenavi .next{
    max-width: calc(50% - 5px);
    width: 200px;
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    display: block;
    padding: 20px 30px;
    text-decoration: none;
    width: 100%;
    position: relative;
    transition: .2s;
    background: var(--m_color);
    border-radius: 5px;
    text-align: center;
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    opacity: .8;
}
.single_pagenavi .prev a i,
.single_pagenavi .next a i{
    color: #fff;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    line-height: 1.5em;
    max-width: 800px;
}
.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: 0.2s;
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0px 0;
    transition: 0.2s;
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0px;
    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: 0em 0 0em 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_container {
    margin: 0 0 0 50px;
    width: 250px;
}
.side_container > section {
    margin: 0 auto 30px auto;
}
.widget_title{
    margin-bottom: 0;
}
.widget_title div {
    color: #000;
    border-bottom: 1px solid;
    margin: 0 0 10px;
    text-align: left;
    padding: 6px 0;
    display: block;
}
.side_container .widget + .widget {
    margin-top: 20px;
}
.side_container li {
    position: relative;
}
.side_container li + li{
    margin-top: 10px;
}
.side_container li a{
    transition: 0.3s ease-out;
}
.side_container li a:hover {
    opacity: 0.7;
}
.side_container li a {
    font-size: 14px;
    text-decoration: none;
    color: #222;
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
}
.side_container .widget_my_widget_recent_posts li{
    position: relative;
    background-color: #f9f5ed;
    padding: 20px;
    border-radius: 6px;
    width: 100%;
}
.side_container .widget_my_widget_recent_posts li + li{
    margin-top: 20px;
}
.side_container .widget_my_widget_recent_posts li a{
    display: block;
}
.side_container .widget_my_widget_recent_posts li a div{
    font-size: 14px;
}
.side_container .widget_my_widget_recent_posts li .blog_clock{
    display: block;
    line-height: 1;
    margin: 10px 0 4px 0;
}
.side_container .widget_my_widget_recent_posts li .blog_clock time{
    font-size: 12px;
}
/*検索窓*/
.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;
    width: 100%;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search button[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 9px;
    right: 10px;
    background-color: transparent;
}
.widget_search button[type="submit"] i{
    color: var(--m_color);
    font-size: 24px;
    transform: translateY(1px);
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
input[type="search"]::-moz-search-clear-button {
    display: none;
}
.widget_search input[type="submit"]{
    border: none;
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 5 free";
    width: 40px;
}
/*最近の投稿*/
.widget_my_recent_posts img {
    max-width: 70px;
    height: 50px;
    object-fit: cover;
    font-family: "object-fit: cover;";
    margin: 0 5px 0 0;
}
.widget_my_recent_posts .news_clock {
    font-size: 0.6875rem;
    display: flex;
    margin: 5px 0 0;
    align-items: center;
}
.widget_my_recent_posts .news_clock i{
    padding-right: 4px;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: inline-block;
    font-size: 14px;
    border-radius: 40px;
    color: #000;
    background-color: #f7f7f5;
    padding: 2px 20px;
}
.widget_archive li a:before,
.widget_categories li a:before {
    content: "●";
    margin: 0 5px 0 0;
    color: var(--m_color);
    display: inline-block;
    font-size: 10px;
    margin-right: 6px;
    vertical-align: text-top;
}
/*アーカイブ　ページネーション*/
.wp-pagenavi{
    margin-top: clamp(60px, 5vw, 80px);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.wp-pagenavi .page-numbers {
    text-decoration: none;
    background-color: var(--m_color);
    display: inline-block;
    padding: 0 24px;
    box-sizing: border-box;
    color: #fff;
    font-family: var(--font_eng);
    font-size: 24px;
    height: 52px;
    vertical-align: middle;
    line-height: 52px;
    border-radius: 3px;
}
.wp-pagenavi .current {
    box-sizing: border-box;
    pointer-events: none;
    color: #000;
    background-color: #f7f7f5;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}
.page-numbers.next,
.page-numbers.prev{
    font-size: 18px;
}
/*-------------------------------------
施工事例
-------------------------------------*/
.worsks_wrap .blog_container{
    padding-top: 0;    
}
.worsks_wrap .blog_inner{
    width: 100%;
}
.worsks_wrap .blog_inner > ul > li{
    width: calc((100% - 120px) / 4);
}
.worsks_wrap .post-categories{
    display: flex;
    margin: 0;
    padding: 0;
    gap: 4px;
}
.works_search {
    margin-bottom: 60px;
    background-color: var(--m_color);
    border-radius: 10px;
    padding: clamp(40px,5vw,80px) clamp(20px,4vw,60px);
}
.works_search > div:first-child {
    font-weight: bold;
    font-size: 24px;
    margin: 0 auto 40px;
    text-align: center;
}
.works_search > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    max-width: 1400px;
    margin: 0 auto 40px;
    align-items: stretch;
    gap: 10px;
}
.works_search li {
    width: calc((100% - 30px) / 4);
    text-align: left;
}
.works_search li:nth-of-type(3n) {
    margin-right: 0;
}
.works_search li a {
    position: relative;
    text-align: left;
}
.works_search_inner {
    max-width: 600px;
    margin: 0 auto;
}
.works_search_inner input[type="text"] {
    background: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
}
.works_search_inner .widget_search input[type="submit"]{
    width: 50px;
    font-size: 24px;
    padding: 0;
    top: 5px;
    right: 0px;
}
/*ボタン*/
.works_search li {
    text-align: center;
}
.works_search li a {
    text-decoration: none;
    color: #fff;
    padding: 20px 20px;
    display: flex;
    background: var(--a_color);
    position: relative;
    justify-content: center;
    border-radius: 4px;
    font-size: 16px;
}
.works_search li a:before {
    content: '\f054';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 18px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: #fff;
    transition: .3s;
}
.works_search li a:hover {
    opacity: 0.8;
}
/*施工事例single*/
.single-works .worsks_wrap .post-categories{
    margin-bottom: 6px;
}
.single_works_wrap {
    max-width: 1000px;
}
.single_works_inner h1 {
    margin-bottom: 10px;
    text-align: center;
}
.works_post_time {
    margin-bottom: 30px;
}
.works_category {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    align-items: center;
    margin-right: 10px;
}
.works_category li {
    margin-right: 10px;
}
.works_category li a {
    background: var(--a_color);
    display: inline-block;
    padding: 3px 20px;
    font-size: 0.8125rem;
    color: var(--w_color);
    text-decoration: none;
}
.works_category li a:hover {
    background: #f9f9f4;
}
.works_post_thumbnail {
    justify-content: space-between;
}
.works_post_thumbnail > div {
    width: 48%;
    aspect-ratio: 16/12;
    position: relative;
    margin: 0 0 40px;
    height: auto;
    overflow: hidden;
}
.works_post_thumbnail > div {
    position: relative;
}
.works_post_text {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: var(--a_color);
    padding: 7px 20px 0 20px;
    margin: 0;
    font-size: 28px;
    font-weight: bold;
    font-family: var(--font_eng);
    color: #fff;
    letter-spacing: 0.1em;
}
.works_post_thumbnail > div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
}
.works_post_deta table {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.works_post_deta th {
    width: 200px;
    color: var(--m_color);
    border-top: 1px solid #ccc;
    padding: 30px 0;
    vertical-align: middle;
    font-weight: bolx;
    text-align: left;
}
.works_post_deta td {
    border-top: 1px solid #ccc;
    padding: 30px 0;
    text-align: left;
}
.works_post_deta th,
.works_post_deta td {
    border-bottom: 1px solid #ccc;
}
.summary_table {

}
.summary_table table{
}
.summary_table table th{
}
.summary_table table th span{
    background-color: var(--a_color);
    color: #fff;
    text-align: center;
    display: block;
    border-radius: 30px;
    padding: 6px 10px;
    font-weight: 600;
}
.summary_table table td{
}
/*-------------------------------------
リフォーム
-------------------------------------*/
.reform_wrap .cta{
    background: transparent;
    padding-top: 0;
}
.flex_three{
    align-items: stretch;
    gap: 20px;
}
.flex_three_container {
    width: calc((100% - 40px) / 3);
}
.flex_three_container .three_img{
    max-width: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    aspect-ratio: 1.5 / 1;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.flex_three_container .three_img img{
}
.reform_txt{
    padding: 40px clamp(20px,3vw,40px);
}
.reform_num{
    position: absolute;
    z-index: 3;
    font-size: 28px;
    display: flex;
    align-items: center;
    line-height: 1;
    padding: 3px 40px 0 30px;
    top: 20px;
    left: 10px;
}
.reform_num:before{
    right: calc(100% - 13px);
}
.reform_num span{
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    transform: translateY(-3px);
    margin-left: 6px;
}
.reform_ttl:after{
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background-color: var(--m_color);
    margin: 10px auto 20px auto;
}
.reform_ttl span{
    font-size: 20px;
}
.flow_flex {
    align-items: stretch;
}
.flow_left{
    width: 40px;
}
.flow_arrow{
    background: linear-gradient(0deg, #70dbbb 0%, #e0f5dc);
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    position: relative;
}
.flow_arrow:after{
    content:'';
    background: #70dbbb;
    height: calc(tan(60deg) * 32px / 2);
    width: 60px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
}
.flow_right{
    width: calc(100% - 40px);
}
.flow_container {
    align-items: stretch;
    position: relative;
}
.flow_container:after{
    content: '';
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--m_color);
    border-bottom: 2px solid var(--m_color);
    position: absolute;
    transform: rotate(45deg);
    left: -36px;
    bottom: -25px;
}
.flow_flex_top .flow_container:last-of-type:after{
    display: none;
}
.flow_container + .flow_container,
.flow_flex_bottom .flow_container:first-of-type{
    margin-top: 40px;
}
.flow_container + .flow_container:before{
    content: '';
    width: 1px;
    height: 40px;
    position: absolute;
    border-left: 3px dotted var(--m_color);
    bottom: calc(100% + 0px);
    left: 170px;
}
.flow_flex_bottom .flow_container:first-of-type:before{
    content: '';
    width: 1px;
    height: 60px;
    position: absolute;
    border-left: 3px dotted #333;
    bottom: calc(100% + 10px);
    left: 175px;
}
.flow_img{
    margin: 0 40px 0 0;
    width: 240px;
    aspect-ratio: 1/1;
}
.flow_img img{
    object-position: center;
    z-index: 2;
}
.flow_container:nth-of-type(2) .flow_img img{
    object-position: 30% center;
}
.flow_container:nth-of-type(4) .flow_img img{
    object-position: 74% center;
}
.flow_container:nth-of-type(5) .flow_img img{
    object-position: 69% center;
}
.flow_container:nth-of-type(7) .flow_img img{
    object-position: 69% center;
}
.flow_img_inner{
}
.flow_img .flow_nam{
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font_eng);
    position: absolute;
    background-color: var(--a_color);
    top: -20px;
    left: -40px;
    padding: 8px 20px 0 20px;
    color: var(--m_color);
    z-index: 3;
}
.flow_img .flow_nam:before{

}
.flow_img .flow_nam span{
    font-size: 40px;
    line-height: 1;
    margin-left: 4px;
    font-family: var(--font_eng);
    vertical-align: middle;
    display: inline-block;
    color: var(--m_color)
}
.flow_img img{
    border-radius: 4px;
}
.flow_txt{
    width: calc(100% - 20px);
    padding: 40px;
    display: flex;
    margin-left: 20px;
    align-items: flex-start;
    background-color: #fff;
}
.flow_txt .att{
    text-indent: -16px;
    padding-left: 16px;
}
.flow_txt .btn_container{
    width: 250px;
}
.flow_ttl {
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 2px solid var(--m_color);
}
.flow_txt ul{
    width: 100%;
    padding: 10px 10px 10px 40px;
    background: var(--m_color_2);
    margin-top: 10px;
    border-radius: 5px;
}
.flow_txt ul li{
    list-style: disc;
    font-size: 14px;
}
.flow_txtarea{
    width: calc(100% - 280px);
    padding: 20px 0;
}
.flow_txtarea p a{
    display: inline-block;
    text-decoration: underline;
    color: var(--m_color);
}
.flow_txtarea p a:hover{
   text-decoration: none;
}
.faq_section{
    border: 4px solid var(--m_color);
}
.faq_wrap .btn_flex .btn_container a i.fa-arrow-right{
    transform: translateY(-50%) rotate(90deg);
}
.faq_list li + li{
    margin-top: 20px;
}
.faq_list .faq_toggle{
    font-size: 22px;
    padding: 10px 56px 10px 20px;
    margin: 0 auto;
    background: var(--m_color);
    text-align: left;
    display: flex;
    position: relative;
    border-radius: 4px;
}
.faq_list .faq_toggle:before,
.faq_list .faq_txt:before{
    content: 'Q';
    font-size: 34px;
    margin-right: 20px;
    vertical-align: top;
    display: inline-block;
    width: 50px;
    text-align: center;
    background: #fff;
    height: 50px;
    line-height: 59px;
    vertical-align: top;
    font-family: var(--font_eng);
    color: var(--m_color);
}
.faq_list .faq_toggle span.i_block{
    width: calc(100% - 76px);
    font-size: 18px;
    font-weight: 500;
    vertical-align: text-top;
    padding-top: 8px;
    color: #fff;
}
.faq_toggle{
    cursor: pointer;
    transition: .2s;
}
.faq_toggle:hover{
    opacity: .8;
}
/*アイコン*/
.faq_list .faq_toggle .icon{
    position: absolute;
    top: 34px;
    right: 40px;
}
.faq_list .icon:before,
.faq_list .icon:after{
    content:'';
    width:20px;
    height: 2px;
    position: absolute;
    background-color: #fff;
    opacity: 1;
    transition: .5s;
}
.faq_list .faq_toggle .icon:after{
    transform: rotate(90deg);
}
.faq_list .opened .icon:before{
    transform: rotate(-90deg);
    opacity: 0;
}
.faq_list .opened .icon:after{
    transform: rotate(0deg);
}
.faq_list .faq_txt{
    padding: 10px 20px 20px 20px;
    display: none;
}
.faq_list .faq_txt:before{
    content: 'A.';
    background: transparent;
}
.faq_list .faq_txt .faq_txt_inner{
    width: calc(100% - 70px);
    vertical-align: text-top;
    padding-top: 6px;
}
.faq_list .faq_txt .faq_txt_inner p a{
    color: var(--m_color);
    text-decoration: underline;
}
.faq_list .faq_txt .faq_txt_inner .btn_container{
    margin-top: 40px;
}
.faq_list .faq_txt .faq_txt_inner .faq_btn_flex{
    gap: 10px;
    justify-content: center;
}
.faq_list .faq_txt .faq_txt_inner .faq_btn_flex .btn_container{
    width: calc(50% - 5px);
    max-width: 300px;
}
.faq_list .faq_txt .faq_txt_inner .faq_btn_flex .btn_container a{
    margin: 0;
}
.faq_access{
    border: 2px solid var(--m_color);
    border-radius: 6px;
    margin-top: 20px;
}
.faq_access dl{
    align-items: stretch;
}
.faq_access dl dt{
    width: 250px;
    background-color: var(--m_color);
    color: #fff !important;
    padding: 14px 20px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #fff !important;
    margin-bottom: 0 !important;
    font-size: 16px !important;
}
.faq_access dl dd{
    padding: 14px 20px;
    border-bottom: 1px solid var(--m_color);
    width: calc(100% - 250px);
}
.faq_access dl:last-of-type dt,
.faq_access dl:last-of-type dd{
    border: none !important;
}
.faq_list .faq_txt .faq_txt_inner .faq_attrea{
    padding: 40px 20px;
}
.faq_list .faq_txt .faq_txt_inner .faq_attrea .faq_attrea_ttl{
    font-size: 20px;
    font-weight: 600;
}
.faq_list .faq_txt .faq_txt_inner .faq_attrea .faq_attrea_ttl:after{
    content: '';
    width: 40px;
    height: 4px;
    background-color: #fff;
    display: block;
    margin: 10px auto 10px auto;
}
.faq_list .faq_txt .faq_txt_inner .faq_attrea .faq_btn_flex .btn_container{
    margin-top: 20px;
}
.faq_btn{
    padding: 14px 20px;
    display: inline-block;
    border: 1px solid #333;
    width: 150px;
    transition: .3s;
}
.faq_btn i{
    margin-left: 20px;
    font-size: 14px;
    transition: .3s;
}
.faq_btn:hover{
    background-color: rgba(255,255,255,0.4);
}
.faq_txt_inner ul li + li{
    margin-top: 0;
}
.bg_list {
    padding: 20px;
}
/*-------------------------------------
建物維持管理
-------------------------------------*/
.retention .top_about_ttl,
.retention .top_about_txt{
    width: 100%;
    margin: 0 auto;
}
.example_house{
    width: 400px;
}
.example_flex{
    justify-content: center;
    align-items: center;
}
.example_list{
    width: calc((100% - 500px) / 2);
    max-width: 420px;
}
.example_list li{
}
.example_list li + li{
    margin-top: 20px;
}
.example_list li dl{
    border: 2px solid var(--m_color);
    border-radius: 4px;
}
.example_list li:nth-of-type(2) dl{
    transform: translateX(-40px);
}
.example_list:nth-of-type(2) li:nth-of-type(2) dl{
    transform: translateX(40px);
}
.example_list li dl dt{
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    background: var(--m_color);
    color: #fff;
    text-align: center;
}
.example_list li dl dd{
    text-align: center;
    padding: 10px;
    background-color: #fff;
}
.retention_flex{
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}
.retention_left{
    width: 20%;
    padding: 0 40px;
}
.retention_right{
    width: 20%;
    padding: 0 40px;
}
.retention_txt{
    width: 45%;
}
.system{
}
.system_img {
    aspect-ratio: 1 / 1;
    width: 500px;
    max-width: 100%;
}
.system_txt {
    width: calc(100% - 560px);
    margin-left: 60px;
}
.system_txt h3{
    padding: 0;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 600;
    margin-bottom: 40px;
}
.system_txt p{
}
.pamphlet{
}
.pamphlet .flex{
    gap: 40px;
}
.pamphlet img{
    width: calc(50% - 20px);
}
.top_about .system .flex_center_center{
    align-items: center;
}
/*-------------------------------------
工事店ブランディング
-------------------------------------*/
.corporation{
    padding-top: 40px;
}
.corporation h2{
    margin-bottom: 10px;
}
.corporation_ttl_sub{
    font-size: clamp(28px, 2vw, 32px);
    margin-bottom: 40px;
}
.corporation .sec_ttl_1_small {
    font-size: 22px;
    height: 46px;
}
.corporation .sec_ttl_1_small:before{
    top: -1px;
    width: 47px;
}
.corporation .flex{
    justify-content: space-between;
    align-items: stretch;
}
.corporation_left{
    width: 520px;
}
.corporation_right{
    width: calc(100% - 580px);
    display: flex;
    border-radius: 20px;
    overflow: hidden;
}
.worries_bg{
    background-image: url(img/worries_bg.jpg);
    background-position: center;
    background-size: cover;
}
.worries .sec_ttl_2 + img{
    max-width: 700px;
    margin: 0 auto;
}
.bubble{
    background-color: var(--m_color);
    border-radius: var(--radius_10) var(--radius_10) 0 0;
    position: relative;
    padding: 20px;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
}
.bubble:after{
    content: '';
    background: var(--m_color);
    height: calc(tan(60deg) * 20px / 2);
    width: 45px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    margin: 0;
    position: absolute;
    top: 100%;
    transform: translate(-50%, -2px) rotate(180deg);
    left: 50%;
}
.bubble h3{
    font-size: 28px;
    padding: 0;
    margin: 0;
}
.worries_list{
    background-color: #fff;
    max-width: 650px;
    margin: 0 auto;
    border-radius: 0 0 var(--radius_10) var(--radius_10);
    padding: 40px;
    border-radius: 0 0 10px 10px;
}
.worries_list ul{
}
.worries_list ul li{
    font-size: 20px;
    border-bottom: 2px dashed #ddd;
    padding: 10px;
    font-weight: 600;
    padding-left: 61px;
    text-indent: -51px;
}
.worries_list ul li span{
    font-size: 20px;
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--t_color) 60%);
    font-weight: 600;
    padding: 0 4px;
}
.worries_list ul li i{
    color: var(--y_color);
    font-size: 36px;
    margin-right: 20px;
    vertical-align: text-top;
    text-indent: 0;
}
.arrow{
    max-width: 100px;
    margin: 20px auto;
}
.result {
    font-size: clamp(22px,3vw,26px);
    text-align: center;
    font-weight: 600;
}
.reason{
    position: relative;
}
.correspondence {
    border-top: 2px dotted #ddd;
}
.correspondence h3{
    font-weight: 600;
    font-size: clamp(24px, 2vw, 28px);
    border-bottom: 4px solid var(--m_color);
}
.correspondence_flex{
    gap: 10px;
    justify-content: flex-start !important;
}
.correspondence_container{
    background-color: var(--m_color);
    width: calc((100% - 20px) / 3);
    border: 3px solid var(--m_color);
    border-radius: 4px;
    overflow: hidden;
}
.correspondence_num {

}
.correspondence_num span{
    color: var(--m_color);
    font-size: clamp(28px, 3vw, 42px);
    background-color: #fff;
    width: 60px;
    display: block;
    height: 60px;
    line-height: 1.65;
}
.correspondence_txt{
    width: calc(100% - 60px);
    align-items: center;
    display: flex;
    justify-content: center;
}
.correspondence_txt p{
    color: #fff;
    text-align: center;
    font-weight: 600;
    font-size: clamp(18px, 2vw, 20px);
}
.cat_bubble {
    justify-content: center !important;
    gap: 40px;
    align-items: center !important;
}
.cat_bubble p{
    background-color: var(--a_color);
    color: #fff;
    font-size: 18px;
    padding: 20px;
    border-radius: 4px;
    max-width: calc(100% - 190px);
    position: relative;
}
.cat_bubble p:after{
    content: "";
    position: absolute;
    margin: auto 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 30px solid var(--a_color);
    border-bottom: 8px solid transparent;
    transform: scale(-1, 1) rotate(120deg);
    top: calc(100% - 5px);
    right: 20px;
}
.cat_circle{
    width: 150px;
}
.reason{
    position: relative;
}
.reason h2{
    font-size: clamp(24px,3vw,32px);
}
.sec_ttl_3_nam{
    font-size: clamp(50px, 5vw, 80px);
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    transform: translateY(-5px);
    color: var(--m_color);
}
.reason h2 img{
    max-width: 150px;
    margin: 0 auto 10px auto;
}
.reason_container{
    align-items: center;
}
.reason_container + .reason_container{
    margin-top: 40px;
}
.reason_txt{
    width: calc(50% - 60px);
    margin-right: 60px;
}
.reason_nam{
    color: var(--m_color);
    font-size: 18px;
    margin-bottom: 10px;
}
.reason_nam span{
    color: var(--m_color);
    font-size: 54px;
    display: inline-block;
    vertical-align: middle;
    margin-left: 6px;
    line-height: 1;
}
.reason_ttl{
    padding: 0;
    margin-bottom: 20px;
}
.reason_ttl span{
    font-size: clamp(20px,3vw,32px);
    background-color: var(--a_color);
    color: #fff;
    font-weight: 600;
    padding: 10px 14px;
    display: inline-block;
    margin-bottom: 10px;
}
.reason_txt_main,
.reason_txt_main .i_block{
    font-size: 18px;
}
.reason_img{
    width: 50%;
    background-color: var(--t_color);
    border-radius: var(--radius_10);
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}
.reason_img img{
    object-position: 48% center;
}
.flex_reverse .reason_txt{
    order: 2;
    margin-right: 0;
    margin-left: 60px;
}
.flex_reverse .reason_img{
    order: 1;
}
.partner{

}
.partner .bg_white .flex{
    align-items: flex-end;
    justify-content: center;
}
.partner h2{
    margin-bottom: 40px;
}
.partner h2 span{
    background-color: var(--a_color);
    color: #fff;
    font-size: clamp(22px, 2vw, 24px);
    font-weight: 600;
    display: inline-block;
    padding: 10px 40px;
    border-radius: 40px;
    position: relative;
}
.partner h2 span:after{
    content: "";
    position: absolute;
    margin: auto 0;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-left: 15px solid var(--a_color);
    border-bottom: 15px solid transparent;
    transform: rotate(90deg) translateY(50%);
    top: calc(100% - 10px);
    left: calc(50% + 15px);
}
.partner_txt{
    width: calc(100% - clamp(130px,9vw,170px) - clamp(130px,9vw,170px));
    padding-right: 40px;
    padding-left: 40px;
    max-width: 580px;
}
.partner_cat{
    width: clamp(130px,9vw,170px);
}

.panel {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60px;
}
/*-------------------------------------
こだわり
-------------------------------------*/
.about_wrap .inner{
    max-width: 1400px;
}
.kodawari .inner_m{
}
.kodawari .flex{
    align-items: stretch;
}
.kodawari_left{
    width: 550px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy_left_inner{
    position: sticky;
    top: 200px;
}
.kodawari_right{
    width: calc(100% - 550px);
    border-radius: 0 10px 10px 0;
    overflow: hidden;
}
.kodawari .sec_ttl_1{
    margin-bottom: 30px;
}
.philosophy .inner{
    justify-content: space-between;
    align-items: stretch;
}
.philosophy .top_about_txt{
    width: 100%;
}
.philosophy_left{
    width: 480px;
}
.philosophy_right{
    width: calc(100% - 540px);
}
.philosophy_right section{
    padding: clamp(40px,3vw,60px) clamp(20px,3vw,40px);
}
.philosophy_right section + section{
    margin-top: 40px;
}
.philosophy_right h3{
    padding: 0;
    margin-bottom: 20px;
}
.philosophy_right h3:before{
    content: '';
    width: 100%;
    height: 2px;
    background-color: var(--m_color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.philosophy_right h3 span{
    color: var(--m_color);
    display: inline-block;
    padding-right: 20px;
    background: #fff;
    position: relative;
    z-index: 2;
}
.philosophy_right .philosophy_large{
    font-size: clamp(28px, 3vw, 32px);
    width: 100%;
    margin: 0;
}
.philosophy_img {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
}
.philosophy_right_txt{
    background-color: #f9f5ed;
    border-radius: 4px;
    padding: 20px;
}
/*-------------------------------------
会社概要
-------------------------------------*/
.philosophy_large {
    font-size: clamp(28px, 3vw, 46px);
    font-family: "JosefinSans", "NotoSansJP", sans-serif;
    line-height: 1.5;
    width: 330px;
    margin-right: clamp(40px, 4vw, 60px);
}
.philosophy_txt {
    width: calc(100% - 400px);
    padding: clamp(40px, 4vw, 60px) clamp(20px, 4vw, 60px);
}
.message_name{
    margin-top: 40px;
    text-align: right;
}
.message_name img{
    max-width: 200px;
    margin: 10px 0 0 auto;
}
.company_img {
    overflow: hidden;
    aspect-ratio: 1.66666666666 / 1;
    max-height: 800px;
    width: 100%;
}
table.data{
    width: 100%;
}
table.data th,
table.data td{
    text-align: left;
    padding: 30px 20px;
    border-bottom: 1px solid #ddd;
    vertical-align: text-top;
    position: relative;
}
table.data th{
    width: 250px;
}
table.data td a{
    text-decoration: underline;
}
table.data td a:hover{
    text-decoration: none;
}
table.data td ol li{
    list-style: none;
    padding-left: 19px;
    text-indent: -19px;
}
table.data td ul li{
    list-style: disc;
    list-style-position: inside;
}
table.data td .location{
    border-top: 1px dashed #ddd;
    margin-top: 20px;
    padding-top: 20px;
}
.map{
    height: 500px;
    margin-top: 10px;
}
.map iframe{
    width: 100%;
    height: 100%;
}
/*-------------------------------------
お問い合わせ
-------------------------------------*/
.cta.content_cta .btn_container.cta_tel,
.cta.content_cta .cta .btn_container{
    width: calc(50% - 10px);
}
.cta.content_cta .btn_container a{
    padding: 0 20px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    aspect-ratio: 4 / 1
}
.cta.content_cta .btn_container.content_cta_tel a{
}
.cta.content_cta .content_cta_tel .button_text_container{
    font-size: clamp(26px,3vw,32px);
}
.cta.content_cta .btn_container.cta_tel a .cta_tel_txt{
    font-size: clamp(20px, 3vw, 34px);
}
.cta.content_cta .btn_container.cta_tel a span{
    font-size: 16px;
}
.cta.content_cta .btn_container.cta_tel a .cta_tel_txt i{
    font-size: 26px;
    margin-right: 10px;
}
.cta_tel_time {
    border-top: 1px solid #fff;
    padding: 10px;
    font-size: 14px;
}
.cta.content_cta .button_su_inner:after{
    display: none;
}
.other_tel{
    padding: 60px 10px;
    margin-bottom: 60px;
}
.other_tel_a_container{
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    max-width: 800px;
    margin: 0 auto 20px auto;
}
.other_tel a{
    font-size: 46px;
    letter-spacing: 0.05em;
    transition: .2s;
    display: block;
    padding: 50px 0;
}
.other_tel a:hover{
    opacity: .8;
}
.other_tel a i{
    border: 1px solid;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    border-radius: 100%;
    padding: 0 0 0 4px;
    margin-right: 26px;
    vertical-align: middle;
}
.page_contact_cta{
    margin: 0 auto 100px auto;
}
.cta.page_contact_cta .top_business_btn{
    margin: 0 auto;
    width: 100%;
    justify-content: center;
    box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.4), 5px 5px 10px rgba(0, 0, 0, 0.16);
    max-width: 700px;
    border-radius: 100px;
    padding: 30px 10px;
    background: linear-gradient(135deg, #0d3c80 0%, #5779AB 100%);
    background: -webkit-linear-gradient(-45deg, #0d3c80 0%, #5779AB 100%);
    transition: .3s;
}
.cta.page_contact_cta .top_business_btn:hover{
    box-shadow: -5px -5px 10px rgba(255, 255, 255, 0.4), 5px 15px 10px rgba(0, 0, 0, 0.16);
    transform: translateY(-10px);
    opacity: 1;
}
.other_contact{
    justify-content: space-between;
}
.cta.page_contact_cta .cta_ttl{
    letter-spacing: 0.1em;
    font-size: 40px;
}
/*お問い合わせフォーム内*/
.wpcf7  form{
    position: relative;
    z-index: 7;
}
.wpcf7-list-item-label {
	margin-left: 5px;
}
.wpcf7-form_form {
	border-top: 1px solid #ddd;
}
.wpcf7-form_form table {
	table-layout: fixed;
	width: 100%;
}
.wpcf7-form_form .flex{
    align-items: stretch;
}
.wpcf7_left {
	border-bottom: 1px solid #ddd;
	display: block;
	font-weight: normal;
	list-style: none;
	padding: 25px 15px;
	text-align: left;
	width: 28%;
}
.wpcf7_left span{
    font-weight: 600;
}
form.wpcf7-form .required:after {
	background: #e74c3c;
	color: #fff;
	content: "必須";
	display: inline-block;
	font-size: 10px;
	font-weight: normal;
	line-height: 1;
	margin-right: 5px;
	padding: 5px 5px;
	vertical-align: middle;
	width: auto;
}
form.wpcf7-form .required2:after {
	background: #3f51b5;
	color: #fff;
	content: "任意";
	display: inline-block;
	font-size: 10px;
	font-weight: normal;
	line-height: 1;
	margin-right: 5px;
	padding: 5px 5px;
	vertical-align: middle;
	width: auto;
}
.wpcf7_right {
	align-items: center;
	border-bottom: 1px solid #ddd;
	border-left: none;
	padding: 25px 15px;
	width: 72%;
}
.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-form_form input::placeholder,
.wpcf7-form_form textarea::placeholder{
    font-weight: 400;
}
.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: #fff;
	border: 1px solid #ccc;
	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, .1);
}
.wpcf7 input[name="your-email"],
.wpcf7 input[name="your-name"],
.wpcf7 input[name="your-company"],
.wpcf7 input[name="your-x"],
.wpcf7-form-control-wrap input[type="date"],
.wpcf7 input[type="tel"],
.wpcf7 .width_min {
	width: 400px;
}
.wpcf7 .width_min2 {
	max-width: 500px;
	width: 100%;
}
.wpcf7 select[name="menu-860"],
.wpcf7 select[name="menu-861"],
.wpcf7 select[name="menu-862"],
.wpcf7 select[name="menu-863"]{
    border: 1px solid #ccc;
    border-radius: 2px;
    background-color: #fff;
}
.wpcf7 .m-r03,
.wpcf7 .m-r02,
.wpcf7 .m-r01 {
	align-items: center;
	display: flex;
}
.wpcf7 .m-r01 span:nth-child(1) {
	width: 105px;
}
.wpcf7 .m-r02 span:nth-child(1) {
	width: 60px;
}
.wpcf7 .m-r03 span:nth-child(1) {
	width: 80px;
}
.wpcf7-form-control-wrap input[readonly] {
	background: #f3f3f3;
	cursor: not-allowed;
}
/*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;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    background-color: var(--m_color);
    border-radius: 10px;
}
.wpcf7c_submit:after{
    content: '\f061';
    position: absolute;
    top: 50%;
    right: 20px;
    color: #fff;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 20px;
}
.wpcf7-spinner{
    display: none !important;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: #222;
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 24px 0;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    transition: .3s;
    font-size: 20px;
    color: #fff;
    max-width: 500px;
    padding: 24px 10px;
    font-weight: 600;
    background-color: transparent;
    font-family: "NotoSansJP","游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 4px solid #ddd;
    color: #222;
    border-radius: 20px;
    border-radius: clamp(16px, 3vw, 20px);
}
/*プライバシーポリシー*/
.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 0px 0px 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal;
}
/*確認画面*/
.wpcf7_left.required:after{
    content: '必須';
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 0px 5px 0px 5px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin: 0 0 0 5px;
    vertical-align: middle;
}
#wpcf7cpcnf{
    position: absolute !important;
    background: rgba(255, 255, 255, 0.95) !important;
    min-height: 100vh!important;
    z-index: 999!important;
}
#wpcf7cpcnf table{
    width: calc(100% - 20px);
    max-width: 1200px;
    margin: 0 auto;
}
#wpcf7cpcnf table td,
#wpcf7cpcnf table th{
    width: 250px;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}
#wpcf7cpcnf table td{
    width: calc(100% - 200px);
    min-height: 78px;
}
#wpcf7cpcnf table td p{
    background-color: #eee;
    padding: 3px 8px;
    min-height: 33px;
}
div.wpcf7cp-btns{
    text-align: center;
    margin-top: 4em !important;
    justify-content: center;
    gap: 10px 20px !important;
}
button.wpcf7cp-cfm-edit-btn,
button.wpcf7cp-cfm-submit-btn{
    width: 300px;
    appearance: none;
    padding: 20px 0;
    cursor: pointer;
    transition: .2s;
    font-size: 16px;
    font-family: 'ShipporiMinchoB1-Regular','serif';
    font-weight: 500;
}
button.wpcf7cp-cfm-submit-btn{
    background-color: var(--m_color);
    color: #fff;
}
button.wpcf7cp-cfm-edit-btn:hover,
button.wpcf7cp-cfm-submit-btn:hover{
    opacity: .8;
}
/*-------------------------------------
フッター
-------------------------------------*/
.footer {
    padding-bottom: 40px;
    position: relative;
    z-index: 3;
}
.footer_flex{
    justify-content: space-between;
}
.footer_address_container{
    width: 350px;
}
.footer .site_title{
    width: 200px;
    position: static;
    transform: none;
    margin-bottom: 30px;
}
.footer_company_name {
    font-size: 24px;
}
.footer_flex *{
    color: #fff !important;
}
.footer_sns{
    margin-top: 30px;
    display: flex;
    gap: 10px;
}
.footer_sns a{

}
.footer_sns a i{
    font-size: 32px;
}
.footer_nav_container {
    width: calc(100% - 400px);
    max-width: 530px;
}
.footer_nav{
    margin-right: 40px;
}
.footer_nav_container li{
}
.footer_nav_container  li + li{
    margin-top: 4px;
}
.footer_nav_container  li a{
}
.footer_banner{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    align-items: center;
}
.footer_banner li{
}
.footer_banner li a{
}
.footer_banner li a img{
    height: 100px;
}
.copyright {
    margin-top: 80px;
    background-color: var(--a_color);
    padding: 20px 0;
}
/* topに戻る */
#page-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 9999;
}
#page-top a {
    display: block;
    position: relative;
    color: #000;
    padding: 10px 12px;
    border-radius: 50%;
    border: 1px solid #000;
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    border-top: 2px solid #000;
    border-left: 2px solid #000;
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}
.grecaptcha-badge{
    bottom: 90px !important;
    z-index: 1001;
}

@media only screen and (max-width: 1024px) {
    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding: 0;
    }
    .header_nav_container{
        background-color: var(--m_color);
        height: 70px;
    }
    .site_title {
        background-color: transparent;
        box-shadow: none;
        margin-left: 20px;
    }
    .site_title a {
        padding: 0;
        margin: 0;
    }
    .pc_header_nav{
        display: none;
    }
    .sp_trigger_nav_container{
        display: inline-block;
        position: relative;
        z-index: 12;
        pointer-events: all;
        position: fixed;
        top: 0;
        right: 0;
    }
    .header_nav_container:before {
        content: none;
    }
    body.home .header_img_container {
        padding: 0;
        flex-flow: column;
        aspect-ratio: 1.5 / 1;
        height: auto;
    }
    .header_img_inner_img {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        background-position: 47% center;
    }
    .header_img_container{
        margin-top: 70px;
    }
    .site_title img.sp_none{
        display: none !important;
    }
    .site_title img.pc_none{
        display: block !important;
    }
    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu-trigger {
        display: inline-block;
        width: 58px;
        height: 58px;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        z-index: 13;
        margin-top: 4px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 14px;
        width: 30px;
        height: 2px;
        background-color: #fff;
        transition: all 0.5s;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 20px;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(9px) rotate(-45deg);
        background-color: #fff;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 29px;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        top: 38px;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-9px) rotate(45deg);
        background-color: #fff;
    }
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 100px 0 150px 0;
        background-color: var(--m_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: all 0.5s;
        overflow-y: auto;
        display: block;
        min-height: 100vh !important;
        width: 100vw;
    }
    .sp_trigger_nav.open {
        transform: translateZ(0);
    }
    .sp_trigger_nav ul {
        height: auto;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav .sp_trigger_nav_inner li {
        margin: 0 20px;
        border-bottom: 1px solid #fff;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: #fff;
        padding: 10px;
        font-weight: 600;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a:after{
        content: "\f054";
        color:#fff;
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
    }
    .sp_trigger_nav .sp_trigger_nav_inner a span{
        color: #000;
        font-size: 30px;
        padding-right: 20px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a i{
        margin-left: 6px;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner {
        border-bottom: none;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }
    .sp_trigger_nav .sp_trigger_nav_inner_inner li a:before {
        content: "┗";
        font-weight: normal;
        left: 40px;
        color: #000;
    }
    .sp_trigger_nav li:last-child {
        border: none;
    }
    .sp_trigger_nav_bottom {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav_bottom a {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
        border: 1px solid #b01f28;
    }
    .sp_trigger_nav_bottom a i {
        color: #b01f28;
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    .sp_btn_area {
        display: flex;
        margin: 0 20px 20px 20px !important;
        gap: 10px;
        align-items: stretch;
    }
    .header_btn{
        width: calc(50% - 5px);
    }
    .header_btn a{
        height: 100%;
        border-radius: 2px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 24px 20px 24px 20px;
    }
    .header_btn a i{
        text-align: center;
        margin: 0 0 4px 0 !important;
    }
    /*-------------------------------------
    トップ 1024~
    -------------------------------------*/
    .header .flex_center_center{
        display: flex;
        justify-content: flex-start;
    }
    .site_title{
        margin-left: 0;
        top: 10px;
        width: 60px;
    }
    .site_title img{
        height: auto;
    }
    .header_nav{
        background-color: transparent;
        box-shadow: none;
        -webkit-backdrop-filter: blur(0);
        backdrop-filter: blur(0);
        display: flex !important;
        margin: 0 0 0 auto;
        position: fixed;
        top:0;
        right:0;
        pointer-events: none;
        padding: 0;
    }
    .sec_ttl{
        margin-bottom: 30px;
    }
    .slick_container{
        display: block;
    }
    .mv_txt{
        left: 20px;
        width: clamp(300px, 54vw, 350px);
    }
    .home .main_wrap{
        padding-top: 80vh;
    }
    .top_about .flex_center_center{
        display: block;
    }
    .top_about_ttl{
        width: 100%;
    }
    .top_about_ttl h2 br{
        display: none;
    }
    .top_about_txt{
        width: 100%;
        text-align: center;
        max-width: 100%;
        margin: 0;
    }
    .top_reform .flex_center_center{
        display: block;
    }
    .top_reform_ttl{
        width: 100%;
        max-width: 100%;
    }
    .top_reform_img{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .top_reform_photo{
        max-width: 340px;
    }
    .top_reform_txt{
        margin-top: 30px;
    }
    .top_area .flex{
        display: block;
    }
    .top_area_left{
        padding: 40px 20px;
        width: 100%;
        border-radius: 20px 20px 0 0;
    }
    .top_area_right{
        width: 100%;
        border-radius: 0 0 20px 20px;
    }
    .area_map{
        max-width: 500px;
    }
    .top_others_flex{
        display: block;
    }
    .others_left{
        height: 100vh;
        margin: 0 auto;
        width: 100%;
    }
    .others_left_img{
        height: 20vh;
    }
    .others_right{
        width: 100%;
    }
    .insta_img_list{
        display: flex;
    }
    .insta_item{
        width: calc((100% - 20px) / 3);
    }
    /*-------------------------------------
    建物管理維持 1024~
    -------------------------------------*/
    .retention_txt .top_about_ttl h2 br{
        display: block;
    }
    .retention{
        width: 100%;
        order: 1;
    }
    .retention_txt{
        order: 1;
        width: 100%;
        padding-bottom: 40px !important;
    }
    .retention_left ,
    .retention_right{
        width: 50%;
        max-width: 250px;
        order: 2;
    }
    .retention_right{
        order: 3;
    }
    .system_img{
        aspect-ratio: 3 / 2;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .system_txt{
        width: 100%;
        margin: 40px auto 0 auto;
        text-align: center;
    }
    .system_txt h3{
        text-align: center;
    }
    /*-------------------------------------
    こだわり 1024~
    -------------------------------------*/
    .kodawari_left{
        width: 100%;
    }
    .kodawari_right{
        width: 100%;
        border-radius: 0 0 10px 10px;
    }
    .philosophy_left{
        width: 100%;
    }
    .philosophy_left_inner h2,
    .philosophy_left_inner p{
        text-align: center !important;
    }
    .philosophy_right{
        width: 100%;
    }
    /*-------------------------------------
    工事店ブランディング 1024~
    -------------------------------------*/
    .corporation_flex{
        display: block;
    }
    .corporation_left{
        width: 100%;
    }
    .corporation_left br.sp_none{
        display: none;
    }
    .corporation_right{
        width: 100%;
        margin-top: 20px;
    }
    /*-------------------------------------
    ブログ 1024~
    -------------------------------------*/
    .blog_inner > .flex{
        gap: 60px 20px;
    }
    .blog_inner > ul > li{
        width: calc((100% - 40px) / 3);
    }
    .single-works .blog_container{
        padding-bottom: 0;
        padding-top: 0;
    }
    .single_txt_area{
        margin-bottom: 0;
    }
    /*-------------------------------------
    施工事例 1024~
    -------------------------------------*/
    .worsks_wrap .blog_inner > ul > li{
        width: calc((100% - 40px) / 3);
    }
    /*-------------------------------------
    お問い合わせ 1024~
    -------------------------------------*/
    .page-template-contact .footer {
        padding: 150px 0 20px 0;
    }
    .cta.page_contact_cta .cta_ttl{
        margin-right: 0;
        text-align: center;
    }
    .cta.page_contact_cta .top_business_btn{
        max-width: 350px;
    }
    /*-------------------------------------
    フッター 1024~
    -------------------------------------*/
    footer .site_title{
        margin-right: auto;
        margin-left: auto;
        display: block;
    }
    footer .site_title img{
        margin: 0 auto;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    body.home .header {
        height: auto;
        background-position: 57% 50%;
    }
    .pc_header_nav li,
    .pc_header_nav li.join_btn.schedule_btn{
        margin: 0 20px 0 0;
    }
}
@media only screen and (min-width: 769px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .sp_none {
        display: none !important;
    }
    .flex,
    .flex_center_center{
        display: block;
    }
    .flex_txt,
    .flex_img,
    .flex_reverse .flex_img{
        width: 100%;
        padding: 0;
        margin:0 auto;
    }
    .flex_img img{
        margin: 0;
    }
    .flex_txt,
    .flex_reverse .flex_txt{
        margin: 0 0 40px 0;
        max-width: none;
    }
    .flex_img img{
        margin: 0 auto;
        display: block;
        max-width: 640px;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity 0.5s;
    }
    .overlay.open {
        width: 100%;
        height: 100%;

        opacity: 1;
    }
    .sp_trigger_nav_bottom {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_trigger_nav_bottom a {
        border-radius: 50%;
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
        border: 1px solid #b01f28;
    }
    .sp_trigger_nav_bottom a i {
        color: #b01f28;
    }
    .sp_trigger_nav_bottom img {
        max-width: 28px;
    }
    body:not(.home) .header_img_container > div:not(.header_img_inner_img){
        height: 350px;
    }
    .sec_ttl_2{
        font-size: 54px;
    }
    .top_service_ttl_main h3 {
        font-size: 24px;
    }
    /*-------------------------------------
    トップ　768~
    -------------------------------------*/
    .mv_txt_container{
        font-size: 28px;
    }
    @keyframes hammer_move{
        0% {
            transform: rotate(-20deg);
        }
        5% {
            transform: rotate(60deg);
        }
        15% {
            transform: rotate(-20deg);
        }
        20% {
            transform: rotate(60deg);
        }
        30% {
            transform: rotate(-20deg);
        }

        40% {
            transform: translate(400px,300px) rotate(-20deg) ;
        }
        45% {
            transform: translate(400px,300px) rotate(-100deg) ;
        }
        55% {
            transform: translate(400px,300px) rotate(-20deg) ;
        }
        60% {
            transform: translate(400px,300px) rotate(-100deg) ;
        }
        70% {
            transform: translate(400px,300px) rotate(-20deg) ;
        }
        
        95% {
            transform: translate(400px,300px) rotate(-20deg);
            opacity: 1;
        }
        100% {
            transform: translate(400px,300px) rotate(-20deg);
            opacity: 0;
        }
    }
    .top_achievements_list{
        padding: 0 20px;
    }
    .insta_img_list{
        display: flex;
    }
    /*-------------------------------------
    ブログ 768~
    -------------------------------------*/
    .blog_inner, .single_inner, .search_inner{
        width: 100%;
    }
    .blog_inner > .flex{
        display: flex;
    }
    .article_top{
        display: block !important;
    }
    .wp-pagenavi{
        text-align: center;
        margin: 60px 0;
    }
    .side_container{
        width: 100%;
        margin: 0 auto;
    }
    .side_container ul{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }
    .side_container li{
        position: relative;
    }
    .side_container li + li{
        margin-top: 0;
    }
    .single_pagenavi{
        margin-bottom: 60px;
        display: flex !important;
    }
    /*-------------------------------------
    工事店ブランディング 768~
    -------------------------------------*/
    .corporation h2,
    .corporation_ttl_sub {
        text-align: center !important;
    }
    .corporation .flex,
    .correspondence_container,
    .reason_container,
    .partner .bg_white .flex{
        display: flex !important;
    }
    .correspondence_num span{
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .partner .bg_white .flex{
        flex-wrap: wrap;
        gap: 20px;
    }
    .partner_txt{
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    .partner_cat{
        order: 2;
    }
    /*-------------------------------------
    建物維持管理 768~
    -------------------------------------*/
    .retention_flex{
        display: flex;
    }
    .example_flex{
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    .example_house{
        order: 1;
        width: 100%;
    }
    .example_list{
        order: 2;
        width: 100%;
    }
    .example_list:nth-of-type(2){
        order: 3;
    }
    .example_list li:nth-of-type(2) dl,
    .example_list:nth-of-type(2) li:nth-of-type(2) dl{
        transform: none;
    }
    .pamphlet img{
        width: 100%;
    }
    .pamphlet img + img{
        margin-top: 20px;
    }
    /*-------------------------------------
    リフォーム 768~
    -------------------------------------*/
    .flex_three_container{
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
    .flex_three_container + .flex_three_container{
        margin-top: 20px;
    }
    .flow_flex{
        display: flex;
    }
    /*-------------------------------------
    施工事例 768~
    -------------------------------------*/
    .works_post_thumbnail > div{
        width: 100%;
    }
    .side_container .widget_my_widget_recent_posts ul{
        align-items: stretch;
    }
    .side_container .widget_my_widget_recent_posts li{
        width: calc(50% - 5px);    
    }
    .side_container .widget_my_widget_recent_posts li + li{
        margin-top: 0;
    }
    /*-------------------------------------
    会社概要 768~
    -------------------------------------*/
    .philosophy_large{
        width: 100%;
        text-align: center;
        margin: 0 auto 40px auto;
    }
    .philosophy_txt{
        width: 100%;
    }
    table.data th{
        width: 200px;
        font-weight: 600;
    }
    /*-------------------------------------
    お問い合わせ　768~
    -------------------------------------*/
    .wpcf7_left{
        width: 100%;
        border-bottom: none;
        padding: 20px 0 10px 0;
    }
    .wpcf7_right{
        width: 100%;
        display: block;
        padding: 0 0 20px 0px;
    }
    .wpcf7-form-control-wrap,
    .wpcf7 input[name="your-email"],
    .wpcf7 input[name="your-name"],
    .wpcf7 input[type="tel"],
    .wpcf7 .width_min{
        width: 100%;
    }
    .wpcf7 input[name="your-email"],
    .wpcf7 input[name="your-name"],
    .wpcf7 input[name="your-x"],
    .wpcf7 input[name="your-company"],
    .wpcf7-form-control-wrap input[type="date"],
    .wpcf7 input[type="tel"]{
        width: 100%;
    }
    /*-------------------------------------
    フッター 768~
    -------------------------------------*/
    .footer_logo {
        display: flex;
    }
    .footer_nav ul li{
        padding: 4px 0;
        text-align: center;
    }
    .footer_nav ul li a:before{
        display: none;
    }
    .copyright{
        margin-top: 60px;
        order: 3;
    }
    .copyright p{
        text-align: center !important;
    }
    .footer_flex{
        display: block;
    }
    .footer_address_container,
    .footer_nav_container{
        width: 100%;
        max-width: 100%;
    }
    .footer_banner{
        margin-top: 40px;
    }
    .footer_nav{
        margin: 40px 0 4px 0;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    br.sp{
        display: block;
    }
    h2:before {
        font-size: 45px;
        top: -70px;
    }
    h3 {
        font-size: 20px;
        margin: 0 0 5vw;
    }
    h2.sec_h2::after{
        width: 26px;
        height: 26px;
    }
    #page-top{
        right: 6px;
    }
    .copy {
        padding-bottom: 140px;
    }
    body.page-template-default .main_inner {
        padding: 10vw 20px 15vw;
    }
    .header_img_inner_text > div:nth-of-type(1) {
        font-size: 23px;
        margin-bottom: 10px;
    }
    /*-------------------------------------
    レイアウト
    -------------------------------------*/
    .wrap{
        font-size: 0.875rem;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_title a {
        color: #fff;
    }
    /*下層ページ*/
    body:not(.home) .header_img_container > div:not(.header_img_inner_img) {
        background-size: cover;
        height: 75vw;
        background-position: 55% center;
    }
    .sec_space_1,
    .sec_space_2,
    .sec_space_3{
        padding:80px 0;
    }
    .sp_p0{
        padding:0;
    }
    body:not(.home) h1:before{
        font-size: 40px;
    }
    .sec_ttl_2{
        font-size: 42px;
        margin-bottom: 40px;
    }
    .sec_ttl_2_nam {
        font-size: 24px;
    }
    body:not(.home) h1{
        font-size: 18px;
    }
    /*-------------------------------------
    トップページ　550~
    -------------------------------------*/
    body.home .header_img_container{
        aspect-ratio: 1 / 1.5;
    }
    .mv_img:after{
        background-position: left;
    }
    .mv_txt {
        top: auto;
        bottom: 8%;
        transform: none;
        left: 2%;
    }
    .news {
        padding: 60px 20px !important;
    }
    .mv_img{
        background-position: 65% 70%;
    }
    .mv_txt_container {
        font-size: 25px;
    }
    .mv_txt_container:first-of-type {
        margin: 0 40px 10px 0;
    }
    .mv_txt{
        left: 50%;
        bottom: 40px;
        transform: translateX(-50%);
        width: 80%;
    }
    .mv_scroll{
        display: none;
    }
    body.home .header_img_container{
        height: calc(100dvh - 70px);
    }
    .home .main_wrap{
        padding-top: 100vh;
    }
    .sec_ttl_1{
        margin-bottom: 40px;
    }
    .news .top_news_list li{
        padding: 0;
    }
    .news_meta:after{
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .news .news_meta p{
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    .top_about_slide{
        aspect-ratio: 2.2 / 1;
        background-size: 250vw;
        margin-top: 40px;
    }
    @keyframes slide_move{
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: -250vw 0;
        }
    }
    .top_about .btn_container{
        margin-top: 0;
    }
    .top_reform_bg{
        max-width: 340px;
        margin: 0 auto;
    }
    .top_reform_photo{
        max-width: 220px;
        margin-bottom: 8px;
    }
    @keyframes hammer_move{
        0% {
            transform: rotate(-20deg);
        }
        5% {
            transform: rotate(60deg);
        }
        15% {
            transform: rotate(-20deg);
        }
        20% {
            transform: rotate(60deg);
        }
        30% {
            transform: rotate(-20deg);
        }

        40% {
            transform: translate(300px,200px) rotate(-20deg) ;
        }
        45% {
            transform: translate(300px,200px) rotate(-100deg) ;
        }
        55% {
            transform: translate(300px,200px) rotate(-20deg) ;
        }
        60% {
            transform: translate(300px,200px) rotate(-100deg) ;
        }
        70% {
            transform: translate(300px,200px) rotate(-20deg) ;
        }
        
        95% {
            transform: translate(300px,200px) rotate(-20deg);
            opacity: 1;
        }
        100% {
            transform: translate(300px,200px) rotate(-20deg);
            opacity: 0;
        }
    }
    .top_reform_damage{
        width: 90px;
        left: 20px;
    }
    .top_reform_damage_2{
        left: auto;
        right: 0px;
    }
    .top_reform_clean{
        left: 0;
        width: 80px;
    }
    .top_reform_clean_2{
        left: auto;
        right: 0;
    }
    .insta_item{
        width: calc((100% - 10px) / 2);
    }
    .cta_ttl{
        aspect-ratio: 5 / 1;
        background-size: 400vw;
        animation: slide_move_2 35s linear infinite;
    }
    @keyframes slide_move_2{
        0% {
            background-position: 0 0;
        }
        100% {
            background-position: -400vw 0;
        }
    }
    .cta_txt {
        color: #fff;
    }
    .cta_flex{
        width: 100%;
        padding: 0 20px;
        gap: 10px;
    }
    .cta .inner{
        padding: 0;
    }
    .cta .bg_white{
        background-color: transparent;
        box-shadow: none;
        padding: 0;
    }
    .cta .btn_container.cta_tel a{
        background-color: #fff;
    }
    .cta .btn_container.cta_tel a .cta_tel_txt{
        font-size: 34px;
    }
    .cta .btn_container.cta_tel a .cta_tel_txt img{
        width: 50px;
    }
    .cta .btn_container{
        width: 100%;
    }
    .cta .btn_container.cta_tel a span{
        font-size: 12px;
    }
    .sp_space_none{
        padding: 0;
    }
    .others_left {        
        background-size: 80px auto, 80px auto;
    }
    .sec_ttl_1.t_left{
        text-align: center !important;
    }
    /*-------------------------------------
    お知らせ 550~
    -------------------------------------*/
    body.tax-news-cat h1,
    body.post-type-archive-news h1{
        margin-bottom: 60px;
    }
    .single_pagenavi{
        display: flex;
    }
    .news .news_meta{
        padding: 20px 10px;
    }
    .news_wrap .details{
        display: flex;
    }
    .news_list{
        display: block;
    }
    .news_list li{
        width: 100%;
        padding: 0;
        margin-bottom: 20px;
    }
    .news_list li + li{
        border-top: 1px solid #ddd;
        padding-top: 20px;
    }
    .news_list li section{
        border: none;
        padding: 0;
    }
    .news_wrap .news_text{
        display: flex;
        border: none;
        padding: 0;
        flex-direction: column;
    }
    .news_thum {
        width: 100%;
    }
    .news_wrap .news_text a.news_thum{
        width: 100%;
        padding-left: 20px;
    }
    /*-------------------------------------
    ブログ 550~
    -------------------------------------*/
    .blog_inner > .flex {
        gap: 40px 0;
    }
    .blog_inner > ul > li{
        width: 100%;
    }
    .blog_container{
        padding-top: 0;
        padding-bottom: 0;
    }
    .single .blog_inner{
        border: none;
        padding: 0;
    }
    .single_txt_area{
        padding: 0;
        box-shadow: none;
    }
    .single .blog_container{
        padding-bottom: 80px;
    }
    /*-------------------------------------
    こだわり 550~
    -------------------------------------*/
    .kodawari_left{
        padding-right: 20px;
        padding-left: 20px;
    }
    /*-------------------------------------
    工事店ブランディング 550~
    -------------------------------------*/
    .corporation > .inner{
        padding: 0;
    }
    .corporation .flex:not(.correspondence_container):not(.correspondence_flex), .reason_container{
        display: block !important;
    }
    .worries_inner{
        padding: 0;
    }
    .worries_list{
        padding: 40px 10px;
    }
    .result{
        padding: 0 20px;
    }
    .correspondence_flex {
        display: flex !important;
        flex-wrap: wrap;
        gap: 10px;
    }
    .correspondence_container{
        display: flex !important;
        width: 100%;
    }
    .cat_bubble p{
        width: 100%;
        max-width: 100%;
        margin: 20px auto 40px auto;
    }
    .cat_circle{
        width: 100%;
        max-width: 150px;
        margin: 0 auto;
    }
    .cat_bubble p:after{
        transform: translateX(-50%) rotate(90deg);
        border-top: 20px solid transparent;
        border-left: 20px solid var(--a_color);
        top: calc(100% - 12px);
        right: auto;
        left: 50%;
        border-bottom: 20px solid transparent;
    }
    .reason_txt,
    .flex_reverse .reason_txt{
        width: 100%;
        margin: 0;
    }
    .reason_img{
        width: 100%;
        margin: 20px auto 0 auto;
    }
    .partner_txt{
        padding: 0;
    }
    /*-------------------------------------
    リフォーム 550~
    -------------------------------------*/
    .flow > .inner{
        padding: 0;
    }
    .flow_wrap ,
    .flow_wrap div:not(.merit) .inner_m{
        padding: 0;
    }
    .flow_txt{
        display: block;
    }
    .work_flow {
        border-radius: 0;
    }
    .flow_left{
        width: 30px;
    }
    .flow_right{
        width: calc(100% - 30px);
    }
    .flow_container:after {
        left: -229px;
    }
    .flow_container + .flow_container:before{
        left: calc(50% + 10px);
        transform: translateX(-50%);
    }
    .flow_txt{
        padding: 40px 20px;
        display: block;
    }
    .flow_ttl{
        margin-bottom: 10px;
        font-size: 20px;
        padding: 0;
    }
    .flow_txt .free{
        top: -50px;
    }
    .flow_img{
        width: 100%;
        margin: 0 auto;
        height: auto;
    }
    .flow_txtarea{
        width: 100%;
    }
    /*-------------------------------------
    施工事例 550~
    -------------------------------------*/
    .works_search > ul{
        gap: 10px;
    }
    .works_search li{
        width: calc((100% - 10px) / 2);
    }
    .works_search li a{
        font-size: 14px;
    }
    .works_search li a:before{
        font-size: 16px;
        right: 10px;
    }
    .worsks_wrap .blog_inner > ul > li{
        width: 100%;
    }
    .worsks_wrap .wp-pagenavi{
        margin-bottom: 0;
    }
    .single.single-works .blog_container{
        padding-bottom: 0;
    }
    .single.single-works .single_pagenavi{
        margin-bottom: 0;
    }
    .summary_table table th,
    .summary_table table td{
        text-align: center;
    }
    .summary_table table th span{
        display: inline-block;
        width: 200px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }
    .side_container .widget_my_widget_recent_posts li{
        width: 100%;
    }
    /*-------------------------------------
    会社概要 550~
    -------------------------------------*/
    table.data,
    table.data tbody,
    table.data tr,
    table.data th,
    table.data td{
        display: block;
    }
    table.data th{
        width: 100%;
        border: none;
        padding: 20px 0 0 0;
    }
    table.data td{
        padding: 0 0 20px 0;
        font-size: 14px;
    }
    table.data td .location{
        font-size: 14px;
    }
    /*-------------------------------------
    お問い合わせ 550~
    -------------------------------------*/
    .other_tel a{
        font-size: 25px;
        padding: 30px 0;
    }
    .other_tel a i{
        margin-right: 16px;
    }
    .cta.page_contact_cta .cta_ttl{
        font-size: 26px;
    }
    ul.contact_att{
        padding:10px 15px;
    }
    .contact_att li{
        text-indent: -14px;
        padding-left: 14px;
    }
    .wpcf7 {
        margin: 0 0 0;
    }
    .wpcf7_container div.flex {
        display: block;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .readme {
        width: 100%;
        margin: 30px 0 10px;
        height: 150px;
    }
    .contact_tel {
        margin: 0;
    }
    /*確認画面 550~*/
    #wpcf7cpcnf table td,
    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
        padding: 10px 0 15px 0;
    }
    #wpcf7cpcnf table th{
        display: block;
        width: 100%;
        padding: 10px 0 0 0;
    }
    #wpcf7cpcnf table td{
        min-height: auto;
    }
    button.wpcf7cp-cfm-edit-btn,
    button.wpcf7cp-cfm-submit-btn{
        margin: 0 5px !important;
        font-size: 16px;
        padding: 16px 10px;
        display: block;
        width: 100%;
    }
    .wpcf7c_submit input[type="submit"]{
        font-size: 16px;
    }
    /*-------------------------------------
    footer 550~
    -------------------------------------*/
    .footer_logo img{
        max-width: 80px;
    }
    .footer_address {
        margin-top: 40px;
    }
    .footer_nav {
        margin: 40px 0;
    }
}
