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

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", san-serif;
    --font_en: "Oswald", "serif";
    --h1_font: clamp(22px, 3vw, 48px);
    --h2_font: clamp(40px, 10vw, 100px);
    --h3_font: clamp(40px, 6.0vw, 56px);
    --m_color: #003894;
    --a_color: #14b42e;
    --f_color: #202020;
    --b_color: #f3f3f3;
    --w_color: #fff;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1340px);
    --single_w: min(100%, 1340px);
    --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, var(--a_color) 0%, var(--a_color) 30%, var(--m_color) 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);
}
.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: #eee;
    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: var(--f_color);
}
.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: 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";
}

/* リスト */
.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(--a_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}

/*ボタン*/
.common_btn {
    max-width: 320px;
    width: 100%;
    text-align: left;
}
.home .common_btn {
    margin-top: 60px;
}
.individual .common_btn,
.corporation .common_btn {
    margin-top: 50px;
}
.common_btn a {
    text-decoration: none;
    background: var(--m_color);
    color: var(--w_color);
    padding: 25px 20px;
    display: block;
    position: relative;
    font: bold 16px var(--font_ja);
    letter-spacing: 0.15em;
    max-width: 320px;
    transition: var(--tr);
    border-radius: 50px;
    text-align: center;
}
.common_btn a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 30px;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: var(--w_color);
    transition: var(--tr);
}
.common_btn a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--w_color);
    transition: var(--tr);
}
.common_btn a:hover:before, .common_btn a:hover:after {
    right: 15px;
}
.common_btn a i {
    margin-right: 5px;
}
.btn_center {
    margin-right: auto;
    margin-left: auto;
}
.btn_right {
    margin-left: auto;
}

.common_btn_two a {
    text-decoration: none;
    color: var(--w_color);
    padding: 20px 20px;
    display: block;
    border: solid 1px var(--w_color);
    position: relative;
    font: 400 18px var(--font_ja);
    letter-spacing: 0.15em;
    max-width: 320px;
    transition: var(--tr);
    border-radius: 50px;
    text-align: center;
}
.common_btn_two a:before {
    content: '';
    position: absolute;
    top: calc(50% - 2px);
    right: 30px;
    transform: translateY(calc(-50% - 2px)) rotate(30deg);
    width: 12px;
    height: 2px;
    background-color: var(--w_color);
    transition: var(--tr);
}
.common_btn_two a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--w_color);
    transition: var(--tr);
}
.common_btn_two a:hover:before, .common_btn_two a:hover:after {
    right: 15px;
}

/*-------------------------------------
ローディング
-------------------------------------*/
.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}
.video-content p {
    font: normal clamp(30px, 6vw, 60px) var(--font_en);
	color: #fff;
}
#loading {
	background: var(--w_color);
	color: #fff;
	height: 100%;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 9999999;
}
#loading_box {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
    max-width: 280px;
}
.blur {
	animation-duration: 3.0s;
	animation-fill-mode: forwards;
	animation-name: blurAnime;
}
@keyframes blurAnime {
	from {
		opacity: 0;
		transform: scale(1.05);
	}
	to {
		filter: blur(0);
		opacity: 1;
		transform: scale(1);
	}
}
.blurTrigger {
	opacity: 0;
}

/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    margin: 0 auto;
    background: var(--m_color);
}
.common_cta_inner {
    max-width: 1340px;
    margin: 0 auto;
    padding: var(--m_ps100) 20px;
}
.common_cta_box {
    width: 100%;
    max-width: 1640px;
    justify-content: space-between;

    /* align-items: center; */
}
.common_cta_box > div {
    width: 48%;
}

.common_cta_phone a,
.common_cta_mail a {
    padding: 50px;
    background: var(--w_color);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    /* border-radius: 10px; */
}
.common_cta_mail a {
    width: 100%;
}

