﻿@charset "UTF-8";
/*
Theme Name: build_trust
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "ShipporiMinchoB1-Regular", serif;
    --font_en: "ShipporiMinchoB1-Regular", serif;
    --m_color: #2c7fbf;
    --a_color: #fcfaf4;
    --gr: linear-gradient(45deg, #2c7fbf 0%, #040000 80%);
}

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;
}
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;
}
.bg_gradation {
    background: var(--gr);
}
.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 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    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_ja);
}
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 40%;
    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;
}
.between{
    justify-content: space-between;
}
.inner,
.inner_m,
.inner_s,
.inner_l{
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    width: 100%;
}
.inner_s{
    max-width: 800px;
}
.inner_m{
    max-width: 1800px;
}
.inner_l{
    max-width: 100%;
}
.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;
}
.mt10 {
    margin-top: 10px !important;
}
.mt20 {
    margin-top: 20px !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;
}
.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_red{
    color: var(--m_color) !important;
}
.bg_white{
    background-color: #fff;
}
.bg_black{
    background-color: #333;
}
.bg_red{
    background-color: var(--m_color);
}
.bg_gray{
    background-color: #eee;
}
.i_block{
    display: inline-block;
}
.ds_block{
    display:block;
}
br.sp{
    display: none;
}
.height_full{
    height: 100%;
}
.mincho{
    font-family: 'CormorantGaramond','ShipporiMinchoB1-Regular','serif';
}
/*-------------------------------------
共通追加
-------------------------------------*/
.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: 70px;
    align-items: center;
}
body.home .header_nav_container{
    transition: .2s;
    box-shadow: 0 0 10px rgb(0,0,0,0.2);
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
}
.header_nav_container.shadow{
    border: none;
    box-shadow: 0 0 10px rgb(0,0,0,0.2);
    background-color: rgba(255, 255, 255, .6);
    backdrop-filter: blur(10px);
}
.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;
}
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: 200px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    top: 18px;
    left: 20px;
    transition: .3s;
}
.site_title a{
    position: relative;
    width: 100%;
    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%;
    padding: 0 40px;
}
.header_nav nav {
    height: 100%;
}
.sp_trigger_nav{
    display: none;
}
.pc_header_nav {
    height: 100%;
}
.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-child {
    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;
    font-size: 15px;
    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;
}
.pc_header_nav > ul > li.join_btn .join_list{
    position: absolute;
    width: 100%;
    min-width: 200px;
    text-align: center;
    height: auto;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    background-color: rgba(255,255,255,1);
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.pc_header_nav > ul > li.join_btn .join_list li{
    font-size: 16px;
    color: #fff;
    margin: 0 auto;
    height: auto;
}
.pc_header_nav > ul > li.join_btn .join_list li + li{
    border-top: 1px dotted var(--m_color);
}
.pc_header_nav > ul > li.join_btn .join_list li a{
    display: block;
    text-align: center;
    position: relative;
    color: #000;
    width: 100%;
}
.pc_header_nav > ul > li.join_btn .join_list li:last-child a{
    background-color: transparent;
}
.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: 400px;
    margin: 70px 0 0 0;
    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;
}
.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_img:after{
    content: '';
    width: 100%;
    height: 30%;
    position: absolute;
    background: linear-gradient(0deg, rgba(44, 127, 191, 0.6) 0%, rgba(4, 0, 0, 0.4) 40%, rgba(4, 0, 0, 0) 80%);
    left: 0;
    bottom: 0;
}
.mv_txt{
    position: absolute;
    left: 2%;
    bottom: 7%;
    z-index: 2;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.mv_txt_container{
    display: inline-block;
    font-size: clamp(42px, 7vw, 110px);
    line-height: 1.25;
}
.mv_txt_container_small{
    font-size: clamp(18px,3vw,24px);
    display: inline-block;
    padding: 20px 10px;
}
@keyframes bg_loop{
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: -150vw 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: clamp(28px,6vw,58px);
    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;
    margin-top: 20px;
}
.sec_ttl_2_nam{
    font-size: 28px;
}
.sec_ttl_3{
    font-size: 20px;
    margin-bottom: 20px;
    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%);
}
/*トップコンテンツ*/
.top_service{
    position: relative;
}
.top_service .flex{
    align-items: stretch;
    justify-content: space-between;
}
.top_service_txt{
    width: calc(50% - 40px);
    order: 2;
}
.top_service_img{
    width: calc(50% - 40px);
    background-size: cover;
    background-image: url(img/suit_walk.png);
}
.btn_container{
    margin-top: 40px;
}
.btn_container a{
}
.btn_container a span{
    border: 1px solid var(--m_color);
    width: 60px;
    display: inline-block;
    aspect-ratio: 1 / 1;
    border-radius: 100%;
    position: relative;
    vertical-align: middle;
    margin-right: 20px;
    transition: .3s;
}
.btn_container a span:before,
.btn_container a span:after{
    content: '';
    width: 10px;
    height: 1px;
    position: absolute;
    background-color: var(--m_color);
    top: 50%;
    right: 15px;
    transform: translateY(-4px) rotate(45deg);
    transition: .3s;
}
.btn_container a span:after{
    width: 30px;
    right: 15px;
    transform: none;
}
.btn_container_w{
}
.btn_container a{
    color: #fff;
}
.btn_container a span{
    border: 1px solid #fff;
}
.btn_container a span:before,
.btn_container a span:after{
    background: #fff;
}
.btn_container a:hover span{
    background-color: #fff;
}
.btn_container a:hover span:before,
.btn_container a:hover span:after{
    background: var(--gr);
}
.top_company_txt{
    max-width: 800px;
    margin: 0 0 0 auto;
}
.top_company_img{
    height: 700px;
    margin-top: 100px;
}
.top_company_img img{
    object-position: center 31%;
}
.top_recruit .flex{
    align-items: stretch;
}
.top_recruit_txt{
    width: 50%;
    padding-right: 80px;
}
.top_recruit_large{
    font-size: clamp(24px, 2vw, 28px);
    margin-bottom: 20px;
}
.top_recruit_img{
    width: 50%;
    position: relative;
    top: -80px;
}
.top_recruit_img img{
    object-position: 38% center;
}
.cta{
    position: relative;
    background-image: url(img/cta.jpg);
    background-size: cover;
    background-position: center 51%;
}
.cta:before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top:0;
    left: 0;
    background-image: var(--gr);
    z-index: 1;
}
.cta_btn_container{
    width: calc(50% - 30px);
    font-size: 30px;
    border: 1px solid #fff;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    height: 120px;
    transition: .3s;
}
.cta_btn_container + .cta_btn_container{
    margin-left: 60px;
}
.cta_btn_container i{
    font-size: 28px;
    margin-right: 20px;
    transition: .3s;
}
.cta_btn_container:nth-of-type(2){
    font-size: 24px;
}
.cta_btn_container:hover{
    background: #fff;
    color: var(--m_color) !important;
}
.cta_btn_container:hover i{
    color: var(--m_color) !important;
}
/*-------------------------------------
パンくず
-------------------------------------*/
.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{
    position: relative;
    z-index: 2;
    border-bottom: 2px solid #f7f7f5;
}
.news .sec_ttl_2{
    width: 190px;
    margin-right: 80px;
}
.news .top_news_list{
    width: calc(100% - 270px);
}
.news .top_news_list li{
    border-bottom: 1px solid;
}
.news .news_meta{
    padding: 20px 30px 20px 0;
    position: relative;
    z-index: 2;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
}
.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: var(--m_color);
}
.news .news_meta time{
    margin-right: 20px;
    line-height: 1.5;
    padding: 0px 20px 0 20px;
    border-radius: 20px;
    background: var(--gr);
    width: 130px;
    text-align: center;
    vertical-align: text-top;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    margin-top: 4px;
}
.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);
    vertical-align: text-top;
}
.news .news_txt{
    padding: 20px 0px;
    letter-spacing: 0.1em;
    font-size: 14px;
    border-top: 1px dotted #000;
}
.news .flex{
    justify-content: space-between;
}
.news .flex .btn{
    width: 260px;
}
/*-------------------------------------
事業内容
-------------------------------------*/
.service_img{
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    height: 450px;
}
.service_container .flex{
    justify-content: space-between;
}
.service_container .service_ttl {
}
.service_container .service_ttl .title_4{
    margin-bottom: 0;
    padding: 0 0 10px 0;
}
.service_container .service_ttl .title_4 span{
    font-size: clamp(24px, 3vw, 32px);
    position: relative;
    display: block;
    padding-left: 40px;
}
.service_container .service_ttl .title_4 span:before{
    content: '◆';
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
}
.title_4.border_none:after{
    display: none;
}
.service_container .service_txt p{
}
/*-------------------------------------
会社概要
-------------------------------------*/
.philosophy{
}
.philosophy img{
    max-width: 100px;
    margin: 0 auto 20px auto;
}
.philosophy_txt{
    font-size: 28px;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}
