@charset "utf-8";
/*
Theme Name: 株式会社 西部ビルメン｜山口県岩国市
Theme URI: http://www.seibubirumen.co.jp/
Description: 株式会社 西部ビルメンは、岩国市一般廃棄物収集運搬業及び山口県産業廃棄物収集運搬業の認可を受けています。また、岩国市の委託業者として家庭ごみの収集も行っております。その他、総合ビルメンテナンス業としての清掃全般と、防水工事業も行っております。
Version: 20240412
Author: owls-corp
Author URI: https://www.owls-corp.jp/
*/
/* ***************************************************************** 
*	共通設定
* ***************************************************************** */
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1em;
  list-style: none;
  text-decoration: none;
}
/* ***************************************************************** 
*	基本設定
* ***************************************************************** */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background: #fff;
  color: #444;
  line-height: 190%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
/* リンク
---------------------------------------------------- */
a {
  color: #45aab8;
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
a:hover {
  color: #666;
}
a:active,
a:focus {
  outline: 0;
}
/* 画像
---------------------------------------------------- */
img {
  border: 0;
  padding: 0px;
  margin: 0px;
  image-rendering: -webkit-optimize-contrast;
}
img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
img.alignright {
  padding: 4px;
  margin: 0 0 10px 20px;
  display: inline;
}
img.alignleft {
  padding: 4px;
  margin: 0 20px 10px 0;
  display: inline;
}
/* リスト
---------------------------------------------------- */
ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}
li {
  margin: 0;
  padding: 0;
}
li a {
  color: #000;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
li a:hover {
  color: #666;
}
/* *****************************************************************
*	揃え
* ***************************************************************** */
.center {
  text-align: center !important;
}
.right {
  text-align: right !important;
}
.left {
  text-align: left !important;
}
/* *****************************************************************
*	margin
* ***************************************************************** */
.mb100 {
  margin-bottom: 100px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
/* *****************************************************************
*	全体Wrapper
* ***************************************************************** */
.wrapper {
  padding: 50px 0px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.s_wrapper {
  padding: 100px 0 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.sb_wrapper {
  padding: 50px 0 50px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */
#header {
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    z-index: 999;
    background: #ffffffb0;
    transition: all 0.3s ease;
}

/* 固定状態 */
#header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

/* ここがポイント：縮小 */
#header.is-small {
    padding: 8px 0; /* ←ここで高さ調整 */
    background: #ffffff; /* 少し濃くすると見やすい */
}

/* 例：ロゴサイズも一緒に縮める */
#header.is-small .logo img {
    width: 240px;
    transition: all 0.3s ease;
}

/* 初期状態（大きめ） */
.logo img {
    transition: all 0.3s ease;
}

/* コンテンツの押し下げ */
body.header-fixed {
    padding-top: var(--header-height, 80px);
}

.header-inner {
  max-width: 1920px;
  margin: 0px auto;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
#header h1 {
  text-align: center;
  margin: 0;
  display: inline-block;
}
.logo {
  text-align: center;
  margin: 0;
  padding: 0;
}
/* トップナビゲーション
---------------------------------------------------- */
#nav {
  width: 100%;
  margin: 0 auto;
  z-index: 9999;
  padding: 0;
  text-align: right;
}
#nav ul {
  list-style: none;
  margin: auto;
}
.main-navigation {
  clear: both;
  margin: 0 auto;
  position: relative;
}
ul.nav-menu,
div.nav-menu > ul {
  margin: 0;
  padding: 0;
}
.nav-menu li {
  display: inline-block;
  position: relative;
  margin: 0 -2px 0 -2px;
}
.nav-menu li a {
  color: #0070c0;
  display: block;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 30px;
  font-size: 18px;
  border-left: 1px solid #0070c0;
}
.nav-menu li:first-child a {
  border-left: none;
}
.nav-menu li:hover > a,
.nav-menu li a:hover {
  color: #003f71;
}
.nav-menu .sub-menu,
.nav-menu .children {
  background: #fff;
  display: none;
  padding: 0;
  position: absolute;
  z-index: 99999;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.nav-menu .sub-menu ul,
.nav-menu .children ul {
  border-left: 0;
  left: 100%;
  top: 0;
}
ul.nav-menu ul a,
.nav-menu ul ul a {
  margin: 0 auto;
  width: 300px;
  text-align: center;
  font-size: 14px;
  padding: 20px 0;
  border-bottom: 1px solid;
  border-left: none;
}
ul.nav-menu ul a:hover,
.nav-menu ul ul a:hover {
  color: #003f71;
}
ul.nav-menu li:hover > ul,
.nav-menu ul li:hover > ul {
  display: block;
  color: #003f71;
}
.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a,
.nav-menu .current-post-ancestor > a {
  color: #0070c0;
}
.toggle {
  display: none;
}
.menu-toggle {
  width: 40px;
  height: 40px;
}
.hamburger {
  display: none;
}
/* ハンバーガーメニュー
---------------------------------------------------- */
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
  padding: 10px 2px;
  display: inline-block;
  cursor: pointer;
  transition-property:
    opacity,
    -webkit-filter;
  transition-property: opacity, filter;
  transition-property:
    opacity,
    filter,
    -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 35px;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
/*
* Spin
*/
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition:
    top 0.1s 0.34s ease-in,
    opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition:
    bottom 0.1s 0.34s ease-in,
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.1s 0.34s ease-in,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition:
    bottom 0.1s 0.34s ease-in,
    transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition:
    top 0.1s ease-out,
    opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition:
    bottom 0.1s ease-out,
    -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.1s ease-out,
    transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition:
    bottom 0.1s ease-out,
    transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1),
    -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* 見出し