.common_cta_mail span {
    color: var(--m_color);
    font: bold clamp(16px, 1.5vw, 20px) var(--font_ja);
}
.cta_phone_title,
.cta_mail_title {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: normal;
}
.cta_phone_text {
    line-height: 1.5;
}
.common_cta_inner p {
    color: var(--f_color);
    text-align: center;
    z-index: 1;
    position: relative;
    font-size: clamp(14px, 1.5vw, 16px);
}
.cta_phone_number {
    text-align: center;
    z-index: 1;
    position: relative;
    color: var(--m_color);
    text-decoration: none;
    font: bold clamp(25px, 3vw, 48px) var(--font_en);
    letter-spacing: 0.1rem;
}
.common_cta_phone a:hover,
.common_cta_mail a:hover {
    opacity: 0.8;
}
.common_cta_inner i {
    margin-right: 6px;
    color: var(--m_color);
}
.common_cta_inner i {
    font-size: 36px;
}
.common_cta_inner .cercleArrow {
    position: absolute;
    top: 50%;
    right: 35px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.common_cta_inner .cercleArrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid;
    color: var(--m_color);
}

/*-------------------------------------
見出し
-------------------------------------*/
/* TOPの見出し */
.top_h2 {
    margin-bottom: 60px;
}
.top_h2 h2 {
    font: bold clamp(14px, 1.5vw, 16px) var(--font_ja);
    color: var(--f_color);
    margin-top: 10px;
    position: relative;
    padding-left: 20px;
}
.top_h2 h2:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--m_color);
    border-radius: 50%;
    position: absolute;
    top: 6px;
    left: 0;
}
.top_h2 .data_text {
    font: bold clamp(36px, 8vw, 80px) var(--font_en);
    color: var(--f_color);
    line-height: 1.1;
    letter-spacing: 0.6rem;
}

.other_h2 {
    margin-bottom: 60px;
}
.other_h2 h2 {
    font: bold clamp(30px, 3vw, 40px) var(--font_ja);
    color: var(--f_color);
    margin-top: 10px;
    letter-spacing: 0.2rem;
}
.other_h2 .data_text {
    font: bold clamp(14px, 1.5vw, 18px) var(--font_en);
    color: var(--m_color);
    line-height: 1.1;
    letter-spacing: 0.5rem;
    position: relative;
    padding-left: 28px;
}
.other_h2 .data_text:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 4px solid var(--m_color);
    border-radius: 50%;
    position: absolute;
    top: 3px;
    left: 0;
}
.other_h2 h2 span {
    font: bold clamp(16px, 2vw, 18px) var(--font_ja);
    line-height: 2.0;
    display: block;
}

.company_left {
    width: clamp(250px, 30vw, 380px);
}
.company_right {
    flex: 1;
}

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

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

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: 130px;
    line-height: 0;
    transition: var(--tr);
    padding: 10px 0;
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 100px;
    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: 9;
    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;
}

.home .wrap {
    max-width: 1920px;
    margin: 0 auto;
    background-image: repeating-linear-gradient(90deg, #ebebeb, #ebebeb 1px, #fff 1px,  #fff 200px);
}

.top_header_text {
    max-width: 1640px;
    margin: 200px 0 0 auto;
    padding: 0 20px;
}
.top_header_text_top {
    margin-bottom: 40px;
}
.top_header_text_bottom {
    margin-bottom: 100px;
}
.top_header_text_top p:first-child {
    font: bold clamp(30px, 5vw, 72px) var(--font_ja);
}
.top_header_text_top p:last-child {
    font: bold clamp(30px, 5vw, 72px) var(--font_ja);
    color: var(--m_color);
}
.top_header_text_bottom p {
    font: bold clamp(14px, 2vw, 20px) var(--font_ja);
    line-height: 2.0;
}

/* ヘッダー画像 */
.header {
    position: relative;
    overflow: hidden;
}
.main_image_box_top {
    max-width: 1920px;
    position: relative;
}
.main_image_box {
    background: url("img/header.jpg") no-repeat;
    background-position: 50% 95%;
    background-size: cover;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    height: 600px;
}
.main_image_box_inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}
.not_header h1{
    text-align: center;
}
.not_header {
    margin: 100px auto 0;
    padding: 100px 20px;
    background: var(--b_color);
}
.other_header h1{
    margin: 160px auto 80px;
}
.other_header_image {
    position: relative;
    height: 500px;
}
.page-template-contact .other_header_image {
    background-image: url(img/contact_header.jpg);
    background-position: 100% 100%;
}
.page-template-company .other_header_image {
    background-image: url(img/company_header.jpg);
    background-position: 100% 100%;
}
.page-template-recruit .other_header_image {
    background-image: url(img/recruit_header.jpg);
    background-position: 70% 100%;
}
.page-template-service .other_header_image {
    background-image: url(img/service_header.jpg);
    background-position: 100% 100%;
}
.page-template-case .other_header_image {
    background-image: url(img/header.jpg);
    background-position: 0% 100%;
}

