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

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", san-serif;
    --font_ja: "游明朝", "san-serif";
    --font_en: "Oswald", "serif";
    --font_en: 'Times New Roman', Times, serif;
    --h1_font: clamp(22px, 3vw, 48px);
    --h2_font: clamp(40px, 10vw, 100px);
    --h3_font: clamp(40px, 6.0vw, 56px);
    --m_color: #1d3250;
    /* --a_color: #4a6585; */
    --a_color: #c5a670;
    --f_color: #202020;
    --b_color: #f0f0f0;
    --w_color: #fff;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1340px);
    --single_w: min(100%, 1040px);
    --main_mp: 200px;
    --single_mp: 150px;
    --m_ps30: 30px;
    --m_ps40: 40px;
    --m_ps50: 50px;
    --m_ps60: 60px;
    --m_ps80: 80px;
    --m_ps100: 100px;
    --gr: linear-gradient(45deg, #17778f 0%, #17778f 20%, #54b6ce 100%);
}

/*-------------------------------------
JSアニメーションパーツ
-------------------------------------*/
/*順番にフェードアップアニメーション*/
.order_fadeUp {
    -webkit-transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    transition: opacity 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s, transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.6s,
        -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1) 0.2s;
    opacity: 0;
    -webkit-transform: translate3d(0, 20%, 0);
    transform: translate3d(0, 20%, 0);
}
.order_fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*フェードアップアニメーション*/
.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);
    font-family: 'Times New Roman', Times, serif;
}
.fadeUp-is-show {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
/*左方向から右へフェードイン*/
.slide_left_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(-20%);
    transform: translateX(-20%);
}
.slide_left_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*右方向から左へフェードイン*/
.slide_right_fadeIn {
    -webkit-transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    transition: all 800ms cubic-bezier(0.07, 0.76, 0.44, 1);
    opacity: 0;
    -webkit-transform: translateX(20%);
    transform: translateX(20%);
}
.slide_right_fadeIn-is-show {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
}
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block:before {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.4s 0.1s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: var(--w_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:before {
    -webkit-transform: translateX(101%);
    -ms-transform: translateX(101%);
    transform: translateX(101%);
}
.block:after {
    -webkit-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0) translateX(0);
    -ms-transform: scaleX(0) translateX(0);
    transform: scaleX(0) translateX(0);
    -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    transition: transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53),
        -webkit-transform 0.6s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    background-color: #555;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block.block_is-show:after {
    -webkit-transform: scaleX(1) translateX(101%);
    -ms-transform: scaleX(1) translateX(101%);
    transform: scaleX(1) translateX(101%);
}
/*ボケながらフェードイン*/
.BlurFadeIn {
    visibility: hidden;
}
@keyframes blurAnime {
    from {
        filter: blur(30px);
        transform: scale(1.2);
        opacity: 0;
        visibility: hidden;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
        visibility: visible;
    }
}
.BlurFadeIn-is-show {
    -webkit-animation: blurAnime 1s ease-in-out forwards 0s;
    -moz-animation: blurAnime 1s ease-in-out forwards 0s;
    animation: blurAnime 1s ease-in-out forwards 0s;
    visibility: visible;
}

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

@keyframes PageAnime {
	0% {
		transform: scaleX(0);
		transform-origin: left;
	}
	50% {
		transform: scaleX(1);
		transform-origin: left;
	}
	50.001% {
		transform-origin: right;
	}
	100% {
		transform: scaleX(0);
		transform-origin: right;
	}
}
@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


.title-span{
    color: transparent;
    display: block;
    overflow: hidden;
    position: relative;
    transition: color 0ms 0.5s;
    width: max-content;
}
.title-span::after{
    content: "";
    left: 0;
    display: block;
    position: absolute;
    top: 0;
    transform: translateX(-100%);
    width: 100%;
    height: 100%;
    background-color: var(--a_color);
}
.title-span.active{
    color: black;
}
.title-span.active::after{
    animation: lineAnime 1s;
}
@keyframes lineAnime {
    0% {
    transform: translateX(-100%)
    }
    50% {
    transform: translateX(0)
    }
    100% {
    transform: translateX(100%)
    }
}

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

.main_w {
    max-width: var(--main_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.single_w {
    max-width: var(--single_w);
    margin: 0 auto;
    padding-right: 20px;
    padding-left: 20px;
}
.main_col {
    margin-bottom: var(--main_mp);
}
/* .main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
} */
.main_pa {
    padding: var(--main_mp) 20px;
}
.single_pa {
    padding-top: var(--single_mp);
    padding-bottom: var(--single_mp);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
p {
    line-height: 2.5;
}
.mb10 {
    margin-bottom: 10px;
}
.mb20 {
    margin-bottom: 20px;
}
.mb30 {
    margin-bottom: 30px;
}
.mb40 {
    margin-bottom: 40px;
}
.mb50 {
    margin-bottom: 50px;
}
.mb60 {
    margin-bottom: 60px;
}
.mb70 {
    margin-bottom: 70px;
}
.mb80 {
    margin-bottom: 80px;
}
.mb90 {
    margin-bottom: 90px;
}
.mb100 {
    margin-bottom: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px;
    color: gray;
}

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

.fa-bullseye:before {
    content: "\f140";
}
.fa-gem:before {
    content: "\f3a5";
}
.fa-eye:before {
    content: "\f06e";
}

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

/*ボタン*/
.common_btn {
    max-width: 320px;
    width: 100%;
    text-align: left;
    margin-top: 60px;
    margin-right: auto;
    margin-left: auto;
}
.common_btn a {
    display: inline-block;
    width: 100%;
	width: 320px;
	padding: 20px 30px;
	display: block;
	background: var(--m_color);
	position: relative;
	overflow: hidden;
    text-align: center;
    text-decoration: none;
    font: bold clamp(14px, 1.5vw, 18px) var(--font_en);
}
.common_btn a::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 320px;
	background: var(--f_color);
	transition: all .3s;
}
.common_btn a .text{
	position: relative;
	color: var(--w_color);
}
.common_btn a .arrow{
	position: absolute;
	right: 20px;
	color: var(--w_color);
	transition: all .3s;
}
.common_btn a:hover {
    background-position: 100% 0;
}
.common_btn a:hover::before{
    right: 0;
}
.common_btn a:hover .arrow{
    transform: translateX(5px);
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    margin: 0 auto;
    background: var(--m_color);
    background-image: url("img/top_contact_back.jpg");
    background-position: 50%;
    position: relative;
}
.common_cta_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 68, 167, 0.4);
}
.common_cta_inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: var(--m_ps100) 20px;
}
.common_cta_text {
    padding: 50px;
    background: var(--w_color);
}
.common_cta_inner p {
    color: var(--w_color);
    text-align: center;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.8;
    margin-bottom: 40px;
    z-index: 1;
    position: relative;
}

