﻿@charset "UTF-8";
/*
Theme Name: grace-㎝
Author: num
Description: This is my original theme.
Version: 1.0
*/

/*-------------------------------------
定義
-------------------------------------*/
:root {
    --font_ja: "NotoSansJP", sans-serif;
    --font_en: "Montserrat", sans-serif;
    --h1_font: clamp(20px, 2.8vw,28px);
    --h2_font: clamp(23px, 2.4vw,36px);
    --h3_font: clamp(20px, 2vw, 26px);
    --h4_font: clamp(18px, 1.8vw, 20px);
    --m_color: #2678b9;
    --a_color: #e7792d;
    --f_color: #333333;
    --b_color: #fff;
    --border_r: max(10px, min(15px, calc((100vw - 10px - 100%) * 9999)));
    --tr: 0.3s ease-out;
    --main_ws: min(1080px, calc(100% - (var(--m_ps8) * 2)));
    --main_w: min(1280px, calc(100% - (var(--m_ps8) * 2)));
    --main_w2: min(1440px, calc(100% - (var(--m_ps8) * 2)));
    --main_w3: min(1600px, calc(100% - (var(--m_ps8) * 2)));
    --main_w4: min(1760px, calc(100% -(var(--m_ps8) * 2)));
    --main_mp: 200px;
    --sub_mp: 120px;
    --m_ps3: 30px;
    --m_ps5: 50px;
    --m_ps8: 80px;
    --gr: linear-gradient(180deg, #2fb5ba 0%, var(--m_color) 100%);
    --base: 0.0625rem;
}
*{
    font-weight: 500;
}
/*-------------------------------------
アニメーションパーツ
-------------------------------------*/
/*ボックスアニメーション*/
.block {
    position: relative;
    z-index: 0;
    overflow: hidden;
}
.block::before {
    transform-origin: left;
    transform: translateX(var(--beforeX, 0%));
    transition: none;
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.block::after {
    transform-origin: left;
    transform: scaleX(var(--afterScaleX, 0)) translateX(var(--afterX, 0%));
    transition: none;
    background-color: var(--m_color);
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
/*パララックス*/
@keyframes parallax {
    from {
        background-position: center 0;
    }
    to {
        background-position: center -100px;
    }
}
/*-------------------------------------
共通パーツ
-------------------------------------*/
.pc_none2 {
    display: none;
}
.flex {
    display: -webkit-flex;
    display: flex;
}
.flex_c {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
}
.flex_c2 {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.flex_c_c {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}
.main_ma {
    margin-top: var(--main_mp);
    margin-bottom: var(--main_mp);
}
.main_ma_t {
    margin-top: var(--main_mp);
}
.main_ma_b {
    margin-bottom: var(--main_mp);
}
.main_pa {
    padding-top: var(--main_mp);
    padding-bottom: var(--main_mp);
}
.main_pa_t {
    padding-top: var(--main_mp);
}
.main_pa_b {
    padding-bottom: var(--main_mp);
}
.sub_ma {
    margin-top: var(--sub_mp);
    margin-bottom: var(--sub_mp);
}
.sub_ma_t {
    margin-top: var(--sub_mp);
}
.sub_ma_b {
    margin-bottom: var(--sub_mp);
}
.sub_pa {
    padding-top: var(--sub_mp);
    padding-bottom: var(--sub_mp);
}
.sub_pa_t {
    padding-top: var(--sub_mp);
}
.sub_pa_b {
    padding-bottom: var(--sub_mp);
}
.m_as {
    max-width: var(--main_ws);
}
.m_a {
    max-width: var(--main_w);
}
.m_a2 {
    max-width: var(--main_w2);
}
.m_a3 {
    max-width: var(--main_w3);
}
.m_a4 {
    max-width: var(--main_w4);
}
.m_lr {
    margin-right: auto;
    margin-left: auto;
}
.m_ps3 {
    margin-bottom: var(--m_ps3);
}
.m_ps5 {
    margin-bottom: var(--m_ps5);
}
.m_ps8 {
    margin-bottom: var(--m_ps8);
}
.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;
}
.mt10 {
    margin-top: 10px;
}
.mt20 {
    margin-top: 20px;
}
.mt30 {
    margin-top: 30px;
}
.mt40 {
    margin-top: 40px;
}
.mt50 {
    margin-top: 50px;
}
.mt60 {
    margin-top: 60px;
}
.mt70 {
    margin-top: 70px;
}
.mt80 {
    margin-top: 80px;
}
.mt90 {
    margin-top: 90px;
}
.mt100 {
    margin-top: 100px;
}
.fc {
    text-align: center;
}
.fl {
    text-align: left;
}
.fr {
    text-align: right;
}
.fb {
    font-weight: bold;
}
.annotation {
    font-size: 13px!important;
    color: gray;
    line-height: 1.8!important;
}
.pa_t80{
    padding-top: var(--m_ps8);
}

/*ボタン*/
.common_btn {
}
.common_btn a {
    text-decoration: none;
    color: #fff;
    padding: 20px 10px 20px 40px;
    display: inline-block;
    background-color: var(--a_color);
    position: relative;
    font: 500 16px var(--font_ja);
    letter-spacing: 0.15em;
    transition: var(--tr);
    border-radius: 40px;
    overflow: hidden;
    z-index: 1;
}
.common_btn a i{
    margin-left: 20px;
    color: #fff;
    transition: var(--tr);
}
.common_btn a:hover{
    color: #fff;
}
.common_btn a:hover i{
    transform: translateX(6px);
}
.common_btn a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.common_btn a::before {
    background: #e66a11;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left top;
    transition: var(--tr);
    z-index: -1;
}
/*-------------------------------------
CTA
-------------------------------------*/
.common_cta_wrap {
    background:linear-gradient(180deg, #18b4b9e0 0%, #1268afe3 100%);
    background-repeat: no-repeat;
    background-size: cover;
}
.common_cta_inner {
    width: 100%;
    gap: 5%;
}
.common_cta_txt h2,.common_cta_txt p{
    color: #fff!important;
}
.common_cta_phone,
.common_cta_mail{
    width: 50%;
    transition: var(--tr);
    position: relative;
    flex-direction: column;
    padding: var(--m_ps5) 0;
    text-decoration: none;
}
.common_cta_phone::before,
.common_cta_mail::before{
    background:#0000004b;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    transition: var(--tr);
    width: 100%;
    opacity: 0.5;
    border-radius: 40px;
}
.common_cta_phone:hover::before,
.common_cta_mail:hover::before{
    opacity: 1;
}
.contact_cta_i{
    background-color: #ffffff36;
    width: 100px;
    height: 100px;
    border-radius: 50px;
    margin: 0 auto;
    margin-bottom: 30px;
    position: relative;
}
.contact_cta_i i{
    white-space: nowrap;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -1em;
}
.common_cta_inner i {
    font-size: clamp(22px, 3vw, 32px);
    color: #fff;
}
.common_cta_phone > p,
.common_cta_mail > p {
    font: 700 18px var(--font_ja);
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}
.common_cta_phone .common_cta_phone_btn {
    font: 700 clamp(32px, 3.5vw, 42px)/1 var(--font_en);
    color:  #fff;
    text-decoration: none;
    position: relative;
}
.common_cta_phone .common_cta_phone_btn > span{
    font: 700 clamp(22px, 2.5vw, 32px)/1 var(--font_en);
    color:  #fff;
    position: relative;
}
.common_cta_mail .common_cta_mail_btn{
    font: 700 20px var(--font_ja);
    color: #fff;
    text-decoration: none;
    background-color: var(--a_color);
    display: block;
    margin: 6px auto 0;
    padding: 16px 16px 16px 40px;
    border-radius: 100px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.common_cta_mail:hover .common_cta_mail_btn{
    color: #fff;
}
.common_cta_mail .common_cta_mail_btn i{
    font-size: 20px;
    margin-left: 10px;
    transition: var(--tr);
}
.common_cta_mail:hover .common_cta_mail_btn i{
    transform: translateX(6px);
}
.common_cta_mail:hover .common_cta_mail_btn::before{
    transform: scaleX(1);
    transform-origin: left;
    transition: var(--tr);
}
.common_cta_mail .common_cta_mail_btn::before{
    background: #e66a11;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: var(--tr);
    z-index: -1;
}
.common_cta_inner img {
    width: 3vw;
    margin-right: 10px;
    display: block;
}
/*-------------------------------------
見出し
-------------------------------------*/
h1 {
    font-size: 16px;
    font-weight: bold;
    margin: 0 0 30px;
}
.singleh1 {
    color: var(--f_color);
    padding: 0;
    font-size: clamp(22px, 3vw, 32px);
    margin-bottom: 20px;
}
h2 {
    position: relative;
}
h3 {
    position: relative;
}
/*-------------------------------------
レイアウト
-------------------------------------*/
.wrap {
    position: relative;
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
}
body:not(.home) main{
    background-color: #fff;
    padding-bottom: var(--main_mp);
}
/*-------------------------------------
header
-------------------------------------*/
.header {
}
/* サイトタイトル */
.site_ttl {
    line-height: 0;
    width: 180px;
    margin: 0;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed .site_ttl {
    width: 140px;
}
.site_ttl a {
    display: block;
    color: var(--f_color);
    font-weight: bold;
    text-decoration: none;
    margin: 0 auto;
    transition: var(--tr);
}
.site_ttl a:hover {
    opacity: 0.7;
}
/*ナビ*/
.h_nav_wrap {
    position: fixed;
    margin-left: auto;
    padding: 20px 20px;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
    transition: var(--tr);
}
.h_nav_wrap.is-fixed {
    padding: 10px 20px;
    background: #ffffff8f;
}
.h_nav_inner {
    justify-content: space-between;
    align-items: center;
}
.h_nav_wrap nav {
    height: 100%;
}
.pc_h_nav {
    height: 100%;
}
.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ドロップダウンメニュー*/
.menu-list{
    gap: 30px;
}
.menu-item{
    position: relative;
}
.menu-item > a, .menu-item > p{  /* 最初から見えているリンク */
    display: block;
    font: 600 15px var(--font_ja);
    color: var(--f_color);
    align-items: center;
    height: 50px;
    padding: 14.5px 10px;
    justify-content: center;
    text-decoration: none;
    transition: var(--tr);
}
.menu-item > p i{
    margin-left: 6px;
}
.menu-item::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--a_color);
    position: absolute;
    top: 20.5px;
    left: -4px;
    opacity: 0;
    transition: var(--tr);
    transform-origin: center center;
}
.menu-item:hover::before{
    opacity: 1;
}
.menu-item:hover .drop-menu-list {
    opacity: 1;
    transition: var(--tr);
    visibility: visible;
}
.drop-menu {
    position: relative;
}
.drop-menu-list{
    left: 0;
    opacity: 0; /* 不透明度を最小に */
    position: absolute;
    top: 100%;
    transition: var(--tr);
    visibility: hidden; /* 下層メニューを非表示 */
    width: max-content;
    z-index: 1;
    background-color: #ffffffee;
    padding: 0;
    border-radius: 6px;
    min-width: 200px;
}
.drop-menu-item {
    position: relative;
    border-bottom: 1px #0f0f0f1e solid;
    transition: var(--tr);
}
.drop-menu-item:last-child{
    border: none;
}
.drop-menu-item a{
    display: block;
    font: 600 15px var(--font_ja);
    color: var(--f_color);
    text-decoration: none;
    padding: 20px 80px 20px 30px;
    position: relative;
}
.drop-menu-item:first-child{
    border-radius: 6px 6px 0 0;
}
.drop-menu-item:last-child{
    border-radius: 0 0 6px 6px;
}
.drop-menu-item:hover{
    background-color: #c4e8ff;
}
.drop-menu-item a i{
    color: var(--m_color);
    position: absolute;
    right: 30px;
    top: 24px;
}
.drop-menu-list .occupation a{
    padding-left: 45px;
    position: relative;
}
.drop-menu-list .occupation a::before{
    content: "";
    width: 8px;
    height: 2px;
    background-color: #e0e0e0;
    position: absolute;
    top: 50%;
    left: 30px;
}
.h_nav_wrap.is-fixed .drop-menu-list{
}
#nav_contact a{
    color: #fff;
    background-color: var(--a_color);
    text-decoration: none;
    padding: 14px 14px 14px 40px;
    border-radius: 40px;
    position: relative;
    transition: var(--tr);
    overflow: hidden;
    z-index: 1;
}
#nav_contact a i{
    color: #fff;
    margin-left: 20px;
    transition: var(--tr);
}
#nav_contact a:hover{
    color: #fff;
    opacity: 1;
}
#nav_contact a:hover i{
    transform: translateX(6px);
}
#nav_contact a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
    transition: var(--tr);
}
#nav_contact a::before {
    background: #e66a11;
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left top;
    transition: var(--tr);
    z-index: -1;
}
#nav_contact::before{
    content: none;
}
/*ファーストビュー*/
.h_img_wrap {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 16/8;
    background-color: #fff;
}
.h_img_txt{
    width: 35%;
    position: absolute;
    bottom: calc((100% - ((100vw / 16) * 6 + 91px)) / 4 * 3);
    left: var(--m_ps8);
    z-index: 1;
    text-align: start;
}
.h_img_txt img{
    max-width: 580px;
    width: 100%;
}
.h_img_txt p{
    display: inline-block;
    color: #fff;
    font: 700 clamp(18px, 1.8vw,34px) var(--font_ja)  ;
    background:linear-gradient(180deg, #2fb5ba 0%, var(--m_color) 100%);
    padding: 10px 20px;
    border-radius: 4px;
    margin-top: 10px;
}
.slick{
    position: absolute;
    width: 100%;
    top: 91px;
    z-index: 0;
}
.slick-img{
    max-width: 980px;
    width: 60vw;
    height: calc((100vw / 16) * 6);
    margin-left: 4vw;
}
.slick-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slick-slider div {
    transition: none;
}
.h_img_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:100vh;
    z-index: -10;
}
.h_img_bg img{
    width: 100%;
    height:100vh;
    object-fit: cover;
    overflow: hidden;
    object-position: center center;
}
body:not(.home) .h_img_wrap {
    width: 100%;
    height: 60vh;
}
/*下層FV*/
body:not(.home):not(.single) .h_img_wrap,
body.single .h_img_wrap {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgb(255, 255, 255));
}
body:not(.home):not(.single) .h_img_wrap > div,
body.single .h_img_wrap > div{
    width: var(--main_w);
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: calc((100% - var(--main_w))/2);
}
body:not(.home):not(.single) .page_ttl:before,
body.single .page_ttl:before{
    text-transform: capitalize;
    font: 500 clamp(56px,11.5vw,100px) "Caveat";
    margin-left: -4px;
    padding-bottom: 10px;
    line-height: 1.1;
    content: attr(data-text);
    display: block;
    color: var(--f_color);
}
body:not(.home):not(.single) h1,
body.single .h1 {
    margin: 0;
    hyphens: none;
    font: 700 var(--h1_font) var(--font_ja);
    color: var(--m_color);
}
/*-------------------------------------
お知らせ
-------------------------------------*/
.new_wrap {
    border-top: none;
    background: #fff;
    position: relative;
    padding-top: var(--m_ps8);
    padding-bottom: var(--m_ps8);
}
.new_inner {
    position: relative;
    gap: var(--m_ps8);
}
.new_h2 h2 {
    color: var(--m_color);
    z-index: 0;
    font: bold clamp(22px,6vw,34px) var(--font_ja);
    margin-bottom: 10px;
}
.new_h2_sub {
    color: var(--a_color);
    font: 600 20px var(--font_en);
}
time {
    display: block;
    letter-spacing: 0.1em;
    font-family: var(--font_en);
    font-size: 14px;
    font-weight: bold;
    color: #666666;
}
.new_list {
    flex: 1;
    border-top: 1px solid #edecec;
    padding-top: 20px;
}
.new_item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #edecec;
}
.new_item:last-child {
    margin-bottom: 0;
}
.new_item_date {
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    row-gap: 10px;
    position: relative;
}
.new_item_date > div.flex {
    align-items: center;
    gap: 10px;
}
.new_item_date time{
    width: 6.5em;
}
.new_item_cat {
    color: #fff;
    line-height: 1;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px;
    background-color: #888888;
}
.new_item_ttl {
    font-size: 16px;
    color: var(--h_color);
    font-weight: bold;
    padding-right: 55px;
}
.news_txt {
    font-size: 15px;
    margin-top: 20px;
    display: none;
}
.news_txt p {
    margin-bottom: 30px;
}
.news_thumbnail {
    max-width: 146.67px;
    width: 100%;
    margin-right: 15px;
}
/*アイコン*/
.new_item_date::before,
.new_item_date::after {
    position: absolute;
    top: 18px;
    right: 15px;
    content: "";
    width: 15px;
    height: 1px;
    background-color: var(--f_color);
    transition: var(--tr);
}
.new_item_date::before {
    transform: rotate(0deg);
}
.new_item_date::after {
    transform: rotate(90deg);
}
.new_item_date.is-close::before {
    transform: rotate(45deg);
}
.new_item_date.is-close::after {
    transform: rotate(-45deg);
}
/*-------------------------------------
TOP 1コンテンツ目
-------------------------------------*/
.top_con01_wrap{
    position: relative;
    background-color: #fff;
    z-index: 2;
    border-radius: 0 0 var(--sub_mp) 0;
}
.top_con01_inner {
    width: 100%;
    height: auto;
    align-items: stretch;
    padding: 0 var(--m_ps8);
}
.top_con01_img_l,
.top_con01_img_r{
    flex-direction: column;
    position: relative;
    z-index: 0;
}
.top_con01_img_l{
    flex: 2;
}
.top_con01_img_r{
    flex: 1;
}
.top_con01_txt{
    position: relative;
    width: 30em;
    z-index: 1;
    padding-top: calc((45em / 9) * 2);
    padding-right: var(--m_ps5);
    padding-left: var(--m_ps5);
    flex-direction: column;
}
.top_con01_txt::before{
    content: "";
    z-index: 2;
    position: absolute;
    top: 30px;
    left: -35%;
    width: 150%;
    aspect-ratio: 9/2;
    background-image: url(/wp-content/themes/grace-cm/img/top01_h2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.img_wrap_l,.img_wrap_r{
    width: 100%;
    justify-content: end;
    position: relative;
}
.top_con01_img_l_01,
.top_con01_img_l_02,
.top_con01_img_r_01,
.top_con01_img_r_02{
    background-size: cover;
    background-position: top;
    position: relative;
}
.top_con01_img_l_01{
    width: 50%;
    height: 320px;
    margin-top: -60px;
    background-image: url(/wp-content/themes/grace-cm/img/top01_sand.jpg);
    z-index: 0;
}
.top_con01_img_l_02{
    width: 85%;
    height: 540px;
    background-image: url(/wp-content/themes/grace-cm/img/top01_woman_r.jpg);
    z-index: 1;
}
.top_con01_img_r_01{
    width: 60%;
    height: 200px;
    background-image: url(/wp-content/themes/grace-cm/img/top01_sea.jpg);
    background-position: bottom;
}
.top_con01_img_r_02{
    width: 75%;
    height: 320px;
    margin-top: -40px;
    background-image: url(/wp-content/themes/grace-cm/img/top01_woman_l.jpg);
    background-position: 25% center;
}
.top01_h2_en{
    font: 400 clamp(60px, 5vw, 90px) "Caveat";
    line-height: 1;
    white-space: nowrap;
}
.top_con01_txt h2{
    font: 700 clamp(20px, 5vw, 28px) var(--font_ja);
}
/* .top_con01_p{
    padding-left: 30%;
} */
.top_con01_p p{
    font: 500 16px var(--font_ja);
    line-height: 2.5;
    white-space: nowrap;
}
/*-------------------------------------
TOP 2.3コンテンツwrap
-------------------------------------*/
.top_0203_wrap{
    width: 100%;
    background:linear-gradient(180deg, #18b4b9cb 0%, #18b4b9e0 100%);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 0;
    margin-top: -100px;
    padding-top: calc(var(--main_mp) + var(--sub_mp));
    padding-left: 5%;
}
.top_0203_wrap section:first-child{
    padding-top: var(--sub_mp);
    border-radius: var(--sub_mp) 0 0 0;
    background-color: #fff;
}
/*-------------------------------------
TOP 2.3コンテンツ目
-------------------------------------*/
.top_con02_wrap,.top_con03_wrap{
    position: relative;
    background-color: #fff;
    justify-content: start;
}
.top_con02_wrap{
    padding-bottom: calc(var(--main_mp) - var(--m_ps5));
}
.top_con03_wrap{
    border-radius: 0 0 0 var(--sub_mp);
}
.top_con02_wrap::before,.top_con03_wrap::before{
    content: "";
    width: 60%;
    height: 50%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f7f7f7;
}
.top_con02_inner,.top_con03_inner{
    gap: 5%;
}
.top_con02_txt,.top_con03_txt {
    width: 40%;
    position: relative;
    overflow: visible;
    padding-bottom: var(--m_ps8);
}
/*-トップ見出し-*/
.top_h2{
    position: relative;
    z-index: 2;
}
.top_con02_txt .top_h2{
    padding-top: calc(clamp(60px, 6vw, 90px)*2 + 60px);
}
.top_con03_txt .top_h2{
    padding-top: calc(clamp(60px, 6vw, 90px) + 60px);
}
.top01_h2_en{
    position: absolute;
    top: 20px;
    white-space: nowrap;
    transform: rotate(-4deg);
    font-size: clamp(60px, 6vw, 90px);
    z-index: 2;
}
.top_h2 h2::before {
    content: "";
    width: 16px;
    height: 16px;
    border-radius: 10px;
    background-color: var(--a_color);
    margin-top: calc((1lh - 16px) / 2);
}
.top_h2 h2 {
    color: var(--m_color);
    z-index: 0;
    font: 900 clamp(22px, 2.4vw,32px) var(--font_ja);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: start;
}
/*---------*/
.top_con02_txt .top01_h2_en{
    left: -30px;
}
.top_con03_txt .top01_h2_en{
    left: -40px;
}
.top_con02_img,.top_con03_img{
    width: 55%;
    height: 100%;
    position: relative;
    z-index: 1;
}
.top_con02_img img,.top_con03_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top_con02_img img{
    object-position: 20% center;
}
.top_con02_txt .top01_h2_en::after,
.top_con03_txt .top01_h2_en::after{
    content: "";
    background-image: url(/wp-content/themes/grace-cm/img/leaf.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 160px;
    position: absolute;
    bottom: -40px;
    right: -140px;
}
/*-------------------------------------
パンくず
-------------------------------------*/
.breadcrumbsinner {
    width: 100%;
    padding: 30px 0;
    background: #ffffff;
}
.breadcrumbs {
    width: 100%;
    font-size: 0.875rem;
    line-height: 1.5;
    background: none;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px 14px;
    max-width: var(--main_w2);
    width: 100%;
    margin: 0 auto;
    flex-wrap: wrap;
}
.breadcrumbs a,
.breadcrumbs span {
    font-size: 13px;
    color: var(--f_color);
    font-family: var(--font_ja);
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-block;
}
.breadcrumbs:before {
    /* content: "\f015"; */
    font: 100% "Font Awesome 6 free";
    font-weight: bold;
}
.breadcrumbs span:first-child a:hover {
    text-decoration: underline;
}
.breadcrumbs span:last-child a {
    pointer-events: none;
}
/*-------------------------------------
国際人材事業ページ
-------------------------------------*/
.global01_wrap,
.global02_wrap,
.global03_wrap{
    position: relative;
    padding: 80px 0;
}
.global01_wrap::before,
.global03_wrap::before{
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f7f7f7;
}
.global02_wrap::before{
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
}
.global_inner,.global_inner02{
    gap: 6%;
}
.global_txt{
    flex-direction: column;
    flex: 1;
    position: relative;
}
/*-下層見出し-*/
.other_h2 {
    position: relative;
    padding-bottom: 20px;
    border-bottom: var(--m_color) 2px solid;
}
.other_h2 .h2_num{
    background: var(--gr);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font: 600 calc(var(--h2_font)*1.35) / 1.2 var(--font_en);
    margin-right: 11px;
}
.other_h2 h2{
    color: var(--f_color);
    z-index: 0;
    font: 800 var(--h2_font)  var(--font_ja);
    position: relative;
}
.other_h2 h2::after{
    content: "";
    background-image: url(/wp-content/themes/grace-cm/img/leaf.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 120px;
    height: 120px;
    position: absolute;
    bottom: -20px;
    right: -80px;
}
/*---------*/
.global_img{
    width: 48%;
    height: 380px;
}
.global_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/*-------------------------------------
精密機器物流・組立事業ページ
-------------------------------------*/
.logistics01_wrap,
.logistics02_wrap,
.logistics03_wrap{
    background-color: #fff;
}
.logistics_inner{
    gap: var(--m_ps5);
}
.logistics_con{
    width: 100%;
    gap: 30px;
    flex-wrap: wrap;
}
.logistics_item{
    flex-direction: column;
    width: calc((100% - 60px)/3);
    border-radius: 20px;
    background: var(--gr);
    padding: 50px 0;
    gap: 20px;
}
.logistics_item .logistic_num{
    width: 60px;
    aspect-ratio: 1/1;
    font: 600 clamp(28px, 3vw, 34px) var(--font_en);
    color: #28adbf;
    background-color: #fff;
    border-radius: 40px;
}
.logistics_item p{
    color: #fff;
    text-align: center;
    font: 700 clamp(17px, 1.6vw, 22px) var(--font_ja);
    line-height: 1.5;
}
.logistics02_wrap{
    background: linear-gradient(180deg, #18b4b9cb 0%, #1268afc7 100%),url(/wp-content/themes/grace-cm/img/logistics01.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.logistics02_wrap p{
    font-size: 18px;
    color: #fff;
}
.logistics_inner h2{
    color: var(--m_color);
    z-index: 0;
    font: 800 clamp(22px, 2.6vw,42px)  var(--font_ja);
    position: relative;
    padding-bottom: 10px;
    border-bottom: var(--a_color) 4px solid;
}
.logistics03_wrap,
.logistics04_wrap{
    position: relative;
    padding: 80px 0;
}
.logistics03_wrap::before,
.logistics04_wrap::before{
    content: "";
    width: 60%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #f7f7f7;
}
.logistics03_wrap::before{
    right: 0;
}
.logistics04_wrap::before{
    left: 0;
}
.logistics03_inner,.logistics04_inner{
    gap: 6%;
}
.logistics_txt{
    flex-direction: column;
    flex: 1;
    position: relative;
}
.logistics_h3{
    position: relative;
    padding-bottom: 20px;
    border-bottom: var(--m_color) 2px solid;
}
.logistics_h3 h3{
    color: var(--f_color);
    z-index: 0;
    font: 800 var(--h2_font)  var(--font_ja);
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: start;
}
.logistics_h3 h3::before{
    content: "";
    width: 20px;
    height: 20px;
    background: var(--gr);
    border-radius: 10px;
    margin-top: calc((1lh - 20px) / 2);
}
.logistics_img{
    width: 48%;
    height: 380px;
}
.logistics_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.logistics03_wrap .logistics_img img{
    object-position: 16% center;
}
/*-------------------------------------
採用情報ページ
-------------------------------------*/
/* コンテンツ1 */
.recruit01_wrap{
    width: 100%;
    justify-content: end;
    position: relative;
}
.recruit01_wrap::before{
    content: "";
    width: 40%;
    height: 50%;
    position: absolute;
    top: 28%;
    left: 0;
    background-color: #f7f7f7;
}
.recruit01_inner{
    gap: 10%;
    position: relative;
}
.recruit01_txt{
    width: 32em;
    flex-direction: column;
}
.recruit01_txt p{
    line-height: 2.5;
}
.recruit_h2{
    position: relative;
}
.recruit_h2 h2{
    font: 700 clamp(22px, 3.4vw,42px)  var(--font_ja);
}
.recruit01_img_s{
    width: 100%;
    height: 280px;
}
.recruit01_img_s img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recruit01_img{
    flex: 1;
}
.recruit01_img img{
    width: 100%;
    height: 80%;
    object-fit: cover;
}
/* コンテンツ2*/
.recruit02_wrap{
    justify-content: start;
    position: relative;
}
.recruit02_wrap::before{
    content: "";
    width: 35%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f7f7f7;
}
.recruit02_inner{
    gap: 10%;
    align-items: end;
    position: relative;
}
.recruit02_txt{
    width: 31em;
    flex-direction: column;
}
.recruit02_h3 h3{
    font: 700 clamp(22px, 3.2vw,38px)  var(--font_ja);
}
.recruit02_txt li{
    display: block;
    padding: 10px 10px 10px 40px;
    margin-bottom: 10px;
    background-color: #d7edff;
    position: relative;
}
.recruit02_txt li::before{
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--f_color);
    border-radius: 5px;
    position: absolute;
    left: 20px;
    top: 20px;
}
.recruit02_txt p{
    line-height: 2.5;
}
.recruit02_img{
    flex: 1;
    height: 600px;
}
.recruit02_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 20% center;
}
/* コンテンツ3*/
.recruit03_wrap{
    position: relative;
}
.recruit03_wrap::before{
    content: "";
    width: 65%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
}
.recruit03_inner{
    gap: 8%;
    position: relative;
}
.recruit03_img{
    flex: 1;
    flex-direction: column;
    gap: 40px;
}
.recruit03_img img{
    width: 100%;
    height: calc((100% - 40px)/2);
    object-fit: cover;
}
.recruit03_txt{
    width: 38em;
    flex-direction: column;
}
.recruit_h3 h3{
    font: 700 clamp(22px, 2.8vw,32px)  var(--font_ja);
}
.recruit03_txt li{
    display: block;
    padding: 10px 20px;
    margin-bottom: 10px;
    background-color: #ffffff;
    position: relative;
}
.recruit03_txt h2::after{
    content: "";
    background-image: url(/wp-content/themes/grace-cm/img/leaf.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 160px;
    position: absolute;
    bottom: -40px;
    right: -140px;
}
/* コンテンツ4 */
.recruit04_wrap{
    justify-content: end;
}
.recruit04_inner{
    width: 100%;
}
.recruit04_inner .recruit_h2::before{
    content: "Recruit Information";
    font: 400 clamp(80px, 12vw, 140px) "Caveat";
    line-height: 1;
    white-space: nowrap;
    color: #e7e7e7;
    position: absolute;
    bottom: -20px;
    left: 0;
}
.recruit04_txt{
    flex-direction: column;
}
.recruit04_txt section{
    width: 100%;
}
.recruit04_txt a{
    width: 100%;
    display: block;
    background: #f7f7f7;
    padding: 50px;
    margin-bottom: 20px;
    border-bottom: 2px var(--a_color) solid;
    text-decoration: none;
}
.recruit04_txt a:hover{
    background: #eeeeee;
}
.recruit04_txt a h3{
    font: 700 clamp(22px, 2vw,26px)  var(--font_ja);
    padding-bottom: 10px;
}
.recruit04_txt i{
    font-size: clamp(22px, 2vw,26px);
    padding-left: 40px;
    color: var(--a_color);
    transition: var(--tr);
}
.recruit04_txt a:hover i{
    transform: translateX(8px);
}
/*-------------------------------------
職種ページ
-------------------------------------*/
/*- 職種詳細01 -*/
.occupation01_wrap{
    position: relative;
}
.occupation01_wrap::before{
    content: "";
    width: calc(100% - (100% - var(--main_w2))/2);
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #f7f7f7;
}
.occupation01_inner{
    padding: var(--m_ps8) var(--m_ps3) var(--m_ps8) var(--m_ps8);
    position: relative;
    background-color: #f7f7f7;
}
.occupation_h2{
    position: relative;
    padding-bottom: 16px;
    border-bottom: #888888 2px solid;
}
.occupation_h2 p{
    color: var(--a_color);
    font: 600 calc(var(--h2_font)*1.35) / 1.2 var(--font_en);
    margin-right: 11px;
}
.occupation_h2 h2{
    position: relative;
    font: 800 var(--h2_font)  var(--font_ja);
}
.occupation_con{
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: var(--m_ps8);
    border: #f7f7f7 2px solid;
}
.occupation_con h3{
    font-size: var(--h3_font);
    color: #fff;
    background-color: var(--f_color);
    position: absolute;
    top: -20px;
    left: var(--m_ps8);
    display: block;
    padding: 4px 20px;
    border-radius: 4px;
}
.occupation_job{
    gap: 10px;
    flex-wrap: wrap;
}
.occupation_job li{
    display: block;
    color: var(--a_color);
    font: 700 var(--h4_font) var(--font_ja);
    text-align: center;
    width: 48.5%;
    padding: 20px 10px;
    border: var(--a_color) 1px solid;
}
.occupation_flow{
    flex-direction: column;
    gap: 10px;
    flex-wrap: wrap;
}
.occupation_flow li{
    display: block;
    color: var(--a_color);
    font: 700 var(--h4_font) var(--font_ja);
    width: 100%;
    padding: 20px 40px 20px 70px;
    border: var(--a_color) 1px solid;
    position: relative;
}
.occupation_flow li span{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 20px;
    top: 16px;
    color: #fff;
    width: 40px;
    height: 40px;
    background-color: var(--a_color);
    border-radius: 30px;
}
/*- 職種詳細02 -*/
.occupation02_wrap{
    position: relative;
}
.occupation02_wrap::before{
    content: "";
    width: calc(100% - (100% - var(--main_w2))/2);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f7f7f7;
}
.occupation02_inner{
    padding: var(--m_ps8) var(--m_ps8) var(--m_ps8) var(--m_ps3);
    position: relative;
    background-color: #f7f7f7;
}
.occupation_point p:first-child{
    font: 700 var(--h4_font) var(--font_ja);
    color: var(--a_color);
}
.occupation_point ul{
    gap: 10px;
    flex-wrap: wrap;
}
.occupation_point li{
    padding: 25px 0;
    border-radius: 20px;
    border: 2px #888888 solid;
    background-color: #fff;
    width: calc((100% - 50px)/6);
    font: 700 var(--h4_font) var(--font_ja);
    color: #555555;
    text-align: center;
}
.occupation_abroad li{
    position: relative;
    line-height: 1;
    margin-bottom: 10px;
}
.occupation_abroad li p{
    font: 500 18px var(--font_ja);
    line-height: 2;
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: start;
}
.occupation_abroad li p::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background-color: var(--a_color);
    margin-top: calc((1lh - 10px) / 2);
}
.occupation_abroad li small{
    font-size: 15px;
    line-height: 1.6;
    color: #888888;
}
/*- 募集要項 -*/
.occupation03_inner{
    padding: 0 var(--m_ps8);
}
.occupation03_h2 h2{
    font: 700 var(--h2_font) var(--font_ja);
    line-height: 3;
    color: var(--a_color);
    position: relative;
}
.occupation03_h2 h2::before{
    content: "Recruit Information";
    font: 400 clamp(60px, 10vw, 140px) "Caveat";
    line-height: 1;
    white-space: nowrap;
    color: #e7e7e7;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    z-index: -1;
}
.occupation03_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: 4px var(--a_color) solid;
    border-bottom: 4px var(--a_color) solid;
}
.occupation03_inner dt {
    width: 25%;
    padding: 35px 0;
    font: 700 17px var(--font_ja);
    position: relative;
    text-align: center;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ddd;
}
.occupation03_inner dd {
    padding: 35px;
    width: 75%;
    font-size: 16px;
    border-bottom: 1px solid #ddd;
}
.occupation03_inner dd > ul{
    margin-bottom: 16px;
}
.occupation03_inner dd > ul:last-of-type{
    margin-bottom: 0;
}
.dot_list li,.dot_txt{
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px;
    align-items: start;
}
.dot_list li::before,.dot_txt::before{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #444444;
    margin-top: calc((1lh - 6px) / 2);
}
.occupation03_inner .common_btn a{
    margin-top: 30px;
    letter-spacing: 0.05em;
}
/*-------------------------------------
会社概要ページ
-------------------------------------*/
.company_wrap {
    background-color: #fff;
}
.company_inner dl {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.company_inner dt:first-of-type,
.company_inner dd:first-of-type{
    border-top: 1px solid #ddd;
}
.company_inner dt {
    float: left;
    width: 30%;
    padding: 30px 0;
    border-bottom: 1px solid #ddd;
    font: 700 17px var(--font_ja);
    color: var(--m_color);
    padding-left: 18px;
    position: relative;
    vertical-align: middle;
}
.company_inner dt::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 5px;
    position: absolute;
    top: 37px;
    left: 0;
    background-color: var(--a_color);
}
.company_inner dd {
    float: left;
    padding: 23px 0;
    margin-left: 3%;
    width: 67%;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
}
.company_googlemap iframe {
    width: 100%;
    aspect-ratio: 16/8;
    border: none;
}
/*-------------------------------------
ブログ
-------------------------------------*/
.blog_wrap{
    background-color: #fff;
}
.blog_inner {
    gap: var(--m_ps8);
}
.blog_archive,
.single_inner{
    flex: 1;
}
.my_result_count {
    margin: 0 0 20px;
}
.blog_archive ul:not(.post-categories) {
    display: flex;
    gap: var(--m_ps3);
    flex-flow: column;
}
.blog_archive li {
}
.blog_con {
    display: flex;
    gap: min(var(--m_ps3), 5vw);
    align-items: flex-start;
}
.blog_photo {
    width: 40%;
    aspect-ratio: 3/2;
    height: auto;
}
.blog_photo a {
    width: 100%;
    height: 100%;
    display: block;
}
.blog_photo img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 10px;
}
.blog_clock time{
    color: #747474;
}
.blog_text {
    flex: 1;
}
.blog_title {
    text-align: left;
    line-height: 1;
}
.blog_title a {
    font: 700 18px var(--font_ja);
    color: var(--f_color);
    text-decoration: none;
}
.blog_text .tags {
    margin-bottom: 10px;
}
.post-categories li {
    line-height: 1;
}
.blog_clock time {
}
.post-categories {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}
.post-categories li a {
    background: var(--m_color);
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    border-radius: 20px;
}
.post-categories li a:hover {
    background: #b1b1b1;
}
.post-categories li a:before {
    content: "#";
    /* font: 100%/1 "font awesome 6 free"; */
    color: #fff;
    display: inline-block;
    margin: 0 2px 0 0;
    transition: var(--tr);
}
.share_sns_container {
    margin: 0 0 0 auto;
}
.share_sns_container li :before {
    font-size: 1.875rem;

    display: block;
    margin: 0 10px 0 0;
}
.share_sns_container li:nth-of-type(1) :before {
    color: var(--f_color);
}
.share_sns_container li:nth-of-type(2) :before {
    color: var(--f_color);
}
.share_sns_container li:nth-of-type(3) :before {
    color: var(--f_color);
}
.article_top {
    align-items: center;
    margin-bottom: 30px;
    margin-top: 10px;
}

/*記事内装飾*/
.article_main h2 {
    margin: 30px 0 20px 0;
    background: #707070;
    padding: 10px 20px;
    font-size: 25px;
    color: #ffffff;
    text-align: left;
    border-radius: 4px;
}
.article_main h3 {
    margin: 30px 0 20px 0;
    font-weight: bold;
    font-size: 1.4375rem;
    border-bottom: 1px solid var(--m_color);
    padding: 0 0 5px;
}
.article_main h3:after {
    content: none;
}
.article_main h3:before {
    content: none;
}
.article_main h4 {
    margin: 30px 0 20px 0;

    font-weight: bold;
    font-size: 1.25rem;
}
.article_main h5 {
    margin: 30px 0 20px 0;
    font-weight: bold;
}
.box2,
.box1,
.box4,
.txt_solid_bl,
.txt_solid_rd,
.txt_dot_bk,
.txt_dot_gr,
.txt_dot_pk {
    display: inline-block;
}
.box5 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box5:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffdd40;
}
.box6 {
    position: relative;
    display: inline-block;
    margin: 1.5em 0;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    color: #555;
    font-size: 16px;
    background: #ffdd40;
}
.box6:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-bottom: 15px solid #ffdd40;
}
.text_anime01 {
    -webkit-animation: blink 0.5s ease-in-out infinite alternate;
    -moz-animation: blink 0.5s ease-in-out infinite alternate;
    animation: blink 0.5s ease-in-out infinite alternate;
}
@-webkit-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@-moz-keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes blink {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.article_main .post_thumbnail_container img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
}
.article_main img {
    display: block;
    margin: 0 auto 30px;
    height: auto;
    max-width: 100%;
    height: auto;
    display: block;
    width: revert-layer;
    border-radius: 10px;
}
.article_main .wp-caption {
    width: min(310px, 100%) !important;
}
.article_main .wp-caption img {
    margin-bottom: 15px;
}
.article_main a {
}
.article_main p {
    margin: 0 0 25px;
    line-height: 1.8;
}
.article_main strong {
    background: linear-gradient(transparent 60%, #ffff8d 60%);
    font-weight: bold;
}
.article_main table {
    margin: 0 0 25px;
    border-top: 1px solid var(--b_color);
    border-right: 1px solid var(--b_color);
}
.article_main table th {
    background: #f1f1f1;
    font-weight: bold;
    border-left: 1px solid var(--b_color);
    border-bottom: 1px solid var(--b_color);
    padding: 10px 20px;
}
.article_main table td {
    border-left: 1px solid var(--b_color);
    padding: 10px 20px;
    border-bottom: 1px solid var(--b_color);
    font-size: 15px;
}
.article_main ul {
    padding: 20px 20px 20px 30px;
    border-top: solid 1px #ddd;
    border-bottom: solid 1px #ddd;
    margin: 0 0 30px;
}
.article_main ul li {
    position: relative;
    padding: 0.5em 0.5em 0.5em 30px;
    line-height: 1.5em;
}
.article_main ul li:before {
    position: absolute;
    content: "";
    display: inline-block;
    background: #333;
    border-radius: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    line-height: 25px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.article_main ol {
    border: solid 1px #f9f9f4;
    padding: 20px 20px 20px 50px;
    position: relative;
    background: #fafafa;
    margin: 0 0 30px;
}
.article_main ol li {
    line-height: 1.5;
    padding: 0.5em 0;
    list-style-type: none !important;
    position: relative;
}
.article_main ol li:before {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    position: absolute;
    font-weight: bold;
    left: -18px;
    color: gray;
}
.article_main dl {
}
.article_main dt {
    background: #f1f1f1;
    padding: 10px;
    margin: 0 0 10px;
}
.article_main dd {
    border-left: 1px solid #333;
    padding: 0 0 0 10px;
    margin: 0 0 25px;
    line-height: 1.8;
}
/*シングル　ページネーション*/
.single_pagenavi {
    justify-content: space-between;
}
.single_pagenavi.has-pagination {
    margin-top: var(--m_ps8);
}
.single_pagenavi .next {
}
.single_pagenavi .prev a,
.single_pagenavi .next a {
    background: var(--m_color);
    display: block;
    padding: 10px 30px;
    color: #fff;
    text-decoration: none;
}
.single_pagenavi :before {
    color: #fff;
}
.single_pagenavi .prev a:hover,
.single_pagenavi .next a:hover {
    background: #999;
}
/*目次*/
.outline {
    border: 1px solid #ddd;
    padding: 30px;
    margin: 10px 0 30px;
    display: inline-block;
    font-size: 0.875rem;
    max-width: 800px;
    width: 100%;
    line-height: 1.5em;
}
.outline__title {
    font-size: 1rem;
    font-weight: bold;
}
.outline__toggle {
    display: none;
}
.outline__switch::before {
    content: "開く";
    cursor: pointer;
    background: #fff;
    border: solid 1px #eee;
    padding: 5px 10px;
    font-size: 0.8rem;
    margin-left: 5px;
    border-radius: 5px;
}
.outline__toggle:checked + .outline__switch::before {
    content: "閉じる";
}
.outline__switch + .outline__list {
    overflow: hidden;
    width: 0;
    height: 0;
    margin: -20px 0;
    transition: var(--tr);
    border: none;
    padding: 0;
}
.outline__toggle:checked + .outline__switch + .outline__list {
    width: auto;
    height: auto;
    margin: 20px 0 0;
    transition: var(--tr);
    border-top: solid 1px #ddd;
    padding: 17px 20px 0;
    border-bottom: none;
    background: none;
}
ul.outline__list li {
    border: none;
    margin: 0 0 0;
    padding: 0.5em 0.5em 0.5em 15px;
}
ul.outline__list li:before {
    content: "-";
    width: 0;
    height: 0;
    line-height: 1.6;
    top: 6px;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
}
ul.outline__list ul {
    border: none !important;
    margin: 0 !important;
    padding: 0 0 0 1em !important;
    background: none !important;
}
.outline__link {
    position: relative;
    color: #191919 !important;
}
span.outline__number {
    display: none;
}
label.outline__switch {
    position: relative;
    float: right;
}
.outline ul {
    -webkit-padding-start: 1.2em;
}
/*-------------------------------------
サイドバー
-------------------------------------*/
.side_wrap {
    width: 25%;
    max-width: 260px;
    display: flex;
    flex-flow: column;
    gap: var(--m_ps3);
}
.side_wrap .widget {
    padding: 30px;
    border-radius: 20px;
    border: 2px #f1f1f1 solid;
}
.widget_title div {
    color: #383838;
    letter-spacing: 0.05em;
    padding-bottom: 20px;
    font: 900 18px var(--font_ja);
}
.side_wrap li {
    position: relative;
    transition: var(--tr);
}
.side_wrap li:hover {
    opacity: 0.7;
}
.side_wrap li a {
    font-size: 16px;
    text-decoration: none;
    color: var(--m_color);
}
.side_wrap li a > div:nth-child(1) {
    width: 70px;
    height: auto;
    aspect-ratio: 3/2;
}
.side_wrap li a > div:nth-child(1) img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.side_wrap li a > div:nth-child(2) {
    flex: 1;
    display: flex;
    flex-flow: column;
    gap: 5px;
}

.side_wrap .widget ul {
    display: flex;
    flex-flow: column;
    gap: 8px;
}
.widget_my_widget_recent_posts li a {
    gap: 10px;
    align-items: flex-start;
}
.widget_my_widget_recent_posts .news_clock {
    gap: 3px;
}
.widget_my_widget_recent_posts .news_clock * {
    line-height: 1;
}
/*検索窓*/
.widget_search {
    position: relative;
}
.widget_search input {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: transparent;
    background-image: none;
    border: 1px solid rgba(0, 0, 0, 0.16);
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    padding: 0.4em 0.8em;
    outline: 0;
}
.widget_search input[type="text"] {
    width: 100%;
}
.widget_search input[type="submit"] {
    border: none;
    cursor: pointer;
    position: absolute;
    top: 5px;
    right: 0;
    font-weight: bold;
    font-family: "font awesome 6 free";
}
/*最近の投稿*/
.widget_my_recent_posts img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
    height: auto;
}
.widget_my_recent_posts time {
    font-size: 0.6875rem;
    margin-bottom: 5px;
}
/*カテゴリーとアーカイブ*/
.widget_archive li a,
.widget_categories li a {
    display: block;
    /* padding: 0 0 0 15px; */
}
/* .widget_archive li:before,
.widget_categories li:before {
    content: "-";
    margin: 0 5px 0 0;
    position: absolute;
    left: 0;
    top: -4px;
    color: var(--m_color);
} */
/*アーカイブ　ページネーション*/
.wp-pagenavi {
    margin-top: var(--m_ps5);
    gap: 10px;
}
.wp-pagenavi .page-numbers {
    padding: 10px 20px;
    background: #e5e5e5;
    color: var(--f_color);
    text-decoration: none;
    display: block;
    font-family: var(--font_en);
    font-weight: bold;
}
.wp-pagenavi .current {
    background: var(--m_color);
    color: #fff;
}
.wp-pagenavi .page-numbers:hover {
    opacity: 0.8;
}
/*-------------------------------------
お問い合わせ
-------------------------------------*/
.contact_inner p{
    font-size: 16px;
}
.contact_h2 > div{
    width: 74px;
    aspect-ratio: 1/1;
    border-radius: 40px;
    background-color: var(--a_color);
    margin-right: 16px;
}
.contact_h2 i{
    color: #fff;
    font-size: 24px;
    margin-right: -24px;
}
.contact_h2 h2{
    font: 800 clamp(22px, 2.4vw,26px) var(--font_ja);
}
.contact_info,.contact02_info{
    background: #f7f7f7;
    padding: 40px 60px;
    text-decoration: none;
}
.contact_info .contact_info_tel {
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.05em;
    font: 700 clamp(27px, 5vw, 45px) var(--font_en);
    color: var(--f_color);
}
.contact_info .contact_info_tel span{
    font: 700 clamp(22px, 4vw, 32px) var(--font_en);
}
.contact_info p{
    color: #535353;
    margin-top: 12px;
    margin-left: 30px;
}
/*お問い合わせフォーム内*/
.wpcf7 {
}
.wpcf7-list-item-label {
    /* margin-left: 5px; */
}
.wpcf7-form_form table {
    border-top: 1px solid #ddd;
}
.wpcf7-form_form table{
    width: 100%;
}
.wpcf7_left {
    min-width: 260px;
    width: 25%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    text-align: start;
}
.wpcf7_left legend {
    display: inline-block;
    width: fit-content;
}
.title-contactform7{
    font: 700 16.5px var(--font_ja);
    line-height: 1;
}
form.wpcf7-form .required:before {
    content: "必須";
    width: auto;
    display: inline-block;
    background: #e74c3c;
    padding: 5px 8px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    margin-bottom: 4px;
    vertical-align: middle;
    line-height: 0.8;
}
form.wpcf7-form .required2:before {
    content: "任意";
    width: auto;
    display: inline-block;
    background: #999;
    padding: 5px 8px;
    font-weight: normal;
    font-size: 10px;
    color: #fff;
    margin-right: 5px;
    margin-bottom: 4px;
    vertical-align: middle;
    line-height: 0.8;
}
.wpcf7_right {
    width: 75%;
    padding: 25px 15px;
    border-bottom: 1px solid #ddd;
    border-left: none;
    /* border-bottom: 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;
    margin: 6px 0 !important;
}
.wpcf7-list-item_first_input input {
    width: auto !important;
}
span.wpcf7-list-item input {
    width: auto !important;
}

input[type="radio"],
input[type="checkbox"] {
    display: inline-block;
    position: relative;
    top: -1px;
    width: 1.43rem;
    height: 1.43rem;
    margin-right: 0.72rem;
    padding: 0;
    border: 2px solid #e7e7e7;
    vertical-align: middle;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type="checkbox"]::after,
input[type="radio"]::after {
    top: 4px;
    left: 4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--f_color);
    transition: var(--tr);
    content: "";
    display: block;
    position: absolute;
    opacity: 0;
}
input[type="radio"]:checked::after,
input[type="checkbox"]:checked::after {
    opacity: 1;
}
span.wpcf7-list-item input[type="checkbox"]::after {
    top: 7px;
    left: 7px;
}

.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;
    /* border-radius: 3px; */
    padding: 8px 12px;
    width: 100%;
    font-size: 100%;
    background: #ffffff;
    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 {
    color: #ddd;
}
input::-moz-input-placeholder {
    color: #ddd;
}
input::-ms-input-placeholder {
    color: #ddd;
}
textarea::placeholder {
    color: #ddd;
}
textarea::-ms-placeholder {
    color: #ddd;
}
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-weight: 600;
    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: #fff;
    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);
    border-radius: 100px;
}
.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: var(--m_color);
}