.other_header h1 {
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    color: var(--f_color);
    max-width: 1440px;
    text-align: left;
    width: 100%;
    position: relative;
    padding-left: 40px;
    padding-right: 20px;
}
.other_header h1:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: var(--m_color);
    border-radius: 50%;
    position: absolute;
    bottom: 6px;
    left: 20px;
}
.other_header h1:before {
    content: attr(data-text);
    text-transform:capitalize;
    display: block;
    font: normal clamp(60px, 7vw, 100px) var(--font_en);
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: left;
    letter-spacing: 0.5rem;
    margin-left: -20px;
}

/*-------------------------------------
TOP サービス
-------------------------------------*/
.top_service_wrap {
    position: relative;
}
.top_service_text_box {
    padding: 0 20px;
}
.top_service_inner {
    justify-content: space-between;
    max-width: 1640px;
    margin: 0 0 0 auto;
}
.top_service_image {
    position: relative;
    width: 55%;
    margin-top: 150px;
    line-height: 0;
}
.top_concept_text_top {
    margin-bottom: 40px;
    font: bold clamp(20px, 3vw, 36px) var(--font_ja);
}
.top_concept_text_top span {
    line-height: 2.3;
    color: var(--m_color);
}
.top_service_box {
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 0px 0 400px;
    width: 35%;
}
.top_service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*-------------------------------------
TOP 加工事例
-------------------------------------*/
.top_case_text_top span {
    line-height: 2.3;
    color: var(--m_color);
}
.top_case_wrap {
    margin-top: -400px;
    background: var(--b_color);
}
.top_case_box_top {
    max-width: 1340px;
    margin: 0 auto;
}
.top_case_text_top {
    margin-bottom: 30px;
    font: bold clamp(20px, 3vw, 36px) var(--font_ja);
}
.top_case_text {
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
}
.top_case_left {
    width: 65%;
    margin-right: 20px;
}
.top_case_flow {
    max-width: 1600px;
    margin: 100px 0 0 auto;
    justify-content: space-between;
}
.top_case_flow_image {
    width: 90%;
    margin-bottom: 150px;
}
.top_case_flow_box {
    width: 60%;
    display: flex;
    flex-flow: column;
    justify-content: center;
    padding: 100px;
    background: var(--w_color);
    margin-top: 150px;
    margin-left: -200px;
    z-index: 2;
}
.top_case_flow_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_case_flow_title {
    margin-bottom: 30px;
    font: bold clamp(20px, 3vw, 28px) var(--font_ja);
}
.top_case_flow_list li {
    border-bottom: solid 1px #aaa;
    padding: 25px 0;
}
.top_case_flow_list li:first-child {
    border-top: solid 1px #aaa;
}
.top_case_flow_box li {
    align-items: center;
}
.top_case_flow_number {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    margin-right: 15px;
    background: var(--a_color);
}
.top_case_flow_number p {
	width: 50px;
    color: var(--w_color);
    font: bold clamp(16px, 2vw, 20px) var(--font_en);
}
.top_case_flow_text {
    font: normal clamp(16px, 2vw, 18px) var(--font_ja);
}