.philosophy_txt:before,
.philosophy_txt:after{
    content: '';
    width: 80px;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.philosophy_txt:after{
    top: calc(100% + 10px);
    width: 40px;
}
.philosophy .bg_gradation{
    align-items: stretch;
    padding: 40px 0;
}
.philosophy_container{
    text-align: center;
    width: calc(100% / 4);
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.philosophy_container + .philosophy_container:before{
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background-color: #fff;
    top: 0;
    left: 0;
}
.philosophy_nam{
    color: #fff;
    font-size: 40px;
    display: inline-block;
    position: relative;
    line-height: 1;
    margin-bottom: 20px;
}
.philosophy_nam:after{
    content: '';
    width: 40px;
    height: 1px;
    background-color: #fff;
    display: block;
    margin: 20px auto 0 auto;
}
.philosophy_container p{
    font-size: 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy_container i{
    color: #fff;
    font-size: 40px;
    margin-top: 20px;
}
.message .bg_gradation {
    position: relative;
    text-align: center;
}
.message .bg_gradation:before{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url(img/message_bg.svg);
    top: 0;
    left: 0;
    pointer-events: none;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.message_container{
    text-align: left;
    display: inline-block;
}
.message_large{
    font-size: 32px;
    margin-bottom: 60px;
}
.message_name{
    margin-top: 60px;
}
.philosophy_three{
}
.philosophy_three_left{
    width: clamp(200px,21vw,400px);
    aspect-ratio: 1 / 1;
}
.philosophy_three_left img{
    max-width: 100%;
}
.philosophy_three_right{
    width: calc((100% - (clamp(200px,21vw,400px) + 80px)));
    margin-left: 80px;
    border: 1px solid #ddd;
}
.philosophy_three_right dl{
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.philosophy_three_right dl + dl{
    border-top: 1px solid #ddd;
}
.philosophy_three_right dl dt{
}
.philosophy_three_right dl dt span{
    background: var(--gr);
    font-size: 18px;
    color: #fff;
    display: inline-block;
    padding: 2px 20px;
    border-radius: 30px;
    width: 150px;
    text-align: center;
}
.philosophy_three_right dl dd{
}
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%;
}
/*-------------------------------------
採用情報
-------------------------------------*/
/*.greeting:before{
    content: '';
    aspect-ratio: 1 / 1;
    position: absolute;
    background-image: url(img/favicon.svg);
    z-index: 1;
    right: 40px;
    top: 0;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.075));
    height: calc(100% - 80px);
    background-repeat: no-repeat;
}*/
.dl_container{
}
.dl_container dt{
    font-size: clamp(20px, 2vw, 34px);
    margin-bottom: 40px;
}
.dl_container dd{
}
/*-------------------------------------
お問い合わせ
-------------------------------------*/
.page-template-contact .cta{
    margin-right: 20px;
    margin-left: 20px;
}
/*.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;
}
.other_contact{
    justify-content: space-between;
}*/
/*お問い合わせフォーム内*/
.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: var(--gr);
}
.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: 400;
    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;
    background-color: transparent;
    font-family: var(--font_ja);
}
.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;
}
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: var(--font_ja);
    font-weight: 500;
}
button.wpcf7cp-cfm-submit-btn{
    background: var(--gr);
    color: #fff;
}
button.wpcf7cp-cfm-edit-btn:hover,
button.wpcf7cp-cfm-submit-btn:hover{
    opacity: .8;
}
/*-------------------------------------
フッター
-------------------------------------*/
footer{
    position: relative;
    padding: 80px 0 20px 0;
}
body:not(.home) footer .site_title img{
    opacity: 1;
}
.footer_logo{
    text-align: center;
}
.footer_logo a{
    display: inline-block;
}
.footer_logo img{
    margin: 0 auto;
    width: 100%;
    max-width: 150px;
}
.footer_logo div{
    margin:0 10px;
}
.footer_logo div img{
    max-height: 148px;
}
.footer_address{
    margin-top: 60px;
}
.footer_nav{
    margin: 60px 0;
}
.footer_nav ul{
    flex-wrap: wrap;
}
.footer_nav ul li{
    padding: 0 30px;
}
.footer_nav ul li a{
    color:#fff;
    position: relative;
}
.footer_nav ul li a:before{
    content: '/';
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -34px;
}
.footer_nav ul li:first-of-type a:before{
    display: none;
}
.footer_sns{
    margin: 20px 0 60px;
}
.footer_sns li{
    margin: 0 3px;
}
.footer_sns li a{
    border: 1px solid #fff;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}
.footer_sns li a i{
    color:#fff;
    font-size: 20px;
}
.footer_sns li a i.fa-line{
    color:#06C152;
}
.footer_sns li a i.fa-youtube{
    color:#FF0000;
}
.footer_sns li a i.fa-tiktok{
    color: #000000;
    text-shadow: -2px -2px 0 #00efe8, 2px 2px #f7004d;
    font-size: 24px;
}
.copyright p{
    border-top: 1px solid #969696;
    padding: 20px 0 0;
    color: #969696 !important;
    font-size: 14px;
}
/* topに戻る */
#page-top {
    position: fixed;
    bottom: 25px;
    right: 20px;
    z-index: 9999;
}
#page-top a {
    display: block;
    position: relative;
    color: #000;
    padding: 10px 12px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