---------------------------------------------------- */
h1 {
  font-size: 24px;
}
h2 {
  line-height: 1.5em;
  font-size: 36px;
}
h2 span {
  line-height: 1.5em;
}
h3 {
  font-size: 32px;
  line-height: 1.5em;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 16px;
}
h6 {
  font-size: 14px;
}
/* ブログ記事部分
---------------------------------------------------- */
p {
  font-size: 16px;
  color: #444;
  padding: 15px 0px;
  line-height: 2em;
}
p a {
  color: #45aab8;
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
}
p a:hover {
  color: #666;
}
p a:active,
a:focus {
  outline: 0;
}
/* トップヘッダー画像
---------------------------------------------------- */
.top-header {
  width: 100%;
  position: relative;
}
.top-header-cm {
  width: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ページ読み込み後に表示 */
body.loaded .top-header-cm {
  opacity: 1;
}

/*
.video-container {
    position: relative;
    width: 100%;
    height: 980px;
    top: -120px;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
*/

.top_content {
  width: 100%;
  max-width: 1600px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: flex;
  align-items: start;
  justify-content: center;
}
.top_img {
  width: 100%;
  max-width: 820px;
  padding: 0 30px;
  text-align: right;
}
.top-header-txt {
  width: 100%;
  max-width: 1100px;
}
.top-header h2 {
  color: #fff;
  text-shadow:
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5;
  font-size: 60px;
  line-height: 1.2em;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 900;
}
.top-header h3 {
  color: #fff;
  text-shadow:
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5,
    0 0 5px #3fa9f5;
  font-size: 30px;
  line-height: 1.2em;
  text-align: left;
  font-weight: 500;
}
/* ***************************************************************** 
*	メイン（本文）コンテンツ
* ***************************************************************** */
#main {
  margin: 0 0 0 0;
  padding: 0 0 0 0;
}
/* *****************************************************************
*	ボタン（トップページセンター）
* ***************************************************************** */
.link_btn {
  font-size: 24px;
  text-align: center;
  position: relative;
  display: inline-block;
}
.link_btn a {
  padding: 20px 80px 20px 50px;
  display: block;
  letter-spacing: 1px;
  color: #0070c0;
  border: #0070c0 1px solid;
}
.link_btn a:hover {
  background: #0070c0;
  color: #ffffff;
}
.link_btn a:after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "\f101";
  font: var(--fa-font-solid);
  margin-right: 15px;
  width: 30px;
}
.link_btn a:hover::after {
  animation: anim 1s forwards;
}
@keyframes anim {
  0% {
    transform: translateX(0) translateY(-50%);
  }
  100% {
    transform: translateX(10px) translateY(-50%);
  }
}
/* ホーム
---------------------------------------------------- */
.home_about {
  width: 100%;
}
.home_about_box {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}
.home_about_img,
.home_service_img {
  width: calc(100% / 2);
}
.home_about_txt {
  width: calc(100% / 2);
  max-width: 600px;
  padding: 25px;
}
.home_about_txt h2 {
  border-bottom: 3px solid #ff9900;
  color: #0070c0;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 36px;
}
.home_about_txt h2 span {
  color: #808080;
  font-size: 22px;
  display: block;
  margin-bottom: 15px;
}
.home_about_il {
  position: absolute;
  right: -100px;
  bottom: 0;
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  position: relative;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}
.scroll-infinity__item {
  width: calc(100vw / 7);
}
.scroll-infinity__item > img {
  width: 100%;
}
.bg_blue {
  background: #e5f1f9 !important;
}
.c_blue {
  color: #0070c0 !important;
}
.bg_orange {
  background: #fff5e5 !important;
}
.bg_orange_d {
  background: #ff9900 !important;
}
.c_orange {
  color: #ff9900 !important;
}
.c_pink {
  color: #ff0073 !important;
}
.bg_gray {
  background: #e6e6e6 !important;
}
.bg_gray_d {
  background: #8b8b8b !important;
}
.c_green {
  color: #71d500 !important;
}
.home_news {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.home_service {
  padding: 50px 0;
}
.home_service_box_even,
.home_service_box_odd {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
}
.home_service_box_even {
  justify-content: start;
}
.home_service_box_odd {
  justify-content: end;
}
.home_service_txt {
  width: calc(100% / 2);
  max-width: 600px;
  padding: 25px;
}
.home_service_txt h2 {
  border-bottom: 3px solid;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  font-size: 36px;
}
.home_service_txt h2 span {
  color: #808080;
  font-size: 22px;
  display: block;
  margin-bottom: 15px;
}
.home_service_setsumei {
  font-size: 30px;
  margin-top: 10px;
}
.home_service_txt p {
  margin-bottom: 50px;
}
.home_recruit {
  width: 100%;
}
.recruit_img {
  width: 100%;
  text-align: center;
}
.home_recruit h2 {
  color: #0070c0;
  font-size: 36px;
  border-bottom: 10px solid #ffff00;
  display: inline-block;
}
.home_recruit_cont {
  background: linear-gradient(to right, #ff9900 70%, transparent 70%);
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 70px;
}
.home_recruit_content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.recruit_box {
  background: #fff;
  position: relative;
  width: calc(100% / 2);
  max-width: 580px;
  padding: 40px 30px;
  height: 375px;
  z-index: 10;
}
.recruit_box h3 {
  font-size: 22px;
  text-align: center;
  color: #0070c0;
}
.home_recruit_staff {
  position: absolute;
  bottom: -110px;
  left: -245px;
}
.home_recruit_img {
  width: calc(100% / 2);
  position: absolute;
  top: -50px;
  right: 50px;
}
.sdgs {
  width: 100%;
  padding: 50px 0;
  background: linear-gradient(to left, #0070c0 70%, transparent 70%);
  height: 720px;
}
.sdgs h2 {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 200px;
}
.sdgs h2 span {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  position: relative; /* 相対位置を設定 */
  display: flex; /* Flexbox モデルを使用 */
  align-items: center; /* 中央揃え */
}
.sdgs h2 span::before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #fff;
  margin: 0 15px;
}
.sdgs h3 {
  font-family: "Noto Serif JP", serif;
  color: #000;
  text-align: center;
}
.sdgs_box {
  background: #fff;
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 40px 30px;
  z-index: 10;
  margin: 50px auto;
}
.sdgs_il {
  width: 100%;
  display: flex;
}
.sdgs_il_box {
  width: calc(100% / 2);
  text-align: center;
}
.sdgs_il_box ul {
  width: 100%;
}
.sdgs_il_box li {
  width: 100%;
  line-height: 1.8em;
  text-align: left;
  font-size: 18px;
}
.f_img {
  width: 100%;
}
.cp_timeline01 {
  position: relative;
  width: 100%;
  padding: 1em 0;
  list-style-type: none;
  max-width: 1200px;
  margin: 0 auto;
}
.cp_timeline01:before {
  position: absolute;
  left: 50%;
  top: 0;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  margin-left: 0px;
  background: #616161;
  z-index: 5;
}
.cp_timeline01 li {
  padding: 0;
}
.cp_timeline01 li:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.cp_timeline01 li:nth-child(odd) .timeline_item {
  position: relative;
  width: calc(50% - 29px);
  float: left;
}
.cp_timeline01 li:nth-child(even) .timeline_item {
  position: relative;
  width: calc(50% - 29px);
  float: right;
  text-align: right;
}
.cp_timeline01 li .timeline_item .flag_cont {
  position: relative;
  display: block;
  text-align: left;
}
.cp_timeline01 li .timeline_item .flag {
  position: relative;
  display: block;
  color: #0070c0;
  padding: 0 0 5px;
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid #231816;
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
}
.cp_timeline01 li .timeline_item .flag span {
  font-size: 50px;
  padding: 0 5px;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
  position: absolute;
  right: -50px;
  display: block;
  width: 40px;
  height: 40px;
  margin-top: -10px;
  z-index: 10;
  bottom: -15px;
  content: url(images/about/point.png); /* 画像のパスを指定 */
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
  left: -50px;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag:after {
  content: "";
  position: absolute;
  left: 100%;
  height: 2px;
  width: 30px;
  border-bottom: 1px solid #231815;
  bottom: -1px;
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
  content: "";
  position: absolute;
  right: 100%;
  height: 2px;
  width: 30px;
  border-bottom: 1px solid #231815;
  bottom: -1px;
}
.cp_timeline01 li .timeline_item .time {
  display: inline-block;
  margin-top: 1em;
  padding: 4px 6px;
  font-size: 0.6em;
  line-height: 1em;
  color: #808080;
  margin-left: 30px;
}
.cp_timeline01 li .timeline_item .time_r {
  display: inline-block;
  margin-top: 1em;
  padding: 4px 6px;
  font-size: 0.6em;
  line-height: 1em;
  color: #808080;
  margin-right: 30px;
}
.cp_timeline01 li:nth-child(even) .timeline_item .time {
  text-align: left;
}
.cp_timeline01 li .timeline_item .desc {
  font-size: 18px;
  line-height: 2em;
  padding: 0 0 15px;
}
.cp_timeline01 li .timeline_item .history_img {
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .cp_timeline01 {
    width: 100%;
    padding: 0;
  }
  .cp_timeline01 li {
    padding: 1em 0;
  }
  .cp_timeline01 li:nth-child(odd) .timeline_item,
  .cp_timeline01 li:nth-child(even) .timeline_item {
    float: none;
    width: 100%;
    text-align: center;
  }
  .cp_timeline01 li .timeline_item .flag_cont {
    text-align: center;
    margin-bottom: 10px;
  }
  .cp_timeline01 li .timeline_item .flag {
    z-index: 15;
    padding: 0 0 5px 25px;
    font-size: 20px;
    margin: 0;
    text-align: left !important;
  }
  .cp_timeline01 li .timeline_item .flag span {
    font-size: 30px;
  }
  .cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
  .cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
    top: 40px;
    right: unset;
    left: -20px;
    z-index: 20;
  }
  .cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:after,
  .cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
    top: -28px;
    right: calc(50% - 10px);
    left: calc(50% - 10px);
  }
  .cp_timeline01 li:nth-child(odd) .timeline_item .flag:after,
  .cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
    display: none;
  }
  .cp_timeline01 li .flag_cont {
    display: block;
    position: relative;
    margin: 4px 0 0 0;
    z-index: 14;
  }
  .cp_timeline01 li:nth-child(odd) .timeline_item .time,
  .cp_timeline01 li:nth-child(even) .timeline_item .time {
    float: none;
    text-align: center;
    background: #ffffff;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cp_timeline01 li .timeline_item .time_r {
    margin-right: 0;
    float: none;
    text-align: center;
    background: #ffffff;
    margin: 0;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }
  .cp_timeline01 li .timeline_item .desc {
    text-align: left;
    padding: 0 0 0 20px;
    font-size: 14px;
  }
  .cp_timeline01 li .timeline_item .history_img {
    padding: 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1366px) {
  .cp_timeline01 li .timeline_item .flag {
    font-size: 32px;
  }
  .cp_timeline01 li .timeline_item .flag span {
    font-size: 50px;
  }
  .cp_timeline01 li .timeline_item .time,
  .cp_timeline01 li .timeline_item .time_r {
    font-size: 28px;
  }
  .cp_timeline01 li .timeline_item .desc {
    font-size: 20px;
    text-align: left !important;
  }
  .cp_timeline01 {
    padding: 0 50px;
  }
  .cp_timeline01:before {
    left: 50px;
  }
}
.title {
  width: 100%;
}
.title h2,
.outline_title h2,
.rinen h2 {
  font-size: 100px;
  font-weight: 700;
  color: #0070bf;
  margin-bottom: 30px;
}
.title h2 span,
.outline_title h2 span,
.rinen h2 span {
  display: block;
  color: #808080;
  font-size: 24px;
  line-height: 1;
  margin-top: -15px;
  margin-left: 10px;
}
.outline {
  width: 100%;
  position: relative;
}
.outline_cont {
  display: flex;
  align-items: end;
  margin-bottom: 50px;
}
.outline_title,
.outline_img {
  width: calc(100% / 2);
}
.outline_title h3 {
  font-size: 36px;
  font-weight: 500;
  color: #000000;
  border-bottom: 1px solid;
  padding-bottom: 10px;
}
.outline_title h3:before {
  content: "";
  display: block;
  float: left;
  width: 20px;
  height: 120px;
  margin-right: 10px;
  background-image: url(images/about/h3_left.jpg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
}
.outline_title h3:after {
  content: ""; /* コンテンツは空 */
  display: table; /* テーブル表示 */
  clear: both; /* 左右のフロートをクリア */
}
.character {
  width: 100%;
}
.character h2 {
  width: 100%;
  font-size: 30px;
  text-align: center;
  margin-bottom: 20px;
  color: #0071c5;
}
.character_introduction {
  width: 100%;
  font-size: 18px;
  line-height: 1.5em;
  margin-bottom: 35px;
  border: 3px solid;
  border-radius: 15px;
  padding: 30px 25px;
  color: #ff9800;
}
.packrin {
  width: 100%;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.message {
  background: linear-gradient(to right, #eeeeee 65%, transparent 65%);
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.message_cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.message_box {
  width: 100%;
  max-width: 800px;
  padding: 100px 0;
  position: relative;
}
.message h2 {
  color: #0070bf;
}
.message p {
  width: 100%;
}
.message ul {
  background: #ff9800;
  padding: 20px;
  display: inline-block;
}
.message li {
  color: #fff;
  list-style: disc inside !important;
  line-height: 2em;
  padding-left: 10px;
}
.message li span {
  margin-left: -5px; /* テキストを左にシフト */
}
.president-box {
  width: 100%;
  text-align: right;
  margin-top: 30px;
}
.president {
  padding: 25px 40px;
  font-size: 18px;
  display: inline-block;
}
.presidentname {
  font-size: 24px;
  display: inline-block;
}
.president_img {
  position: absolute;
  top: -175px;
  right: 200px;
}
.outline table {
  width: 100%;
}
.outline th {
  width: 20%;
  background: #eeeeee;
  text-align: center;
  text-align-last: justify;
}
.outline td {
  width: 80%;
}
.outline th,
.outline td {
  border-bottom: 1px solid #cbcbcb;
  padding: 20px 40px;
  vertical-align: middle;
  line-height: 2em;
}
.chart {
  width: 100%;
}
.chart h2,
.piechart h2,
.permit h2,
.area h2,
.o_v h2,
.rc h2,
.qa h2 {
  font-size: 32px;
  display: inline-block;
  color: #0070c0;
  border-bottom: 3px solid #888888;
  margin-bottom: 30px;
}
.chart_img {
  text-align: center;
  width: 100%;
}
.piechart {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #eeeeee;
  padding: 50px 0;
}
.piechart_cont {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.piechart_img {
  width: 40%;
  text-align: center;
}
.piechart_box {
  background: #fff;
  padding: 50px;
  border: 1px solid #cbcbcb;
  width: 60%;
}
.piechart_kinds h3 {
  font-size: 20px;
}
.piechart_kinds p {
  font-size: 18px;
  margin-left: 20px;
  padding: 10px 0 20px;
}
.permit {
  width: 100%;
}
.permit table {
  width: 100%;
}
.permit th {
  width: 35%;
  background: #fff5e5;
}
.permit td {
  width: 65%;
}
.permit th,
.permit td {
  border-bottom: 1px solid #cbcbcb;
  padding: 20px 40px;
  vertical-align: middle;
  line-height: 2em;
}
.permit tr:first-child th,
.permit tr:first-child td {
  background: none; /* removes background color */
  text-align: center; /* centers text */
}
.histroy {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #e5f1f9;
}
.histroy_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.histroy img {
  text-align: center;
}
.histroy h2 {
  font-size: 36px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  margin: 50px 0;
}
.event {
  font-size: 16px;
  line-height: 2em;
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 20px;
}
.event_date {
  font-size: 24px;
  font-family: "Noto Serif JP", serif;
  margin-right: 10px;
  color: #808080;
  width: 10%;
}
.event_detail {
  width: 90%;
  line-height: 1.5em;
}
.access {
  width: 100%;
}
.access_map {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.ggmap {
  position: relative;
  padding-bottom: 26.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  margin-top: -170px;
}
.ggmap iframe {
  height: calc(55vh + 300px);
}
.contact {
  width: 100%;
  display: flex;
  max-width: 650px;
  margin: 0 auto;
}
.contact_box {
  padding: 0 10px;
  width: calc(100% / 2);
}
.tel_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  border: 1px solid #0070bf;
  border-radius: 5px;
  background-color: #fff;
  color: #0070bf;
  font-size: 20px;
  font-weight: 600;
}
.tel_btn:hover {
  animation: anima-tel_btn 1s;
}
.tel_btn a {
  color: #0070bf;
  padding: 20px 0 20px 25px;
  display: block;
}
@keyframes anima-tel_btn {
  0% {
    box-shadow: 0 0 0 0 rgb(0 112 191 / 50%);
  }
  100% {
    box-shadow: 0 0 0 1.2em rgb(0 0 0 / 0%);
  }
}
.tel_btn::after {
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin-left: 10px;
  border-top: 2px solid #0070bf;
  border-right: 2px solid #0070bf;
  content: "";
  margin-right: 15px;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* サスティナビリティ
---------------------------------------------------- */
.sustainability {
  width: 100%;
  text-align: center;
}
.sustainability_img {
  width: 100%;
  margin-bottom: 100px;
}
.sustainability h2 {
  color: #0070c0;
  position: relative;
  padding-top: 20px;
}
.sustainability h2::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 100%;
  height: 130px;
  width: 3px;
  background-color: #000;
  transform: translateX(-50%);
}
.sustainability p {
  font-size: 20px;
}
.attempt {
  width: 100%;
}
.attempt_box {
  width: 100%;
  display: flex;
}
.attempt_img_box {
  width: calc(100% / 2);
  padding: 0 20px;
}
.attempt h3 {
  font-size: 36px;
  font-weight: 500;
  color: #000000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.attempt h3:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 50px;
  background-image: url(images/sustainability/h3_left.jpg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin-right: 20px;
}
.iso_btn {
  display: flex;
  justify-content: right;
  align-items: center;
  position: relative;
  width: 100%;
  margin: 0 auto;
  border: unset;
  border-radius: 5px;
  background-color: #fff;
  color: #000000;
  font-size: 20px;
  padding: 10px 50px 10px 0;
}
.iso_btn a {
  color: #000;
}
.iso_btn::after {
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  transform-origin: left;
  width: 2em;
  height: 0.5em;
  background-color: #000000;
  clip-path: polygon(0 100%, 100% 100%, 70% 40%, 70% 90%, 0% 90%);
  content: "";
  transition: transform 0.3s;
}
.iso_btn:hover::after {
  transform: translateY(-50%) scaleX(1.4);
}
.sdgs_attempt {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.sdgs_attempt p {
  font-size: 18px;
}
.sustainability_title,
.cc_title {
  font-size: 50px;
  font-weight: 700;
  color: #0070bf;
  margin-bottom: 30px;
}
.sustainability_title span,
.cc_title span {
  display: block;
  color: #808080;
  font-size: 24px;
  line-height: 1;
  margin-top: 10px;
  margin-left: 10px;
}
.houshin_midashi {
  text-align: center;
  line-height: 2em;
  border-bottom: 1px solid;
  margin-bottom: 20px;
  font-size: 20px;
  padding-bottom: 10px;
}
.houshin,
.roudou {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.houshin p,
.roudou p {
  font-size: 18px;
}
.houshin h2,
.roudou h2 {
  line-height: 1.5em;
  font-size: 36px;
  border-left: 5px solid #0070bf;
  padding-left: 10px;
  margin: 30px 0;
}
.houshin table {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.houshin th,
.houshin td {
  padding: 20px;
  font-size: 20px;
  border: 1px solid;
}
.houshin th {
  width: 40%;
  background: #0070bf12;
}
.houshin td {
  width: 60%;
}
.houshin_list,
.roudou_list {
  width: 100%;
  margin: 50px 0;
}
.houshin ul {
  width: 100%;
}
.houshin li,
.roudou li {
  list-style: decimal;
  font-size: 18px;
  line-height: 2em;
  list-style-position: inside;
}
.houshin li ul,
.roudou li ul {
  padding: 20px 0;
}
.houshin li ul li {
  list-style-type: disc;
}
.roudou li ul li {
  list-style-type: lower-latin;
}
.iso_img {
  width: 100%;
  display: flex;
  margin: 50px auto;
  align-items: center;
  max-width: 800px;
}
.iso_img_box {
  padding: 0 10px;
}
.iso_img_box:nth-child(1) {
  width: 40%;
}
.iso_img_box:nth-child(2) {
  width: 60%;
}
/* 個人情報の取り扱い
---------------------------------------------------- */
.policy {
  width: 100%;
  overflow: hidden;
  font-family: "Noto Sans JP", sans-serif;
  max-width: 1000px;
  margin: 0 auto;
}
.policy_info {
  width: 100%;
  font-size: 18px;
}
.policy_midashi {
  font-size: 24px;
  padding: 0;
  color: #0070bf;
  font-weight: bold;
  margin-top: 20px;
  border-left: 5px solid;
  padding-left: 10px;
}
.policy p {
  padding: 20px;
  font-size: 16px;
  line-height: 2em;
  margin-left: 15px;
}
.policy p span {
  font-size: 18px;
  font-weight: bold;
  padding: 10px 50px;
  border: 1px solid;
  display: inline-block;
  margin: 15px 0;
  line-height: 2em;
}
/* サービス内容
---------------------------------------------------- */
.service {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.servece_head {
  width: 100%;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}
.servece_txt {
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  font-size: 26px;
  text-align: center;
  padding: 35px 0;
  width: 60%;
  line-height: 2em;
  font-weight: 700;
}
.service_content {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  background: #e5e5e5;
  padding: 100px 0;
}
.s_c {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.s_c_box {
  padding: 20px 30px;
  height: 450px;
  width: calc(100% / 2);
  position: relative;
}
.s_c_box:nth-child(1) {
  background-image: url(images/service/gomi.jpg);
  background-repeat: no-repeat;
}
.s_c_box:nth-child(2) {
  background-image: url(images/service/bill.jpg);
  background-repeat: no-repeat;
}
.s_c_box:nth-child(3) {
  background-image: url(images/service/bousui.jpg);
  background-repeat: no-repeat;
}
.s_c_box:nth-child(4) {
  background-image: url(images/service/ihin.jpg);
  background-repeat: no-repeat;
}
.s_c_no {
  width: 100%;
  text-align: left;
  margin-bottom: 50px;
}
.s_c_title {
  font-size: 24px;
  margin-bottom: 30px;
  color: #fff;
  line-height: 1.5em;
}
.s_c_txt {
  font-size: 16px;
  margin-bottom: 80px;
  color: #fff;
}
/* サービス内容ボタン
---------------------------------------------------- */
/* サービス内容ボタン
---------------------------------------------------- */
.s_link {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 20px;
}
.s_link a {
  padding: 20px 20px;
  display: block;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
  font-size: 18px;
  text-align: left;
  background: #fff;
  width: 260px;
}
.s_link a:hover {
  color: #5e5e5e;
}
.s_link a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  background-image: url(images/service/arrow.png);
  background-size: contain;
  vertical-align: middle;
  width: 38px;
  height: 15px;
  background-repeat: no-repeat;
}
.s_link a:hover::after {
  animation: s_anim-arrow 1s forwards;
}
@keyframes s_anim-arrow {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
.shikaku {
  width: 100%;
}
.shikaku h2 {
  font-size: 32px;
  display: inline-block;
  color: #0070c0;
  border-bottom: 3px solid #888888;
  margin-bottom: 10px;
}
.shikaku p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
.p_c {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 50px;
}
.accordion-001 {
  max-width: 800px;
  background-color: #ffffff;
  margin: 0 auto;
}
.accordion-001:not([open]) {
  margin-bottom: 7px;
}
.accordion-001 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  border-radius: 5px;
  background-color: #fee1b4;
  color: #000;
  font-weight: 600;
  cursor: pointer;
}
.accordion-001 summary::-webkit-details-marker {
  display: none;
}
.accordion-001 summary::before,
.accordion-001 summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: #000;
  content: "";
}
.accordion-001 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}
.accordion-001 summary::after {
  transition: rotate 0.3s;
}
.accordion-001[open] summary::after {
  rotate: 90deg;
}
.accordion-001 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 1em 2em 2em 2em;
  color: #212121;
  transition:
    transform 0.5s,
    opacity 0.5s;
}
.accordion-001[open] p {
  transform: none;
  opacity: 1;
}
.accordion-001 ul {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 25px;
}
.accordion-001 li {
  margin-right: 10px;
  margin-bottom: 10px;
  color: black;
  position: relative;
  text-indent: 0px;
  padding: 10px;
}
.accordion-001 li span {
  color: #0070c0;
}
/* サブページヘッダー画像
---------------------------------------------------- */
.sh {
  width: 100%;
  position: relative;
  z-index: 0;
  height: 790px;
}
/* 1920px以上の画面で適用されるスタイル */
@media (min-width: 1920px) {
  .sh {
    height: auto; /* または適切な高さに調整 */
    min-height: 790px;
  }
}
.se_title {
  position: absolute;
  top: 250px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.se_title h2 {
  color: #fff;
  font-size: 36px;
  display: block;
  text-align: center;
}
.se_heading {
  color: #fff;
  font-size: 20px;
  text-align: center;
  height: 100px;
}
.se_heading::after {
  content: "";
  position: absolute;
  left: 50%;
  height: 70px;
  width: 2px;
  background-color: #fff;
  transform: translateX(-50%);
  top: 30px;
}
/* サービス内容詳細
---------------------------------------------------- */
.shb {
  width: 100%;
  position: relative;
  z-index: 10;
  display: flex;
  max-width: 1200px;
  top: -100px;
  margin: 0 auto;
  align-items: flex-end;
}
.shb_img {
  width: 500px;
  padding: 0 20px 0 0;
}
.shb_txt {
  width: 700px;
  border-bottom: 3px solid #0070c0;
  font-size: 32px;
  color: #808080;
  padding: 0 0 50px 20px;
  line-height: 1.5em;
  font-weight: 600;
}
.shb_txt-orange {
  border-color: #ff9900 !important;
}
.se_c {
  width: 100%;
}
.se_c p {
  font-size: 18px;
}
.se_c_img {
  background: linear-gradient(to bottom, #fff 50%, #eeeeee 50%);
  padding: 50px 0;
}
.se_c_imgbox {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
}
.se_c_flex {
  width: calc(100% / 4);
}
.bm_c_imgbox {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
}
.bm_c_flex {
  width: calc(100% / 5);
}
.se_transaction {
  width: 100%;
  display: flex;
}
.se_t_box {
  width: calc(100% / 2);
  position: relative;
  padding: 0 50px 0 0;
}
.se_t_box-height,
.wp_t_box-height {
  height: 400px;
}
.se_t_box h2 {
  font-size: 22px;
  color: #0070c0;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 3px solid #cbcbcb;
  text-align: center;
}
.se_contact {
  width: 300px;
  display: block;
  position: absolute;
  right: 50px;
  bottom: 20px;
}
.se_contact_title {
  color: #808080;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
.cleaning_section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 50px 0 0;
}
.cleaning_section h2 {
  text-align: center;
  padding: 0;
  color: #ff9900;
}
.cleaning_section h2 span {
  display: block;
  font-size: 20px;
  color: #808080;
}
.cleaning_section h3 {
  font-size: 20px;
  line-height: 1.5em;
  text-align: center;
  background: #f90;
  padding: 15px 0;
  color: #fff;
}
.c_concept {
  width: 100%;
  text-align: center;
  max-width: 1200px;
  margin: 50px auto 0;
  display: flex;
}
.c_concept_box {
  width: calc(100% / 2);
}
.c_consept_e {
  font-size: 26px;
  font-weight: 900;
  color: #444444;
  padding: 0 10px;
  line-height: 1.3em;
}
.c_consept_j {
  font-size: 16px;
  padding: 15px 10px;
  border-bottom: 2px solid #ccc;
  margin-bottom: 15px;
}
.c_consept_img {
  width: 30%;
}
.c_ent {
  width: calc(100% / 2);
  text-align: center;
  margin-bottom: 50px;
  padding: 0 30px;
}
.c_ent_title {
  font-size: 42px;
  color: #444;
  font-weight: 900;
  margin-bottom: 25px;
}
.c_ent_title span {
  width: 100%;
  font-size: 18px;
  display: block;
  color: #000;
  font-weight: 600;
  padding: 10px 0;
  border-top: 1px solid;
  margin-top: 10px;
}
.c_ent_box {
  width: 100%;
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: column;
}
.c_ent_img {
  width: calc(100% / 1);
  margin-bottom: 25px;
}
.c_enj {
  width: calc(100% / 1);
}
.c_enj h2 {
  text-align: center;
  font-size: 30px;
  padding: 0;
}
.c_enj h2 span {
  font-size: 18px;
}
.c_enj p {
  font-size: 16px;
  text-align: left;
  line-height: 1.5em;
  padding: 5px 0;
}
.a_m_imgbox {
  width: 100%;
  display: flex;
}
.a_m_imgbox_txt {
  width: 60%;
}
.a_m_imgbox_txt h2 {
  text-align: left;
}
.a_m_imgbox_txt p {
  font-size: 16px;
  line-height: 1.8em;
  padding: 5px 0 15px;
}
.a_m_bmimg {
  width: 40%;
  text-align: right;
}
.se_link_btn {
  display: block;
}
.se_link_btn a {
  padding: 20px 20px;
  display: block;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
  font-size: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #cccccc;
}
.se_link_btn a:hover {
  color: #5e5e5e;
}
.se_link_btn a:after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  margin-right: 10px;
  background-image: url(images/service/arrow.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 20px;
}
.se_link_btn a:hover::after {
  animation: se_anim-arrow 1s forwards;
}
@keyframes se_anim-arrow {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
.se_t_achievements {
  width: calc(100% / 2);
  border: 1px solid #0070c0;
  padding: 30px 0;
  text-align: center;
  height: auto;
}
.se_t_achievements h2 {
  font-size: 26px;
  background: #0070c0;
  padding: 10px 60px;
  display: inline-block;
  color: #fff;
}
.se_t_achievements h3 {
  font-size: 22px;
  color: #ff9900;
  margin: 30px auto;
}
.se_t_achievements h3 span {
  font-size: 30px;
}
.se_t_achievements img {
  padding: 5px 0;
}
.se_t_achievements img:last-child {
  padding: 5px 0 0;
}
.se_t_achievements p {
  text-align: left;
  padding: 20px 50px 0;
  line-height: 2em;
  font-size: 16px;
}
.place {
  background: #ffebcc;
  padding: 10px;
  line-height: 2em;
  font-size: 18px;
}
.se_pac,
.bm_pac {
  position: absolute;
  left: 0;
  bottom: 0;
}
.area {
  background: #eeeeee;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  padding: 50px 0;
}
.a_m {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.a_m_img {
  width: calc(100% / 2);
  text-align: center;
}
.a_m_txt {
  width: calc(100% / 2);
}
.a_m_txt h2 {
  font-size: 26px;
  border-bottom: none;
  color: #000;
  margin-bottom: 0;
}
.a_m_txt h2 span {
  color: #0070c0;
}
.a_m_txt p {
  font-size: 18px;
  padding: 5px 0 20px;
  margin-left: 20px;
}
.o_v {
  width: 100%;
}
.o_v_box {
  display: flex;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}
.o_v_txt {
  width: 700px;
  padding: 0px 15px;
}
.o_v_txt table {
  background: #e5f1f9;
  width: 100%;
  max-width: 650px;
  margin: 0 auto 20px;
}
.o_v_txt th {
  width: 35%;
}
.o_v_txt th span {
  color: #0070c0;
  margin-right: 10px;
}
.o_v_txt td {
  width: 15%;
  text-align: center;
}
.o_v_txt th,
.o_v_txt td {
  padding: 20px 10px;
}
.o_v_img {
  width: 100%;
  display: flex;
}
.o_v_img_box {
  padding: 10px 10px 0;
  flex: 1;
  text-align: center;
}
.o_v_img_r {
  width: 500px;
}
.bm {
  width: 100%;
  position: relative;
  max-width: 1200px;
  margin: 0 auto 100px;
  height: 450px;
}
.bm_box {
  background: #ffebcc;
  width: 100%;
  max-width: 1000px;
  position: absolute;
  right: 0;
  top: 0;
  padding: 100px 50px;
}
.bm_txt {
  width: 500px;
  float: right;
}
.bm_txt h2 {
  font-size: 34px;
  color: #ff9900;
  text-align: right;
}
.bm_txt p {
  font-size: 18px;
  text-align: left;
}
.bm_img_l {
  position: absolute;
  left: -170px;
  bottom: -80px;
}
.bm_link_btn {
  display: inline-block;
}
.bm_link_btn a {
  padding: 18px;
  display: block;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
  font-size: 20px;
  background: #fff;
  border: 1px solid #cccccc;
  width: 220px;
  text-align: left;
}
.bm_link_btn a:hover {
  color: #5e5e5e;
}
.bm_link_btn a:after {
  content: "";
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  background-image: url(images/service/arrow.png);
  background-size: contain;
  vertical-align: middle;
  width: 38px;
  height: 15px;
  background-repeat: no-repeat;
}
.bm_link_btn a:hover::after {
  animation: bm_anim-arrow 1s forwards;
}
@keyframes bm_anim-arrow {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
.sc_so {
  width: 100%;
  max-width: 1200px;
  background: #fff5e5;
  padding: 60px;
}
.sc_so h2 {
  font-size: 36px;
  color: #ff9900;
  line-height: 1.5em;
  margin-bottom: 60px;
  text-align: center;
}
.sc_so_box {
  display: flex;
}
.sc_so_txt {
  width: calc(100% / 2);
  font-size: 18px;
  line-height: 2em;
  padding: 0 20px;
}
.sc_so_img {
  width: calc(100% / 2);
  text-align: center;
}
.so_contact_c {
  text-align: center;
  position: relative;
  height: 200px;
  width: 550px;
  margin: 0 auto;
}
.so_pac {
  position: absolute;
  left: 0;
  bottom: 0;
}
.so_contact {
  width: 300px;
  display: block;
  position: absolute;
  right: 50px;
  bottom: 20px;
}
.so_contact_title {
  color: #808080;
  margin-bottom: 10px;
  font-size: 20px;
  text-align: center;
}
.so_link_btn {
  display: block;
}
.so_link_btn a {
  padding: 20px 20px;
  display: block;
  letter-spacing: 1px;
  color: #000000;
  position: relative;
  font-size: 20px;
  text-align: center;
  background: #fff;
  border: 1px solid #cccccc;
}
.so_link_btn a:hover {
  color: #5e5e5e;
}
.so_link_btn a:after {
  content: "";
  display: block;
  width: 40px;
  height: 20px;
  margin-right: 10px;
  background-image: url(images/service/arrow.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  right: 20px;
  top: 20px;
}
.so_link_btn a:hover::after {
  animation: so_anim-arrow 1s forwards;
}
@keyframes so_anim-arrow {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(10px);
  }
}
/*リクルート
---------------------------------------------------- */
.recruit {
  width: 100%;
  position: relative;
}
.rec_txtbox {
  position: absolute;
  width: 100%;
  max-width: 1200px;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  text-align: right;
}
.recruit h2 {
  font-size: 26px;
  margin-bottom: 25px;
}
.now,
.fu {
  background: #0070c0;
  padding: 10px;
  color: #fff;
  font-size: 42px;
}
.now {
  background: #0070c0;
}
.fu {
  background: #ff9900;
}
.recruit h3 {
  font-size: 26px;
}
.recruit p {
  font-size: 18px;
}
.rc {
  width: 100%;
}
.rc_cate {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.rc_cate > * {
  flex: 0 1 auto; /* テキストの長さに応じて幅を自動調整 */
  border-left: 1px solid;
  box-sizing: border-box;
  padding: 10px; /* テキストに対して余白を設定 */
  white-space: nowrap; /* テキストが折り返されないように設定 */
}
.rc_cate_name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #b5b5b6;
  width: 100%;
}
.rc_cate_name:last-child {
  border-right: 1px solid;
}
.rc_cate_name a {
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.5em;
  color: #666;
  width: 100%;
}
.rc_cate_name a:hover {
  padding: 10px 20px;
  line-height: 1.5em;
  color: #777777;
}
.rc_cate_name a:after {
  content: "\f138";
  font: var(--fa-font-solid);
  width: 30px;
  display: block;
  margin: 15px auto 0;
}
.rc_cate_name a.active {
  color: #fff;
}
.rc_cate_name.active {
  background: #0070c0;
}
.rc_cate_name a.active::after {
  content: "\f13a";
  font: var(--fa-font-solid);
  width: 30px;
  display: block;
  margin: 15px auto 0;
}
.qa {
  padding: 50px;
}
.qa_detail {
  width: 100%;
  background: #eeeeee;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}
.qa_title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
}
.qa_n {
  width: 100%;
  display: flex;
}
.qa_n_h {
  width: calc(100% / 2);
  border-right: 1px solid #cbcbcb;
  padding: 0 30px;
}
.qa_n_h:last-child {
  border-right: none;
}
/*QAのコーディング（全ページ共通で使用）
---------------------------------------------------- */
.Qa-Box {
  width: 100%;
  margin: 0 auto;
  color: #00348a;
  padding: 0 20px;
}
.Qa {
  position: relative;
}
.Qa-Box .Qa dt,
.Qa-Box .Qa dd {
  display: flex;
  align-items: flex-start;
  margin: 30px 0;
}
.Qa-Box .Qa dt p {
  margin: 0;
  padding: 0 0 0 10px;
  font-weight: bold;
  width: 100%;
  font-size: 18px;
  color: #0070c0;
}
.Qa-Box .Qa dd p {
  margin: 0;
  padding: 0 0 0 10px;
  width: 100%;
  font-size: 16px;
}
.Qa-Box .Qa dt::before {
  content: "";
  background-image: url(images/recruit/q.png);
  display: block;
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
}
.Qa-Box .Qa dd::before {
  content: "";
  background-image: url(images/recruit/a.png);
  display: block;
  width: 45px;
  height: 45px;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 960px) {
  .Qa-Box {
    width: 100%;
    padding: 0 10px;
  }
}
/* 地域貢献
---------------------------------------------------- */
.cc h2 {
  font-size: 28px;
  text-align: center;
}
.cc h3 {
  padding-bottom: 5px;
  font-weight: bold;
  font-size: 34px;
  position: relative;
  border-bottom: 3px solid #ababab;
  margin-bottom: 40px;
}
.cc h3::before {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 30%;
  height: 3px;
  background: #0070bf;
}
.cc_img {
  width: 100%;
  margin: 50px auto;
}
.cc_group {
  width: 100%;
  display: flex;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cc_txt {
  width: calc(100% / 2);
  padding: 10px;
  text-align: center;
}
.cc_name {
  font-size: 20px;
  color: #0070bf;
  line-height: 1.5;
}
.cc_link {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  margin: 0 auto 10px;
  padding: 0.9em 2em;
  border: none;
  border-radius: 25px;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 1em;
}
.cc_link::after {
  width: 1.25em;
  height: 1.25em;
  margin-left: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6V8H5V19H16V14H18V20C18 20.5523 17.5523 21 17 21H4C3.44772 21 3 20.5523 3 20V7C3 6.44772 3.44772 6 4 6H10ZM21 3V11H19L18.9999 6.413L11.2071 14.2071L9.79289 12.7929L17.5849 5H13V3H21Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  content: "";
}
.cc_link a {
  color: #fff;
}
.cc_link:hover {
  background-color: #1579c0;
}
.cc_logo {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
}
.cc_logo img {
  width: 100%;
  height: auto;
  display: block;
}
/* タブの切り替え
---------------------------------------------------- */
.tab-4 {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.tab-4 > label {
  flex: 1 1;
  order: -1;
  position: relative;
  min-width: 70px;
  padding: 20px 0;
  background-color: #ffffff;
  color: #999;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  line-height: 1.5em;
}
.tab-4 > label span {
  font-size: 16px;
  display: block;
}
.tab-4 > label:hover,
.tab-4 label:has(:checked) {
  background-color: #ff9900;
  color: #fff;
}
.tab-4 label:has(:checked)::before {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 9px;
  background-color: #ff9900;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.tab-4 input {
  display: none;
}
.tab-4 > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
}
.tab-4 label:has(:checked) + div {
  display: block;
}
.tab-4 table {
  width: 100%;
}
.tab-4 th,
.tab-4 td {
  padding: 25px;
  border-bottom: 1px solid #cbcbcb;
  font-size: 18px;
}
.tab-4 th {
  width: 20%;
  background: #eeeeee;
  text-align-last: justify;
}
.tab-4 td {
  width: 80%;
}
/* contactform
---------------------------------------------------- */
.contact_page {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.contact_il {
  width: 100%;
  text-align: center;
}
.contact_title,
.contact_order_title {
  font-size: 26px;
  text-align: center;
  padding: 20px 0;
  line-height: 1.5em;
}
.contact_info {
  font-size: 30px;
  text-align: center;
  padding: 10px 0;
  color: #0070c0;
  border-bottom: 3px solid;
  font-weight: 700;
}
.contact_phone {
  background: #fee1b4;
  padding: 15px;
  margin: 30px 0;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.contact_phone_left {
  font-size: 18px;
  padding: 0px 20px 0 0;
  width: 40%;
  text-align: right;
  line-height: 1.5em;
  color: #000;
}
.contact_phone_right {
  padding: 15px 0;
  text-align: center;
  background: #fff;
  width: 60%;
}
.contact_phone_right img {
  text-align: center;
  width: 60%;
  vertical-align: middle;
  padding: 7px 0;
}
.line {
  width: 100%;
  max-width: 800px;
  margin: 30px auto 100px;
}
.line p {
  font-size: 18px;
  text-align: left;
  line-height: 1.5em;
}
/*見出し欄*/
.inquiry {
  width: 100%;
  margin: 20px auto;
  position: relative;
  z-index: 0;
}
.inquiry p {
  font-size: 18px;
  color: #444;
  line-height: 1.5em;
  padding: 15px 0px 15px 0px;
  text-align: center;
}
.inquiry_title {
  width: 100%;
  font-size: 150%;
  margin: 50px auto;
  padding-bottom: 15px;
  border-bottom: solid 1px #3fa8f4;
}
.inquiry_title span {
  margin-right: 10px;
  vertical-align: text-bottom;
}
.inquiry_title span img {
  width: 45px;
}
.inquiry table {
  margin: 0 auto;
}
.inquiry th {
  text-align: left;
  font-size: 18px;
  color: #444;
  width: 25%;
  padding: 20px 10px;
  background: none;
  border: none;
  vertical-align: top;
}
/*通常欄*/
.inquiry td {
  font-size: 18px;
  border: none;
  padding: 10px 0px;
  width: 75%;
}
/*横の行とテーブル全体*/
.entry-content .inquiry tr,
.entry-content table {
  border: solid 1px #d7d7d7;
}
/*必須の調整*/
.haveto {
  font-size: 15px;
  padding: 5px;
  background: #ff9393;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
/*任意の調整*/
.any {
  font-size: 15px;
  padding: 5px;
  background: #93c9ff;
  color: #fff;
  border-radius: 2px;
  margin-right: 5px;
  position: relative;
  bottom: 1px;
}
/*ラジオボタンを縦並び指定*/
.verticallist .wpcf7-list-item {
  display: block;
}
/*送信ボタンのデザイン変更*/
#formbtn {
  display: block;
  padding: 1em 0;
  margin-top: 30px;
  width: 50%;
  background: #0070c0;
  color: #fff;
  font-size: 29px;
  font-weight: bold;
  border-radius: 10px;
  border: none;
  margin: 30px auto 0;
  border: 1px solid #0070c0;
}
/*送信ボタンマウスホバー時*/
#formbtn:hover {
  background: #fff;
  color: #0070c0;
}
.wpcf7 input[name="your-name"],
.wpcf7 input[name="your-kana"],
.wpcf7 input[name="your-company"],
.wpcf7 input[name="your-email"],
.wpcf7 input[name="your-tel"],
.wpcf7 input[name="your-postalcode"],
.wpcf7 input[name="your-address"],
.wpcf7 input[name="your-delivery_location"],
.wpcf7 input[name="your-nametag"] {
  width: 100%;
  height: 50px !important;
}
.wpcf7 input[name="your-time"],
.wpcf7 input[name="your-homeless"],
.wpcf7 input[name="date-960"] {
  width: 20%;
  height: 50px !important;
}
.wpcf7 select[name="your-arrange"],
.wpcf7 select[name="your-pair"],
.wpcf7 select[name="your-makurahana"] {
  width: 20%;
  height: 50px !important;
  background: #ffffff;
  border: 1px solid #cccccc;
}
.wpcf7 textarea {
  width: 100%;
  height: 350px !important;
}
.contact_form_policy {
  margin: 50px auto;
  font-size: 18px;
  background: #0070c024;
  padding: 30px 50px;
  border-radius: 10px;
  text-align: center;
  line-height: 2em;
  display: inline-block;
}
.contact_form_policy a {
  font-weight: 600;
  color: #0070c0;
}
/* パンくずリスト
---------------------------------------------------- */
.breadcrumb {
  margin: 10px 0 0px 0;
  line-height: 120%;
}
.breadcrumb div {
  display: inline;
  font-size: 11px;
  color: #999;
}
.breadcrumb span,
.breadcrumb span a {
  color: #45aab8;
}
.breadcrumb ol {
  margin: 0px;
}
.breadcrumb li {
  margin: 0px;
  display: inline;
}
/* 記事フッター
---------------------------------------------------- */
.blog-foot {
  clear: both;
  font-size: 75%;
  text-align: left;
  margin: 0px 0 50px 0;
  font-weight: normal;
  color: #999;
  border-bottom: 0px dotted #ccc;
}
.blog-foot span {
  color: #999;
}
/* 次の記事・前の記事
---------------------------------------------------- */
#next {
  font-size: 20px;
  line-height: 1em;
  margin: 50px 0 20px 0;
}
.next-left {
  float: left;
  text-align: left;
  margin: 0 0 10px 0;
  background: url(images/left.gif) no-repeat left;
}
.next-left a {
  padding: 20px 20px 20px 50px;
  display: block;
  border: 1px solid #fff;
}
.next-left a:hover {
  border: 1px solid #eee;
}
.next-right {
  float: right;
  text-align: right;
  margin: 0 0 10px 0;
  background: url(images/right.gif) no-repeat right;
}
.next-right a {
  padding: 20px 50px 20px 20px;
  display: block;
  border: 1px solid #fff;
}
.next-right a:hover {
  border: 1px solid #eee;
}
/* ページャー
---------------------------------------------------- */
.pager {
  text-align: center;
  margin: 50px 0 80px 0;
}
a.page-numbers,
.pager .current {
  background: #f0f0f0;
  padding: 10px 10px;
  margin: 0 2px;
}
.pager .current {
  background: #ccc;
  color: #fff;
}
/* WP必須
---------------------------------------------------- */
.wp-caption {
  max-width: 100%;
}
.wp-caption-text {
  font-size: 90%;
  text-align: center;
}
.sticky {
}
.gallery-caption {
}
.bypostauthor {
}
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
/* *****************************************************************
*	フッター
* ***************************************************************** */
#footer {
  background: #f5f5f5;
  clear: both;
  width: 100%;
  font-size: 80%;
  margin: 0px auto 0px auto;
}
.footer-inner {
  margin: 0px auto 0px auto;
  padding: 100px 0;
  max-width: 1200px;
  position: relative;
}
.company {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.company_logo {
  max-width: 500px;
  margin: 0 auto 30px;
}
.company_txt {
  padding: 10px 0;
}
.company_txt h2 {
  font-size: 35px;
  color: #0070c0;
  line-height: 1em;
  margin-bottom: 10px;
}
.company_txt p {
  font-size: 20px;
  line-height: 1.5em;
  padding: 0;
}
.footer_menu {
  width: 100%;
  text-align: center;
  position: relative;
  margin: 20px auto;
  max-width: 1200px;
  z-index: 10;
}
.footer_menu ul {
  display: inline-block;
}
.footer_menu li {
  font-size: 16px;
  display: inline-block;
  padding: 0 10px;
}
.footer_menu li span {
  color: #0070c0;
}
.footer_il {
  position: absolute;
  right: -30px;
  bottom: 75px;
  z-index: 1;
}
#copyright {
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 20px;
  background: #ff9900;
}
.s_news {
  width: 100%;
}
.news_s_title {
  font-size: 42px;
  text-align: center;
  color: #0070bf;
  font-weight: 900;
  border-bottom: 3px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.news_s_sub_title {
  font-size: 24px;
  text-align: center;
  line-height: 1.5em;
  margin-bottom: 50px;
}
.news_s_desc {
  font-size: 18px;
  line-height: 2em;
  width: 70%;
  margin: 0 auto;
}
.news_s_photo {
  margin: 20px auto;
  text-align: center;
  width: 70%;
}
.news_s_photo img {
  padding: 10px 0;
}
.home_news {
  width: 100%;
}
.home_info {
  width: 100%;
  padding: 15px 10px;
  border-bottom: 1px solid #adadad;
}
.home_info a {
  color: #adadad;
}
.home_info a:hover {
  color: #ff9900;
}
.home_info_meta,
.home_info_title {
  display: inline-block;
  font-size: 18px;
}
.home_info_meta {
  margin-right: 15px;
}
/* 既存のCSS */
.animation-container {
  position: relative;
  height: 140px;
  overflow: hidden;
  width: 100vw;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  /* background-image: url(images/animation/back.jpg); */
  /* background-repeat: no-repeat; */
  /* background-position: bottom; */
  /* background-size: contain; */
  bottom: 0;
}
.animation-container_s {
  position: relative;
  height: 220px;
  overflow: hidden;
  width: 100vw;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(images/animation/back_s.jpg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.s_car {
  position: absolute;
  width: 140px;
  height: 80px;
  bottom: 0;
  transform: translateY(-50%);
  opacity: 0; /* 初期状態で非表示 */
  animation:
    drive 20s linear infinite,
    fadeIn 0.5s forwards,
    bounce1 0.5s infinite alternate;
}
.car {
  position: absolute;
  width: 200px;
  height: 85px;
  bottom: 0;
  transform: translateY(-50%);
  opacity: 0; /* 初期状態で非表示 */
  animation:
    drive 20s linear infinite,
    fadeIn 0.5s forwards,
    bounce2 0.6s infinite alternate;
}
#car1 {
  animation-delay: 0s, 0s, 0s;
}
#car2 {
  animation-delay: 2s, 2s, 2s;
}
#car3 {
  animation-delay: 4s, 4s, 4s;
}
#car4 {
  animation-delay: 6s, 6s, 6s;
}
#car5 {
  animation-delay: 8s, 8s, 8s;
}
@keyframes drive {
  0% {
    left: -10%;
  }
  100% {
    left: 110%;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes bounce1 {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-2px);
  }
}
@keyframes bounce2 {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-2px);
  }
}
@keyframes bounce3 {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-2px);
  }
}
@keyframes bounce4 {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-2px);
  }
}
@keyframes bounce5 {
  0%,
  100% {
    transform: translateY(-50%) translateY(0);
  }
  50% {
    transform: translateY(-50%) translateY(-2px);
  }
}
/* 幅が1700px以下の場合のメディアクエリ */
@media (max-width: 1700px) {
  #car1 {
    animation-delay: 0s, 0s, 0s;
  }
  #car2 {
    animation-delay: 2.5s, 2.5s, 2.5s;
  }
  #car3 {
    animation-delay: 5s, 5s, 5s;
  }
  #car4 {
    animation-delay: 7.5s, 7.5s, 7.5s;
  }
  #car5 {
    animation-delay: 10s, 10s, 10s;
  }
}
/* 幅が1400px以下の場合のメディアクエリ */
@media (max-width: 1400px) {
  #car1 {
    animation-delay: 0s, 0s, 0s;
  }
  #car2 {
    animation-delay: 3s, 3s, 3s;
  }
  #car3 {
    animation-delay: 6s, 6s, 6s;
  }
  #car4 {
    animation-delay: 9s, 9s, 9s;
  }
  #car5 {
    animation-delay: 12s, 12s, 12s;
  }
}

