﻿@charset "UTF-8";
/*
Theme Name: ritz_inc
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: #25a1b0;
    /* --a_color: #4a6585; */
    --a_color: #202020;
    --f_color: #202020;
    --b_color: #b4d9dd;
    --b_color: #e0f1f3;
    --b_color: #eaf2f7;
    --b_color: #ecf2f7;
    --w_color: #fff;
    --tr: 0.3s ease-out;
    --main_w: min(100%, 1340px);
    --single_w: min(100%, 1240px);
    --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-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: 280px;
    width: 100%;
    text-align: left;
}
.home .common_btn {
    margin-top: 60px;
}
/* .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 a {
    display: inline-block;
    width: 100%;
}

.common_btn a:hover {
    background-position: 100% 0;
}


.common_btn a{
	width: 280px;
	padding: 20px 30px;
	display: block;
	background: var(--m_color);
	position: relative;
	overflow: hidden;
    border-radius: 50px;
    /* text-align: center; */
    text-decoration: none;
    font: bold clamp(16px, 1.5vw, 20px) var(--font_en);
}
.common_btn a::before{
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	right: 280px;
	background: var(--f_color);
	transition: all .3s;
}
.common_btn a .text{
	position: relative;
	color: #fff;
}
.common_btn a .arrow{
	position: absolute;
	right: 20px;
	color: var(--m_color);
	transition: all .3s;
    background: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 30px;
}
.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/header02.jpg");
    background-position: 50%;
    position: relative;
}
.common_cta_wrap:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 133, 150, 0.7);
}
.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;
}
.common_cta_box > div {
    width: 49%;
}
.cta_mail_button {
	width: 100%;
    max-width: 400px;
    margin: 0 auto;
}
.cta_mail_button a{
	width: 400px;
	padding: 20px 30px;
	display: block;
	background: var(--a_color);
	position: relative;
	overflow: hidden;
    border-radius: 50px;
    text-decoration: none;
    font: bold clamp(16px, 1.5vw, 20px) var(--font_en);
    text-align: center;
}
.cta_mail_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 .text{
	position: relative;
	color: #fff;
}
.cta_mail_button a .arrow{
	position: absolute;
	right: 20px;
	color: var(--a_color);
	transition: all .3s;
    background: #fff;
    width: 32px;
    height: 32px;
    text-align: center;
    border-radius: 30px;
}
.cta_mail_button a:hover::before{
    right: 0;
}
.cta_mail_button a:hover .arrow{
    transform: translateX(5px);
}

.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_mail_button i {
    margin-right: 6px;
    font-size: 20px;
    color: var(--w_color);
}

/*-------------------------------------
ローディング
-------------------------------------*/
.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;
}


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

.other_h2 {
    margin-bottom: 60px;
}
.other_h2 h2 {
    font: bold clamp(24px, 3vw, 36px) var(--font_ja);
    color: var(--f_color);
    margin-top: 10px;
    letter-spacing: 0.2rem;
    text-indent: 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;
    text-indent: 0.5rem;
    position: relative;
}

.other_h2 h2 span {
    font: bold clamp(16px, 2vw, 18px) var(--font_ja);
    line-height: 2.0;
    display: block;
}

/* 背景白系 */
.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;
}
.heading_center:before {
    left: 50%;
    transform: translateX(-50%);
}

/*-------------------------------------
header
-------------------------------------*/
/* サイトタイトル */
.site_ttl {
    width: 180px;
    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: 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.1);
    }
    100% {
        transform: scale(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/main_header03.jpg");
    background-position: 50% 60%;
}
body .header_img_container {
    position: relative;
    z-index: 0;
}
.header_img_inner_img {
    position: relative;
    margin: 0 auto;
}
.header_img_inner_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
    max-width: 1540px;
}
.header_img_text_top {
    text-align: center;
    margin-bottom: 40px;
}
.header_img_text_top span {
    font: bold clamp(40px, 4.0vw, 80px) 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.5rem;
    text-indent: 0.5rem;
}
.header_img_text_bottom {
    font: bold clamp(36px, 3.5vw, 54px) 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: center;
}

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