#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;
    }
    .pc_header_nav{
        display: none;
    }
    .sp_trigger_nav_container{
        display: inline-block;
        position: relative;
        z-index: 12;
        pointer-events: all;
    }
    .header_nav_container {
        display: flex !important;
        box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
        background-color: rgba(255, 255, 255, .6);
        backdrop-filter: blur(10px);
    }
    .header_nav_container:before {
        content: none;
    }
    body.home .header_img_container {
        padding: 0;
        flex-flow: column;
        aspect-ratio: 1.25 / 1;
        height: auto;
    }
    .header_img_inner_img {
        width: 100%;
        margin-left: 0;
        margin-top: 0;
        background-position: 47% center;
    }
    .site_title{
        left: 10px;
    }
    /***** ハンバーガーメニュー *****/
    .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: #333;
        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: #000;
    }
    .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: #000;
    }
    .sp_trigger_nav {
        width: 100%;
        height: 100%;
        padding: 100px 0;
        background-color: #fff;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        transform: translate(100%);
        transition: all 0.5s;
        overflow-y: auto;
        display: block;
        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 #000;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a {
        text-align: left;
        position: relative;
        display: block;
        text-decoration: none;
        color: #000;
        padding: 10px;
        font-weight: 600;
    }
    .sp_trigger_nav .sp_trigger_nav_inner a:after{
        content: "\f054";
        color:#000;
        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;
    }
    /*-------------------------------------
    トップ 1024~
    -------------------------------------*/
    .header .flex_center_center{
        display: flex;
        justify-content: flex-start;
    }
    .header_nav{
        background-color: transparent;
        box-shadow: none;
        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;
    }
    .top_about .flex{
        flex-direction: column;
    }
    .top_about_img_1,
    .top_about_img_2{
        width: 100%;
        max-width: 100%;
        aspect-ratio: auto;
    }
    .top_about_img_1:before{
        max-width: 350px;
        aspect-ratio: 1.5 / 1;
    }
    .top_about_img_1:after{
        max-width: 400px;
        aspect-ratio: 1.5 / 1;
        margin-top: -5vw;
    }
    .top_about_txt{
        max-width: calc(100% - 40px);
        width: 100%;
        margin: 80px 20px;
    }
    .top_about_img_2:before{
        aspect-ratio: 1.5 / 1;
        max-width: 500px;
    }
    .top_about_img_2:after{
        aspect-ratio: 1.5 / 1;
        margin: -5vw auto 0 20px;
        max-width: 350px;
    }
    .cta .flex{
        display: block;
    }
    .btn_container_cta + .btn_container_cta{
        margin: 40px auto 0 auto;
    }
    .cta .flex_center_center{
        display: flex;
    }
    /*-------------------------------------
    お問い合わせ 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~
    -------------------------------------*/
    /*.btn_container{
        margin-top: 40px;
    }
    .mv_txt_container{
        font-size: 28px;
    }
    .top_about_img_1:before{
        margin-left: 20px;
    }
    .top_about_img_1:after{
        margin-top: -23vw;
    }
    .top_about_img_2:after{
        margin: -15vw auto 0 20px;
    }
    .top_service_ttl{
        display: flex;
    }
    .top_service_nam{
        padding-left: 20px;
    }
    .sec_ttl_2_jp{
        font-size: 42px;
    }
    .top_company_bg{
        writing-mode: horizontal-tb;
        font-size: 18vw;
    }
    .top_company_txt{
        padding-top: 40px !important;
        margin: 0 auto;
    }*/
    .news .top_news_list{
        width: 100%;
    }
    .top_service_txt{
        width: calc(100% - 40px);
        margin: 0 auto;
        padding-bottom: 40px !important;
    }
    .top_service_img{
        width: 100%;
        aspect-ratio: 1.5 / 1;
        max-height: 600px;
        background-position: center 80%;
    }
    .top_company_img{
        margin-top: 40px;
    }
    .top_company_img {
        aspect-ratio: 1.5 / 1;
        max-height: 600px;
        height: auto;
    }
    .top_recruit {
        padding-bottom: 200px;
    }
    .top_recruit_txt{
        width: 100%;
        padding-right: 0;
        padding-bottom: 40px !important;
    }
    .top_recruit_img{
        aspect-ratio: 1.5 / 1;
        max-height: 600px;  
        width: 100%;
        top: 0;
    }
    .cta_btn_container{
        width: calc(50% - 20px);
    }
    .cta_btn_container + .cta_btn_container{
        margin-left: 20px;
    }
    /*-------------------------------------
    会社概要 768~
    -------------------------------------*/
    .philosophy .bg_gradation{
        display: flex;
        flex-wrap: wrap;
        padding: 20px;
    }
    .philosophy_container{
        width: calc(50% - 10px);
        padding: 40px;
    }
    .philosophy_container:nth-of-type(3):before{
        opacity: 0;
    }
    .philosophy_container:nth-of-type(3):after,
    .philosophy_container:nth-of-type(4):after{
        content: '';
        width: 100%;
        height: 1px;
        background-color: #fff;
        position: absolute;
        top: 0;
        left: 20px;
    }
    .philosophy_three_left{
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        aspect-ratio: auto;
    }
    .philosophy_three_right{
        width: 100%;
        margin: 20px auto 0 auto;
        max-width: 500px;
    }
    .message .bg_gradation{
        padding-right: 20px;
        padding-left: 20px;
    }
    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_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;
    }
}
@media only screen and (max-width: 550px) {
    :root {
        --gr: linear-gradient(80deg, #1e6ba6 0%, #0c426b 80%);
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    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: 90px;
    }
    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~
    -------------------------------------*/
    .mv_img{
        background-position: 75% 70%;
    }
    .mv_txt{
        bottom: 3%;
    }
    body.home .header_img_container{
        aspect-ratio: 1 / 1.75;
    }
    .mv_img:after{
        background-position: left;
    }
    .news {
        padding:80px 0 !important;
    }
    .sec_ttl {
        font-size: 30px;
    }
    .sec_ttl_1{
        font-size: 52px;
    }
    .sec_ttl_3{
        font-size: 28px;
    }
    .news .top_news_list li{
        padding: 0;
    }
    .news_meta:after{
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
    .top_about_img_1:after {
        margin-top: -17vw;
    }
    .top_about_img_2:after {
        margin: -8vw auto 0 20px;
    }
    .top_service_ttl{
        display: block;
        padding: 0;
    }
    .top_service_ttl_main{
        padding-left: 0;
        margin-top: 10px;
    }
    .top_service_ttl_main:before{
        display: none;
    }
    .top_service_nam{
        padding: 0;
        font-size: 40px;
    }
    .top_service_img{
        aspect-ratio: 1 / 0.5;
    }
    /*.btn_container{
        width: 100%;
        max-width: 400px;
        margin: 40px auto 0 auto;
    }
    .btn_container a{
        aspect-ratio: auto;
        border-radius: 0;
        padding: 20px;
    }*/
    .top_company_txt{
        padding-bottom: 40px;
    }
    .top_company_img{
        margin-top: 0;
        padding: 0 20px 20px 0;
    }
    .top_company_img_inner{
        box-shadow: 20px 20px 0 var(--m_color);
    }
    .btn_container_cta a{
        font-size: 24px;
        padding: 40px 20px;
    }
    .btn_container_cta a i{
        margin: 0 10px 0 0;
        font-size: 24px;
    }
    .btn_container_cta + .btn_container_cta{
        margin: 20px auto 0 auto;
    }
    .top_recruit{
        padding-bottom: 80px;
    }
    .cta{
        padding-right: 0;
        padding-left: 0;
    }
    .cta_btn_container {
        width: 100%;
        height: 100px;
    }
    .cta_btn_container + .cta_btn_container{
        margin: 10px auto 0 auto;
    }
    .other_tel{
        padding-right: 0;
        padding-left: 0;
    }
    .other_tel .fs24{
        font-size: 16px;
    }
    /*-------------------------------------
    お知らせ 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;
        display: block;
    }
    .news .news_meta time{
        display: block;
        margin: 0 0 10px 0;
    }
    .news .news_meta p{
        display: block;
        width: calc(100% - 26px);
    }
    .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;
    }
    .cta .flex_center_center{
        display: block;
    }
    /*-------------------------------------
    事業内容 550~
    -------------------------------------*/
    .service_img{
        height: 250px;
    }
    /*-------------------------------------
    会社概要 550~
    -------------------------------------*/
    .philosophy_container{
        width: 100%;
    }
    .philosophy_container + .philosophy_container:before,
    .philosophy_container:nth-of-type(3):before{
        height: 1px;
        opacity: 1;
        width: 100%;
    }
    .philosophy_container:nth-of-type(3):after, .philosophy_container:nth-of-type(4):after{
        display: none;
    }
    .philosophy_three_right dl{
        display: block;
    }
    .philosophy_three_right dl dt{
        margin-bottom: 10px;
    }
    .message .inner_l{
        padding: 0;
    }
    .message_large{
        font-size: 20px;
    }
    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~
    -------------------------------------*/
    .page-template-contact .cta{
        margin-right: 0;
        margin-left: 0;
    }
    .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%;
    }
    button.wpcf7cp-cfm-submit-btn{
        margin-top: 10px !important;
    }
    .wpcf7c_submit input[type="submit"]{
        font-size: 16px;
    }
    /*-------------------------------------
    footer 550~
    -------------------------------------*/
    .footer_address {
        margin-top: 40px;
    }
    .footer_nav {
        margin: 40px 0;
    }
}