/*ボタン*/
.cta_button {
    width: 100%;
    max-width: 768px;
    justify-content: space-between;
    margin: 0 auto;
}
.cta_button > div {
    width: 48%;
}
.cta_button a{
	max-width: 100%;
	padding: 20px 30px;
	display: block;
	position: relative;
	overflow: hidden;
    text-decoration: none;
    font: bold clamp(16px, 1.5vw, 20px) var(--font_en);
    text-align: center;
}
.cta_mail_button a {
	background: var(--a_color);
}
.cta_line_button a {
	background: #02b404;
}
.cta_button a::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 400px;
	background: var(--a_color);
	transition: all .3s;
}
.cta_mail_button a::before{
	background: #b48733;
}
.cta_line_button a::before{
	background: #058f07;
}
.cta_button a .text{
	position: relative;
	color: var(--w_color);
}
.cta_button a .arrow{
	position: absolute;
    top: 15px;
	right: 20px;
    transform: translateX(-10px);
	color: var(--w_color);
	transition: all .3s;
    font-size: 30px;
}
.cta_button i {
    margin-right: 6px;
    font-size: 20px;
    color: var(--w_color);
}
.cta_button a:hover::before{
    right: 0;
}
.cta_button a:hover .arrow{
    transform: translateX(5px);
}

/*-------------------------------------
見出し
-------------------------------------*/
/* TOPの見出し */
.top_h2 {
    position: relative;
    margin-bottom: 60px;
}
.top_h2 h2 {
    font: bold clamp(18px, 2.0vw, 20px) var(--font_ja);
    color: var(--f_color);
    margin-top: 10px;
    position: relative;
}
.top_h2 .data_text {
    font: bold clamp(30px, 6vw, 70px) var(--font_en);
    color: var(--f_color);
    line-height: 1.1;
    letter-spacing: 0.5rem;
}

.other_h2 {
    margin-bottom: 60px;
    position: relative;
}
.other_h2:before {
    content: url("img/heading_icon.svg");
    position: absolute;
    top: -30px;
    width: 45px;
}
.other_h2 h2 {
    font: bold clamp(24px, 3vw, 36px) var(--font_ja);
    color: var(--f_color);
    margin-top: 30px;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
}

/* 背景白系 */
.heading_f h2 {
    color: var(--f_color);
}
.heading_f .data_text {
    color: var(--f_color);
}
/* テキスト白系 */
.heading_w h2 {
    color: #fff;
    position: relative;
    z-index: 1;
}
.heading_w .data_text {
    color: #fff;
    position: relative;
    z-index: 1;
}
.heading_w h2:after {
    background: var(--w_color);
}