.other_header {
    position: relative;
    background: url(img/header01.jpg) no-repeat;
    background-position: 100% 40%;
    padding: 220px 20px 200px;
    text-align: left;
    position: relative;
}
.other_header h1 {
    position: relative;
    font-size: clamp(16px, 2vw, 24px);
    letter-spacing: 0.5vw;
    color: var(--f_color);
    max-width: 1340px;
    margin: 0 auto;
    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: center;
}
.other_header h1:before {
    content: attr(data-text);
    text-transform: uppercase;
    display: block;
    font: bold clamp(48px, 7vw, 100px) var(--font_en);
    line-height: 1.2;
    margin-bottom: 15px;
    margin: 0 auto;
    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: center;
    letter-spacing: 0.6rem;
}
.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_about_inner {
    max-width: 1920px;
    margin: 0 0 0 auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    /* background: linear-gradient(to right, #fff 0%, #fff 70%, var(--b_color) 70%, var(--b_color) 100%); */
}
.top_about_box {
    width: 100%;
    margin: 0 0 -250px auto;
    max-width: 1240px;
    padding: 0 100px 100px;
    z-index: 10;
    position: relative;
    background: var(--w_color);
}
.top_about_text_top {
    align-items: flex-end;
    justify-content: space-between;
    max-width: 1040px;
}
.top_about_image {
    width: 100%;
    margin: 0 auto 0 0;
    max-width: 1540px;
}
.top_about_image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}
.top_about_text {
    margin-right: 60px;
}

/*-------------------------------------
TOP サービス
-------------------------------------*/
.top_service_wrap {
    position: relative;
    background: var(--w_color);
}
.top_service_text_box {
    padding: 0 0px;
}
.top_service_inner {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0px 20px 200px;
}
.top_service_inner ul {
    margin: 0 auto;
    gap: 20px 20px;
    flex-wrap: wrap;
    justify-content: center;
}
.top_service_inner ul li {
    width: calc((100% - 60px) / 4);
    min-width: 320px;
    padding: 40px;
    background: var(--b_color);
    align-items: center;
    border-radius: 10px;
}
.top_service_heading {
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    color: var(--f_color);
}
.top_service_text p {
    line-height: 1.5;
    color: var(--f_color);
}
.top_service_image {
    position: relative;
    margin-right: 20px;
}
.top_service_image img {
    height: 150px;
    display: block;
    /* margin: 0 auto 20px; */
}

/*-------------------------------------
TOP 採用情報
-------------------------------------*/
.top_recruit_wrap {
    background-image: url("img/recruit_back.jpg");
    background-position: 50%;
    margin: 0;
}
.top_recruit_inner {
    max-width: 1340px;
    margin: 0 auto;
}
.top_recruit_inner p {
    color: var(--f_color);
}
.top_partner_inner {
    justify-content: space-between;
}
.top_partner_image {
    width: 48%;
}
.top_recruit_box {
    width: 100%;
    max-width: 640px;
}
.top_recruit_text_top {
    margin-bottom: 40px;
    font: bold clamp(20px, 2vw, 28px) var(--font_ja);
    color: var(--f_color);
    position:relative;
    padding: 0 0 0 20px;
}
.top_recruit_text_top:before{
    counter-increment: list;
    content: "";
    display: block;
    position: absolute;
    left: 0px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: var(--m_color);
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

/*-------------------------------------
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;
}

/*-------------------------------------
私たちについてページ
-------------------------------------*/
.about_philosophy_inner ul li {
    margin-bottom: 20px;
    background: var(--b_color);
    padding: 50px 50px;
    border-radius: 20px;
    align-items: center;
}
.about_philosophy_inner ul li:last-child {
    margin-bottom: 0;
}
.about_philosophy_top {
    margin-bottom: 40px;
    font: bold clamp(20px, 2vw, 30px) var(--font_ja);
    text-align: center;
    color: var(--m_color);
}
.about_philosophy_heading {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: solid 1px #ccc;
    font: bold clamp(18px, 2vw, 24px) var(--font_ja);
}
.about_philosophy_inner p {
    line-height: 1.7;
}
.about_value_wrap {
    background: var(--b_color);
}
.about_value_inner ul li {
    margin-bottom: 10px;
    background: var(--w_color);
}
.about_value_inner ul li:last-child {
    margin-bottom: 0;
}
.about_value_heading {
    background: var(--m_color);
    padding: 10px 30px;
    color: var(--w_color);
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    display: flex;
    align-items: center;
}
.about_value_inner ul li p {
    padding: 10px 30px;
    display: flex;
    align-items: center;
}
.about_philosophy_text {
    width: 100%;
}
/* .about_philosophy_number {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    margin-right: 40px;
    background: var(--m_color);
    border-radius: 100px;
}
.about_philosophy_number p {
	width: 80px;
    color: var(--w_color);
    font: bold clamp(16px, 2vw, 24px) var(--font_en);
} */

.about_philosophy_number {
	width: 120px;
	height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    margin-right: 40px;
    background: var(--m_color);
    border-radius: 100px;
}
.about_philosophy_number i {
	width: 120px;
    font-size: 40px;
    color: var(--w_color);
}

.about_service_inner ul {
    margin: 0 auto;
    gap: 20px 20px;
    flex-wrap: wrap;
}
.about_service_inner ul li {
    width: calc((100% - 20px) / 2);
    padding: 50px;
    background: var(--b_color);
    align-items: center;
    border-radius: 10px;
}
.about_service_heading {
    padding: 10px;
    margin-bottom: 10px;
    font: bold clamp(16px, 2vw, 20px) var(--font_ja);
    border-bottom: solid 1px #ccc;
    color: var(--f_color);
}
.about_service_text p {
    line-height: 1.5;
    color: var(--f_color);
}
.about_service_image {
    position: relative;
    margin-right: 20px;
}
.about_service_image img {
    height: 120px;
    display: block;
}

/*-------------------------------------
事業内容ページ
-------------------------------------*/
.service_wrap {
    margin: var(--single_mp) auto;
}
.service_inner {
    justify-content: space-between;
    max-width: 1440px;
    background: var(--b_color);
    padding: 100px;
    margin: 0 auto 100px;
    border-radius: 30px;
}
.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 {
    width: 40%;
}
.service_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 30px; */
}