/*プライバシーポリシー*/
.readme {
    width: 100%;
    height: 300px;
    margin: 50px 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%;
    margin-bottom: 50px;
}
#wpcf7cpcnf table th {
    border-bottom: 1px solid #ccc;
    color: #202020;
    text-align: left;
    width: 35%;
    padding: 20px 20px;
}
#wpcf7cpcnf table th p {
    font-weight: 700;
    color: #202020;
}
#wpcf7cpcnf table td {
    border-bottom: 1px solid #ccc;
    width: 65%;
    padding: 20px 15px;
}
.wpcf7cp-btns {
    text-align: center;
}
div.wpcf7cp-btns{
    justify-content: center;
}
.wpcf7cp-btns button {
    padding: 15px 40px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 100px;
}
.wpcf7cp-cfm-edit-btn {
    background: #ddd;
    color: #202020;
    border: none;
}
.wpcf7cp-cfm-submit-btn {
    background: var(--a_color);
    color: #fff;
    border: none;
}

/*recaptcha*/
.grecaptcha-badge {
    bottom: 90px !important;
    z-index: 5;
    /* display: none; */
}

/*送信完了画面*/
.thanks_tel {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}
.thanks_tel a {
    font: clamp(27px, 4vw, 60px) var(--font_en);
    text-decoration: none;
    color: var(--f_color);
}
.thanks_tel a i {
    font-size: clamp(23px, 4vw, 45px);
    margin-right: 10px;
}