/*-------------------------------------
TOP 会社概要
-------------------------------------*/
.top_company_box {
    width: 100%;
}
.top_company_wrap {
    margin: 0 auto;
    max-width: 1920px;
    background: var(--w_color);
}
.top_company_inner {
    max-width: 1340px;
    margin: 0 auto;
}
.top_company_left {
    width: clamp(420px, 30vw, 480px);
}
.top_company_right {
    flex: 1;
    width: 100%;
}
.top_company_right table {
    width: 100%;
}
.top_company_right table tr {
    border-bottom: solid 1px #aaa;
}
.top_company_right table tr:first-child {
    border-top: solid 1px #aaa;
}
.top_company_right table th,
.top_company_right table td {
    padding: 30px 10px;
    text-align: left;
    color: var(--f_color);
}
.top_company_right table td li {
    color: var(--f_color);
}

/*-------------------------------------
TOP お知らせ
-------------------------------------*/
.top_news_wrap {
    background: var(--b_color);
}
.top_news_inner {
    position: relative;
    justify-content: space-between;
    z-index: 1;
    max-width: 1340px;
}
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_one_inner {
    align-items: center;
    justify-content: space-between;
}
.service_one_image {
    width: 50%;
}
.service_one_text {
    width: 45%;
}
.service_one_text_top {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 28px) var(--font_ja);
}
.service_three_inner {
    align-items: center;
    justify-content: space-between;
}
.service_three_image {
    width: 58%;
}
.service_three_text {
    width: 35%;
}
.service_three_text ul {
    margin-bottom: 20px;
}
.service_three_text ul li {
    padding: 15px 0;
    border-bottom: solid 1px #ccc;
}
.service_three_text ul li:first-child {
    border-top: solid 1px #ccc;
}
.service_two_wrap {
    background: var(--b_color);
}
.service_two_inner {
    justify-content: space-between;
    align-items: center;
}
.service_two_image {
    width: 55%;
}
.service_two_text {
    width: 37%;
}
.service_two_list li {
    padding: 20px 0;
    border-bottom: solid 1px #ccc;
}
.service_two_list li:first-child {
    border-top: solid 1px #ccc;
}
.service_two_list p {
    line-height: 1.7;
}
.service_two_text_title {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
}