/* テキスト左寄せ */
.heading_left {
    text-align: left;
}
/* テキスト中央寄せ */
.heading_center {
    text-align: center;
    text-indent: 0.5rem;
}
.heading_center:before {
    left: 50%;
    transform: translateX(-50%);
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: 90px;
    line-height: 0;
    transition: var(--tr);
    padding: 10px 0;
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 60px;
    padding: 10px 0;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.8;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 0 20px 0 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1001;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    align-items: center;
    background: var(--w_color);
}
.h_nav_wrap.is-fixed .pc_h_nav {
    padding: 0;
}
.h_nav_inner {
    justify-content: space-between;
    transition: var(--tr);
    align-items: center;
}
.h_nav_wrap.is-fixed .h_nav_inner {
    transition: var(--tr);
}
.pc_h_nav_top {
    justify-content: flex-end;
    margin-bottom: 10px;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .pc_h_nav_top {
    margin-bottom: 0;
}
.pc_h_nav > ul {
    height: 100%;
    flex-wrap: wrap;
}
.pc_h_nav li {
    display: flex;
}
.pc_h_nav a {
    font: bold 16px var(--font_ja);
    text-decoration: none;
    color: var(--f_color);
    letter-spacing: 0.2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pc_h_nav > ul > li > a {
    margin-right: 50px;
}
.pc_h_nav > ul > li:last-child > a {
    margin-right: 0;
}
.pc_h_nav > ul > li > a:before {
    position: absolute;
    top: -17px;
    left: 0px;
    content: "";
    width: 100%;
    height: 2px;
    z-index: 1;
    background: var(--f_color);
    opacity: 0;
    border-radius: 10px;
    visibility: hidden;
    transition: 0.3s;
    -webkit-transition: 0.3s;
    -moz-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
.pc_h_nav li:last-child a i {
    color: var(--w_color);
    font-size: 18px;
}
.pc_h_nav a:hover {
    opacity: 0.8;
}
.pc_h_nav > ul > li:last-child a {
    font: bold 15px var(--font_ja);
    padding: 15px 40px;
    text-decoration: none;
    color: var(--w_color);
    background: var(--a_color);
    /* border-radius: 50px; */
}
.pc_h_nav li:last-child a i {
    color: var(--w_color);
    font-size: 24px;
}

/* TOPのスライダー画像 */
.slider {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}
.slider {
    position: relative;
    height: 100vh;
    margin-right: 0;
    overflow: hidden;
}
.slick-img img {
    width: 100%;
}
@keyframes zoomUp {
    0% {
        transform: scale(1.0);
    }
    100% {
        transform: scale(1.1);
    }
}
.add-animation {
    animation: zoomUp 7s linear 0s normal both;
}
.slider_inner {
    display: block;
}

.slider_inner_sp {
    display:none;
}
.slick-slide img {
    width: 100%;
    height: auto;
}
.mypattern {
    width: 100%;
}
.slick-prev:before,
.slick-next:before {
    font-size: 40px;
    color: var(--w_color);
    width: 60px;
    height: 60px;
    padding: 10px 10px;
}
.slick-prev{
    height: 30px;
    left: 0px;
    z-index: 1;
}
.slick-prev:before{
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f053";
}
.slick-dotted.slick-slider {
    margin-bottom: 0;
}
.slick-next{
    height: 30px;
    right: 25px;
    z-index: 1;
}
.slick-next:before{
    font-family:"Font Awesome 5 Free";
    font-weight: bold;
    content: "\f054";
}
.home .slick-dots{
    bottom:-45px;
}
.slick-track img {
    font-family: "object-fit: cover;";
    object-fit: cover;
    height: 100vh;
    width: 100%;
}
.slider {
    display: none;
}
.slider.slick-initialized {
    display: block;
}
.header_img_container h1 {
    text-align: center;
}
.header_img_container {
    position: relative;
    width: 100%;
    height: 480px;
    background-image: url("img/other_header.jpg");
    background-position: 50% 60%;
}
body .header_img_container {
    position: relative;
    z-index: 0;
}
.header_img_inner_img {
    position: relative;
    max-width: 1540px;
    margin: 0 auto;
}
.header_img_inner_box {
    margin: 0 auto;
}
.header_img_inner_text {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(0);
    width: 100%;
    margin: 0 auto;
    height: 140vh;
    padding: 0 20px;
}
.header_img_text_top {
    text-align: left;
    margin-bottom: 50px;
}
.header_img_text_top span {
    font: bold clamp(30px, 5.0vw, 90px) var(--font_en);
    color: var(--m_color);
    /* text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5),0px 0px 20px rgba(255, 255, 255, 0.5),0px 0px 20px rgba(255, 255, 255, 0.5); */
    letter-spacing: 0.1rem;
    line-height: 1.4;
}
.header_img_text_bottom {
    font: bold clamp(16px, 2.0vw, 40px) var(--font_ja);
    color: var(--f_color);
    /* text-shadow: 0px 0px 20px rgba(255, 255, 255, 1),0px 0px 20px rgba(255, 255, 255, 1),0px 0px 20px rgba(255, 255, 255, 1); */
    text-align: left;
}

.header_img_inner_text p {
    text-align: center;
    font-weight: 700;
    line-height: 1.8;
}

.other_header {
    position: relative;
    background: url(img/other_header.jpg) no-repeat;
    background-position: 50% 10%;
    padding: 200px 20px 200px;
    text-align: left;
    position: relative;
}
.other_header h1 {
    position: relative;
    font-size: clamp(16px, 2vw, 24px);
    font-weight: bold;
    letter-spacing: 0.2vw;
    color: var(--f_color);
    max-width: 1340px;
    margin: 0 auto;
    text-align: center;
}
.other_header h1:before {
    content: attr(data-text);
    text-transform: uppercase;
    display: block;
    font: bold clamp(40px, 4vw, 72px) var(--font_en);
    line-height: 1.2;
    margin-bottom: 15px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: 0.2rem;
    text-indent: 0.2rem;
    color: var(--m_color);
}
.other_header h1 {
    width: 100%;
    position: relative;
}
.other_header h1:before {
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: 0.8rem;
    margin-left: 0px;
}

.container {
    overflow: hidden;
}
.wrapper {
    animation: loop-text 20s linear infinite;
}
.double-content {
    display: inline-block;
    font-size: 12rem;
    white-space: nowrap;
}
@keyframes loop-text {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*-------------------------------------
TOP サービス
-------------------------------------*/
.top_service_inner {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    height: 100%;
    position: relative;
    background: url(img/top_service_back.svg) no-repeat;
    background-position: 50% 35%;
    background-size: 840px;
}
.top_service_text p {
    text-align: center;
    font: bold clamp(14px, 1.5vw, 18px) var(--font_ja);
    line-height: 2.5;
}
.top_service_image_box {
    max-width: 1240px;
    margin: 80px auto;
    justify-content: space-between;
}
.top_service_image {
    position: relative;
    width: 48%;
}

/*-------------------------------------
TOP 会社概要
-------------------------------------*/
.top_company_wrap {
    margin: 0 auto;
    background: var(--m_color);
    background-image: url("img/company_back.jpg");
    background-position: 50% 0%;
    position: relative;
}
.top_company_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(138, 90, 0, 0.55);
}
.top_company_wrap p {
    position: relative;
    font: bold clamp(14px, 2vw, 18px) var(--font_ja);
    color: var(--w_color);
    text-align: center;
    z-index: 1;
    line-height: 2.5;
}

/*-------------------------------------
TOP 採用情報
-------------------------------------*/
.top_recruit_wrap {
    background-image: url("img/recruit_back.jpg");
    background-position: 60% 50%;
    background-size: 1920px;
}
.top_recruit_inner {
    max-width: 1340px;
    margin: 0 auto;
}
.top_recruit_box {
    width: 100%;
    max-width: 450px;
    margin-left: auto;
}
.top_recruit_text p {
    font: bold clamp(14px, 1.5vw, 18px) var(--font_ja);
    text-align: center;
    line-height: 2.5;
    color: var(--f_color);
}

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

/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 50px;
    background: var(--b_color);
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.15em;
}
.breadcrumbs:before {
    content: "\f015";
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
    text-decoration: none;
}

/*-------------------------------------
事業内容ページ
-------------------------------------*/
.service_wrap {
    margin: var(--single_mp) auto;
    padding: 0 20px;
}
.service_inner {
    justify-content: space-between;
    max-width: 1200px;
    border: solid 1px var(--m_color);
    padding: 100px;
    margin: 0 auto 100px;
}
.service_wrap section:last-child .service_inner {
    margin-bottom: 0;
}
.service_text {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 20px 0;
    width: 52%;
}

.service_image_box {
    position: relative;
}
.service_image_box p {
    width: 100%;
    position: absolute;
    left: 50%;
    bottom: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    padding: 40px 60px;
    transform: translate(-50%, 0);
    font: bold clamp(14px, 1vw, 16px) var(--font_ja);
    line-height: 2.0;
}
.service_image {
    width: 100%;
    margin-bottom: 60px;
}
.service_image img {
    width: 100%;
    height: 100%;
}
.service_box h3 {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 30px) var(--font_ja);
    text-align: center;
}
.service_box ul {
    justify-content: space-between;
}
.service_box ul li {
    width: 47%;
}
.service_list_title {
    margin-bottom: 20px;
    padding: 30px;
    background: var(--b_color);
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    text-align: center;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company {
    margin: var(--single_mp) 0;
}
.company p {
    text-align: left;
}
.company_wrap,
.philosophy_wrap {
    margin-bottom: var(--single_mp);
}

/* 会社概要・採用情報 */
.summary_table table {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.summary_table th,
.summary_table td {
    border: 1px solid #ccc;
}
.summary_table th {
    width: 300px;
    padding: 20px 20px;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
    background: var(--b_color);
    color: var(--f_color);
}
.summary_table td {
    border-top: 1px solid #ccc;
    padding: 20px 20px;
    text-align: left;
    background: var(--w_color);
}
.summary_table li {
    position: relative;
    padding: 0 0 0 24px;
    margin-bottom: 5px;
}
.summary_table li:last-child {
    margin-bottom: 0;
}
.summary_table li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m_color);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 0;
}
.summary_table .sup {
    font-size: 15px;
    color: #707070;
}

/* GoogleMap */
.company_googlemap  {
    margin-top: 40px;
    line-height: 0;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/* VATEのミッション・ビジョン・バリュー */
.philosophy_list > li {
    margin-bottom: 20px;
    border: solid 6px var(--b_color);
}
.philosophy_list_left {
    padding: 20px;
    background: var(--b_color);
    width: 280px;
    text-align: center;
}
.philosophy_list_right {
    padding: 20px;
}
.philosophy_list_text_top {
    margin-bottom: 5px;
    font: bold clamp(20px, 2.5vw, 30px) var(--font_en);
    color: var(--m_color);
}
.philosophy_list_text_bottom {
    font: bold clamp(16px, 1.5vw, 17px) var(--font_ja);
    color: var(--f_color);
}
.philosophy_list_right li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 24px;
}
.philosophy_list_right li:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--a_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/* 代表メッセージ */
.message_box {
    background: var(--b_color);
    padding: 100px;
    justify-content: space-between;
}
.message_box p {
    text-align: center;
    font: 400 clamp(15px, 1vw, 16px) var(--font_ja);
    line-height: 2.5;
}

/*-------------------------------------
採用情報ページ
-------------------------------------*/
.recruit_information_text {
    margin-bottom: 40px;
}
.recruit_information_text p {
    text-align: center;
}
.recruit_information_text p:first-child {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 24px) var(--font_ja);
    color: var(--m_color);
}