/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company {
    margin: var(--single_mp) 0;
}
.message_wrap {
    margin-bottom: var(--single_mp);
}
.company p {
    text-align: left;
}
.message_text p span {
    font: bold clamp(18px, 2vw, 20px) var(--font_ja);
}
.message_box {
    background: var(--b_color);
    padding: 100px;
    border-radius: 20px;
    justify-content: space-between;
}
.message_image {
    width: 28%;
}
.message_image img {
    display: block;
    margin-bottom: 10px;
}
.message_image p {
    text-align: center;
    font: 400 clamp(16px, 2vw, 18px) var(--font_ja);
}
.message_text {
    width: 67%;
}
.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: 300px;
    border-top: 1px solid #ccc;
    padding: 40px 10px;
    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: 40px 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;
}
.company_googlemap  {
    margin-top: 40px;
    line-height: 0;
}
.company_googlemap iframe {
    width: 100%;
    border: none;
    height: 450px;
}

/*-------------------------------------
採用情報ページ
-------------------------------------*/
.recruit_information_wrap,
.recruit_interview_wrap {
    margin-bottom: var(--single_mp);
}
.recruit_interview_text {
    width: 100%;
}
.recruit_interview_inner ul li {
    margin-bottom: 20px;
    padding: 50px;
    /* background: var(--b_color); */
    border: solid 6px var(--b_color);
    border-radius: 20px;
    width: 100%;
}
.recruit_interview_inner ul li:last-child {
    margin-bottom: 0;
}
.recruit_interview_icon {
	width: 150px;
	height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    margin-right: 40px;
    background: var(--m_color);
    border-radius: 100px;
}
.recruit_interview_icon i {
	width: 150px;
    font-size: 50px;
    color: var(--w_color);
}
.recruit_interview_title {
    margin-bottom: 10px;
    padding-bottom: 10px;
    font: bold clamp(20px, 2vw, 24px) var(--font_ja);
    border-bottom: solid 1px #ccc;
}
.recruit_important_inner ul {
    display: flex;
    gap: 30px;
}
.recruit_important_inner li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 24px;
    font: bold clamp(16px, 2vw, 18px) var(--font_ja);
    padding: 50px;
    background: var(--b_color);
    border-radius: 20px;
    width: calc((100% - 30px) / 3);
    text-align: center;
}

/*-------------------------------------
お問い合わせ
-------------------------------------*/
.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: #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: 180px;
}
.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: 1091px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 1090px) {
    .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: #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;
    }
    /*ハンバーガーメニューここまで*/
}


@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;
    }

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

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

/* ヘッダー画像 */
    .main_image_box {
        background-position: 60% 100%;
        background-size: cover;
        max-width: 1340px;
        margin: 0 0 0 auto;
        padding: 0 20px;
        width: 100%;
        margin: 0 auto;
        padding: 0 20px;
        height: 460px;
    }
.main_image_box_inner {
    width: 100%;
    max-width: 1640px;
    margin: 0 auto;
}
.top_header_text {
    position: absolute;
    left: 20px;
    top: auto;
    bottom: 20px;
    margin: 0;
    padding: 0;
    transform: translateY(0) translateX(0);
    width: 96vw;
    max-width: 1640px;
}
.top_header_text_top {
    margin-bottom: 10px;
}
.top_header_text_bottom {
    margin-bottom: 0;
}
.top_header_text_top p {
text-shadow: 1px 1px 0px rgba(255, 255, 255, 1), 1px 1px 0px rgb(255, 255, 255);
}
.top_header_text_bottom p {
text-shadow: 1px 1px 0px rgba(255, 255, 255, 1), 1px 1px 0px rgb(255, 255, 255);
}