/*-------------------------------------
加工事例
-------------------------------------*/
.case_list {
    flex-wrap: wrap;
    gap: 50px 50px;
}
.case_list li {
    width: calc((100% - 100px) / 3);
}
.case_image {
    margin-bottom: 20px;
}
.case_image img {
    border-radius: 20px;
}
.case_text {
    font: normal clamp(16px, 2vw, 18px) var(--font_ja);
}
.case_text p {
    line-height: 1.7;
    position: relative;
    padding-left: 24px;
}
.case_text p:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    border: 6px solid var(--m_color);
    border-radius: 50%;
    position: absolute;
    top: 9px;
    left: 0;
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company {
    margin: var(--single_mp) 0;
}
.summary_table {
    margin: 0 auto var(--m_ps50);
}
.summary_table table {
    width: 100%;
    margin: 0 auto;
    font-size: 16px;
}
.company_wrap,
.philosophy_wrap {
    margin-bottom: var(--single_mp);
}
.summary_table th,
.summary_table td {
    border-bottom: 1px solid #ccc;
}
.summary_table th {
    width: 200px;
    color: var(--f_color);
    border-top: 1px solid #ccc;
    padding: 40px 0;
    vertical-align: middle;
    font-weight: bold;
    text-align: left;
}
.summary_table td {
    border-top: 1px solid #ccc;
    padding: 40px 0px;
    text-align: left;
    background: #fff;
}
.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(--a_color);
    border-radius: 50%;
    position: absolute;
    top: 7px;
    left: 0;
}
.summary_table .sup {
    font-size: 15px;
    color: #707070;
}
.company_googlemap  {
    margin-top: 40px;
    line-height: 0;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

.philosophy_text_top {
    margin-bottom: 20px;
    font: bold clamp(20px, 2vw, 30px) var(--font_ja);
}

.policy_list li {
    border-bottom: solid 1px #ccc;
    padding: 30px 0;
}
.policy_list li:first-child {
    border-top: solid 1px #ccc;
}

.policy_list_title {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
}


.policy_number {
	width: 50px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    margin-right: 15px;
    background: var(--a_color);
}
.policy_number p {
	width: 50px;
    color: var(--w_color);
    font: bold clamp(16px, 2vw, 20px) var(--font_en);
}

/*-------------------------------------
採用情報ページ
-------------------------------------*/
/* .recruit_one_box,
.recruit_two_box {
    margin-bottom: var(--single_mp);
} */
.recruit_table {
}
.recruit_table_title {
    margin-bottom: 20px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
}
.recruit_table table {
    width: 100%;
    margin-bottom: 20px;
}
.recruit_table th,
.recruit_table td {
    border: solid 1px #ccc;
    padding: 10px;
}
.recruit_table th {
    background: var(--b_color);
}

.apply_wrap {
    background: var(--b_color);
}

.recruit_contact {
    margin: 40px auto;
    background: var(--w_color);
    padding: 50px;
    justify-items: center;
    max-width: 1040px;
}
.apply_inner p {
    text-align: center;
}
.recruit_contact_title {
    margin-bottom: 20px;
    font: bold clamp(18px, 2vw, 24px) var(--font_ja);
    text-align: center;
}

.recruit_phone {
    text-align: center;
    z-index: 1;
    position: relative;
    width: 47%;
}
.recruit_phone a {
    font-size: clamp(30px, 3vw, 48px);
    color: var(--m_color);
    text-decoration: none;
    font-family: var(--font_en);
    font-weight: 700;
    letter-spacing: 0.1rem;
}
.recruit_phone a i {
    margin-right: 10px;
    color: var(--m_color);
}
.recruit_mail {
    width: 47%;
    text-align: center;
}
.recruit_mail a {
    display: block;
    max-width: 400px;
    font: bold 15px var(--font_ja);
    margin: 0 auto;
    padding: 25px 40px;
    text-decoration: none;
    color: var(--w_color);
    background: var(--a_color);
    border-radius: 50px;
}
.recruit_mail a i {
    color: var(--w_color);
    font-size: 24px;
    margin-right: 10px;
}

.apply_h2 {
    margin-bottom: 20px;
}
.apply_h2 h2 {
    font: bold clamp(24px, 3vw, 40px) var(--font_ja);
}


/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_info {
    margin: 40px auto 60px;
    padding: 50px;
    max-width: 840px;
    background: var(--b_color);
    text-align: center;
}
.contact_inner_text p {
    text-align: center;
}
.contact_info p a {
    text-decoration: none;
    margin: 0 0 5px;
    cursor: pointer;
    font: normal clamp(28px, 4.0vw, 48px) var(--font_en);
    color: var(--a_color);
}
.contact_info a i {
    color: var(--a_color);
    margin-right: 5px;
}
.contact_info a:hover {
    opacity: 0.7;
}
.contact_info a {
    font-size: clamp(36px, 3vw, 48px);
    color: var(--m_color);
    text-decoration: none;
    font-family: var(--font_en);
    font-weight: 700;
    letter-spacing: 0.1rem;
}
.contact_info a i {
    margin-right: 10px;
    color: var(--m_color);
}

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: var(--b_color);
}
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: var(--b_color);
    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 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: 901px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 900px) {
    .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;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 100px;
    }
    .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: 15px 50px;
        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: var(--b_color);
    }
    .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;
    }
    /*ハンバーガーメニューここまで*/
}