.recruite_line {
    max-width: 240px;
    margin-top: 10px;
}
.recruite_line a {
    font: 900 clamp(14px, 2.0vw, 16px) var(--font_ja);
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 17px 40px 17px 20px;
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
}
.recruite_line a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.recruite_line i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
    color: var(--w_color);
}
.recruite_line a:hover {
    opacity: 0.8;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_inner_text p {
    text-align: center;
}
.contact_news_line {
    max-width: 240px;
    margin: 0 auto 40px;
}
.contact_news_line a {
    font: 900 clamp(14px, 2.0vw, 16px) var(--font_ja);
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 17px 40px 17px 20px;
    background: #02b404;
    color: var(--w_color);
    border-bottom: 6px solid #069009;
}
.contact_news_line a:before {
    position: absolute;
    right: 25px;
    top: 50%;
    content: "";
    width: 8px;
    height: 8px;
    margin-top: -2px;
    transform: rotate(45deg) translateY(-50%);
    border-right: 2px solid var(--w_color);
    border-top: 2px solid var(--w_color);
}
.contact_news_line i {
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
    color: var(--w_color);
}
.contact_news_line a:hover {
    opacity: 0.8;
}

fieldset {
    display: contents;
}

/*お問い合わせフォーム内*/
.wpcf7-list-item-label {
    margin-left: 5px;
}
.wpcf7-form_form {
    border-top: 1px solid #ddd;
    background: var(--w_color);
}
.wpcf7_left {
    display: block;
    max-width: 250px;
    width: 100%;
    padding: 25px 15px;
    list-style: none;
    border-bottom: 1px solid #ddd;
}
form.wpcf7-form .required:after,
form.wpcf7-form .arbitrary:after {
    width: auto;
    display: inline-block;
    padding: 0 5px 0 5px;
    font-weight: normal;
    font-size: 10px;
    margin-right: 10px;
    vertical-align: middle;
}
form.wpcf7-form .required:after {
    content: "必須";
    background: #e74c3c;
    color: var(--w_color);
}
form.wpcf7-form .arbitrary:after {
    content: "任意";
    background: #999;
    color: var(--w_color);
}
.wpcf7_right {
    width: 100%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
}
.wpcf7_checkbox_title {
    max-width: 200px;
    width: 100%;
    border: 1px solid #ddd;
    border-bottom: none;
    background: #f3f3f3;
}
span.wpcf7-list-item {
    display: block !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
    border: 2px solid #e94e43 !important;
    font-size: 14px;
    color: #e94e43;
}
@media all and (-ms-high-contrast: none) {
    span.wpcf7-list-item input {
        margin: 0 5px 0 0;
    }
}
.form_privacy span.wpcf7-list-item input {
    margin: 0 5px 4px 0;
}
.wpcf7_container #info2 {
    margin: 10px 0 0;
}
.wpcf7-form-control-wrap input,
.wpcf7-form-control-wrap textarea {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border: none;
    padding: 8px;
    width: 100%;
    font-size: 100%;
    background: #f3f3f3;
    outline: none;
}
.wpcf7-checkbox input,
.wpcf7-checkbox label span {
    cursor: pointer;
}
.form_privacy {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    text-align: center;
}
.wpcf7c-elm-step2 {
    text-align: center;
}
.wpcf7_container {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
input::placeholder,
input::-moz-input-placeholder,
input::-ms-input-placeholder,
textarea::placeholder,
textarea::-ms-placeholder,
textarea::-moz-placeholder {
    color: #ddd;
}
/*submitボタンのリセットCSS*/
input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
.wpcf7-form div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #e94e43;
    font-size: 14px;
    color: #e94e43;
    margin: 30px 0;
}
.wpcf7-form span.wpcf7-not-valid-tip {
    font-size: 14px;
    color: #e94e43;
}
/*submitボタンの装飾*/
.wpcf7c_submit {
    text-align: center;
}
.wpcf7c_submit input {
    outline: none;
    max-width: 250px;
    width: 100%;
    margin: 15px auto 0;
    display: block;
    color: var(--w_color);
    font-weight: 700;
    z-index: 0;
    border: none;
    padding: 15px;
    font-size: 14px;
    letter-spacing: 0.18em;
}
.wpcf7c_submit input[type="submit"] {
    text-align: center;
    background: var(--a_color);
}
.wpcf7c_submit input[type="submit"]:hover,
.wpcf7c_submit input[type="button"]:hover {
    opacity: 0.8;
}
.wpcf7c_submit input[type="button"] {
    background: none;
    border: 1px solid;
    color: #555;
}