/*-------------------------------------
フッター部分
-------------------------------------*/
/* フッター */
.footer {
    position: relative;
    z-index: 0;
    background-color: #fff;
}
.footer_inner {
    justify-content: space-between;
    padding: var(--m_ps8) 0;
    gap: 60px;
}
.footer_left {
    letter-spacing: 0.05em;
    flex: 1;
}
.footer_left .site_ttl {
    padding: 0 0 30px 0;
    position: static;
    background: none;
    width: min(300px, 80%);
}
.footer_left .site_ttl a {
    margin: 0 auto;
}
.footer_right{
    justify-content: end;
    align-items: start;
    gap: 0 30px;
}
/*アドレス*/
.address_container p{
    color: #6e6e6e;
    font: 500 14px var(--font_ja);
    line-height: 2;
}
/* ナビゲーション */
.footer_nav{
    gap: 0 30px;
}
.footer_nav02 {
    flex-direction: column;
}
.footer_nav a,.footer_nav p,.footer_nav02 a {
    color: var(--f_color);
    text-decoration: none;
    font: 700 15px var(--font_ja);
    white-space: nowrap;
    position: relative;
    width: 220px;
    display: block;
    padding: 20px 0;
    border-bottom: 1px #eeeeee solid;
    transition: var(--tr);
}
.footer_nav p i{
    margin-left: 6px;
}
.footer_nav .f_nav_h,.footer_nav02 .f_nav_h{
    padding-left: 20px;
}
.footer_nav .f_nav_h,
.footer_nav02 .f_nav_h{
    position: relative;
}
.footer_nav .f_nav_h::before,
.footer_nav02 .f_nav_h::before{
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--a_color);
    position: absolute;
    top: 26px;
    left: 0;
}
.footer_nav a:hover,.footer_nav02 a:hover{
    border-bottom: 1px #a1a1a1 solid;
}
.footer_nav_in_li li a{
    color: #474747;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}
/* .footer_nav_in_li li a::before{
    content: "";
    width: 6px;
    height: 2px;
    background-color: #acacac;
    position: absolute;
    top: 50%;
    left: 5px;
} */
.footer_nav_in_li .occupation a{
        padding-left: 35px;
        position: relative;
}
.footer_nav_in_li .occupation a::before{
    content: "";
    width: 8px;
    height: 2px;
    background-color: #e0e0e0;
    position: absolute;
    top: 50%;
    left: 20px;
}
/*コピーライト*/
.copyright {
    width: 100%;
    text-align: center;
    font-size: 14px;
    background-color: #eeeeee;
    padding: 20px;
}
.copyright p {
    font-weight: 600;
    text-align: center;
}
/* topに戻る */
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 6;
}
#page-top a {
    display: block;
    position: relative;
    padding: 10px 12px;
    background: var(--m_color);
    width: 50px;
    height: 50px;
}
#page-top a::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
    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: 1280px) {
    /*TOP 1コンテンツ目*/
    .top_con01_inner{
        padding: 0;
    }
    .top_con01_img_l_01{
        height: 260px;
    }
    /* 採用情報 */
    .recruit01_inner,.recruit02_inner,
    .recruit03_inner{
        gap: 5%;
    }
    /* フッター */
    .footer_nav{
        flex-direction: column;
    }
}
@media only screen and (min-width: 1081px) {
    .pc_only_none {
        display: none;
    }
}
@media only screen and (max-width: 1080px) {
    .pc_only {
        display: none !important;
    }
    .pc_only_none {
        display: block;
    }
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --main_mp: 140px;
        --sub_mp:90px;
        --m_ps3: 20px;
        --m_ps5: 30px;
        --m_ps8: 50px;
    }
    /***** ハンバーガーメニュー *****/
    .scroll-prevent {
        overflow: hidden;
    }
    /************/
    .menu-trigger {
        display: inline-block;
        width: 30px;
        height: auto;
        vertical-align: middle;
        cursor: pointer;
        position: fixed;
        top: 35px;
        right: 30px;
        z-index: 100;
        aspect-ratio: 2/1.5;
        transition: var(--tr);
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 20px;
    }
    .menu-trigger span {
        display: inline-block;
        box-sizing: border-box;
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #555555;
        transition: var(--tr);
        border-radius: 1px;
    }
    .menu-trigger.active span {
        background-color: var(--f_color) !important;
    }
    .menu-trigger span:nth-of-type(1) {
        top: 0;
        width: 30%;
    }
    .menu-trigger.active span:nth-of-type(1) {
        transform: translateY(10px) rotate(-45deg);
        width: 30px;
    }
    .menu-trigger span:nth-of-type(2) {
        top: 49%;
        width: 60%;
    }
    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }
    .menu-trigger span:nth-of-type(3) {
        bottom: 0;
    }
    .menu-trigger.active span:nth-of-type(3) {
        transform: translateY(-11px) rotate(45deg);
    }
    /* ハンバーガー内 */
    .sp_h_nav_inner{
        width: 100%;
        height: 100%;
        background: #ffffff;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 8;
        opacity: 0;
        visibility: hidden;
        transition: var(--tr);
        overflow-y: auto;
        padding: var(--m_ps8);
        transition: var(--tr);
    }
    nav.open .sp_h_nav_inner {
        opacity: 1;
        visibility: visible;
    }
    .sp_h_nav_inner > div:first-child{
        gap: 40px;
    }
    .sp_h_nav_list{
        width: 50%;
        height: auto;
        text-align: start;
    }
    .sp_h_nav_list > li{
        padding-bottom: 10px;
        border-bottom: 1px #e6e6e6 solid;
        margin-bottom: 6px;
    }
    .sp_h_nav_list > li > a {
        text-align: start;
        position: relative;
        display: block;
        text-decoration: none;
        color: var(--m_color);
        padding: 10px;
        font: 700 16px var(--font_ja);
        letter-spacing: 0.05em;
        line-height: 1;
    }
    .nav_en{
        display: block;
        font: 500 clamp(44px, 5vw, 56px) "Caveat";
        line-height: 1;
        margin-left: -4px;
    }
    .sp_h_nav_list a i{
        position: absolute;
        right: 10px;
        bottom: 10px;
        font-size: 14px;
        color: var(--a_color);
    }
    .sp_h_nav_list_in a {
        display: block;
        width: 100%;
        position: relative;
        text-decoration: none;
        font: 700 16px var(--font_ja);
        padding: 8px 20px;
        color: #535353;
    }
    .sp_h_nav_list_in .occupation a{
        padding-left: 35px;
        position: relative;
    }
    .sp_h_nav_list_in .occupation a::before{
        content: "";
        width: 8px;
        height: 2px;
        background-color: #e0e0e0;
        position: absolute;
        top: 50%;
        left: 20px;
    }
    .sp_h_nav_list_in a i{
        bottom: 10px;
    }
    .sp_h_nav_list a:hover{
        opacity: 0.8;
    }
    /* ハンバーガー内 お問い合わせ*/
    .sp_h_nav_btn{
        width: 100%;
        height: auto;
        gap: 20px;
        margin-top: 40px;
    }
    .sp_h_nav_tel,.sp_h_nav_mail{
        width: 50%;
    }
    .sp_h_nav_tel a,
    .sp_h_nav_mail a {
        width: 100%;
        height: 120px;
        text-decoration: none;
        display: block;
        letter-spacing: 0.05vw;
        border-radius: 16px;
        display: block;
        text-align: center;
    }
    .sp_h_nav_tel a{
        font: 600 clamp(22px,3.5vw,42px) / 1 var(--font_en);
        color: #fff;
        background: linear-gradient(180deg, #18b4b9cb 0%, #1268afc7 100%),url(/wp-content/themes/grace-cm/img/top01_woman_r.jpg);
        background-position: center 30%;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 35px 30px;
    }
    .sp_h_nav_mail a {
        font: 700 clamp(20px,2.6vw,26px) / 1 var(--font_ja);
        color: #fff;
        background: linear-gradient(180deg, #18b4b9cb 0%, #1268afc7 100%),url(/wp-content/themes/grace-cm/img/top01_woman_l.jpg);
        background-position: center 30%;
        background-size: cover;
        background-repeat: no-repeat;
        padding: 50px 30px;
    }
    .sp_h_nav_tel i,.sp_h_nav_mail i{
        font-size: 20px;
        color: #fff;
        font-size: 0.8em;
        padding-right: 10px;
    }
    .sp_h_nav_tel a:hover,
    .sp_h_nav_mail a:hover{
        opacity: 0.8;
    }
    .sp_h_nav_tel p{
        color: #fff;
    }
    /*ハンバーガーメニューここまで*/
    /***************************/
    /*ファーストビュー*/
    .h_img_wrap{
        aspect-ratio: 16/12;
    }
    .h_img_txt{
        width: 50%;
        left: var(--m_ps5);
        bottom: calc((100% - ((100vw / 16) * 9 + 100px)) / 2);
    }
    .slick-img{
        height: calc((100vw / 16) * 9);
    }
    /*TOP 1コンテンツ目*/
    .top01_h2_img{
        width: 90%;
    }
    .top_con01_txt {
        width: 28em;
        padding-top: calc((33em / 9) * 2);
    }
    .top_con01_txt::before{
        width: 120%;
        left: -5%;
    }
    /*TOP 2.3コンテンツ目*/
    .top_con02_txt,.top_con03_txt{
        padding-bottom: 0;
    }
    /*精密機器物流・組立事業ページ*/
    .logistics_img,.logistics05_inner{
        height: 440px;
    }
    .logistics_item{
        width: calc((100% - 30px)/2);
        padding: 30px 0;
    }
    /*採用情報ページ*/
    .recruit01_txt{
        width: 25em;
    }
    .recruit03_txt{
        width: 26em;
    }
    /*職種ページ*/
    .occupation_point li{
        width: calc((100% - 20px)/3);
    }
    .occupation03_inner dt{
        width: 30%;
    }
    .occupation03_inner dd{
        width: 70%;
    }
    /*お問い合わせ*/
    .contact_info{
        flex-direction: column;
        align-items: start;
    }
    .contact_info p{
        margin-top: 4px;
        margin-left: 0;
    }
    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_nav02 .f_nav_h{
        width: 160px;
    }

}
@media only screen and (min-width: 841px) {
    .pc_none {
        display: none;
    }
}
@media only screen and (max-width: 840px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --h1_font: clamp(24px, 4vw, 30px);
        --h2_font: clamp(24px, 5.2vw, 30px);
        --main_w3: min(1600px, calc(100% - var(--m_ps8)));
        --main_mp: 120px;
        --sub_mp: 70px;
    }
    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner{
        flex-direction: column;
        gap: 24px;
    }
    .common_cta_phone,.common_cta_mail{
        width: 100%;
    }
    .common_cta_mail .common_cta_mail_btn{
        padding: 16px 16px 16px 30px;
    }
    .common_cta_mail .common_cta_mail_btn,
    .common_cta_mail .common_cta_mail_btn i{
        font-size: 18px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_none {
        display: none !important;
    }
    .pc_none {
        display: block;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .h_nav_wrap {
        background: none;
        padding: 30px 30px;
    }
    .h_nav_wrap.is-fixed {
        padding: 20px 30px;
    }
    body:not(.home) .h_img_wrap {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    /***** ハンバーガーメニュー *****/
    .sp_h_nav_btn{
        flex-direction: column;
    }
    .sp_h_nav_tel,.sp_h_nav_mail{
        width: 100%;
    }
    /*ファーストビュー*/
    .h_img_wrap{
        aspect-ratio: 16/14;
    }
    .h_img_txt{
        width: 60%;
        max-width: 420px;
        bottom: calc((100% - ((100vw / 16) * 10 + 90px)) / 2);
    }
    .slick-img{
        height: calc((100vw / 16) * 10);
    }
    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap {
        width: 100%;
    }
    .new_inner {
        flex-direction: column;
        gap: var(--m_ps3);
    }
    .new_inner:before {
        font-size: 120px;
        margin-right: 20px;
    }
    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_inner{
        flex-direction: column;
        justify-content: center;
    }
    .top_con01_img_l{
        padding-right: 10%;
    }
    .top_con01_img_l_01{
        width: 40%;
        height: 220px;
        margin-top: -180px;
    }
    .top_con01_img_l_02{
        width: 70%;
        height: 320px;
    }
    .top_con01_img_r{
        padding-left: 15%;
        align-items: end;
    }
    .img_wrap_r{
        justify-content: start;
    }
    .top_con01_img_r_01{
        width: 50%;
        height: 200px;
    }
    .top_con01_img_r_02{
        height: 280px;
        margin-top: -150px;
        transform: scale(-1,1);
    }
    .top_con01_txt{
        width: 100%;
        padding-top: 160px;
        padding-right: calc((100% - 20em)/3);
        padding-left: calc((100% - 20em)/3*2);
        padding-bottom: var(--sub_mp);
        margin: 0 auto;
    }
    .top_con01_txt::before{
        width: 90%;
        max-width: 500px;
        top: var(--m_ps5);
        left: 0;
        right: 0;
        margin: auto;
    }
    .top01_h2_en{
        font-size: clamp(54px, 12vw, 80px);
    }
    /*-------------------------------------
    TOP 2.3コンテンツ目
    -------------------------------------*/
    .top_con02_inner,.top_con03_inner{
        flex-direction: column;
    }
    .top_con02_wrap::before,.top_con03_wrap::before{
        height: 90%;
    }
    .top_con02_img,.top_con03_img{
        width: 100%;
        height: 440px;
    }
    .top_con02_txt,.top_con03_txt{
        width: 100%;
    }
    /*-トップ見出し-*/
    .top_h2{
        padding-top: calc(clamp(54px, 10vw, 70px) + 60px);
    }
    .top01_h2_en{
        font-size: clamp(54px, 10vw, 70px);
    }
    .top_h2 h2{
        font-size: clamp(24px, 5.2vw, 30px);
    }
    /*---------*/
    .top_con02_txt .top01_h2_en,
    .top_con03_txt .top01_h2_en{
        left: -10px;
    }
    /*-------------------------------------
    国際人材事業ページ
    -------------------------------------*/
    .global_inner{
        flex-direction: column;
        gap: var(--m_ps8);
    }
    .global_inner02{
        flex-direction: column-reverse;
        gap: var(--m_ps8);
    }
    .global_img{
        width: 100%;
    }
    /*-------------------------------------
    精密機器物流・組立事業ページ
    -------------------------------------*/
    .logistics_con{
        gap: 20px;
    }
    .logistics_item{
        width: calc((100% - 20px)/2);
        padding: 30px 0;
    }
    .logistics_item:last-child{
        width: 60%;
    }
    .logistics03_inner{
        flex-direction: column;
        gap: var(--m_ps8);
    }
    .logistics04_inner{
        flex-direction: column-reverse;
        gap: var(--m_ps8);
    }
    .logistics_img{
        width: 100%;
        height: 380px;
    }
    .logistics04_wrap{
        margin-bottom: 0;
    }
    /*-------------------------------------
    採用情報ページ
    -------------------------------------*/
    /* コンテンツ1*/
    .recruit01_inner{
        gap: 0;
        flex-direction: column-reverse;
    }
    .recruit01_txt{
        width: 100%;
        gap: 40px;
        flex-direction: row;
    }
    .recruit_h2 h2{
        font-size: clamp(26px, 5vw,32px);
    }
    .recruit01_txt p{
        width: 25em;
    }
    .recruit01_img_s{
        flex: 1;
        height: 80%;
    }
    .recruit01_img{
        margin-bottom: 50px;
    }
    .recruit01_img, .recruit01_img img{
        height: 340px;
    }
    /* コンテンツ2*/
    .recruit02_inner{
        flex-direction: column;
    }
    .recruit02_img{
        width: 100%;
        height: 300px;
        margin-bottom: 50px;
    }
    .recruit02_img img{
        height: 340px;
    }
    .recruit02_txt{
        width: 100%;
        padding-left: var(--m_ps8);
    }
    .recruit02_h3{
        margin-bottom: 20px;
    }
    .recruit02_h3 h3{
        font-size: clamp(22px, 4.6vw,30px)
    }
    /* コンテンツ3*/
    .recruit03_inner{
        flex-direction: column;
        width: 100%;
    }
    .recruit03_txt{
        width: 100%;
    }
    .recruit03_img{
        margin-bottom: 50px;
    }
    .recruit03_img,.recruit03_img img{
        width: 100%;
        height: 340px;
    }
    /*-------------------------------------
    職種ページ
    -------------------------------------*/
    .occupation01_inner{
        padding-right: 0;
    }
    .occupation_con{
        margin: 0 -10px;
        padding-right: 30px;
        padding-left: 30px;
    }
    .occupation_con h3{
        left: 30px;
    }
    .occupation_job li{
        width: 100%;
    }
    .occupation02_inner{
        padding-left: 0;
    }
    .occupation03_inner{
        padding: 0;
    }
    /*-------------------------------------
    会社概要
    -------------------------------------*/
    .company_googlemap iframe{
        aspect-ratio: 16/9;
    }
    /*-------------------------------------
    ブログ
    -------------------------------------*/
    .blog_inner{
        flex-direction: column-reverse;
    }
    .blog_photo{
        width: 50%;
    }
    .blog_text{
        width: 50%;
    }
    .side_wrap{
        width: 100%;
        max-width: 100%;
    }
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .wpcf7_container div.flex,
    .wpcf7-form_form .flex {
        display: block;
    }
    .wpcf7_left{
        width: 100%;
        display: block;
        padding: 25px 0;
        border-bottom: 0;
    }
    .wpcf7_right{
        width: 100%;
        padding: 0 0 25px 0;
        display: block;
    }
    #wpcf7cpcnf table th{
        width: 45%;
        padding: 20px 20px 20px 0;
    }
    #wpcf7cpcnf table td{
        width: 55%;
    }
    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner{
        flex-direction: column;
        width: 100%;
        gap: 20px;
    }
    .footer_right{
        justify-content: start;
        width: 100%;
    }
    .footer_nav,.footer_nav02{
        width: 50%;
    }
    .footer_nav a,.footer_nav .f_nav_h,.footer_nav02 .f_nav_h{
        width: 100%;
    }
    /* .footer_nav_out_li{
        flex-direction: column;
        gap: 8px;
    }
    .footer_left .site_ttl{
        padding-bottom: 10px;
    } */
}
@media only screen and (min-width: 551px) {
    .sp_only{
        display: none;
    }
}
@media only screen and (max-width: 550px) {
    /*-------------------------------------
    定義
    -------------------------------------*/
    :root {
        --h1_font: clamp(20px, 6vw,28px);
        --h2_font: clamp(22px, 6.2vw,32px);
        --main_ws: min(1080px, calc(100% - (24px * 2)));
        --main_w: min(1280px, calc(100% - (24px * 2)));
        --main_w2: min(1440px, calc(100% - (24px * 2)));
        --main_w3: min(1600px, calc(100% - 24px));
        --main_w4: min(1760px, calc(100% - 30px));
        --main_mp: 80px;
        --sub_mp:60px;
    }
    /*-------------------------------------
    共通パーツ
    -------------------------------------*/
    .sp_only{
        display: block!important;
    }
    /*スクロールヒント*/
    .js-scrollable {
        overflow: auto;
        white-space: nowrap;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .js-scrollable::-webkit-scrollbar {
        display: none;
    }
    .scroll-hint-icon {
        height: 66px;
        top: 10px;
        width: 66px;
        left: auto;
        right: 10px;
        background: #004bb1;
        background: -moz-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: -webkit-linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        background: linear-gradient(45deg, #004bb1 0%, #0062c4 25%, #007bd7 45%, #0098ec 65%, #00beff 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#004bb1', endColorstr='#00beff', GradientType=1);
        background: #2c3e57;
    }
    .scroll-hint-icon:before {
        width: 25px;
        height: 30px;
    }
    .scroll-hint-icon:after {
        width: 30px;
        height: 10px;
        background-size: contain;
    }
    .scroll-hint-text {
        font-size: 13px;
        white-space: normal;
        margin-top: 0;
    }
    /*ボタン*/
    .common_btn a{
        padding: 16px 10px 16px 26px;
        letter-spacing: 0.05em;
    }
    .common_btn a i{
        margin-left: 10px;
    }
    /*-------------------------------------
    CTA
    -------------------------------------*/
    .common_cta_inner{
        flex-direction: column;
    }
    .common_cta_phone,.common_cta_mail{
        width: 100%;
    }
    /*-------------------------------------
    header
    -------------------------------------*/
    .header {
        padding-top: 0;
    }
    .h_nav_wrap {
        padding: 10px 20px;
    }
    .h_nav_wrap.is-fixed {
        padding: 10px 20px;
    }
    .site_ttl {
        width: 140px;
    }
    .site_ttl a {
        color: #fff;
    }
    /***** ハンバーガーメニュー *****/
    .menu-trigger{
        top: 19px;
    }
    .h_nav_wrap.is-fixed .menu-trigger {
        top: 19px;
    }
    .sp_h_nav_inner{
        padding: 30px;
    }
    .sp_h_nav_inner > div:first-child{
        flex-direction: column;
        gap: 0;
    }
    .sp_h_nav_list{
        width: 100%;
    }
    .nav_en{
        font-size: clamp(22px, 10.2vw, 42px);
    }
    .sp_h_nav_tel a{
        padding: 35px 10px;
    }
    .sp_h_nav_mail a{
        font-size: clamp(17px, 3.5vw, 26px);
        padding: 50px 10px;
    }
    /*ファーストビュー*/
    .h_img_wrap{
        aspect-ratio: 9/16;
    }
    .h_img_txt{
        width: max(80%,300px);
        left: var(--m_ps3);
        bottom: calc((100% - ((100vw / 9) * 12 + 60px)) / 2);
    }
    .h_img_txt p{
        font-size: 16px;
    }
    .slick{
        top: 60px;
    }
    .slick-img{
        width: 90vw;
        height: calc((100vw / 9) * 12);
    }
    body:not(.home) .h_img_wrap{
        height: 46vh;
    }
    body:not(.home):not(.single) .h_img_wrap > div, 
    body.single .h_img_wrap > div{
        top: 40%;
    }
    /*-------------------------------------
    TOPページお知らせ
    -------------------------------------*/
    .new_wrap{
        padding-top: 0;
    }
    .new_item{
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .new_item_date{
        gap: 0px;
    }
    .new_item_ttl {
        padding-right: 0;
        font-size: 15px;
    }
    .new_item_date::before,
    .new_item_date::after{
        top: 13px;
    }
    .news_txt{
        font-size: 14px;
    }
    /*-------------------------------------
    TOP 1コンテンツ目
    -------------------------------------*/
    .top_con01_img_r_01{
        height: 160px;
    }
    .top_con01_img_r_02{
        height: 200px;
        margin-top: -110px;
    }
    .top_con01_p p{
        margin-bottom: 30px;
    }
    /*-------------------------------------
    TOP 2.3コンテンツ目
    -------------------------------------*/
    .top_0203_wrap section:first-child{
        padding-top: var(--sub_mp);
    }
    .top_con02_wrap,.top_con03_wrap{
        padding-top: 0px;
    }
    .top_con03_wrap{
        padding-bottom: var(--sub_mp);
    }
    .top_con02_inner,.top_con03_inner{
        gap: 20px;
        max-width: calc(100% - var(--main_mp));
    }
    .top_con02_img,.top_con03_img{
        width: calc(100% + 14px);
        height: auto;
        aspect-ratio: 1/1;
    }
    .top_con02_img img,.top_con03_img img{
        object-position: center center;
    }
    .top_con02_txt,.top_con03_txt{
        padding-left: 0px;
    }
    /*-トップ見出し-*/
    .top_con02_txt .top_h2{
        padding-top: calc(clamp(46px, 10vw, 70px)*2 + 40px);
    }
    .top_con03_txt .top_h2{
        padding-top: calc(clamp(46px, 10vw, 70px) + 40px);
    }
    .top01_h2_en{
        font-size: clamp(46px, 12vw, 70px);
    }
    .top_h2 h2{
        font-size: clamp(20px, 5.8vw,32px);
    }
    /*---------*/
    .top_con02_txt .top01_h2_en{
        left: -20px;
    }
    .top_con03_txt .top01_h2_en{
        left: -30px;
    }
    .top_con02_txt .top01_h2_en::after{
        right: -100px;
    }
    .top_con03_txt .top01_h2_en::after{
        right: -80px;
    }
    /*-------------------------------------
    国際人材事業ページ
    -------------------------------------*/
    .global01_wrap,.global02_wrap,.global03_wrap{
        padding: 40px 0;
    }
    .global_inner,.global_inner02{
        gap: 40px;
    }
    .global_img{
        height: auto;
        aspect-ratio: 1/1;
    }
    .global_txt{
        padding: 0 8px;
    }
    /*-下層見出し-*/
    .other_h2{
        flex-direction: column;
        align-items: start;
    }
    section:has(>.filipino_wrap){
        padding-top: clamp(56px, 11.5vw, 100px) !important;
    }
    /*-------------------------------------
    精密機器物流・組立事業ページ
    -------------------------------------*/
    .logistics_item,.logistics_item:last-child{
        width: 100%;
    }
    .logistics02_wrap p{
        font-size: 16px;
    }
    .logistics02_wrap p:first-child{
        margin-bottom: 30px;
    }
    .logistics03_wrap,.logistics04_wrap{
        padding: 40px 0;
    }
    .logistics03_inner,.logistics04_inner{
        gap: 40px;
    }
    .logistics_img{
        height: auto;
        aspect-ratio: 1/1;
    }
    .logistics_txt{
        padding: 0 8px;
    }
    /*-------------------------------------
    採用情報ページ
    -------------------------------------*/
    .recruit01_img,.recruit01_img img,
    .recruit02_img,.recruit02_img img,
    .recruit03_img,.recruit03_img img{
        aspect-ratio: 1/1;
    }
    .recruit01_img,.recruit02_img{
        margin-bottom: 16px;
    }
    .recruit03_img{
        margin-bottom: 30px;
    }
    .recruit01_wrap p,.recruit02_wrap p,.recruit03_wrap p{
        line-height: 2;
    }
    .recruit_h2 h2{
        font-size: clamp(22px, 7.6vw,32px);
    }
    .recruit02_h3 h3,.recruit_h3 h3{
        font-size: clamp(22px, 6.6vw,32px);
    }
    .recruit02_wrap{
        padding-bottom: 30px;
    }
    .recruit02_txt{
        padding-left: 25px;
    }
    .recruit03_txt .recruit_h2{
        margin-bottom: 25px;
    }
    .recruit03_txt h2::after{
        width: 100px;
        height: 100px;
        right: -80px;
        bottom: -20px;
    }
    .recruit04_wrap{
        padding-top: 50px;
    }
    .recruit04_inner .recruit_h2::before{
        white-space: pre;
        content: "Recruit\AInformation";
        bottom: -45px;
    }
    .recruit04_inner .recruit_h2{
        padding-left: 10px;
    }
    .recruit04_txt a {
        padding: 30px;
    }
    /*-------------------------------------
    職種ページ
    -------------------------------------*/
    .occupation01_wrap::before{
        content: none;
    }
    .occupation01_inner{
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding: 0 25px;
        background-color: #fff;
    }
    .occupation_con{
        margin-top: 50px;
        padding-right: 20px;
        padding-left: 20px;
    }
    .occupation_con h3{
        left: 20px;
    }
    .occupation_point li{
        padding: 16px 0;
        font-size: 16px;
    }
    .occupation02_inner{
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
        padding: 50px 25px;
    }
    .occupation_point li{
        width: calc((100% - 10px)/2);
    }
    .occupation03_inner dt{
        width: 100%;
        font-size: 18px;
        text-align: start;
        padding: 25px;
        border: none;
    }
    .occupation03_inner dd{
        width: 100%;
        padding: 10px 10px 30px 10px;
        border: none;
        margin: 0;
    }
    .occupation03_h2 h2::before{
        white-space: pre;
        content: "Recruit\AInformation";
        text-align: center;
    }
    /*-------------------------------------
    会社概要
    -------------------------------------*/
    .company_inner dt{
        width: 34%;
    }
    .company_inner dd{
        margin-left: 3%;
        width: 63%;
    }
    .company_googlemap iframe{
        aspect-ratio: 1/1;
    }
    /*-------------------------------------
    ブログページ
    -------------------------------------*/
    .blog_con{
        flex-direction: column;
        gap: 10px;
        border-bottom: 1px #e0e0e0 solid;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    .blog_photo,.blog_text{
        width: 100%;
    }
    .post-categories li a {
        font-size: 13px;
    }
    .blog_text .blog_title{
        line-height: 1.5;
    }
    /*シングルページ*/
    .article_top {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .cat_container + div {
        padding: 6px 0 0 0;
    }
    .article_main p {
        font-size: 16px;
    }
    .article_main h2 {
        font-size: 18px;
    }
    .article_main h3 {
        font-size: 18px;
    }
    /*目次*/
    .outline {
        padding: 20px;
    }
    .outline__toggle:checked + .outline__switch + .outline__list {
        padding: 17px 0 0;
    }
    .breadcrumbsinner {
        padding: 30px 4px;
    }
    .article_main img {
        object-fit: contain;
        height: auto;
    }
    /*-------------------------------------
    お問い合わせ
    -------------------------------------*/
    .contact_inner > p {
        text-align: left;
    }
    .contact_h2 h2{
        font-weight: 700;
    }
    .contact_info{
        padding: 24px 24px;
    }
    .contact02_info{
        padding: 24px 0 ;
    }
    .contact_inner p{
        padding: 0 24px;
    }
    .wpcf7 {
        margin: 30px 0 0;
    }
    .wpcf7-form_form{
        padding: 0 24px;
        text-align: center;
    }
    .wpcf7_left{
        padding: 16px 0 10px 0;
    }
    .wpcf7_right{
        padding-bottom: 20px;
    }
    .wpcf7_checkbox_title {
        border: none;
    }
    .wpcf7-form-control-wrap input,
    .wpcf7-form-control-wrap textarea {
        font-size: 16px;
    }
    .readme {
        width: calc(100% - 56px);
        margin: 30px 24px 10px;
        height: 150px;
    }
    /*確認画面*/
    .main_wrap #wpcf7cpcnf {
        z-index: 2;
    }
    #wpcf7cpcnf table {
    }
    #wpcf7cpcnf table th {
        width: 100%;
        display: block;
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        border-bottom: none;
    }
    #wpcf7cpcnf table td {
        width: 100%;
        display: block;
        padding-top: 10px;
        padding-left: 0;
        padding-right: 0;
    }
    button.wpcf7cp-cfm-edit-btn{
        margin-bottom: 0!important;
    }
    div.wpcf7cp-btns{
        gap: 10px!important;
    }
    .wpcf7cp-btns button {
        padding: 14px 25px!important;
    }
    /*-------------------------------------
    footer
    -------------------------------------*/
    .footer_inner{
        gap: 40px;
    }
    .footer_left .site_ttl{
        width: min(300px, 60%);
        padding-bottom: 20px;
    }
    .address_container p{
        font-size: 13px;
        line-height: 1.5;
    }
    .footer_right{
        gap: 10px;
    }
    .footer_nav{
        width: 62%;
    }
    .footer_nav02{
        width: 38%;
    }
    .footer_nav a,.footer_nav02 a{
        padding: 16px 0;
    }
    .footer_nav .f_nav_h,.footer_nav02 .f_nav_h{
        padding-left: 16px;
    }
    .footer_nav .f_nav_h::before,
    .footer_nav02 .f_nav_h::before{
        top: 22px;
    }
}
@media only screen and (max-width: 320px) {
    .wp-pagenavi {
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .wp-pagenavi .page-numbers {
        margin: 0 5px 5px 0;
    }
}