@media only screen and (max-width: 820px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 80px;
        --single_mp: 80px;
    }

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

    .home .wrap {
        background-image: repeating-linear-gradient(90deg, #ebebeb, #ebebeb 1px, #fff 1px,  #fff 100px);
    }

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

    .other_header h1{
        margin: 140px auto 60px;
    }
    .other_header_image {
        position: relative;
        background-position: 0 90%;
        height: 240px;
        background-size: 820px;
    }
    .page-template-contact .other_header_image {
        background-position: 70% 0%;
    }
    .page-template-company .other_header_image {
        background-position: 50% 0%;
    }
    .page-template-recruit .other_header_image {
        background-position: 55% 0%;
    }
    .page-template-service .other_header_image {
        background-position: 50% 0%;
    }
    .page-template-case .other_header_image {
        background-position: 20% 90%;
    }
    .other_header h1 {
        padding-left: 40px;
        padding-right: 20px;
    }
    .other_header h1:after {
        content: "";
        display: block;
        width: 12px;
        height: 12px;
        background: var(--m_color);
        border-radius: 50%;
        position: absolute;
        bottom: 6px;
        left: 20px;
    }
    .other_header h1:before {
        content: attr(data-text);
        text-transform:capitalize;
        display: block;
        font: normal clamp(60px, 7vw, 100px) var(--font_en);
        line-height: 1.2;
        margin-bottom: 15px;
        text-align: left;
        letter-spacing: 0.5rem;
        margin-left: -20px;
    }

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        padding: var(--m_ps50) 20px var(--m_ps50);
    }
    .common_cta_box > div {
        width: 100%;
    }
    .common_cta_phone a,
    .common_cta_box a {
        padding: 20px 20px;
    }
    .common_cta_phone {
        margin-bottom: 20px;
        text-align: center;
    }
    .top_header_text {
        margin: 40px auto 0px;
        padding: 0 20px;
    }
    .top_header_text_top {
        margin-bottom: 20px;
    }
    .top_header_text_top p:first-child {
        margin-bottom: 10px;
    }
    .top_header_text_bottom {
        margin-top: 20px;
        margin-bottom: 0;
    }

    /* ヘッダー画像 */
    .main_image_box {
        background-position: 50% 95%;
        margin: 0 auto;
        padding: 0 20px;
        height: 250px;
        margin-top: 100px;
    }

    /*-------------------------------------
    ローディング
    -------------------------------------*/
    #loading_box {
        max-width: 240px;
    }

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

    .other_h2 {
        margin-bottom: 20px;
    }
    .other_h2 h2 {
        margin-top: 10px;
    }
    .other_h2 .data_text {
        padding-left: 28px;
    }
    .other_h2 .data_text:after {
        content: "";
        display: block;
        width: 16px;
        height: 16px;
        border: 4px solid var(--m_color);
        border-radius: 50%;
        position: absolute;
        top: 3px;
        left: 0;
    }
    .company_left {
        width: 100%;
    }
    .company_right {
        flex: 1;
    }

    /*-------------------------------------
    TOP 会社概要
    -------------------------------------*/
    .top_company_box {
        width: 100%;
    }
    .top_company_wrap {
        margin: 0 auto;
        padding: 0;
    }
    .top_company_wrap:before {
        left: 0;
        top: 0;
    }
    .top_company_inner {
        max-width: 1340px;
        margin: 0 auto;
    }
    .top_company_left {
        width: 100%;
    }
    .top_company_right {
        margin: 40px 0;
    }
    .top_company_right table {
        width: 100%;
    }
    .top_company_right table th,
    .top_company_right table td {
        padding: 20px 10px;
        text-align: left;
    }
    .top_company_right table th {
        width: 90px;
    }
    .common_cta_inner {
        padding: 0;
    }

    /*-------------------------------------
    TOP サービス
    -------------------------------------*/
    .top_service_text_box {
        padding: 0 20px;
    }
    .top_service_inner {
        margin: 0 auto;
    }
    .top_service_image {
        width: 100%;
    }
    .top_service_box {
        width: 100%;
    }
    .top_concept_text_top {
        margin-bottom: 10px;
    }
    .top_service_box {
        padding: 0;
    }
    .top_service_image {
        margin: 0 auto 30px;
    }

    /*-------------------------------------
    TOP 加工事例
    -------------------------------------*/
    .top_case_wrap {
        margin-top: 0;
    }
    .top_case_text_top {
        margin-bottom: 10px;
    }
    .top_case_left {
        width: 100%;
        margin-right: 20px;
    }
    .top_case_flow {
        margin: 50px 0 0 auto;
    }
    .top_case_flow_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .top_case_flow_box {
        width: 100%;
        display: block;
        padding: 20px;
        margin-top: 0;
        margin-left: 0;
    }
    .top_case_flow_title {
        margin-bottom: 10px;
    }
    .top_case_flow_list li {
        padding: 10px 0;
    }
    .top_case_flow_box li {
        align-items: center;
    }
    .top_case_flow_number {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    .top_case_flow_number p {
        width: 40px;
    }

    /*-------------------------------------
    TOP お知らせ
    -------------------------------------*/
    .top_news_inner {
        margin: 0 auto;
        padding: 50px 20px;
    }
    time {
        margin-right: 10px;
    }
    .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_one_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .service_one_text {
        width: 100%;
    }
    .service_one_text_top {
        margin-bottom: 20px;
    }
    .service_three_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .service_three_text {
        width: 100%;
    }
    .service_three_text ul {
        margin-bottom: 20px;
    }
    .service_three_text ul li {
        padding: 15px 0;
    }
    .service_two_image {
        width: 100%;
        margin-bottom: 20px;
    }
    .service_two_text {
        width: 100%;
    }
    .service_two_list li {
        padding: 20px 0;
    }
    .service_two_text_title {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    加工事例
    -------------------------------------*/
    .case_list {
        flex-wrap: wrap;
        gap: 20px 20px;
    }
    .case_list li {
        width: calc((100% - 40px) / 2);
    }
    .case_image {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    .summary_table table tr:first-child {
        border-top: solid 1px #ccc;
    }
    .summary_table table tr {
        display: block;
        border-bottom: solid 1px #ccc;
        padding: 10px 0;
    }
    .summary_table th,
    .summary_table td {
        display: block;
        width: 100%;
        padding: 0px;
        border: none;
    }
    .summary_table th {
        margin-bottom: 5px;
    }
    .summary_table td {
        margin-bottom: 10px;
    }

    /*-------------------------------------
    採用情報ページ
    -------------------------------------*/
    .recruit_one_box,
    .recruit_two_box {
        margin-bottom: var(--single_mp);
    }
    .recruit_table_title {
        margin-bottom: 20px;
    }
    .recruit_table table {
        width: 100%;
        margin-bottom: 20px;
    }
    .recruit_table th,
    .recruit_table td {
        border: solid 1px #ccc;
        padding: 10px;
    }

    .recruit_contact {
        margin: 20px auto;
        background: #fff;
        padding: 20px;
        justify-items: center;
        max-width: 1040px;
    }
    .apply_inner p {
        text-align: center;
    }
    .recruit_contact_title {
        margin-bottom: 10px;
    }

    .recruit_phone {
        margin-bottom: 20px;
        text-align: center;
        z-index: 1;
        position: relative;
        width: 100%;
    }
    .recruit_mail {
        width: 100%;
        text-align: center;
    }
    .recruit_mail a {
        display: block;
        max-width: 400px;
        font: bold 14px var(--font_ja);
        margin: 0 auto;
        padding: 25px 10px;
    }
    .recruit_mail a i {
        color: var(--w_color);
        font-size: 20px;
        margin-right: 5px;
    }
    .recruit_phone p {
        margin-top: 10px;
        line-height: 1.5;
    }

    .apply_h2 {
        margin-bottom: 20px;
    }
    .apply_h2 h2 {
        font: bold clamp(24px, 3vw, 40px) var(--font_ja);
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .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;
    }

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

    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .site_ttl {
        width: 100px;
        padding: 10px 0;
    }
    .h_nav_wrap.is-fixed .site_ttl {
        width: 100px;
        padding: 10px 0;
    }
    .site_ttl a {
        color: var(--w_color);
    }
    .menu_wrap {
        padding: 0 30px;
    }

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

    /*-------------------------------------
    加工事例
    -------------------------------------*/
    .case_list {
        display: block;
    }
    .case_list li {
        width: 100%;
        margin-bottom: 20px;
    }
    .case_list li:last-child {
        margin-bottom: 0;
    }
    .case_image {
        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(--a_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";
    }
}