/*プライバシーポリシー*/
.readme {
    width: 78%;
    height: 200px;
    margin: 40px auto 10px;
    overflow-y: scroll;
    padding: 10px 20px;
    border: 1px solid #dadada;
    font-size: 0.8125rem;
}
.readme dl {
    margin: 20px 0 0;
}
.readme dt {
    font-weight: bold;
}
.readme dd {
    margin: 0 0 0 15px;
}
.readme ol li {
    margin: 0 0 0 40px;
    list-style: decimal-leading-zero;
}

/* コンタクトフォーム確認画面 */
#wpcf7cpcnf table {
    border: none;
    width: 100%;
}
#wpcf7cpcnf table th {
    background: var(--b_color);
    border: 1px solid #ccc;
    color: var(--f_color);
    text-align: left;
    width: 25%;
    padding: 10px 15px;
}
#wpcf7cpcnf table th p {
    color: var(--f_color);
}
#wpcf7cpcnf table td {
    background: var(--w_color);
    border: 1px solid #ccc;
    width: 75%;
    padding: 5px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
.wpcf7cp-btns button {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
}
.wpcf7cp-cfm-edit-btn {
    background: var(--a_color);
    color: var(--w_color);
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--m_color);
    color: var(--w_color);
    border: none;
}
/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
.footer_address {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    justify-content: center;
}
/* フッター */
.footer_inner {
    padding: 80px 20px 20px;
}
.footer_address {
    text-align: left;
}
.footer_title {
    margin-right: 60px;
    width: 120px;
}
.footer_title a {
    color: var(--f_color);
}
.footer_title a:hover {
    opacity: 0.8;
}
.footer_address p {
    margin-bottom: 10px;
}
.footer_address a {
    color: var(--f_color);
    text-decoration: none;
}
/*sns部分*/
.footer_address_sns {
    margin-top: 20px;
}
.footer_address_sns a {
    font-size: 25px;
    display: inline-block;
}
.footer_address_sns i {
    color: #ddd;
}
.footer_banner a {
    display: block;
}
.footer_banner a {
    margin-right: 10px;
}
.footer_banner a:last-child {
    margin-right: 0;
}
.footer_sns i {
    font-size: 24px;
}
.footer p {
    line-height: 1.7;
}
.copyright {
    text-align: center;
    border: none;
    color: var(--f_color);
    font-size: 0.6875rem;
    padding: 20px 0;
}
.copyright p {
    color: var(--f_color);
}

/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--a_color);
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--w_color);
    border-left: 1px solid var(--w_color);
    transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    left: 50%;
    top: 61%;
}
#page-top a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 1000px) {
    /* 矢印 */
    .scroll_down_inner {
        top: -70px;
        right: 10px;
    }
    .scroll_down_box {
        width: 140px;
        height: 140px;
    }
    .scroll_down_text span {
        transform-origin: 0 70px;
    }
    .scroll_down_arrow {
        width: 60px;
        height: 60px;
    }
}