/* *****************************************************************
*	CSS3アニメーション
* ***************************************************************** */
.img-anime2 img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.img-anime2:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* *****************************************************************
*   レスポンシブ（メディアクエリ）
* ***************************************************************** */
/* PC 画面の横幅が960px以上
---------------------------------------------------- */
/* Tablet (Portrait) 画面の横幅が768px〜1024pxまで
---------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    width: 100%;
    margin: auto;
    padding: 50px 20px;
  }
  .header-inner {
    width: 100%;
    padding: 0 0 10px;
    flex-direction: column;
  }
  #header h1 {
    display: block;
    margin: 0 auto;
    width: 170px;
  }
  #nav {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  #nav ul {
    list-style: none;
    margin: auto;
    text-align: center;
  }
  .nav-menu li a {
    padding: 5px 15px;
    font-size: 14px;
  }
  h2 {
    font-size: 30px;
  }
  p {
    font-size: 18px;
    line-height: 1.8em;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
  .top_img {
    width: 55%;
  }
  .top-header h2 {
    font-size: 30px;
  }
  .top-header h3 {
    font-size: 18px;
  }
  .top-header-txt {
    margin-top: 0;
  }
  .home_about_box,
  .home_service_box_even,
  .home_service_box_odd {
    flex-direction: column;
  }
  .home_about_img,
  .home_service_img {
    width: 80%;
    margin: 0 auto;
    order: 2;
  }
  .home_about_txt {
    width: calc(100% / 1);
    max-width: 1200px;
    order: 1;
  }
  .home_about_txt h2 {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .home_about_txt h2 span {
    margin-bottom: 0;
  }
  .home_service_txt {
    width: calc(100% / 1);
    max-width: 1200px;
  }
  .home_service_txt h2 {
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .home_service_txt h2 span {
    font-size: 18px;
    margin-bottom: 5px;
  }
  .home_recruit h2 {
    font-size: 22px;
    padding: 0 20px;
  }
  .home_recruit_cont {
    background: linear-gradient(to right, #ff9900 100%, transparent 100%);
    height: auto;
    flex-direction: column;
  }
  .scroll-infinity__item {
    width: calc(100vw / 4);
  }
  .recruit_box {
    width: calc(100% / 1);
    max-width: 680px;
    padding: 40px 40px 40px 170px;
    height: auto;
    margin: 0 auto;
  }
  .home_recruit_img {
    width: 80%;
    position: relative;
    top: 0;
    right: 0;
    padding: 30px 0;
  }
  .home_recruit_staff {
    bottom: 0px;
    left: -15px;
    width: 200px;
  }
  .recruit_box h3 {
    font-size: 32px;
  }
  .home_recruit_content {
    padding: 20px 0 0;
  }
  .sdgs {
    background: linear-gradient(to left, #0070c0 100%, transparent 100%);
    height: auto;
    padding: 0;
  }
  .sdgs h2 {
    margin-left: 0;
    padding: 20px 20px;
    flex-direction: column;
  }
  .sdgs h2 span::before {
    display: none;
  }
  .sdgs_box {
    padding: 20px 30px;
    margin: 0px auto 50px;
  }
  .sdgs_il_box {
    padding: 0 20px;
  }
  .sdgs h3 {
    font-size: 24px;
  }
  .sdgs_il {
    width: 100%;
    display: flex;
    margin-bottom: 30px;
  }
  .link_btn {
    font-size: 22px;
  }
  .link_btn a {
    padding: 20px 50px 20px 20px;
    letter-spacing: 0;
  }
  .s_wrapper {
    padding: 100px 20px 50px;
  }
  .title h2,
  .outline_title h2 {
    font-size: 60px;
    font-weight: 700;
    color: #0070bf;
    margin-bottom: 30px;
  }
  .title h2 span,
  .outline_title h2 span {
    font-size: 24px;
    margin-top: 0px;
    margin-left: 5px;
  }
  .company {
    width: 60%;
  }
  .message {
    background: linear-gradient(to right, #eeeeee 100%, transparent 100%);
    padding: 0 0 50px;
  }
  .message_box {
    padding: 50px 30px;
    max-width: unset;
  }
  .president_img {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    text-align: center;
  }
  .outline_title h3 {
    font-size: 20px;
  }
  .outline_title h3:before {
    margin-right: 0px;
  }
  .piechart {
    padding: 50px 20px;
  }
  .piechart_cont {
    flex-direction: column;
  }
  .piechart_img {
    width: 100%;
    text-align: center;
    order: 2;
    padding: 50px 0;
  }
  .piechart_box {
    width: 100%;
    order: 1;
  }
  .event_detail {
    font-size: 20px;
  }
  .event {
    font-size: 22px;
  }
  .event_date {
    text-align: right;
  }
  .sustainability_title,
  .cc_title {
    font-size: 36px;
    line-height: 1.2em;
  }
  .cc h3 {
    font-size: 26px;
  }
  .servece_txt {
    font-size: 18px;
    padding: 20px 10px;
    width: 75%;
    line-height: 1.5em;
    text-align: left;
  }
  .s_c_box {
    height: auto;
    padding: 50px 30px;
  }
  .s_c_no {
    width: 50%;
    margin-bottom: 20px;
  }
  .s_c_title {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 900;
  }
  .s_c_txt {
    font-size: 16px;
    line-height: 1.5em;
  }
  .s_link a {
    letter-spacing: 0;
    font-size: 16px;
    width: 220px;
  }
  .s_link a:after {
    width: 30px;
  }
  .s_c_box:nth-child(1),
  .s_c_box:nth-child(2),
  .s_c_box:nth-child(3),
  .s_c_box:nth-child(4) {
    background-position: center;
    background-size: cover;
  }
  .sh {
    height: auto;
  }
  .se_heading {
    height: 50px;
  }
  .se_heading::after {
    height: 20px;
  }
  .se_title {
    top: 170px;
    width: 100%;
  }
  .se_title h2 {
    font-size: 20px;
  }
  .shb {
    position: relative;
    display: flex;
    top: 0;
    flex-direction: column;
    padding: 30px 20px 0;
  }
  .shb_img {
    width: 100%;
    padding: 0 0 30px;
    text-align: center;
    order: 2;
  }
  .shb_txt {
    width: 100%;
    font-size: 26px;
    padding: 0 20px 15px;
    order: 1;
  }
  .sb_wrapper {
    padding: 10px 20px 50px;
  }
  .se_c_img {
    padding: 25px 20px;
  }
  .se_t_box {
    padding: 0 15px 0 0;
  }
  .se_t_achievements {
    padding: 20px 0;
  }
  .se_t_achievements h2 {
    font-size: 20px;
  }
  .se_t_achievements h3 {
    font-size: 18px;
    margin: 20px auto;
  }
  .se_t_achievements h3 span {
    font-size: 24px;
  }
  .place {
    font-size: 16px;
  }
  .se_t_achievements p {
    padding: 20px 20px 0;
    font-size: 16px;
  }
  .a_m_img {
    padding: 0 10px;
  }
  .a_m_txt h2 {
    font-size: 18px;
  }
  .a_m_txt p {
    font-size: 16px;
  }
  .o_v_box {
    width: 100%;
    flex-direction: column;
  }
  .o_v_txt {
    width: 90%;
    padding: 0px 5px;
    margin-bottom: 50px;
  }
  .o_v_txt table {
    max-width: unset;
  }
  .o_v_img_r {
    width: 100%;
    text-align: center;
  }
  .se_contact {
    width: 190px;
    right: 20px;
  }
  .se_contact_title {
    font-size: 14px;
  }
  .se_link_btn a {
    padding: 15px 15px;
    letter-spacing: 0;
    font-size: 18px;
  }
  .se_link_btn a:after {
    width: 24px;
    right: 5px;
    top: 22px;
  }
  .se_pac {
    width: 135px;
  }
  .bm {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto 50px;
    height: auto;
  }
  .bm_box {
    padding: 50px 50px;
    position: relative;
  }
  .bm_txt {
    width: 100%;
    float: unset;
  }
  .bm_txt h2 {
    font-size: 30px;
    text-align: center;
  }
  .bm_img_l {
    text-align: center;
    position: relative;
    left: 0;
    bottom: 0;
  }
  .sc_so h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  .sc_so_box {
    flex-direction: column;
  }
  .sc_so_txt {
    width: calc(100% / 1);
    font-size: 18px;
    line-height: 1.5em;
    padding: 0;
    margin-bottom: 30px;
  }
  .sc_so_img {
    width: calc(100% / 1);
  }
  .recruit {
    width: 100%;
    position: relative;
    height: 350px;
  }
  .recruit h2 {
    margin-bottom: 5px;
  }
  .now,
  .fu {
    padding: 0 10px;
  }
  .rc_cate {
    flex-wrap: wrap;
  }
  .rc_cate_name {
    width: calc(100% / 3);
  }
  .rc_cate_name:nth-child(4),
  .rc_cate_name:nth-child(5) {
    width: calc(100% / 2);
  }
  .rc_cate_name a {
    padding: 5px 5px;
  }
  .rc_cate_name a:after {
    margin: 0px auto;
    transform: rotate(90deg);
    display: inline-block;
  }
  .rc_cate_name a.active::after {
    margin: 0 auto;
    display: inline-block;
    transform: rotate(0deg);
  }
  .rc_cate_name a {
    padding: 15px 5px;
  }
  .footer-inner {
    width: 100%;
    padding: 30px 0px;
  }
  .footer_menu li {
    font-size: 16px;
    padding: 0 5px;
  }
  .footer_il {
    bottom: 40px;
  }
}
@media only screen and (min-width: 1551px) and (max-width: 1780px) {
  .top_img {
    max-width: 700px;
  }
}
@media only screen and (min-width: 1366px) and (max-width: 1550px) {
  .top_img {
    max-width: 600px;
  }
}

@media only screen and (min-width: 1367px) and (max-width: 1650px) {
  .president_img {
    top: -180px;
    right: 5%;
    width: 570px;
  }
}

@media only screen and (min-width: 968px) and (max-width: 1650px) {
  .nav-menu li a {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Tablet (Portrait) 画面の横幅が968px〜1366pxまで
---------------------------------------------------- */
@media only screen and (min-width: 968px) and (max-width: 1366px) {
  .header-inner {
    width: 100%;
    flex-direction: unset;
  }
  #nav ul {
    text-align: right;
  }
  .top_img {
    max-width: 600px;
    height: 510px;
    overflow: hidden;
  }
  .top-header-txt {
    margin-top: 0;
  }
  .top-header h2 {
    font-size: 50px;
  }
  .top-header h3 {
    font-size: 26px;
  }
  .cp_timeline01 {
    padding: 1em 20px;
  }
  .event_date {
    width: 15%;
  }
  .event_detail {
    width: 85%;
    font-size: 18px;
  }
  .message {
    background: linear-gradient(to right, #eeeeee 75%, transparent 75%);
  }
  .message_box {
    max-width: 890px;
    padding: 80px 0;
  }
  .president_img {
    top: -200px;
    right: 5%;
    width: 540px;
  }
  .sh {
    height: 740px;
  }
  .shb {
    top: -50px;
  }
  .sb_wrapper {
    padding: 30px 0 30px;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
}
/* Mobile (Portrait) 画面の横幅が300px~767pxまで（基本）
---------------------------------------------------- */
@media only screen and (max-width: 767px) {
  .wrapper {
    width: 100%;
    padding: 30px 30px 0;
  }

  .header-inner {
    width: 100%;
    margin: auto;
    padding: 5px 0;
  }
  #header h1 {
    width: 210px;
  }
  #nav {
    display: none;
    position: absolute;
    top: 0;
    float: none;
    text-align: center;
    width: 100%;
    background: #fefefe;
    margin: 0 auto 40px auto;
    padding: 0;
  }
  ul.nav-menu ul a,
  .nav-menu ul ul a {
    width: 100%;
  }
  .nav-menu li a {
    color: #333;
    display: block;
    font-size: 15px;
    padding: 20px 10px;
    text-decoration: none;
  }
  .nav-menu li {
    display: block;
    float: none;
    border-bottom: 1px solid #ededed;
  }
  .nav-menu .sub-menu,
  .nav-menu .children {
    position: relative;
    width: 100%;
  }
  .toggle {
    display: block;
    float: right;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
  }
  h2 {
    line-height: 1.2em;
  }
  .top_content {
    flex-direction: column;
    padding: 0 20px;
  }
  .top_img {
    width: 55%;
    padding: 0;
    order: 2;
  }
  .top-header-txt {
    margin-top: 10px;
    order: 1;
  }
  .top-header h2 {
    font-size: 22px;
    margin-bottom: 5px;
    line-height: 1.5em;
  }
  .top-header h3 {
    font-size: 14px;
    line-height: 1.5em;
  }
  .home_about_box {
    flex-direction: column;
  }
  .home_about_img {
    width: calc(100% / 1);
    order: 1;
  }
  .home_about_txt {
    width: calc(100% / 1);
    padding: 10px 0;
    order: 2;
  }
  .home_about_txt h2 {
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 22px;
  }
  .home_about_txt h2 span {
    font-size: 14px;
    margin-bottom: 2px;
  }
  .home_about_il {
    right: -25px;
    width: 80px;
    bottom: 40px;
  }
  .link_btn {
    font-size: 16px;
  }
  .link_btn a {
    padding: 20px 45px 20px 20px;
  }
  .scroll-infinity__item {
    width: calc(100vw / 3);
  }
  p {
    font-size: 16px;
  }
  .mb100,
  .mb50 {
    margin-bottom: 30px !important;
  }
  .home_service {
    padding: 30px 0;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
  .home_service_box_even,
  .home_service_box_odd {
    flex-direction: column;
  }
  .home_service_img {
    width: calc(100% / 1);
    padding: 0 20px;
    order: 1;
  }
  .home_service_txt {
    width: calc(100% / 1);
    order: 2;
  }
  .home_service_txt h2 {
    padding-bottom: 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 900;
  }
  .home_service_txt h2 span {
    font-size: 16px;
    font-weight: 400;
  }
  .home_service_setsumei {
    font-size: 16px;
    margin-top: 5px;
  }
  .recruit_img {
    margin-bottom: 10px;
  }
  .home_recruit h2 {
    font-size: 20px;
  }
  .home_recruit_cont {
    background: linear-gradient(to right, #ff9900 100%, transparent 100%);
    height: auto;
    flex-direction: column;
    width: 100%;
    margin: 30px auto;
  }
  .recruit_box {
    width: calc(100% / 1);
    height: auto;
  }
  .recruit_box h3 {
    font-size: 18px;
  }
  .home_recruit_img {
    width: 95%;
    top: 0;
    right: 0;
    z-index: 10;
    order: 1;
    position: relative;
    margin-top: 10px;
  }
  .home_recruit_content {
    order: 2;
    width: 95%;
    margin: 10px auto;
  }
  .recruit_box p {
    margin-bottom: 80px;
  }
  .home_recruit_staff {
    bottom: -25px;
    left: 0;
    width: 110px;
  }
  .sdgs {
    background: linear-gradient(to left, #0070c0 100%, transparent 100%);
    height: auto;
    padding: 20px 0;
  }
  .sdgs h2 {
    flex-direction: column;
    margin-left: 0;
    font-size: 22px;
    text-align: center;
  }
  .sdgs h2 span {
    font-size: 12px;
    justify-content: center;
  }
  .sdgs h2 span::before {
    display: none;
  }
  .sdgs_box {
    width: 95%;
    padding: 10px 20px;
    margin: 20px auto;
  }
  .sdgs_il {
    flex-direction: column;
  }
  .sdgs_il_box {
    width: calc(100% / 1);
    margin-bottom: 30px;
  }
  .sdgs h3 {
    font-size: 22px;
  }
  .sdgs_il_box li {
    font-size: 14px;
  }
  .contact {
    flex-direction: column;
  }
  .contact_box {
    width: calc(100% / 1);
    margin-bottom: 10px;
  }
  .tel_btn {
    font-size: 16px;
  }
  .company {
    flex-direction: column;
    padding: 30px 0;
  }
  .company_logo {
    width: 250px;
  }
  .company_txt {
    text-align: center;
  }
  .company_txt h2 {
    padding: 0 40px;
  }
  .company_txt p {
    font-size: 16px;
  }
  .footer_menu {
    display: none;
  }
  .footer-inner {
    width: 100%;
    padding: 0px 20px;
  }
  .footer_il {
    bottom: unset;
    top: 65px;
    width: 90px;
    right: 0;
  }
  #copyright {
    font-size: 10px;
    padding: 10px 0;
  }
  .s_wrapper {
    padding: 80px 20px;
  }
  .sb_wrapper {
    padding: 10px 20px 50px;
  }
  .title h2,
  .outline_title h2,
  .rinen h2 {
    font-size: 42px;
  }
  .title h2 span,
  .outline_title h2 span,
  .sustainability_title span,
  .rinen h2 span {
    font-size: 18px;
    margin-top: 10px;
    margin-left: 0;
  }
  .message {
    background: linear-gradient(to right, #eeeeee 100%, transparent 100%);
  }
  .message_cont {
    padding: 0 20px;
  }
  .message_box {
    padding: 50px 0;
  }
  .message h2 {
    font-size: 22px;
  }
  .message li {
    font-size: 14px;
  }
  .president_img {
    position: relative;
    top: 0;
    right: 0;
    width: 85%;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  .president-box {
    width: 100%;
    text-align: right;
    margin-top: 0;
  }
  .president {
    padding: 0;
  }
  .outline_cont {
    flex-direction: column;
  }
  .outline_title,
  .outline_img {
    width: calc(100% / 1);
  }
  .outline_title h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .outline_title h3:before {
    width: 20px;
    height: 55px;
    margin-right: 0px;
  }
  .outline th,
  .outline td {
    padding: 5px 10px;
    display: block;
    width: 100%;
    text-align-last: unset;
    border: none;
    font-size: 14px;
  }
  .chart h2,
  .piechart h2,
  .permit h2,
  .area h2,
  .o_v h2,
  .rc h2,
  .qa h2 {
    font-size: 24px;
    padding: 0 15px;
  }
  .piechart_cont {
    flex-direction: column;
  }
  .piechart_kinds p {
    font-size: 16px;
    margin-left: 10px;
  }
  .piechart_img {
    width: 80%;
    margin: 20px auto;
    order: 2;
  }
  .piechart_box {
    padding: 30px;
    width: 95%;
    margin: 0 auto;
  }
  .piechart_kinds h3 {
    font-size: 18px;
  }
  .permit tr:first-child th,
  .permit tr:first-child td {
    display: none;
  }
  .permit th,
  .permit td {
    padding: 5px 10px;
    display: block;
    width: 100%;
    border: none;
    font-size: 14px;
  }
  .permit th {
    text-align: center;
  }
  .permit td {
    padding: 20px 10px;
  }
  .histroy_box {
    padding: 0 20px;
  }
  .histroy h2 {
    font-size: 22px;
    margin: 20px 0;
  }
  .cp_timeline01:before {
    left: 0;
  }
  .event {
    margin-left: 20px;
  }
  .event_date {
    font-size: 20px;
    width: 15%;
  }
  .event_detail {
    width: 85%;
  }
  .event {
    font-size: 14px;
    margin-bottom: 10px;
    margin-left: 20px;
  }
  .histroy {
    margin-bottom: 30px;
  }
  .ggmap {
    padding-bottom: 66.25%;
  }
  .ggmap iframe,
  .ggmap object,
  .ggmap embed {
    margin-top: -75px;
  }
  .ggmap iframe {
    height: calc(25vh + 300px);
  }
  .sustainability_title,
  .cc_title {
    font-size: 30px;
  }
  .houshin_midashi {
    margin-bottom: 5px;
    font-size: 18px;
    padding-bottom: 20px;
    text-align: left;
  }
  .houshin p {
    font-size: 16px;
  }
  .houshin li {
    font-size: 15px;
    line-height: 1.8em;
    margin-bottom: 10px;
  }
  .houshin li ul {
    margin: 0;
    padding: 0 0 0 10px;
  }
  .houshin li ul li {
    margin-bottom: 0;
  }
  .houshin h2 {
    font-size: 24px;
    margin: 10px 0;
  }
  .houshin th,
  .houshin td {
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid;
    display: block;
    width: 100%;
  }
  .iso_img {
    margin: 30px auto;
    flex-direction: column;
  }
  .iso_img_box:nth-child(1),
  .iso_img_box:nth-child(2) {
    width: 100%;
    padding: 10px 20px;
  }
  .sustainability h2 {
    font-size: 24px;
    margin-top: 10px;
  }
  .sustainability p,
  .sdgs_attempt p {
    font-size: 14px;
    line-height: 1.5em;
  }
  .sustainability_img {
    margin-bottom: 40px;
  }
  .sustainability h2::before {
    height: 50px;
  }
  .attempt h3 {
    font-size: 18px;
  }
  .attempt h3:before {
    margin-right: 5px;
  }
  .attempt_box {
    flex-direction: column;
  }
  .attempt_img_box {
    width: calc(100% / 1);
    padding: 0 0 20px;
  }
  .iso_btn {
    font-size: 18px;
  }
  .cc h2 {
    font-size: 14px;
  }
  .cc_img {
    margin: 10px auto;
  }
  .cc h3 {
    font-size: 22px;
  }
  .cc_group {
    flex-direction: column;
  }
  .cc_txt {
    width: calc(100% / 1);
    padding: 0;
    margin-bottom: 50px;
  }
  .cc_logo {
    width: 60%;
    margin: 0 auto;
  }
  .cc_name {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .servece_txt {
    font-size: 14px;
    width: 75%;
    line-height: 1.5em;
    padding: 10px;
  }
  .service_content {
    padding: 30px 0;
  }
  .s_c {
    flex-direction: column;
    padding: 0 20px;
  }
  .s_c_box {
    height: auto;
    width: calc(100% / 1);
    background-position: center;
    background-size: cover;
  }
  .s_c_no {
    width: 60%;
    margin-bottom: 20px;
  }
  .s_c_title {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.5em;
    font-weight: 900;
  }
  .s_c_txt {
    font-size: 14px;
    line-height: 1.5em;
  }
  .s_link a {
    padding: 15px 20px;
    font-size: 14px;
    width: 200px;
  }
  .s_link a:after {
    right: 20px;
    top: 20px;
    width: 21px;
    height: 10px;
  }
  .shikaku h2 {
    font-size: 24px;
    padding: 0 20px;
  }
  .shikaku p {
    font-size: 15px;
    text-align: left;
  }
  .accordion-001 p {
    padding: 1em 2em;
  }
  .accordion-001 ul {
    padding: 0px 5px;
    flex-direction: column;
  }
  .accordion-001 li {
    margin-bottom: 0;
    font-size: 14px;
  }
  .sh {
    height: auto;
  }
  .se_title {
    top: 150px;
    width: 100%;
  }
  .se_title h2 {
    font-size: 22px;
  }
  .se_heading {
    height: 65px;
  }
  .se_heading::after {
    height: 30px;
  }
  .shb_sp {
    padding: 0 20px;
  }
  .shb {
    top: 0;
    margin: 0;
    flex-direction: column;
    padding: 30px 20px;
  }
  .shb_img {
    width: 100%;
    padding: 0;
    order: 2;
  }
  .shb_txt {
    font-size: 16px;
    order: 1;
    padding: 10px 0;
    width: 100%;
    margin-bottom: 20px;
  }
  .se_c p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .se_c_imgbox,
  .bm_c_imgbox {
    flex-wrap: wrap;
  }
  .se_c_flex,
  .bm_c_flex {
    width: calc(100% / 2);
  }
  .bm_c_flex:last-child {
    margin: 0 auto;
  }
  .se_c_img {
    padding: 0 0 50px;
  }
  .cleaning_section h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .cleaning_section h2 span {
    font-size: 14px;
  }
  .cleaning_section h3 {
    font-size: 14px;
    padding: 15px 20px;
  }
  .c_concept {
    margin: 20px auto 0;
    flex-direction: column;
    padding: 0 20px;
  }
  .c_ent {
    width: calc(100% / 1);
    margin-bottom: 20px;
    padding: 0;
    order: 2;
  }
  .c_ent_title {
    font-size: 32px;
    font-weight: 800;
  }
  .c_ent_title span {
    font-size: 16px;
  }
  .c_concept_box {
    width: calc(100% / 1);
    order: 1;
  }
  .c_consept_j {
    font-size: 16px;
    line-height: 1.5em;
  }
  .so_link_btn {
    margin-bottom: 50px;
  }
  .se_transaction {
    flex-direction: column;
  }
  .se_t_box {
    width: calc(100% / 1);
    padding: 0;
    margin-bottom: 30px;
  }
  .wp_t_box-height {
    height: 330px;
  }
  .se_t_box h2 {
    font-size: 20px;
  }
  .se_contact_title {
    font-size: 14px;
  }
  .se_contact {
    width: 180px;
    right: 0;
    bottom: 20px;
  }
  .se_link_btn a {
    padding: 15px 20px 15px 0px;
    font-size: 16px;
  }
  .se_link_btn a:after {
    width: 25px;
    height: 20px;
    right: 10px;
    top: 15px;
  }
  .se_t_achievements {
    width: calc(100% / 1);
    padding: 20px 0;
  }
  .se_t_achievements img,
  .se_t_achievements img:last-child {
    padding: 0 20px;
  }
  .se_t_achievements h2 {
    font-size: 22px;
  }
  .se_t_achievements h3 {
    font-size: 18px;
    margin: 20px auto;
    padding: 0 20px;
  }
  .se_t_achievements h3 span {
    font-size: 24px;
  }
  .se_t_achievements p {
    font-size: 16px;
    line-height: 1.5em;
    padding: 20px 20px 0;
  }
  .place {
    padding: 15px;
    font-size: 14px;
    text-align: left;
  }
  .a_m {
    flex-direction: column;
    padding: 0 20px;
  }
  .a_m_img,
  .a_m_txt {
    width: calc(100% / 1);
  }
  .a_m_txt {
    padding-top: 20px;
  }
  .a_m_txt h2 {
    font-size: 16px;
    padding: 0;
  }
  .a_m_txt p {
    font-size: 14px;
    padding: 5px 0 10px;
  }
  .o_v_box {
    flex-direction: column;
  }
  .o_v_txt {
    width: 100%;
    padding: 0;
  }
  .o_v_img_r {
    width: 100%;
    margin: 20px auto;
  }
  .o_v_img {
    flex-wrap: wrap;
  }
  .o_v_img_box {
    padding: 0 5px;
    width: calc(100% / 2);
    flex: unset;
  }
  .o_v_img_box:first-child {
    padding: 0 5px;
    width: calc(100% / 1);
  }
  .o_v_txt table {
    width: 600px;
  }
  .o_v_txt th,
  .o_v_txt td {
    padding: 15px 10px;
  }
  .se_pac {
    width: 150px;
  }
  .a_m_imgbox {
    flex-direction: column;
  }
  .a_m_imgbox_txt {
    width: 100%;
  }
  .bm_pac {
    width: 125px;
    left: unset;
    right: 0;
    bottom: 105px;
  }
  .bm_box {
    padding: 20px;
  }
  .bm_txt {
    width: 100%;
    float: unset;
  }
  .bm_txt h2 {
    font-size: 20px;
    text-align: center;
    line-height: 1.5em;
  }
  .bm_txt p {
    font-size: 16px;
    line-height: 1.5em;
  }
  .bm_img_l {
    position: relative;
    left: 0;
    bottom: 0;
  }
  .bm_link_btn a,
  .so_link_btn a {
    padding: 15px 30px 15px 15px;
    font-size: 16px;
    width: auto;
  }
  .bm_link_btn a:after,
  .so_link_btn a:after {
    width: 20px;
    height: 20px;
    right: 10px;
    top: 20px;
  }
  .sc_so {
    padding: 20px;
  }
  .sc_so h2 {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: left;
  }
  .sc_so_box {
    flex-direction: column;
  }
  .sc_so_txt {
    width: calc(100% / 1);
    font-size: 16px;
    line-height: 1.5em;
    padding: 0;
  }
  .sc_so_img {
    width: calc(100% / 1);
  }
  .so_pac {
    position: relative;
    text-align: center;
    margin-bottom: 20px;
  }
  .so_contact {
    width: 220px;
    position: relative;
    margin: 0 auto;
    right: 0;
    bottom: 0;
  }
  .so_contact_c {
    width: 100%;
    height: auto;
  }
  .so_contact_title {
    font-size: 14px;
  }
  .recruit h2 {
    font-size: 22px;
  }
  .now,
  .fu {
    font-size: 30px;
  }
  .recruit h3 {
    font-size: 22px;
  }
  .recruit p {
    font-size: 16px;
    line-height: 1.5em;
    text-align: left;
  }
  .rec_txtbox {
    position: relative;
    width: 100%;
    max-width: 1200px;
    top: 0;
    left: 0;
    transform: unset;
    -webkit-transform: unset;
    padding: 30px 0;
    text-align: center;
  }
  .rc_cate {
    flex-direction: column;
  }
  .rc_cate_name {
    width: calc(100% / 1);
    border-left: none;
    border-bottom: 1px solid;
  }
  .rc_cate_name:last-child {
    border-right: none;
  }
  .rc_cate_name a {
    padding: 10px 10px;
    font-size: 16px;
  }
  .rc_cate_name a:after {
    transform: rotate(90deg);
    margin: 0 auto;
    display: inline-block;
  }
  .rc_cate_name a.active::after {
    margin: 0 auto;
    display: inline-block;
    transform: rotate(0deg);
  }
  .tab-4 > div {
    padding: 15px 0;
  }
  .tab-4 > label {
    padding: 15px 0;
    font-size: 14px;
  }
  .tab-4 > label span {
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.5em;
  }
  .tab-4 th,
  .tab-4 td {
    width: 100%;
    display: block;
    text-align-last: auto;
    padding: 10px 25px;
    border-bottom: none;
    font-size: 16px;
  }
  .tab-4 th {
    text-align: center;
  }
  /* 	お問い合わせ
---------------------------------------------------- */
  .contact_title,
  .contact_order_title {
    font-size: 16px;
  }
  .contact_phone {
    flex-direction: unset;
    flex-wrap: wrap;
    margin: 10px 0;
  }
  .contact_phone_left {
    font-size: 14px;
    padding: 0;
    float: unset;
    width: 100%;
    text-align: center;
  }
  .contact_phone_right {
    padding: 10px 0;
    width: 100%;
    float: unset;
    margin: 15px 0;
  }
  .contact_phone_right img {
    width: 80%;
  }
  .contact_info {
    font-size: 18px;
  }
  .line {
    margin: 10px auto 20px;
  }
  .line p {
    font-size: 14px;
  }
  .inquiry th {
    width: 100%;
    display: block;
    padding: 0;
  }
  .inquiry td {
    padding: 15px 0px;
    width: 100%;
    display: block;
  }
  .kakeru {
    padding: 0 5px;
    font-size: 16px;
  }
  .contact_form_policy {
    width: 100%;
    padding: 20px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5em;
  }
  .inquiry p {
    font-size: 16px;
  }
  .wpcf7-list-item {
    margin: 0 0 0 5px !important;
  }
  .wpcf7-list-item-label::before,
  .wpcf7-list-item-label::after {
    display: none;
  }
  #formbtn {
    width: 80%;
    font-size: 20px;
  }
  .policy_info {
    font-size: 16px;
  }
  .policy_midashi {
    font-size: 20px;
    margin: 15px 0;
  }
  .policy p {
    font-size: 16px;
    line-height: 1.5em;
    margin-bottom: 30px;
    padding: 0 15px;
    margin-left: 0;
  }
  .policy p span {
    font-size: 16px;
    padding: 10px 10px;
    line-height: 1.5em;
  }
  .qa {
    width: 100%;
    padding: 0;
  }
  .qa_title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .qa_n {
    flex-direction: column;
  }
  .qa_n_h {
    width: calc(100% / 1);
    border-right: none;
    padding: 0;
  }
  .Qa-Box .Qa dt,
  .Qa-Box .Qa dd {
    margin: 15px 0;
  }
  .Qa-Box .Qa dt::before,
  .Qa-Box .Qa dd::before {
    width: 38px;
    height: 38px;
  }
  .character h2 {
    font-size: 20px;
  }
  .character_introduction {
    font-size: 16px;
    padding: 20px 20px;
  }
}
/* *****************************************************************
*   レスポンシブ（外部サービス対策用）
* ***************************************************************** */
/* Twitter Timeline
---------------------------------------------------- */
.twitter-timeline {
  width: 100%;
  height: 300px;
}
/* YouTube embed
---------------------------------------------------- */
.youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}
.youtube iframe,
.youtube object,
.youtube embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* YouTube URL貼り付け用
---------------------------------------------------- */
.wp-block-embed-youtube {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}
.wp-block-embed-youtube iframe,
.wp-block-embed-youtube object,
.wp-block-embed-youtube embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* 改行
---------------------------------------------------- */
@media screen and (min-width: 769px) {
  .br-pc {
    display: block;
  }
  .br-sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
}
/*-- PC版表示CSS  --*/
.pc_area {
  display: block;
}
.sp_area {
  display: none;
}
/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 767px) {
  .pc_area {
    display: none;
  }
  .sp_area {
    display: block;
  }
}
/*-- PC版表示CSS  --*/
.pc_point {
  display: inline-block;
}
.sp_point {
  display: none;
}
/*-- スマホ版表示CSS  --*/
@media screen and (max-width: 767px) {
  .pc_point {
    display: none;
  }
  .sp_point {
    display: inline-block;
  }
}
#slideImage {
  position: fixed;
  right: -300px; /* 画像が完全に隠れる位置に設定 */
  top: 150px; /* 画面のトップからの位置を設定 */
  transition: right 0.5s ease;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  #slideImage {
    display: none;
  }
}
.nf {
  width: 100%;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}
