@charset "UTF-8";
/*
Theme Name: Emanon Free child
Theme URI: https://wp-emanon.jp
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Free の子テーマです。
Template: emanon-free
Version: 1.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options

Emanon Free 子テーマ用のスタイルを以下に記述 
*/
/*　初期設定　Reset Stylesheet
---------------------------------------------------------------------------*/
/*font設定*/
.f_mincho {
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
}
/* ホバー時のチラつき対策 */
a:hover, a:hover::before {
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}
/*ページ上部の余白　エディタでページ余白の設定を忘れた時のため*/
.l-container .l-contents {
  margin-top: 0;
  margin-bottom: 0;
}
body:not(.page) .l-container .l-contents {
  padding-bottom: 46px;
}
body:not(.home) .u-row.is-no_sidebar {
  margin-top: var(--vk-margin-lg);
}
/*
 * TOP section(スクロールアニメーション)
 * クラス追加：js-scroll-trigger fade-in-section
---------------------------------------------------------------------------*/
.fade-in-section {
  transform: translateY(50px);
  opacity: 0;
}
.fade-in-section.is-active {
  transition: .6s;
  transform: translateY(0);
  opacity: 1;
}
@keyframes fadeInFromBottom {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/*　PCナビ
---------------------------------------------------------------------------*/
/*　<!--ナビゲーション-->　*/
.l-header > .l-header-row > .l-content__fluid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
@media screen and (max-width: 959.99px) {
  .l-header__inner {
    justify-content: center;
  }
  .hamburger-menu {
    right: 16px;
  }
}
@media screen and (min-width: 960px) {
  .l-header > .l-header-row > .l-content__fluid {
    background: transparent;
  }
  /*LOGOサイズ調整*/
  .l-header-row .header-site-branding {
    background-color: #fff;
    height: 86px;
    padding: 0 2em;
  }
  .l-header-row.is-tracking-drop .header-site-branding {
    height: 64px;
  }
  .is-tracking-drop .site-logo img {
    height: 60px;
  }
  /*グローバルメニュー*/
  .l-header > .l-header-row > .l-content__fluid .menu-item > a {
    color: #fff;
    text-shadow: 1px 2px 3px black;
    transition: all 0.3s ease;
  }
  .header-menu .current-menu-item a {
    color: #fff;
  }
  /*サブメニュー*/
  .header-menu > .menu-item.menu-item-has-children > a span::after {
    position: relative;
    top: 10px;
    left: 5px;
  }
  .header-menu .sub-menu {
    background-color: #0072d8;
  }
  /*電話*/
  .header-menu .menu-tel {
    padding-right: 8px;
    pointer-events: none;
  }
  .header-menu .menu-tel span {
    font-size: 20px;
    font-weight: bold;
  }
  .header-menu .menu-item.menu-tel .menu-description {
    background: #459fff;
    border-radius: 10px;
    padding: 5px;
    color: #FFF;
    text-shadow: 1px 2px 3px black;
  }
  /*問い合わせ*/
  .header-menu .menu-contact {
    background: #0072d8;
  }
  .l-header-row .is-tracking-drop .header-menu .menu-contact {
    line-height: 1.2;
  }
  .header-menu .menu-contact .icon-mail:before {
    font-size: 50px;
  }
  .l-header-row .is-tracking-drop .header-menu .menu-contact .icon-mail:before {
    font-size: 40px;
    color: #fff;
  }
  /*　スクロールナビ 　追従メニュー
---------------------------------------------------------------------------*/
  .l-header-row.is-tracking-drop {
    background: #161410;
  }
  .l-header-row.is-tracking-drop .header-menu > .menu-item > a {
    color: #fff;
  }
  .l-header-row.is-tracking-drop .menu-tel span {
    font-size: 20px;
    color: #FFF;
  }
  /*　メニューホーバー時に文字色を変えアンダーライン
---------------------------------------------------------------------------*/
  /*グローバルメニュー*/
  .l-header-row:not(.is-tracking-drop) li:nth-child(-n+5) a:hover {
    text-shadow: 1px 2px 3px #9E9E9E;
    color: #0072d8;
    text-shadow: 1px 1px 0 #FAFAFA, -1px 1px 0 #FAFAFA, -1px -1px 0 #FAFAFA, 1px -1px 0 #FAFAFA;
    transform: translateX(4px);
    color: var(--ema-footer-link-hover)
  }
  .l-header-row:not(.is-tracking-drop) li:nth-child(-n+5) a::before {
    background: var(--ema-footer-link-hover);
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: 22px;
    transform-origin: right top;
    transform: scale(0, 1);
    transition: transform .3s;
  }
  .l-header-row:not(.is-tracking-drop) li:nth-child(-n+5) a:hover::before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
  /*サブメニューhover*/
  .l-header-row .header-menu .sub-menu .menu-item a:hover {
    transform: none;
  }
  .l-header-row .header-menu .sub-menu .menu-item a:hover::before {
    content: none;
  }
  /*電話、メールhover*/
  .header-menu > .menu-item:not(.js-smooth-scroll).menu-tel a:hover::before, .header-menu > .menu-item:not(.js-smooth-scroll).menu-contact a:hover::before {
    content: none;
  }
  /*　カレントメニュー
---------------------------------------------------------------------------*/
  /*カレントメニュー*/
  .header-menu > .current-menu-item > a:after {
    content: "\f0d7";
    font-family: 'FontAwesome';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .header-menu > .menu-contact.current-menu-item > a {
    color: #FFF;
  }
  .header-menu > .menu-contact.current-menu-item > a:after {
    content: none;
  }
  /*追従*/
  .l-header-menu-tracking-drop .header-menu > .current-menu-item > a:after {
    bottom: -6px;
  }
  .header-menu-row.is-tracking-drop .header-menu > .menu-item:not(.js-smooth-scroll).current-menu-item > a {
    color: var(--ema-footer-link-hover);
  }
  .header-menu-row.is-tracking-drop .header-menu > .menu-item.current-menu-item.menu-contact > a {
    color: #fff;
  }
}
@media screen and (min-width: 1200px) {
  .header-menu .menu-tel {
    padding-right: 18px;
  }
  .header-menu .menu-tel span {
    font-size: 28px;
  }
  .header-menu .menu-contact {
    width: 150px;
  }
}
@media screen and (min-width: 1800px) {
  .header-menu .menu-contact {
    width: 280px;
  }
  .l-header-row .header-site-branding {
    padding: 0 5%;
  }
}
/*　フッター固定メニュー
---------------------------------------------------------------------------*/
@media screen and (max-width: 959.99px) {
  .u-display-sp {
    display: block !important;
  }
}
.fixed-footer-menu::before {
  background-color: rgba(0, 0, 0, 0.5);
}
.fixed-footer-menu__inner a {
  color: #fff;
  font-weight: bold;
}
/*　TOPページスライダー下メッセージ(入力は固定ページ）
---------------------------------------------------------------------------*/
/* ----＞　TOP スライダー　＜------*/
/*　スライダー設定
---------------------------------------------------------------------------*/
[class*=swiper]:focus {
  outline: none;
}
.mv01 .slide {
  font-family: serif;
  line-height: 1.1;
}
/*ページネーション*/
@media screen and (min-width: 576px) and (max-width: 991.98px) {
  .mv01.vk_slider .swiper-button-next, .mv01.vk_slider .swiper-button-prev {
    display: none;
  }
}
.mv01 .swiper-pagination {
  position: absolute;
  z-index: 1;
  bottom: 50px;
  left: 0;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  margin: auto;
}
.mv01 .swiper-pagination-bullet {
  display: block;
  width: 20px;
  height: 2px;
  cursor: pointer;
  -webkit-transition: .8s cubic-bezier(.2, 1, .2, 1);
  transition: .8s cubic-bezier(.2, 1, .2, 1);
  background-color: #fff;
}
.mv01 .swiper-pagination-bullet:not(:first-child) {
  margin-top: 16px;
}
.mv01 .swiper-pagination-bullet-active {
  width: 40px;
  background-color: #58a9ef;
}
/* ----＞　アニメーション（背景画像設定）　スライド　ズーム　＜------
　ブロックエディタ　背景設定：背景画像　無　透過設定：1　背景色：何でもよい
---------------------------------------------------------------------------*/
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.slide {
  position: relative;
  overflow: hidden; /* はみ出る部分を隠す */
}
.slide .vk_slider_item-background-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat;
  transition: transform 8s ease-in-out;
  z-index: -1; /* 背景画像を背面に配置 */
}
.slide1 .vk_slider_item-background-area {
  background-image: url("https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider1.jpg");
  background-image: linear-gradient(to right, rgb(0 0 0 / 5%), rgb(20 0 0 / 5%)), url("https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider1.jpg");
}
.slide2 .vk_slider_item-background-area {
  background-image: url("https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider2.jpg");
  background-image: linear-gradient(to right, rgb(0 0 0 / 5%), rgb(20 0 0 / 5%)), url("https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider2.jpg");
}
.slide3 .vk_slider_item-background-area {
  background-image: url("https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider3.jpg");
  background-image: linear-gradient(to right, rgb(0 0 0 / 10%), rgb(20 0 0 / 10%)), url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2025/03/slider3.jpg);
}
/* Swiperのアクティブスライドの背景画像のみズーム */
.swiper-slide-active .vk_slider_item-background-area {
  animation: zoomUp 8s linear 0s 1 normal both;
}
/* ----＞　アニメーション（デフォルト）　画像内のテキスト　フェード　＜------
---------------------------------------------------------------------------*/
.swiper-slide[class*=-active] .slide-title {
  -webkit-animation: mv01-fadeIn 1s 1.0s cubic-bezier(.2, 1, .2, 1) both;
  animation: mv01-fadeIn 1s 0.5s cubic-bezier(.2, 1, .2, 1) both;
}
.swiper-slide[class*=-active] .slide-text {
  -webkit-animation: mv01-fadeIn 1s 0.5s cubic-bezier(.2, 1, .2, 1) both;
  animation: mv01-fadeIn 1s 0.5s cubic-bezier(.2, 1, .2, 1) both;
}
.swiper-slide[class*=-active] .slide-link {
  -webkit-animation: mv01-fadeIn 2s 1s cubic-bezier(.2, 1, .2, 1) both;
  animation: mv01-fadeIn 1s 1s cubic-bezier(.2, 1, .2, 1) both;
}
.swiper-slide[class*=-active] .slide-name {
  -webkit-animation: mv01-fadeIn 2s 0.5s cubic-bezier(.2, 1, .2, 1) both;
  animation: mv01-fadeIn 2s 0.5s cubic-bezier(.2, 1, .2, 1) both;
}
@-webkit-keyframes mv01-fadeIn {
  0% {
    /*-webkit-transform: scale(0.5);*/
    /*transform: scale(0.5);*/
    opacity: 0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
  }
  100% {
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes mv01-fadeIn {
  0% {
    /*-webkit-transform: scale(0.5);*/
    /*transform: scale(0.5);*/
    opacity: 0;
    -webkit-filter: blur(200px);
    filter: blur(200px);
  }
  100% {
    /*-webkit-transform: scale(1);*/
    /*transform: scale(1);*/
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
/*--- 左からふわっ ---*/
.swiper-slide[class*=-active] .fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*--- 右からふわっ ---*/
.swiper-slide[class*=-active] .fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.7s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(-200px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/* アニメーションスタートの遅延時間を決めるCSS*/
.swiper-slide[class*=-active] .delay-time05 {
  animation-delay: 0.5s;
}
.swiper-slide[class*=-active] .delay-time10 {
  animation-delay: 1.0s;
}
.swiper-slide[class*=-active] .delay-time15 {
  animation-delay: 1.5s;
}
.swiper-slide[class*=-active] .delay-time20 {
  animation-delay: 2.0s;
}
.swiper-slide[class*=-active] .delay-time25 {
  animation-delay: 2.5s;
}
/*　スライダー　説明　(共通)
---------------------------------------------------------------------------*/
.mv01 .slide {
  text-shadow: 1px 2px 3px #616161;
}
.mv01 .slide-title {
  margin: 0;
}
/* Viewport:300-1120 Values:30-60 */
.mv01 .slide-title {
  font-size: clamp(1.875rem, 1.104rem + 4.11vw, 3.75rem);
}
.mv01 .slide-title, .mv01 .slide-link {
  opacity: 0;
}
/* ----＞　アニメーション　スライド1枚目　ボックスアニメーション　＜------
---------------------------------------------------------------------------*/
.mv01 .slide1 .slide-title {
  line-height: 1.4;
}
.mv01 .slide1 .SL1_2 p:first-child {
  font-size: clamp(2rem, 1.604rem + 1.69vw, 3.125rem);
}
.mv01 .slide1 .SL1_2 p:last-child {
  font-size: 1.5rem;
}
.mv01 .slide1 .SL1_3 {
  width: 100px;
  margin: 3vh auto;
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .mv01 .slide1 .slide-title {
    letter-spacing: -4px;
  }
}
@media screen and (max-width: 575.98px) {
  .SL1 {
    flex-flow: column;
  }
}
@media only screen and (min-width: 768px) {
  .mv01 .slide1 .SL1_3 {
    width: 120px;
  }
}
@media only screen and (min-width: 1030px) {
  .mv01 .slide1 .SL1_3 {
    width: 140px;
  }
}
/* ----＞　アニメーション　スライド2枚目　ボックスアニメーション　＜------
---------------------------------------------------------------------------*/
@media screen and (max-width: 575px) {
  .mv01 .swiper-pagination {
    display: none;
  }
}
.mv01 .slide2 .mv01 .slide-link {
  max-width: 400px;
}
.mv01 .slide2 .slide2_img_box {
  position: absolute;
  top: 0;
  z-index: -1;
}
.mv01 .slide2 .slide2_img_grid {
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.mv01 .slide2 .slide2_img_grid {
  padding: 0 20px;
  gap: 20px 0;
}
.mv01 .slide2 .slide-img {
  width: 48%;
  max-width: 244px;
}
.mv01 .slide2 .slide-title.SL2_1 {
  font-size: clamp(2.5rem, 0.497rem + 8.55vw, 5.625rem);
  line-height: 1.1;
}
.mv01 .slide2 .slide-text.SL2_2 {
  font-size: clamp(1.875rem, 1.554rem + 1.37vw, 2.375rem);
}
.mv01 .slide2 .slide-img .wp-element-caption {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  background: rgb(0 0 0 / 30%);
  text-shadow: none;
  color: #ffffff;
  padding: 5px;
  border-radius: 0 0 12px 12px;
}
@media screen and (min-width: 768px) and (max-width: 959px) {
  .mv01 .vk_slider_item_container {
    margin-block: 32px 0;
  }
}
@media screen and (min-width: 960px) and (max-width: 991px) {
  .mv01 .vk_slider_item_container {
    margin-top: 3%;
  }
  .mv01 .slide2 .slide-title.SL2_1 {
    font-size: 74px;
  }
  .mv01 .slide2 .slide-text.SL2_2 {
    font-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .mv01 .slide2 .slide2_img_grid {
    justify-content: center;
    gap: 0 1%;
  }
  .mv01 .slide2 .slide2_img_grid {
    padding: 0 60px;
  }
  .mv01 .slide2 .slide-img {
    width: 24%;
    max-width: 460px;
  }
}
@media screen and (min-width: 992px) {
  .mv01 .vk_slider_item_container {
    margin-block: 32px 0;
  }
  .mv01 .slide2 .slide2_img_grid {
    padding: 2em 60px 0;
  }
}
@media screen and (max-height: 670px) and (min-width: 768px) {
  .mv01 .slide2 .slide2_img_grid {
    padding: 0 60px;
  }
  .mv01 .slide2 .slide-title.SL2_1 {
    font-size: 70px;
  }
}
@media screen and (max-height: 480px) {
  .mv01 .slide2 .slide2_img_grid {
    display: none;
  }
}
@media only screen and (max-width: 980px) {}
@media only screen and (max-width: 768px) {}
@media (max-width: 768px) and (min-height: 600px) {}
@media only screen and (min-height: 800px) {}
/* ----＞　アニメーション　スライド3枚目　ボックスアニメーション　＜------
---------------------------------------------------------------------------*/
.mv01 .slide3 .SL3_2 {
  position: relative;
  /*Viewport:300-1120 Values:20px-36px*/
  font-size: clamp(1.25rem, 0.884rem + 1.95vw, 2.25rem);
  line-height: 1.4;
  max-width: 740px;
}
.mv01 .slide3 .SL3_2:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: -0.5em;
  left: 0;
}
.mv01 .slide3 .SL3_2:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  bottom: -0.5em;
  left: 0;
}
.mv01 .slide3 .SL3_btn {
  max-width: 768px;
}
.mv01 .slide3 .SL3_btn a {
  max-width: 400px;
  margin: auto;
  border: 3px solid #fff;
}
.home .slide-img.SL3_4 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 30%;
  min-width: 300px;
  margin: auto;
}
.home .slide-img.SL3_4 img {
  filter: brightness(0.8) opacity(80%) drop-shadow(3px 3px 6px rgb(255 255 255 / 60%));
}
@media only screen and (min-width: 992px) {
  .home .slide-img.SL3_4 {
    top: -55px;
    max-width: 380px;
  }
}
@media screen and (max-height: 600px) {
  .mv01 .slide3 .slide-title.SL3_1 {
    line-height: 1.1;
  }
  .mv01 .slide3 .SL3_btn {
    margin-top: -20px;
    gap: 10px 0;
  }
  .mv01 .slide3 .SL3_2 {
    margin-top: -14px !important;
  }
}
/*　TOPページ　セクション共通　見出し
---------------------------------------------------------------------------*/
/*見出し*/
.top_h2 {
  position: relative;
}
.top_h2_back {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transform: rotate(356deg);
  opacity: 0.2;
}
.top_h2_back img {
  max-height: 80px;
  width: auto;
}
.home_h2 {
  text-align: center;
}
.home_h2 h2 {
  display: inline-block;
  border-bottom: 6px solid #E0E0E0;
  position: relative;
  /* Viewport:300-1200 Values:30-42 */
  font-size: clamp(1.875rem, 1.602rem + 1.36vw, 2.625rem);
  letter-spacing: 0.8rem;
  padding-left: 1rem;
  padding-right: 0.2rem;
}
.home_h2 h2:before {
  border-bottom-color: #BDBDBD;
  content: '';
  background-color: #0072d8;
  width: 40px;
  height: 6px;
  position: absolute;
  bottom: -6px;
  left: 0;
}
/*　TOPページ　Missionsセクション
---------------------------------------------------------------------------*/
.sec_mission .home_h2 h2 {
  letter-spacing: 0.2rem;
}
.sec_mission h3 {
  padding: 0.8rem 0;
  text-align: center;
  border-top: 3px solid #d8dcdc;
  border-right: 3px solid #666;
  border-bottom: 3px solid #333;
  border-left: 3px solid #868888;
  background-image: -webkit-linear-gradient(135deg, #ccc 0%, #868888 20%, #d8dcdc 34%, white 53%, #ccc 100%);
  background-image: linear-gradient(-45deg, #ccc 0%, #868888 20%, #d8dcdc 34%, white 53%, #ccc 100%);
  font-size: 24px;
}
@media (min-width: 600px) and (max-width: 700px) {
  .sec_mission h3 {
    font-size: 20px;
  }
}
/*　TOPページ　Recruitセクション　
---------------------------------------------------------------------------*/
/*　TOPページ　お知らせ　
---------------------------------------------------------------------------*/
.home .secNews_loop {
  max-width: 90%;
  margin: auto;
}
.home .custom-query-item1 {
  display: flex;
  column-gap: 1em;
}
.home .custom-query-item2 {
  width: 80%;
}
.home .custom-query-icon {
  position: absolute;
  top: 30px;
  right: -20px;
  width: 50px;
}
.home div.custom-query-cat {
  cursor: text;
  margin-top: 4px !important;
}
.home .custom-query-cat a {
  padding: 1px 4px;
  font-size: 74%;
  border: 1px solid;
  border-radius: 4px;
  color: #0072d8;
  pointer-events: none;
}
.home .custom-query-title {
  margin-bottom: 0;
}
.home .custom-query-title a {
  position: relative;
  display: block;
  padding-bottom: 5px;
  line-height: 30px;
  font-weight: bold;
  transition-duration: .3s;
  font-size: var(--ema-font-size-l1);
}
.home .custom-query-title a:hover {
  transform: scale(1.01);
  background: #F5F5F5;
}
.home .custom-query-title a::before {
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
  background: #0072d8;
}
.home .custom-query-title a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.home .custom-query-desp p {
  font-size: var(--ema-font-size-s1);
  margin-top: 0;
}
/* TOPページ「NEW」マーク 四角*/
.home .new_mark .custom-query-title {
  position: relative;
  padding-left: 4em;
}
.home .new_mark .custom-query-title::after {
  content: 'New!';
  background-color: #FF9800;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  width: 4em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  /* ホバー時のチラつき対策 */
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 782px) {
  .home .custom-query-item1 {
    flex-flow: column;
  }
}
@media (min-width: 1200px) {
  .secNews_box {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    max-width: 1100px;
    margin-block-start: 7rem !important;
  }
  .home .secNews_loop {
    width: 66%;
  }
  .home .secNews_btn {
    width: 1100px;
    margin: auto;
  }
  .sec_news .top_h2 {
    width: 24%;
    border-right: 2px ridge rgb(158 158 158 / 20%);
    display: flex;
  }
  .sec_news .top_h2_back {
    display: flex;
    align-items: center;
    left: -22%;
    top: -66px;
    width: 180px;
    transform: rotate(350deg);
  }
  .sec_news .home_h2 {
    display: flex;
    align-items: center;
    margin: 0;
  }
  .sec_news .home_h2 h2 {
    padding: 0;
    letter-spacing: 0;
  }
}
/*　TOPページ　企業情報１（地図）
---------------------------------------------------------------------------*/
.sec_info .top_h2_out {
  background-image: url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2025/03/hiro-back.jpg);
  margin-bottom: 40px;
}
.sec_info .top_h2_back {
  max-width: 600px;
}
/* 背景　円 */
.sec_info.bg_dot {
  background: repeating-radial-gradient(circle, #E3F2FD, #E3F2FD 1px, rgba(255, 255, 255, 0.9) 1px, rgba(255, 255, 255, 0.9) 14px), #f5fcff;
}
.sec_Gimg_logo {
  max-width: 200px;
}
/*H3地図の上の見出し*/
.sec_Gimg_box_item h3.square-four {
  position: relative;
  margin: 48px 0 32px 0;
  padding: 6px 0 6px 70px;
  border-bottom: solid 2px #161410;
  line-height: 2;
  font-size: x-large;
}
h3.square-four::before, h3.square-four::after, h3.square-four span::before {
  content: "";
  display: block;
  border: 3px solid #e65100;
  border-radius: 5px;
  position: absolute;
}
.sec_Gimg_box_item3 h3.square-four::before, .sec_Gimg_box_item3 h3.square-four::after, .sec_Gimg_box_item3 h3.square-four span::before {
  border: 3px solid #ff007b;
}
h3.square-four::before {
  top: 6px;
  left: 20px;
  width: 30px;
  height: 30px;
}
h3.square-four::after {
  top: 63%;
  left: 16px;
  width: 16px;
  height: 16px;
}
h3.square-four span::before {
  top: 40%;
  left: 35px;
  width: 24px;
  height: 24px;
}
/*　地図上の画像　
---------------------------------------------------------------------------*/
.sec_info {
  padding: 0 16px;
}
.sec_Gimg_kanda img {
  width: 100%;
  object-fit: cover;
  /* Viewport:300-768 Values:66.36-184.672 */
  height: clamp(4.147rem, -0.593rem + 25.28vw, 11.542rem);
}
.sec_Gmap {
  display: none;
}
.sec_Gimg_kanda {
  margin-block-start: 0;
}
@media screen and (min-width: 768px) {
  .sec_Gmap {
    display: block;
    width: 70%;
  }
  .sec_Gimg_kanda img {
    /* Viewport:768-1199 Values:60.625-63.31 */
    height: clamp(3.789rem, 3.49rem + 0.62vw, 3.957rem);
  }
  .sec_Gimg_box_item {
    position: absolute;
  }
  .sec_Gimg_box_item1 {
    top: -18px;
    right: 0;
    width: 33.333%;
  }
  .sec_Gimg_box_item2 {
    top: 60%;
    right: 0;
    width: 33.3333%;
  }
  .sec_Gimg_box_item3 {
    top: 22%;
    width: 33.3333%;
    left: 0;
  }
  .sec_Gimg_box_item h3.square-four {
    font-size: larger;
  }
  h3.square-four::before {
    width: 24px;
    height: 24px;
  }
  h3.square-four span::before {
    width: 20px;
    height: 20px;
  }
  h3.square-four::after {
    width: 12px;
    height: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .sec_Gmap {
    margin-left: 22% !important;
  }
  .sec_info .secInfo_box2 {
    margin-block-start: 60px !important;
  }
  .sec_Gimg_kanda img {
    height: 104.875px;
  }
  .sec_Gimg_box_item {
    width: 420px;
  }
  .sec_Gimg_box_item1 {
    top: -18px;
    left: 72%;
  }
  .sec_Gimg_box_item2 {
    top: 60%;
    left: 72%;
  }
  .sec_Gimg_box_item3 {
    top: 16%;
    left: -20%;
  }
  .sec_Gimg_box_item h3.square-four {
    font-size: x-large;
  }
  h3.square-four::before {
    width: 30px;
    height: 30px;
  }
  h3.square-four span::before {
    width: 24px;
    height: 24px;
  }
  h3.square-four::after {
    width: 16px;
    height: 16px;
  }
}
/* 地図下のアドレス*/
.secInfo_box2 .fi_box {
  max-width: 400px;
  padding: 1em;
  grid-template-columns: 1fr;
}
.footer_item {
  padding: 10px;
}
.Fitem-name {
  display: inline-block;
  margin-block-end: 8px;
  padding: 0 4px;
  font-size: large;
  font-weight: bold;
  border-bottom: solid 2px #161410;
}
.Fitem-name:before {
  content: "■";
  padding-right: 8px;
}
.Fi01 .Fitem-name:before, .Fi02 .Fitem-name:before, .Fi03 .Fitem-name:before {
  color: #29B6F6;
  text-shadow: 1px 1px saddlebrown;
}
.Fi04 .Fitem-name:before, .Fi05 .Fitem-name:before {
  text-shadow: 1px 1px saddlebrown;
  color: #e65100;
}
.Fi06 .Fitem-name:before, .Fi07 .Fitem-name:before {
  color: #ff007b;
  text-shadow: 1px 1px saddlebrown;
}
.Fitem-address span {
  display: block;
}
.fi_box {
  display: grid;
  place-content: center;
  height: 100%;
  margin: auto;
}
.footer_item {
  width: 100%;
  margin: 10px 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .secInfo_box2 .fi_box {
    max-width: 768px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template:
      'aria1  aria2'
      'aria3 dumy '
      'aria4  aria5'
      'aria6  aria7';
  }
  .footer_item.Fi01 {
    grid-area: aria1;
  }
  .footer_item.Fi02 {
    grid-area: aria2;
  }
  .footer_item.Fi03 {
    grid-area: aria3;
  }
  .footer_item.Fi04 {
    grid-area: aria4;
  }
  .footer_item.Fi05 {
    grid-area: aria5;
  }
  .footer_item.Fi06 {
    grid-area: aria6;
  }
  .footer_item.Fi07 {
    grid-area: aria7;
  }
}
@media screen and (min-width: 1200px) {
  .secInfo_box2 .fi_box {
    grid-template-columns: 30% 30% 26%;
    max-width: 1400px;
    grid-template:
      'aria1 aria2 aria3'
      'aria4 aria5 .'
      'aria6 aria7 .'/ 30% 30% 26%;
  }
}
/*　フッター　お問い合わせ
---------------------------------------------------------------------------*/
/*　フッターウェイジェット
---------------------------------------------------------------------------*/
.footer-widget {
  margin-block-start: 2.5em;
}
.footer-widget-box {
  margin-bottom: 4px;
}
.WidgetFooterLeft_box_in p {
  line-height: 1.4;
}
.WidgetFooterRight_box_in {
  justify-content: space-evenly;
  max-width: 600px;
}
p.WidgetFooterRight_box_sep {
  line-height: 1.4;
}
.WidgetFooterRight_box_sep br {
  display: none;
}
.WidgetFooterRight_box ul li {
  display: inline-block;
}
.WidgetFooterRight_box ul li span:before {
  content: "\e92b";
  font-family: "icomoon" !important;
  padding-right: 0.5rem;
}
.WidgetFooterLeft_box_in {
  max-width: 320px;
}
.footer-widget .widget_nav_menu {
  position: relative;
}
.footer-widget .widget_nav_menu:before {
  content: "";
  position: absolute;
  top: -32px;
  width: 100%;
  height: 1px;
  border-width: 0;
  background-image: -webkit-linear-gradient(left, transparent 0%, #ffffff 50%, transparent 100%);
  background-image: linear-gradient(90deg, transparent 0%, #ffffff 50%, transparent 100%);
}
@media (max-width: 419px) {
  .footer-widget-box .WidgetFooterLeft_box_in h3.has-ema-l-1-font-size {
    font-size: 16px !important;
  }
}
@media screen and (max-width: 599px) {
  .footer-widget .column-7 {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 767.98px) {
  .footer-widget .column-5, .footer-widget .column-7 {
    width: 90%;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 959px) {
  .footer-widget .u-row {
    align-items: center;
  }
  .footer-widget-box .WidgetFooterLeft_box_in p {
    font-size: 13px !important;
  }
  .WidgetFooterRight_box_sep br {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .footer-widget .column-5 {
    width: calc(33% - 48px);
    margin-right: 48px;
  }
  .footer-widget .column-7 {
    width: calc(65% - 24px);
  }
}
/*　固定ページ共通　(ヘッダー部)
---------------------------------------------------------------------------*/
/*パンくずリスト*/
.breadcrumb .icon-chevron-right {
  color: #000c15;
}
/*固定ページヘッダー画像*/
body:not(.home).page .l-content header {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: clamp(12.5rem, 7.386rem + 21.82vw, 23.75rem);
  margin-left: calc((100vw - 100%) / 2 * -1);
  margin-right: calc((100vw - 100%) / 2 * -1);
}
body:not(.home).page header h1 {
  /* Viewport:375-1200 Values:200-380 */
  height: clamp(12.5rem, 7.386rem + 21.82vw, 23.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.8rem;
  padding-top: 86px;
  padding-left: 0.8rem;
  /* Viewport:300-1200 Values:30-42 */
  font-size: clamp(1.875rem, 1.602rem + 1.36vw, 2.625rem);
  color: #fff;
  text-shadow: 1px 2px 3px #616161;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
}
/*　事業案内　*/
.business .l-content header {
  background: url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/heder1.jpg);
  background-size: cover;
  background-position: center bottom;
}
/*　企業情報　*/
.company .l-content header {
  background: linear-gradient(rgb(3 169 244 / 40%) 0 15%, rgba(3 169 244 / 0%) 40% 100%), url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/heder4.jpg);
  background-size: cover;
  background-position: center;
}
/*　求人　*/
.recruit .l-content header, .works .l-content header, [class*="entry_"] .l-content header {
  background: linear-gradient(rgb(3 169 244 / 40%), rgba(3 169 244 / 0%)), url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/heder3.jpg);
  background-size: cover;
  background-position: center bottom;
}
body:not(.home)[class*="entry_"] header h1, body:not(.home).thankyou_entry header h1 {
  padding-left: 0;
  letter-spacing: 0px;
}
/*　お問い合わせ　プライバシーポリシー　このサイトについて*/
.contact .l-content header, .thankyou .l-content header, .privacy-policy .l-content header, .sitepolicy .l-content header {
  background: linear-gradient(rgb(3 169 244 / 40%), rgba(3 169 244 / 0%)), url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/slider1.jpg);
  background-size: cover;
  background-position: center;
}
body:not(.home).thankyou header h1, body:not(.home).privacy-policy header h1, body:not(.home).sitepolicy header h1 {
  padding-left: 0;
  letter-spacing: 0px;
}
/*　投稿ページのヘッダー
---------------------------------------------------------------------------*/
.single .l-contents::before, .blog .l-contents::before, .archive .l-contents::before, .error404 .l-contents::before {
  content: "お知らせ";
  position: relative;
  top: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  max-width: 100vw;
  /* Viewport:375-1200 Values:200-380 */
  height: clamp(12.5rem, 7.386rem + 21.82vw, 23.75rem);
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: 0.8rem;
  padding-top: 5%;
  padding-left: 0.8rem;
  /* Viewport:300-1200 Values:30-42 */
  font-size: clamp(1.875rem, 1.602rem + 1.36vw, 2.625rem);
  color: #fff;
  text-shadow: 1px 2px 3px #616161;
  font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-weight: bold;
  background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(https://kyuwa-net.co.jp/wp_kyuwa/wp-content/uploads/2023/06/heder5.jpg);
  background-size: cover;
  background-position: center;
}
.error404 .l-contents::before {
  content: "404 Not Found";
  letter-spacing: 0;
}
/*1カラム　お知らせ一覧、ｶﾃｺﾞﾘｰ一覧*/
.archive-title h1, .single h1.entry-title {
  font-size: var(--ema-font-size-l4);
  text-align: center;
  letter-spacing: 6px;
}
.archive-title h1 {
  margin-top: 8px;
  margin-bottom: 40px;
}
/*2カラム　投稿　404*/
.u-row.is-right_sidebar {
  margin: var(--vk-margin-lg) 0;
}
/*404*/
.error404 h1.not-found-title {
  font-size: var(--ema-font-size-l3);
  text-align: center;
  margin: 0 0 var(--vk-margin-md);
}
.error404 .not-found {
  text-align: center;
}
/*　事業案内　(Business)
---------------------------------------------------------------------------*/
section.biz_sec02 {
  background-image: radial-gradient(circle, #c7e4ff 1px, transparent 1px);
  background-position: 0 0;
  background-size: 3px 3px;
}
section.biz_sec03 {
  background-image: radial-gradient(circle, #ffa574 1px, transparent 1px);
  background-position: 0 0;
  background-size: 3px 3px;
}
section.biz_sec04 {
  background-image: radial-gradient(circle, #ff9acc 1px, transparent 1px);
  background-position: 0 0;
  background-size: 3px 3px;
}
/*見出し*/
.biz_sec_h2Img {
  filter: brightness(130%) drop-shadow(1px 2px 1px rgba(138, 138, 138, 1));
}
.biz_sec_h2 {
  display: flex;
}
.biz_sec_h2 h2 {
  display: inline-block;
  border-bottom: 6px solid #E0E0E0;
  position: relative;
  /* Viewport:300-1200 Values:30-36 */
  font-size: clamp(1.875rem, 1.75rem + 0.67vw, 2.25rem);
}
.biz_sec04 .biz_sec_h2 h2 {
  letter-spacing: 0.3em;
}
.biz_sec_h2 h2:before {
  border-bottom-color: #BDBDBD;
  content: '';
  background-color: #0072d8;
  width: 40px;
  height: 6px;
  position: absolute;
  bottom: -6px;
  left: 0;
}
.biz_sec03 .biz_sec_h2 h2:before {
  background-color: #e65100;
}
.biz_sec04 .biz_sec_h2 h2:before {
  background-color: #ff007b;
}
.biz_block_box_name h3 {
  font-size: clamp(1rem, 0.773rem + 1.14vw, 1.625rem);
}
.biz_block_box_name h3:before {
  content: "\f0c8";
  font-family: 'FontAwesome';
  padding-right: 0.5em;
}
.biz_sec02 .biz_block_box_name h3 {
  border-bottom: 4px solid #0072d8 !important;
}
.biz_sec03 .biz_block_box_name h3 {
  border-bottom: 4px solid #e65100 !important;
}
.biz_sec04 .biz_block_box_name h3 {
  border-bottom: 4px solid #ff007b !important;
}
.biz_sec02 .biz_block_box_name h3:before {
  color: #0072d8;
  text-shadow: 1px 1px saddlebrown;
}
.biz_sec03 .biz_block_box_name h3:before {
  color: #e65100;
  text-shadow: 1px 1px saddlebrown;
}
.biz_sec04 .biz_block_box_name h3:before {
  color: #ff007b;
  text-shadow: 1px 1px saddlebrown;
}
/*ボタン*/
.biz_sec01_btn a.vk_button_link.btn, .biz_sec02_btn a.vk_button_link.btn {
  font-size: var(--ema-font-size-l1);
  font-weight: bold;
}
.biz_sec01_btn .vk_button_link.btn {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent 75%);
}
.biz_sec01_btn div:nth-child(1) .vk_button {
  background-color: #0072d8;
}
.biz_sec01_btn div:nth-child(2) .vk_button {
  background-color: #e65100;
}
.biz_sec01_btn div:nth-child(3) .vk_button {
  background-color: #ff007b;
}
@media screen and (min-width: 960px) {
  .biz_sec01_btn div .vk_button {
    max-width: 340px;
  }
  .biz_sec02_btn a.vk_button_link.btn {
    max-width: 340px;
    padding: 1.1em 2rem;
    border-radius: 50%;
    box-shadow: 2px 2px 2px #BDBDBD;
  }
}
/*ブロック詳細*/
.biz_block_box_flex .biz_block_box_add {
  justify-content: space-around;
}
.biz_block_box_flex .biz_block_box_root {
  width: 85px;
  height: 85px;
}
.biz_sec04 .biz_block_box_flex .biz_block_box_root {
  width: 100px;
  height: 100px;
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.biz_block_box_num {
  border-top-style: dotted;
}
/*飲食業*/
@media(min-width: 782px)and (max-width: 991.98px) {
  .biz_sec04 .biz_block_box_flex {
    flex-flow: column;
  }
}
.biz_block_box_number {
  display: flex;
  justify-content: space-around;
}
@media(max-width: 599.98px) {
  .biz_block_box_name.wp-container-core-group-is-layout-3 {
    justify-content: center;
  }
  .biz_block_box_number {
    flex-flow: column;
  }
}
@media(min-width: 992px)and (max-width: 1129.98px) {
  .biz_block_box_number {
    flex-flow: column;
  }
}
/*　企業情報　(company)
---------------------------------------------------------------------------*/
/*テーブル*/
.corp_infoG dl {
  margin: 1em 0;
}
.corp_infoG dt {
  background: #E0E0E0;
  font-weight: bold;
  padding: 5px 0 5px 0.5em;
  letter-spacing: 2px;
}
.corp_infoG dt:before {
  content: "\f0c8";
  font-family: 'FontAwesome';
  padding-right: 0.5em;
}
.corp_infoG dd {
  padding: 14px 0 14px 1em;
  line-height: 1.7;
}
.cop_name {
  display: inline-block;
  padding: 0 10px;
  background: #EEEEEE;
  border: 1px solid #616161;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 6px;
}
.corp_MT16 {
  margin-top: 16px;
}
.dd_indent {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
/*改行*/
.cop_add_br4::before {
  content: '\A';
  white-space: pre;
}
.corp_sec02 h2 {
  font-size: var(--wp--preset--font-size--ema-l-4);
  letter-spacing: 0.6em;
}
@media screen and (max-width: 500px) {
  .dd_indent br {
    display: none;
  }
}
@media screen and (min-width: 375px) {
  .cop_add_br4::before {
    content: '　/　';
    white-space: pre;
  }
}
@media screen and (min-width: 610px) {
  .cop_add_br2 {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .corp_infoG dl {
    display: flex;
    margin: 0;
    padding: 2em 1em;
    border-bottom: 1px dashed #bdbdbd;
  }
  .corp_infoG dt {
    width: 11em;
    background: transparent;
  }
  .corp_infoG dd {
    width: calc(100% - 8em);
    padding: 0;
  }
  .corp_infoG dt:before {
    content: none;
  }
}
@media screen and (min-width: 782px) {
  .corp_sec02 h2 {
    writing-mode: vertical-rl;
    font-size: 60px;
  }
}
/*　お知らせ　(News)
---------------------------------------------------------------------------*/
.entry-header h2 {
  color: #000c15;
  margin: 8px 0;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .entry-header h2 {
    margin: 16px 0;
  }
}
/*次のページ・関連記事の画像サイズ調整　*/
.archive-list .post-thumbnail img {
  object-fit: cover;
  object-position: center;
  height: 140px;
}
.single .pre_nex_thumbnail img {
  object-fit: cover;
  object-position: center;
  height: 60px;
}
.single .related-post-list__thumbnail img {
  object-fit: cover;
  object-position: center;
  height: 80px;
}
/*　2カラム　サイドバーウェイジェット
---------------------------------------------------------------------------*/
.sidebar_news li {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.sidebar_news li:not(:last-child) {
  border-bottom: 1px dotted #757575;
}
.sidebar_news li:after {
  content: "\e941";
  font-family: "icomoon" !important;
  position: absolute;
  font-size: larger;
  right: 0;
  top: 0.5em;
}
.sidebar_news li a {
  transition: transform .3s;
}
.sidebar_news li:hover a {
  transform: translateX(4px);
}
/*　採用情報　(recruit)
---------------------------------------------------------------------------*/
.rec_h2 {
  text-align: center;
  margin: 20px 0 40px 0;
  padding: 8px 0;
}
.rec_h3 {
  margin: 30px 0 20px;
  padding: 6px 0;
  text-align: center;
}
.Rec_sec01_box p {
  text-align: center;
   !i;
   !;
}
table.rec_tbl {
  width: 90%;
  max-width: 1000px;
}
table.rec_tbl th, table.rec_tbl td {
  padding: 1em 0.5em 1em 1.5em;
  border: 1px solid #BDBDBD;
}
table.rec_tbl th {
  width: 160px;
  text-align: left;
  background-color: #f4f6fa;
  letter-spacing: 2px;
}
table.rec_tbl td {
  width: calc(100% - 160px);
  background-color: #fff;
}
table.rec_tbl td p {
  margin-bottom: 10px;
}
@media only screen and (max-width: 767.98px) {
  table.rec_tbl {
    width: 100%;
  }
  table.rec_tbl th, table.rec_tbl td {
    display: block;
    width: 100%;
  }
  table.rec_tbl th {
    padding: 0.5em;
    text-align: center;
  }
}
/*　仕事内容　(works)
---------------------------------------------------------------------------*/
.Wbox_item1 img {
  height: 23vw;
  min-height: 90px;
}
.Wbox_item1_No {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 1;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 1px rgb(33 33 33 / 90%);
}
@media screen and (max-width: 767.98px) {
  .work_box {
    max-width: 540px !important;
  }
}
@media screen and (min-width: 768px) {
  .work_box {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
  }
  .Wbox_item1 {
    width: 180px;
  }
  .Wbox_item2 {
    width: calc(100% - 180px - 30px);
    border-bottom: 1px dashed #BDBDBD;
  }
  .Wbox_item1 img {
    height: auto;
  }
  .work_box:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: -84px;
    border-color: #ccc transparent transparent;
    border-style: solid;
    border-width: 30px;
    left: 84px;
  }
  .Wbox_item_Mnon {
    display: none;
  }
}
/*　Contactoform7【共通】お問い合わせ(contact)＆エントリー(entry)
---------------------------------------------------------------------------*/
.contact_box .c-box_pc {
  display: none;
}
.contact_box .c-box_sp {
  display: block;
}
@media screen and (min-width: 960px) {
  .contact_box {
    display: flex;
    justify-content: space-between;
  }
  .contact_box .contact_boxL {
    flex-basis: 320px;
    position: sticky;
    top: 86px;
    height: fit-content;
    margin: 0 !important;
  }
  .contact_box .contact_boxR {
    flex-basis: calc(100% - 320px - 3.38rem);
    margin: 0 !important;
  }
  .contact_box .c-box_pc {
    display: block;
  }
  .contact_box .c-box_sp {
    display: none;
  }
}
/* 電話問合せボックス */
.contact_box .tel-box {
  width: 100%;
  max-width: 500px;
  margin: auto;
}
.contact_box .t-box2 > div {
  padding-top: 6px;
}
/* テーブルレイアウト　*/
.table_e_out {
  padding-bottom: 2em;
  background: #efebe9;
  border-radius: 10px;
}
table.inquiry {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 20px;
  padding-bottom: 0;
  border-radius: 10px;
  background: #efebe9;
}
table.inquiry th, table.inquiry td {
  display: block;
  width: 100%;
  border: none;
}
/*セル　デザイン*/
.inquiry th {
  margin-top: 20px;
  padding-bottom: 0;
  background: transparent;
  text-align: left;
}
.t_sub_td {
  margin-top: 10px;
}
/*必須・任意*/
.haveto, .any {
  margin-right: 1em;
  padding: 3px;
  font-size: small;
  color: #fff;
}
.haveto {
  background: #ef5350;
}
.any {
  background: #93c9ff;
}
/*入力枠*/
.article input[type="text"], .article input[type="email"], .article input[type="url"], .article input[type="password"], .article input[type="number"], .article input[type="tel"], .article input[type="range"], .article input[type="color"], .article input[type="time"], .article input[type="date"], .article input[type="datetime"], .article input[type="datetime-local"], .article input[type="month"], .article input[type="week"], .article select, .article textarea {
  width: 100%;
  font-size: 16px;
  border: none;
  border-bottom: 1px solid #007ffc;
}
body:not(.home) .content textarea {
  padding: 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: auto;
  line-height: 1.6;
  height: 9em;
}
/*メール*/
.conf_e {
  padding: 10px 10px 5px;
  line-height: 1.6;
  font-size: smaller;
  color: #616161;
  display: block;
}
/*郵便番号　横並び　幅*/
.t_sub_td_zip {
  display: inline-flex;
  align-items: baseline;
}
/*見出しH3*/
.contact_boxR h3 {
  border-bottom: solid 2px #161410;
  margin: 48px 0 32px 0;
  padding: 6px 0;
  line-height: 1.5;
  font-size: var(--ema-font-size-l2);
  color: #000c15;
}
.contact_boxR h3:before {
  content: "\f044";
  font-family: "Font Awesome 6 Free";
  padding-right: 0.5em;
  font-weight: lighter;
}
.contact_boxR h3.inq_h:before {
  content: "\f15b";
}
/*個人情報*/
.inquiry-chk-info {
  margin-top: 48px;
}
.inquiry-chk-info .scroll-box {
  width: 100%;
  height: 120px;
  overflow-y: scroll;
  border: 1px solid #ddd;
  background-color: #fafafa;
  padding: 12px 18px;
  resize: vertical;
  font-size: 12px;
  color: #888;
}
/*メッセージ（入力確認、学歴・資格）*/
.inquiry-txt-area {
  margin-bottom: 6px;
  padding: 10px 10px 0;
  color: #ee5656;
}
/*　確認　*/
.inq_box {
  margin: 48px auto;
}
.inq_box_in {
  background: #efebe9;
  padding: 16px 30px;
}
.wpcf7-list-item {
  margin: 0;
}
.inq_box_in p {
  width: 15em;
  margin: auto;
  line-height: 1.6;
}
/*送信ボタン*/
.subm_box .submit-button {
  text-align: center;
}
input[type="submit"] {
  width: 300px;
  height: 60px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  cursor: pointer;
}
/*エラーメッセージ*/
span.wpcf7-not-valid-tip {
  margin-top: 0;
}
/*　Contactoform7　エントリー(entry)
---------------------------------------------------------------------------*/
/*先頭見出しの余白削除*/
.contact_entry .contact_boxR h3:first-of-type {
  padding-top: 0;
  margin-top: 0;
}
/*チェックボックス（勤務場所）*/
.inquiry-entry .checksp .wpcf7-list-item {
  display: block;
  margin-bottom: 6px;
}
.inquiry-entry .work_e {
  padding: 10px 10px 5px;
  line-height: 1.6;
  font-size: smaller;
  color: #B71C1C;
}
/*ラジオボタン(性別)*/
.inquiry-entry .text-yoko .wpcf7-list-item {
  width: 6em;
}
/*セレクトボックス（生年月日）*/
.inquiry-entry .select-yoko {
  display: inline-flex;
  align-items: baseline;
}
.inquiry-entry .select-yoko select {
  text-align: center;
}
.inquiry-entry .select-yoko span {
  margin: 0 7px;
  width: 4em;
}
.inquiry-entry .select-yoko p {
  display: flex;
  align-items: baseline;
}
/*-------------------------------------------------------------------------
    共通　
---------------------------------------------------------------------------*/