@media only screen and (min-width: 769px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 768px) {
    .sp_none {
        display: none;
    }

    .common_cta_inner .cercleArrow {
        width: 30px;
        height: 30px;
        right: 15px;
    }

    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 0 0 0 20px;
        z-index: 1001;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .site_ttl {
        width: 60px;
        line-height: 0;
        transition: var(--tr);
        padding: 10px 0;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 40px;
        padding: 10px 0;
    }

    .site_ttl a {
        display: block;
        color: var(--f_color);
        font-weight: bold;
        text-decoration: none;
        margin: 0 auto;
        transition: var(--tr);
    }

    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    .overlay {
        content: "";
        display: block;
        width: 0;
        height: 0;
        background-color: rgba(0, 0, 0, 0.5);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        opacity: 0;
        transition: opacity var(--tr);
    }
    .overlay.open {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    .menu_wrap {
        height: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 30px;
        text-decoration: none;
        color: var(--w_color);
        background: var(--a_color);
        z-index: 100;
        cursor: pointer;
        position: relative;
    }
    .menu-trigger {
        display: inline-block;
        height: 45px;
        vertical-align: middle;
        cursor: pointer;
        position: relative;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 0;
        transition: var(--tr);
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        width: 30px;
        height: 1px;
        background-color: var(--w_color);
        transition: var(--tr);
        transform: translate(-50%,-50%);
    }
    .h_nav_wrap.is-fixed .menu-trigger span {
        background-color: var(--w_color);
    }
    .menu_wrap.active span {
        background-color: var(--w_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 13px;
        width: 10px;
        left: calc(50% - 10px);
    }
    .menu_wrap.active span:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
        width: 30px;
        left: calc(50% - 15px);
    }
    .menu-trigger span:nth-of-type(2) {
        top: 21px;
        width: 20px;
        left: calc(50% - 5px);
    }
    .menu_wrap.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 12px;
    }
    .menu_wrap.active span:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
        bottom: 7px;
        left: calc(50% - 15px);
    }
    .h_nav_inner {
        justify-content: space-between;
        transition: var(--tr);
    }
    .sp_h_nav {
        height: 100%;
    }
    .sp_h_nav_inner {
        width: 100%;
        height: 100%;
        padding: 75px 0;
        background: var(--w_color);
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8;
        left: 100%;
        transition: var(--tr);
        overflow-y: auto;
    }
    nav.open .sp_h_nav_inner {
        left: 0;
    }
    .sp_h_nav_list > li {
        margin: 0 0 15px;
    }
    .sp_h_nav_list > li > a {
        text-align: center;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--f_color);
        padding: 10px 20px;
        font: bold 16px var(--font_ja);
    }
    .sp_h_nav_list > li:last-child a {
        font: bold 15px var(--font_ja);
        padding: 15px 40px;
        text-decoration: none;
        color: var(--w_color);
        background: var(--a_color);
        border-radius: 50px;
    }
    .sp_h_nav_list > li:last-child a i {
        margin-right: 10px;
        color: var(--w_color);
    }
    .sp_h_nav_list a:hover {
        background: #f3f3f3;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner {
        border-bottom: none;
    }
    .sp_h_nav_inner .sp_h_nav_list_inner li a {
        padding: 10px 0 10px 60px;
        color: #666;
    }
    .sp_h_nav_inner li:last-child {
        border: none;
        text-align: center;
        margin: 10px 0 0 0;
    }
    .sp_h_nav_list {
        width: fit-content;
        margin: 0 auto;
    }
    .sp_h_nav_tel {
        padding: 30px 10px;
        background: var(--b_color);
        text-align: center;
        width: 90%;
        margin: 0 auto;
    }
    .sp_h_nav_tel a {
        text-decoration: none;
        color: var(--m_color);
        display: block;
        margin: 0 0 10px;
        letter-spacing: 0.4vw;
        font: 900 25px/1 var(--font_en);
    }
    .sp_h_nav_tel a i {
        margin-right: 5px;
        color: var(--m_color);
    }
    .sp_h_nav_sns {
        text-align: center;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 0 10vw;
    }
    .sp_h_nav_sns a {
        background: #fbfbf8;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: inline-block;
        text-align: center;
        font-size: 16px;
        display: -webkit-flex;
        display: flex;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
        margin: 0 10px 0 0;
        text-decoration: none;
    }
    .sp_h_nav_sns a i {
        color: var(--m_color);
    }
    .sp_h_nav_sns img {
        max-width: 28px;
    }
    /*ハンバーガーメニューここまで*/

    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --single_mp: 80px;
    }

    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none3 {
        display: none !important;
    }
    .pc_none3 {
        display: block;
    }
    .flex {
        display: block;
    }

    /*ボタン*/
    .common_btn {
        margin-top: 30px;
    }
    .home .common_btn {
        margin-top: 30px;
    }

    /* TOPのスライダー画像 */
    .slider {
        width: 100%;
        max-width: 1920px;
        margin: 0 auto;
    }
    .slider {
        position: relative;
        height: 45vh;
        margin-right: 0;
        overflow: hidden;
    }
    .slick-img img {
        width: 100%;
    }
    @keyframes zoomUp {
        0% {
            transform: scale(1.0);
        }
        100% {
            transform: scale(1.1);
        }
    }
    .add-animation {
        animation: zoomUp 7s linear 0s normal both;
    }
    .slider_inner {
        display: block;
    }

    .slider_inner_sp {
        display:none;
    }
    .slick-slide img {
        width: 100%;
        height: auto;
    }
    .mypattern {
        width: 100%;
    }
    .slick-prev:before,
    .slick-next:before {
        font-size: 40px;
        color: var(--w_color);
        width: 60px;
        height: 60px;
        padding: 10px 10px;
    }
    .slick-prev{
        height: 30px;
        left: 0px;
        z-index: 1;
    }
    .slick-prev:before{
        font-family: "Font Awesome 5 Free";
        font-weight: bold;
        content: "\f053";
    }
    .slick-dotted.slick-slider {
        margin-bottom: 0;
    }
    .slick-next{
        height: 30px;
        right: 25px;
        z-index: 1;
    }
    .slick-next:before{
        font-family:"Font Awesome 5 Free";
        font-weight: bold;
        content: "\f054";
    }
    .home .slick-dots{
        bottom:-45px;
    }
    .slick-track img {
        font-family: "object-fit: cover;";
        object-fit: cover;
        height: 45vh;
        width: 100%;
    }
    .slider {
        display: none;
    }
    .slider.slick-initialized {
        display: block;
    }
    .header_img_container h1 {
        text-align: center;
    }
    body .header_img_container {
        position: relative;
        z-index: 0;
    }
    .header_img_inner_box {
        margin: 0 auto;
    }
    .header_img_inner_text {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%) translateX(0);
        width: 100%;
        margin: 0 auto;
        height: 60vh;
    }
    .header_img_text_top {
        text-align: left;
        margin-bottom: 10px;
    }
    .header_img_text_top span {
        letter-spacing: 0;
    }

    .header_img_inner_text p {
        text-align: center;
        font-weight: 700;
        line-height: 1.8;
    }

    .other_header {
        position: relative;
        background: url(img/other_header.jpg) no-repeat;
        background-position: 45% 0%;
        background-size: 768px;
        padding: 100px 20px 100px;
        text-align: left;
        position: relative;
    }
    .other_header h1 {
        position: relative;
        font-weight: bold;
        letter-spacing: 0.2vw;
        color: var(--f_color);
        max-width: 1340px;
        margin: 0 auto;
        text-align: center;
    }
    .other_header h1:before {
        content: attr(data-text);
        text-transform: uppercase;
        display: block;
        line-height: 1.2;
        margin-bottom: 15px;
        margin: 0 auto;
        text-align: center;
        letter-spacing: 0.3rem;
        color: var(--m_color);
    }
    .other_header h1 {
        width: 100%;
        position: relative;
    }
    .other_header h1:before {
        line-height: 1.2;
        margin-bottom: 15px;
        letter-spacing: 0.8rem;
        margin-left: 0px;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        background-position: 50%;
    }
    .common_cta_inner p {
        margin-bottom: 20px;
    }

    /*ボタン*/
    .cta_button {
        width: 100%;
        max-width: 768px;
        justify-content: space-between;
        margin: 0 auto;
    }
    .cta_button > div {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .cta_button > div:first-child {
        margin-bottom: 10px;
    }

    /* TOPの見出し */
    .top_h2 {
        margin-bottom: 40px;
    }
    .top_h2 h2 {
        margin-top: 10px;
    }

    .other_h2 {
        margin-bottom: 20px;
    }
    .other_h2 h2 {
        margin-top: 30px;
    }

    /*-------------------------------------
    TOP サービス
    -------------------------------------*/
    .top_service_inner {
        background-position: 50% 30%;
        background-size: 400px;
    }
    .top_service_text p {
        text-align: left;
        line-height: 2.5;
    }
    .top_service_image_box {
        margin: 30px auto;
    }
    .top_service_image {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }
    .top_service_image:first-child {
        margin-bottom: 20px;
    }

    /*-------------------------------------
    TOP 会社概要
    -------------------------------------*/
    .top_company_wrap {
        background: var(--a_color);
        background-image: none;
    }
    .top_company_wrap:before {
        position: static;
    }
    .top_company_wrap p {
        text-align: left;
        line-height: 2.5;
    }
    .top_company_image {
        margin-bottom: 20px;
        background: var(--a_color);
        background-image: none;
    }

    /*-------------------------------------
    TOP 採用情報
    -------------------------------------*/
    .top_recruit_wrap {
        background: var(--b_color);
    }
    .top_recruit_inner {
        max-width: 1340px;
        margin: 0 auto;
    }
    .top_recruit_box {
        max-width: 768px;
        margin: 0 auto;
    }
    .top_recruit_text p {
        text-align: left;
        line-height: 2.5;
    }

    .top_recruit_image img {
        width: 300px;
        height: 300px;
        object-fit: cover;
        object-position: 0% 0%;
        margin: 0 auto 20px;
    }

    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .top_news_inner {
        margin: 0px auto var(--main_mp);
        padding: 50px 20px 0;
        background: var(--w_color);
        border-radius: 0;
    }
    time {
        font: normal 16px/1 var(--font_en);
        margin-right: 10px;
        color: var(--f_color);
    }
    .news .news_meta .cat{
        padding: 3px 18px 0 18px;
        font-size: 12px;
        margin-right: 14px;
    }
    .top_news_list {
        width: 100%;
        margin-left: 0;
    }
    .top_news_list li {
        padding: 30px 0;
    }
    .top_news_list li:last-child {
        margin-bottom: 0;
    }
    .top_news_category {
        line-height: 1;
        padding: 5px 10px;
        font-size: 12px;
        margin-right: 30px;
    }
    .top_news_title {
        padding-right: 0;
    }
    .top_news_text {
        display: none;
        margin-top: 20px;
    }
    .top_news_text p {
        margin-bottom: 20px;
    }
    .top_news_text p:last-child {
        margin-bottom: 0;
    }
    /*アイコン*/
    .top_news_title_box::before,
    .top_news_title_box::after {
        width: 15px;
        height: 1px;
    }
    .top_news_title_box::before {
        top: 42px;
        right: 15px;
    }
    .top_news_title_box::after {
        top: 42px;
        right: 15px;
    }

    /*-------------------------------------
    事業内容ページ
    -------------------------------------*/
    .service_wrap {
        margin: var(--single_mp) auto;
    }
    .service_inner {
        justify-content: space-between;
        max-width: 1200px;
        border: solid 1px var(--m_color);
        padding: 20px;
        margin: 0 auto 50px;
    }
    .service_wrap section:last-child .service_inner {
        margin-bottom: 0;
    }
    .service_text {
        display: flex;
        flex-flow: column;
        justify-content: center;
        padding: 20px 0;
        width: 52%;
    }

    .service_image_box {
        position: relative;
    }
    .service_image_box p {
        position: static;
        margin-bottom: 20px;
        text-align: center;
        padding: 0;
        transform: translate(0, 0);
        font: bold clamp(14px, 1vw, 16px) var(--font_ja);
        line-height: 2.0;
    }
    .service_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .service_image img {
        width: 100%;
        height: 100%;
    }
    .service_box h3 {
        margin-bottom: 20px;
    }
    .service_box ul {
        justify-content: space-between;
    }
    .service_box ul li {
        width: 100%;
    }
    .service_box ul li p {
        line-height: 2.0;
    }
    .service_box ul li:first-child {
        margin-bottom: 20px;
    }
    .service_list_title {
        margin-bottom: 20px;
        padding: 10px 20px;
        background: var(--b_color);
        font: bold clamp(16px, 2vw, 20px) var(--font_ja);
        text-align: center;
    }

    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    .company {
        margin: var(--single_mp) 0;
    }
    .company p {
        text-align: left;
    }
    .company_wrap,
    .philosophy_wrap {
        margin-bottom: var(--single_mp);
    }

    /* 会社概要・採用情報 */
    .summary_table table {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
    }
    .summary_table th,
    .summary_table td {
        display: block;
    }
    .summary_table th {
        width: 100%;
        padding: 20px 20px;
    }
    .summary_table td {
        border-top: none;
        border-bottom: none;
        padding: 20px 20px;
        text-align: left;
        background: var(--w_color);
    }
    .summary_table tr:last-child td {
        border-bottom: 1px solid #ccc;
    }
    .summary_table li {
        position: relative;
        padding: 0 0 0 24px;
        margin-bottom: 5px;
    }
    .summary_table li:last-child {
        margin-bottom: 0;
    }
    .summary_table li:after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        border: 6px solid var(--m_color);
        border-radius: 50%;
        position: absolute;
        top: 7px;
        left: 0;
    }
    .summary_table .sup {
        font-size: 15px;
        color: #707070;
    }

    /* GoogleMap */
    .company_googlemap  {
        margin-top: 40px;
        line-height: 0;
    }
    .company_googlemap iframe {
        width: 100%;
        border: none;
        height: 450px;
    }

    /* VATEのミッション・ビジョン・バリュー */
    .philosophy_list > li {
        margin-bottom: 20px;
        border: solid 6px var(--b_color);
    }
    .philosophy_list_left {
        padding: 20px;
        background: var(--b_color);
        width: 100%;
        text-align: center;
    }
    .philosophy_list_right {
        padding: 20px;
    }
    .philosophy_list_text_top {
        margin-bottom: 5px;
        font: bold clamp(20px, 2.5vw, 30px) var(--font_en);
        color: var(--m_color);
    }
    .philosophy_list_text_bottom {
        font: bold clamp(16px, 1.5vw, 17px) var(--font_ja);
        color: var(--f_color);
    }
    .philosophy_list_right li {
        position: relative;
        margin-bottom: 10px;
        padding-left: 24px;
    }
    .philosophy_list_right li:after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        border: 6px solid var(--a_color);
        border-radius: 50%;
        position: absolute;
        top: 6px;
        left: 0;
    }

    /* 代表メッセージ */
    .message_box {
        background: var(--b_color);
        padding: 40px;
        justify-content: space-between;
    }
    .message_box p {
        text-align: left;
        line-height: 2.5;
    }

    /*-------------------------------------
    採用情報ページ
    -------------------------------------*/
    .recruit_information_text {
        margin-bottom: 40px;
    }
    .recruit_information_text p {
        text-align: center;
    }
    .recruit_information_text p:first-child {
        margin-bottom: 20px;
        font: bold clamp(20px, 2vw, 24px) var(--font_ja);
        color: var(--m_color);
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_info {
        margin: 40px auto 60px;
        padding: 20px;
    }
    .contact_inner_text > p {
        text-align: left;
    }
    .contact_info p {
        margin-top: 10px;
        line-height: 1.5;
    }
    .contact_info p a {
        margin: 0 0 5px;
    }
    .contact_sns {
        margin: 20px auto 0;
    }
    .contact_line,
    .contact_instagram {
        width: 100%;
    }
    .contact_line {
        margin-bottom: 10px;
    }
    .contact_line a,
    .contact_instagram a {
        padding: 15px 20px;
    }

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

    /*-------------------------------------
    フッター部分
    -------------------------------------*/
    /* フッター */
    .footer_inner {
        padding: 80px 20px;
    }
    .footer_nav a {
        margin: 0 30px 0 0;
    }
    .footer_address .site_ttl {
        margin-bottom: 20px;
        margin-right: 0;
    }
    .footer_address_box {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .footer_address .site_ttl a {
        margin: 0 auto;
    }
    /*sns部分*/
    .footer_address_sns {
        margin-top: 20px;
    }
    .footer_address_sns a {
        font-size: 25px;
    }
    .footer_banner {
        margin: 20px auto 20px;
    }
    .footer_banner02 img {
        max-height: 90px;
    }
    /*アドレス*/
    .copyright {
        padding: 20px 0;
    }

    /*-------------------------------------
    フッター部分
    -------------------------------------*/
    .footer_inner {
        padding: 80px 20px 20px;
    }
    .footer_address {
        text-align: center;
    }
    .footer_title {
        margin: 0 auto 20px;
        width: 120px;
    }
    #loading_box {
        max-width: 160px;
    }
}
@media only screen and (max-width: 550px) {

    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 60px;
        --single_mp: 60px;
        --m_ps30: 20px;
        --m_ps50: 30px;
        --m_ps60: 40px;
        --m_ps100: 50px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none2 {
        display: none !important;
    }
    .pc_none2 {
        display: block;
    }

    /*-------------------------------------
    見出し
    -------------------------------------*/
    /* TOPの見出し */
    .top_h2 {
        margin-bottom: 30px;
    }
    .heading_left {
        text-align: center;
    }

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

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_ttl {
        width: 100px;
        padding: 10px 0;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 40px;
        padding: 5px 0;
    }
    .menu_wrap {
        padding: 0 30px;
    }


    .site_ttl {
        width: 50px;
        line-height: 0;
        transition: var(--tr);
        padding: 10px 0;
    }

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

    /* コンタクトフォーム確認画面 */
    #wpcf7cpcnf table tr:first-child {
        border-top: solid 1px #ccc;
    }
    #wpcf7cpcnf table tr {
        display: block;
        border-bottom: solid 1px #ccc;
        padding: 10px 0;
    }
    #wpcf7cpcnf table th,
    #wpcf7cpcnf table td {
        display: block;
        width: 100%;
        padding: 0px;
        border: none;
    }
    #wpcf7cpcnf table th {
        margin-bottom: 5px;
        padding: 5px 10px;
    }
    #wpcf7cpcnf table td {
        margin-bottom: 0;
    }

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

    .flow_list > li > span {
        width: 80%;
        bottom: -22px;
        left: 50%;
        padding: 5px 20px;
        text-align: center;
    }

    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer {
        position: relative;
        z-index: 0;
        margin-top: 50px;
        padding-bottom: 55px;
    }
    .footer_inner {
        display: block;
        padding: 0 20px;
    }
    .footer_nav {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        border: none;
        padding: 0;
        margin: 0 0 30px;
    }
    .footer_nav li {
        margin: 0 0 5px;
    }
    .copyright {
        padding: 20px;
        margin: 0;
    }
    .footer_address .site_ttl {
        margin: 0 auto 20px;
    }

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