.nf h2 {
  color: #2182c9;
  border-bottom: 3px solid;
  padding-bottom: 10px;
}
.not_found_title {
  font-size: 20px;
  line-height: 2em;
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .not_found_title {
    font-size: 16px;
    line-height: 2em;
    margin: 30px 0;
    text-align: left;
  }
}
/*reCAPTCHA v3 バッジを左下に移動*/
.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}
@media screen and (max-width: 767px) {
  .animation-container_s {
    height: 95px;
    background-size: cover;
  }
  .s_car {
    width: 70px;
    height: 40px;
  }
  .car {
    width: 105px;
    height: 45px;
  }
  #car1 {
    animation-delay: 0s;
  }
  #car2 {
    animation-delay: 4s;
  }
  #car3 {
    animation-delay: 8s;
  }
  #car4 {
    animation-delay: 12s;
  }
  #car5 {
    animation-delay: 16s;
  }
}

/* @keyframes はメディアクエリの外に記述 */
@keyframes drive {
  0% {
    left: -20%; /* 開始位置 */
  }
  100% {
    left: 120%; /* 終了位置を少し広げる */
  }
}

.ne_to {
  text-align: center;
}
.ne_to a {
  display: inline-block;
  margin: 0 auto;
  padding: 20px 50px;
  border: 2px solid #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 3px #2589d0;
  background-color: #2589d0;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 50px;
}
.ne_to a:hover {
  background: #005999;
  box-shadow: #005999;
}

@media only screen and (min-width: 1024px) and (max-width: 1600px) {
  .sdgs h2 {
    font-size: 28px;
  }
  .sdgs h2 span {
    font-size: 18px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1350px) {
  .sdgs {
    background: linear-gradient(to left, #0070c0 80%, transparent 80%);
  }
}
/* PCのみスペース表示 */
.pc-space {
  display: inline;
  margin-right: 10px;
}

/* SPでは非表示 */
@media only screen and (max-width: 767px) {
  .pc-space {
    display: none;
  }
}