.header_img_text_top {
    margin-bottom: 40px;
}
.header_img_text_bottom {
    font: bold clamp(36px, 3.5vw, 54px) 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: center;
}

.header_img_text_top span {
    display: block;
    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.5rem;
    text-indent: 0.5rem;
    line-height: 1.1;
}
.header_img_text_four {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin: 10px auto;
}

.top_header_text_top p {
    letter-spacing: 0.3rem;
}
.top_header_text_bottom p {
    letter-spacing: 0.1rem;
}

.other_header {
    position: relative;
    background-position: 0 0;
    background-size: 820px 360px;
    padding: 120px 20px 100px;
    text-align: left;
}
.other_header h1 {
    max-width: 1340px;
    margin: 0 auto;
}
.other_header h1:before {
    margin-bottom: 15px;
}
.other_header h1 {
    font: bold clamp(16px, 2vw, 24px) var(--font_ja);
    color: var(--f_color);
    max-width: 1240px;
    width: 100%;
    position: relative;
    text-align: center;
}
.other_header h1:before {
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
    letter-spacing: 0.5rem;
}

    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_wrap {
        margin: 0 auto;
        background-position: 50%;
        position: relative;
    }
    .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;
    }
    .common_cta_box > div {
        width: 49%;
    }
    .cta_mail_button {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .cta_mail_button a{
        width: 320px;
        padding: 20px 20px;
    }
    .cta_mail_button a .arrow{
        right: 20px;
        width: 32px;
        height: 32px;
    }
    .cta_mail_button a:hover::before{
        right: 0;
    }
    .cta_mail_button a:hover .arrow{
        transform: translateX(5px);
    }

    .common_cta_text {
        padding: 50px;
    }
    .common_cta_inner p {
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .cta_mail_button i {
        margin-right: 6px;
        font-size: 20px;
    }

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

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

    /*-------------------------------------
    TOP 私たちについて
    -------------------------------------*/
    .top_about_inner {
        max-width: 1920px;
        margin: 0 0 0 auto;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-right: 0;
        padding-left: 0;
    }
    .top_about_box {
        margin: 0 0 20px auto;
        padding: 0 20px;
    }
    .top_about_text_top {
        max-width: 1040px;
    }
    .top_about_image {
        width: 100%;
        margin: 0 auto 0 0;
        max-width: 1540px;
    }
    .top_about_image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .top_about_text {
        margin-right: 0px;
    }

    /*-------------------------------------
    TOP サービス
    -------------------------------------*/
    .top_service_wrap {
        position: relative;
        background: var(--w_color);
    }
    .top_service_text_box {
        padding: 0 0px;
    }
    .top_service_inner {
        max-width: 1840px;
        margin: 0 auto;
        padding: 0px 20px 50px;
    }
    .top_service_inner ul {
        margin: 0 auto;
        gap: 20px 20px;
        flex-wrap: wrap;
    }
    .top_service_inner ul li {
        width: 100%;
        padding: 40px;
        margin-bottom: 20px;
    }
    .top_service_inner ul li:last-child {
        margin-bottom: 0;
    }
    .top_service_heading {
        margin-bottom: 10px;
    }
    .top_service_image {
        position: relative;
        margin-right: 20px;
    }
    .top_service_image img {
        height: 120px;
        display: block;
        /* margin: 0 auto 20px; */
    }

    /*-------------------------------------
    TOP 採用情報
    -------------------------------------*/
    .top_recruit_wrap {
        /* background-image: none; */
        background-position: 70% 50%;
        margin: 0;
        position: relative;
    }
    .top_recruit_wrap:before {
        position: absolute;
        content: '';
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.9);
    }
    .top_recruit_inner {
        max-width: 1340px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }
    .top_recruit_inner p {
        color: var(--f_color);
    }
    .top_recruit_box {
        width: 100%;
        max-width: 640px;
    }
    .top_recruit_text_top {
        margin-bottom: 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;
    }

    /*-------------------------------------
    私たちについてページ
    -------------------------------------*/
    .about_philosophy_inner ul li {
        margin-bottom: 20px;
        padding: 40px 40px;
    }
    .about_philosophy_inner ul li:last-child {
        margin-bottom: 0;
    }
    .about_philosophy_top {
        margin-bottom: 20px;
    }
    .about_philosophy_heading {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .about_philosophy_inner p {
        line-height: 1.7;
    }
    .about_value_inner ul li {
        margin-bottom: 10px;
    }
    .about_value_inner ul li:last-child {
        margin-bottom: 0;
    }
    .about_value_heading {
        padding: 10px 30px;
        display: flex;
        align-items: center;
    }
    .about_value_inner ul li p {
        padding: 10px 30px;
        display: flex;
        align-items: center;
    }
    .about_philosophy_text {
        width: 100%;
    }
    .about_philosophy_number {
        width: 80px;
        height: 80px;
        display: flex;
        margin: 0 auto 20px;
    }
    .about_philosophy_number p {
        width: 80px;
    }
    .about_service_inner ul {
        margin: 0 auto;
        gap: 20px 20px;
    }
    .about_service_inner ul li {
        width: 100%;
        padding: 40px;
        margin-bottom: 20px;
    }
    .about_service_inner ul li:last-child {
        margin-bottom: 0;
    }
    .about_service_heading {
        padding: 10px;
        margin-bottom: 10px;
    }
    .about_service_text p {
        line-height: 1.5;
    }
    .about_service_image {
        margin: 0 auto 20px;
    }
    .about_service_image img {
        height: 120px;
        margin: 0 auto;
    }

    /*-------------------------------------
    事業内容ページ
    -------------------------------------*/
    .service_wrap {
        margin: var(--single_mp) auto;
        padding: 0 20px;
    }
    .service_inner {
        max-width: 1440px;
        padding: 20px;
        margin: 0 auto 20px;
    }
    .service_text {
        padding: 20px 0 0;
        width: 100%;
    }
    .service_image {
        width: 100%;
    }

    /*-------------------------------------
    会社概要ページ
    -------------------------------------*/
    .company {
        margin: var(--single_mp) 0;
    }
    .message_wrap {
        margin-bottom: var(--single_mp);
    }
    .message_box {
            padding: 40px;
    }
    .message_image {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 20px;
    }
    .message_image img {
        display: block;
        margin-bottom: 10px;
    }
    .message_text {
        width: 100%;
    }
    .summary_table table {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
    }
    .company_wrap,
    .philosophy_wrap {
        margin-bottom: var(--single_mp);
    }

    .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;
    }
    .summary_table table {
        width: 100%;
        margin: 0 auto;
        font-size: 16px;
    }

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

    /*-------------------------------------
    採用情報ページ
    -------------------------------------*/
    .recruit_information_wrap,
    .recruit_interview_wrap {
        margin-bottom: var(--single_mp);
    }
    .recruit_interview_text {
        width: 100%;
    }
    .recruit_interview_inner ul li {
        margin-bottom: 20px;
        padding: 40px;
    }
    .recruit_interview_inner ul li:last-child {
        margin-bottom: 0;
    }
    .recruit_interview_icon {
        width: 150px;
        height: 150px;
        display: flex;
        margin: 0 auto 20px;
    }
    .recruit_interview_icon i {
        width: 150px;
        font-size: 50px;
    }
    .recruit_interview_title {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .recruit_important_inner ul {
        display: block;
    }
    .recruit_important_inner li {
        margin-bottom: 20px;
        padding-left: 24px;
        padding: 50px;
        width: 100%;
    }

    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .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: 70px;
        padding: 10px 0;
    }
    .site_ttl a {
        color: var(--w_color);
    }
    .menu_wrap {
        padding: 0 30px;
    }

    .other_header {
        position: relative;
        background-position: 0 0;
        background-size: 550px 100%;
        padding: 120px 20px 100px;
        text-align: left;
    }

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

/*-------------------------------------
TOP サービス
-------------------------------------*/
.top_service_wrap {
    position: relative;
    background: var(--w_color);
}
.top_service_text_box {
    padding: 0 0px;
}
.top_service_inner {
    max-width: 1840px;
    margin: 0 auto;
    padding: 0px 20px 50px;
}
.top_service_inner ul {
    margin: 0 auto;
    gap: 20px 20px;
    flex-wrap: wrap;
}
.top_service_inner ul li {
    width: 100%;
    padding: 40px;
    margin-bottom: 20px;
    display: block;
}
.top_service_inner ul li:last-child {
    margin-bottom: 0;
}
.top_service_heading {
    margin-bottom: 10px;
}
.top_service_image {
    position: relative;
    margin-right: 0;
}
.top_service_image img {
    height: 100px;
    display: block;
    margin: 0 auto 20px;
}

    /*-------------------------------------
    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";
    }
}