/* ----------------------------------------------- 共通 ----------------------------------------------------------------------------------------------------------------------------------------- */
/* 一時的 ツールバー除け */
div#wpadminbar {
  /* display: none; */
}

/* カスタムプロパティ */
:root {
  --main-color: #EE761B;
  --accent-color: #FFE926;
}

html {
  margin-top: 0 !important;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  display: block;
  text-decoration: none;
}

ul {
  list-style: none;
  padding-left: 0;
}

.display-none {
  display: none !important;
}

.display-pc {
  display: block;
}

.display-sp {
  display: none;
}

/* 文字寄せ */
.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

/* フォント */


/* -----------------------------------------------ヘッダー----------------------------------------------------------------------------------------------------------------------------------------- */
header#siteHeader {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, .86);
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 10;
}

nav.global-nav.display-pc {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

img.sitelogo {
  padding-top: 31px;
  padding-bottom: 31px;
  padding-left: 47px;
  width: 12.9vw;
}

ul.header-menu-items {
  display: flex;
  justify-content: center;
}

li.menu-item {
  margin: 0 1.8vw;
  line-height: 31px;
}

li.menu-item a {
  font-size: .9vw;
  color: #333;
  font-weight: bold;
}

a.header-contact-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2vw;
  height: 100%;
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  text-align: center;
  font-size: 1.25vw;
  width: 15.6vw;
  box-sizing: border-box;
}

/* ハンバーガーアイコン */
.hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 24px;
  z-index: 3000;
  cursor: pointer;
  display: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #333;
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

/* スマホ時のみ表示 */
@media screen and (max-width: 768px) {
  nav.global-nav.display-pc {
    display: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .hamburger {
    display: block;
    top: 12px;
  }

  nav.global-nav {
    display: none;
    position: fixed;
    top: 54px;
    left: 0;
    background: #fff;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
    overflow-y: auto;
  }

  nav.global-nav.is-open {
    display: flex;
  }

  .header-contact-box.display-pc {
    display: none;
  }
}


/* -----------------------------------------------フッター----------------------------------------------------------------------------------------------------------------------------------------- */
.footer-main-contents {
  background: #FFF5D2;
  padding-top: 60px;
  padding-bottom: 60px;
}

img.footer-logo {
  display: block;
  margin: 0 auto;
}

p.footer-company-info {
  margin-top: 30px;
  text-align: center;
  line-height: 2.2;
}

.sitemap-links-columns {
  display: flex;
  flex-direction: column;
}

.footer-sitemap-links {
  max-width: 831px;
  margin: 90px auto 0;
  display: flex;
  flex-wrap: wrap;
}

.footer-sitemap-links {
  max-width: 831px;
  margin: 90px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

a.footer-sitemap-link {
  color: #333;
}

a.footer-sitemap-link:not(:first-child) {
  margin-top: 31px;
}

.copyright {
  background: var(--main-color);
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}


/* ----------------------------------------------- トップページ ----------------------------------------------------------------------------------------------------------------------------------------- */
/* メインビジュアル */
.mv {
  position: relative;
}

/* スライダー */
.slide-box-parent {
  display: flex;
  justify-content: end;
}

.slide-box {
  position: relative;
  max-width: 1400px;
  width: 72.9%;
  height: 100vh;
  margin-right: 0 !important;
}

.slick-list.draggable {
  height: 100%;
}

ul.slide-items li img {
  object-fit: cover;
}

.slick-track {
  height: 100%;
}

ul.slide-items li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

ul.slide-items {
  margin-top: 0;
  /* padding-left: 0;
  height: 590px; */
}

img.mv-triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 48.8vw;
}

.mv-text-box {
  position: absolute;
  top: 50%;
  left: 5.2%;
  transform: translateY(-50%);
}

p.mv-text1 {
  font-size: 4.6vw;
  font-weight: bold;
  line-height: 1.7;
}

.mv-text2-box {
  position: relative;
}

p.mv-text2 {
  font-size: 3vw;
  font-weight: bold;
}

img.mv-text2-pen {
  position: absolute;
  bottom: 0;
  z-index: -1;
}

/* 会社概要 */
section.about {
  background: #EE761B;
  color: #fff;
  position: relative;
  padding-top: 65px;
  margin-bottom: 150px;
}

p.section-back-text {
  font-size: 102px;
  font-weight: bold;
  opacity: .51;
  line-height: 1;
}

h2.section-title {
  font-size: 52px;
  margin-left: 18.7vw;
}

.about h2.section-title.white.text-center {
  margin-left: 0;
}

p.section-text {
  margin-top: 71px;
  font-size: 18px;
  line-height: 2.222;
  font-weight: 600;
}

.viewmore-button-box {
  margin-top: 77px;
}

a.viewmore-button {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
  padding: 27px;
  font-size: 18px;
  border-radius: 50px;
  font-weight: bold;
}

a.viewmore-button.white {
  border: 4px solid #fff;
  color: #FFF;
}

img.illust-image {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 10;
}

p.section-back-text {
  margin-left: 9.8vw;
}

p.section-back-text.white {
  position: absolute;
  top: 0;
  transform: translateY(-40%);
  letter-spacing: 0.1em;
}

section.about:before {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 100vw 150px 0px;
  border-color: transparent transparent #ee761b transparent;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  z-index: -1;
}

section.about:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 150px 100vw 0 0px;
  border-color: #ee761b transparent transparent transparent;
  position: absolute;
}

img.upper-triangle-line {
  position: absolute;
  top: 0;
  transform: translateY(-145%);
  z-index: -1;
  width: 29.5vw;
}

/* 事業案内 */
p.section-back-text.orange {
  color: #EE761B;
  opacity: .31;
}

h2.section-title.orange {
  color: var(--main-color);
}

.business-card-columns {
  display: flex;
}

.business-card {
  width: 20%;
}

h3.business-title {
  font-size: 28px;
  color: #fff;
  background: var(--main-color);
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
}

h3.business-title {
  font-size: 22px;
  color: #fff;
  background: var(--main-color);
  text-align: center;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  width: 10.8vw;
  padding: 24px 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

p.business-text {
  font-size: 18px;
  line-height: 1.72;
  background: rgba(238, 118, 27, .8);
  padding: 5vw 2.5vw;
  color: #fff;
  position: absolute;
  bottom: 0;
}

.business-card a {
  position: relative;
  pointer-events: none;
}

.business-card:first-child {
  margin-top: 160px;
}

.business-card:nth-child(2) {
  margin-top: 120px;
}

.business-card:nth-child(3) {
  margin-top: 80px;
}

.business-card:nth-child(4) {
  margin-top: 40px;
}

a.viewmore-button.orange {
  border: 4px solid var(--main-color);
  color: var(--main-color);
}

img.business-image {
  width: 100%;
  object-fit: cover;
}

img.knowledge-image {
  width: 100%;
}

/* 対応エリア */
section.area {
  position: relative;
}

.mapandcircle {
  position: relative;
}

img.area-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 73.5%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

img.area-map {
  width: 79.1%;
  display: block;
  margin: 256px auto 0;
}

.to-contact-box {
  padding: 35px 55px;
  max-width: 73.4%;
  border: 3px solid var(--main-color);
  border-radius: 20px;
  margin: 0 auto;
  background: #fff;
}

p.to-contact-box-text1 {
  font-size: 40px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

p.to-contact-text2 {
  font-size: 70px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}

span.orange {
  color: var(--main-color);
  font-weight: 900;
}

a.to-contact-button {
  background: var(--main-color);
  color: #fff;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
  padding: 25px;
  border-radius: 20px;
}

.button-box {
  position: relative;
}

img.contact-woman {
  position: absolute;
  top: 0;
  right: 50px;
  transform: translateY(-100%);
  width: 28.8vw;
  /* z-index: -1; */
}

/* SDGs */
section.sdgs {
  margin-top: 78px;
}

img.sdgs-logo {
  max-width: 547px;
  margin: 0 auto;
  display: block;
}

img.sdgs-town {
  width: 100%;
}

.insert-orange {
  padding: 102px 0;
  background: var(--main-color);
}

.insert-orange.to-sdgs {
  padding-bottom: 50px;
}

p.sdgs-insert-text {
  text-align: center;
  color: #fff;
  /* font-weight: bold; */
  line-height: 2.22;
}

.sdgx-action-box {
  display: flex;
  flex-wrap: wrap;
}

.action-image, .action-content {
  width: 50%;
}

.action-image img {
  height: 100%;
  object-fit: cover;
  aspect-ratio: 96 / 50;
  display: block;
}

.action-content {
  padding: 7.2vw 6.5vw;
  box-sizing: border-box;
}

.action-title-box {
  display: flex;
  align-items: center;
}

h3.action-title {
  margin-left: 26px;
  color: var(--main-color);
  font-size: 36px;
  font-weight: 900;
}

p.action-text {
  margin-top: 46px;
  line-height: 40px;
  font-weight: 600;
}

/* ----------------------------------------------会社概要ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
.mv-2nd {
  position: relative;
}

img.mv-2nd-image {
  width: 100%;
  filter: brightness(0.65);
}

p.page-title-en {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 58px;
  font-weight: bold;
  opacity: .7;
  line-height: 1;
}

h1.page-title-jp {
  font-size: 24px;
  text-align: center;
  margin-top: 7px;
  font-weight: bold;
}

section.aboutus {
  margin-top: 103px;
}

section.aboutus h2 {
  text-align: center;
  font-size: 52px;
  font-weight: 800;
}

.page-id-12 section.business p.section-back-text.white {
  position: relative;
  top: auto;
  transform: none;
  letter-spacing: 0.1em;
  font-weight: 800;
}

.business {
  padding: 82px 0;
  margin-top: 95px;
  position: relative;
}

.page-id-12 section.business {
  background-color: var(--main-color);
}

p.section-back-text.white {
  color: #fff;
}

h2.section-title.white {
  color: #fff;
  font-weight: 800;
}

img.action-policy-image {
  display: block;
  margin: 0 auto;
}

h3.company-h3 {
  font-size: 35px;
  font-weight: 900;

}

h3.company-h3.white {
  color: #fff;
}

h3.company-h3.vision {
  margin-top: 95px;
  font-weight: 900;
  color: #fff;
}

h3.company-h3.white.text-center.vision+p {
  margin-top: 41px;
  color: #fff;
}

.section-content-w {
  max-width: 1400px;
  margin: 0 auto;
}

.action-policy-box.section-content-w {
  margin-top: 172px;
}

.action-policy-box-child {
  position: relative;
}

.action-policy {
  background: #fff;
  padding: 136px 100px;
}

.actin-policy-columns {
  margin-top: 72.6px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.action-policy-column {
  background: #FFF5D2;
  padding: 54px 21px;
  width: 18.2%;
}

p.action-number {
  position: relative;
  text-align: center;
}

span.background-policy {
  color: #FFE926;
  font-weight: bold;
}

span.background-policy+span {
  font-size: 35px;
  font-weight: bold;
  color: var(--main-color);
  position: absolute !important;
  /* display: block; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

p.action-title-en {
  text-align: center;
  margin-top: 39px;
  font-size: 24px;
  font-weight: 900;
  color: var(--main-color);
  position: relative;
  padding-bottom: 20.5px;
  letter-spacing: .12em;
}

p.action-title-en:after {
  display: block;
  content: "";
  width: 39px;
  height: 4px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

img.vision-image1 {
  max-width: 39.7%;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

img.vision-image2 {
  max-width: 50.6%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0%, -45%);
  z-index: 10;
}

.business-white-box {
  height: 21.6vw;
  width: 100%;
  background: #fff;
  position: absolute;
  bottom: 0;
}

figure.ompany-info-image-box {
  text-align: right;
}

.section-title-box-parent {
  position: relative;
}

figure.company-info-image-box {
  text-align: right;
  margin-bottom: 0;
}

img.company-info-image {
  max-width: 89.5%;
}

.company-info p.section-back-text {
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}

.company-info h2.section-title.white {
  position: absolute;
  top: 20%;
}

h2.section-title.white.shadow {
  text-shadow: 0px 3px 6px rgba(0, 0, 0, .47);
}

.backbox {
  height: 50%;
  width: 50%;
}

.back-orange-box {
  height: 50%;
  width: 100%;
  position: absolute;
  background: var(--main-color);
  bottom: 0;
  z-index: -10;
}

.company-info div.section-content-box {
  background: var(--main-color);
}

.section-content-box {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}

.company-info p.section-text {
  margin-top: 53.7px;
  color: #fff;
}

table.company-info-table {
  margin-top: 76px;
  width: 100%;
  font-size: 18px;
}

table.company-info-table th, table.company-info-table td {
  border: none;
}

table.company-info-table th {
  padding: 21.5px 39px;
  background: #FFF5D2;
  text-align: left;
  border-left: 2px solid #333;
  border-top: 1px solid #C7C7C7;
  border-right: 1px solid #C7C7C7;

}

table.company-info-table td {
  padding: 21.5px 39px;
  background-color: #fff;
  text-align: left;
  border-top: 1px solid #C7C7C7;
  border-right: 1px solid #C7C7C7;
}

h3.company-h3.history {
  margin-top: 76px;
}

iframe {
  width: 100%;
  margin-top: 92px;
}

.insert-white {
  padding: 102px 0;
  background: #fff;
}

section.top-sdgs {
  margin-top: 104px;
}

p.sdgs-insert-text.black {
  color: #333;
  font-weight: 600;
}

img.sdgs-town.company-page {
  margin-top: 73px;
}

section.top-sdgs .action-text {
  font-weight: 600;
}

/* ----------------------------------------------- 私たちについてページ ----------------------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------- 産業廃棄物運搬収集ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
figure.wp-block-image.size-large.ec-link-image {
  text-align: center;
  padding: 50px;
}

figure.wp-block-image.size-large.ec-link-image img:hover {
  opacity: .5;
}

/* ----------------------------------------------- プラポリページ ----------------------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------- ご利用ガイドページ ----------------------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------- カートページ ----------------------------------------------------------------------------------------------------------------------------------------- */

/* ----------------------------------------------- 商品一覧ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
ul.item-archive-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

li.item-archive-list-item {
  width: 30%;
  padding: 10px;
  background: #f8f8f8;
  box-sizing: border-box;
}

img.item-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}


/* ----------------------------------------------- 商品詳細ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
article.category-item {
  max-width: 1000px;
  margin: auto;
}

div#img-box {
  display: flex;
  flex-wrap: wrap;
}

.itemimg img {
  height: 100%;
  object-fit: cover;
  margin-right: 10px;
}

.itemsubimg {
  display: flex;
}

.itemsubimg img {
  height: 100%;
  object-fit: cover;
  margin-right: 10px;
}

span.field_cprice {
  display: none;
}

div#img-box, .item-info, .detail-box {
  margin-top: 25px;
}

.detail-box h2.item-name, .detail-box .itemcode {
  display: none;
}

/* ----------------------------------------------- ブログ一覧ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
li.archive-list-item {
  padding-top: 25px;

}

li.archive-list-item:not(:first-child) {
  margin-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid;
}

/* ----------------------------------------------- ブログ詳細ページ ----------------------------------------------------------------------------------------------------------------------------------------- */
.maincontent {
  margin: 150px auto;
  padding: 1rem;
  max-width: 1440px;
}

.the-content, a.to-archive-link {
  margin-top: 50px;
}

/* ----------------------------------------------- カートページ ----------------------------------------------------------------------------------------------------------------------------------------- */
/* カートの中 */
div.cart-page td, div.cart-page th {
  box-sizing: border-box;
}

article#wc_cart {
  overflow: scroll;
}

.cart_navi ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cart_navi ul li {
  padding: 10px;
  background: var(--main-color);
  width: 25%;
  text-align: center;
  box-sizing: border-box;
  border-right: 1px solid #fff;
  opacity: .5;
  color: #fff;
}

.cart_navi ul li.current {
  opacity: 1;
}

table#cart_table {
  width: 100%;
  margin-top: 20px;
}

table#cart_table th, table#cart_table td {
  padding: 10px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

div#customer-info th, div#customer-info td, table#delivery_flag th, table#delivery_flag td, table#time th, table#time td, table#notes_table th, table#notes_table td, table#escott th, table#escott td, table#confirm_table th, table#confirm_table td {
  padding: 10px;
  border-left: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

table#cart_table th:last-child, table#cart_table td:last-child, div#customer-info th:last-child, div#customer-info td:last-child, table#time th:last-child, table#time td:last-child, table#notes_table th:last-child, table#notes_table td:last-child, table#confirm_table th:last-child, table#confirm_table td:last-child {
  border-right: 1px solid #ddd;
}

div#customer-info tr:last-child th, div#customer-info tr:last-child td, table#time tr:last-child th, table#time tr:last-child td, table#notes_table th, table#notes_table td, table#escott tbody tr:nth-child(3) th, table#escott tbody tr:nth-child(3) td, table#confirm_table tr:last-child th, table#confirm_table tr:last-child td {
  border-bottom: 1px solid #ddd;
}

div.send {
  margin-top: 20px;
}

div.send input {
  font-size: 20px;
}

/* お客様情報 */
div#customer-info h5 {
  margin-top: 20px;
}

table.customer_form {
  width: 100%;
}

table.customer_form input {
  margin: 0 10px;
}

/* 配送・支払い方法 */
table#delivery_flag tr td {
  border-right: 1px solid #ddd;
}

/* クレカ入力 */
table#escott td {
  border-right: 1px solid #ddd;
}

/* 内容確認 */
table#confirm_table {
  width: 100%;
  margin-top: 20px;
}

/* ----------------------------------------------- メンバーページ ----------------------------------------------------------------------------------------------------------------------------------------- */
/* ログイン */
article#wc_login h1.member_page_title {
  max-width: 800px;
  margin: 0 auto;
}

.loginbox {
  background: #f8f8f8;
  padding: 10px;
  margin-top: 20px;
  max-width: 800px;
  margin: 20px auto;
}

form#loginform p:not(:first-child) {
  margin-top: 20px;
}

.new-entry {
  margin-top: 20px;
}

.new-entry h2 {
  display: none;
}

/* 新規会員登録 */
table.customer_form th, table.customer_form td {
  padding: 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

table.customer_form td {
  border-right: 1px solid #ddd;
}

table.customer_form tr:last-child th, table.customer_form tr:last-child td {
  border-bottom: 1px solid #ddd;
}

/* マイページ */
div#memberinfo table:first-child {
  width: 100%;
}

div#memberinfo table:first-child th, div#memberinfo table:first-child td {
  padding: 10px;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
}

div#memberinfo table:first-child td:last-child {
  border-bottom: 1px solid #ddd;
}

th, td {
  border: 1px solid #ddd;
}


/* --------------------------------------------------- タブレット --------------------------------------------------- ------------------------------------------------------------------------------------------------------ ----------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:1024px) {}


/* --------------------------------------------------- スマホ --------------------------------------------------- ------------------------------------------------------------------------------------------------------ ----------------------------------------------------------------------------------------------------------------------------------------- */
@media screen and (max-width:639px) {

  /* ----------------------------------------------- 共通 ----------------------------------------------------------------------------------------------------------------------------------------- */
  /* 改行 */
  .display-pc {
    display: none;
  }

  .display-sp {
    display: block;
  }

  /* -----------------------------------------------ヘッダー----------------------------------------------------------------------------------------------------------------------------------------- */
  header#siteHeader {
    flex-direction: column;
  }

  .sitelogo-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .sitelogo-box a {
    padding: 5px 0;
  }

  img.sitelogo {
    padding: 0;
    width: 200px;
  }

  ul.header-menu-items.upper {
    margin: 0;
    flex-direction: column;
  }

  ul.header-menu-items.lower {
    flex-direction: column;
  }

  nav.global-nav.display-pc {
    justify-content: flex-start;
    align-items: baseline;
    padding: 50px 100px;
  }

  li.menu-item {
    margin: 10px 0;
    font-size: 16px;
  }

  li.menu-item a {
    font-size: 16px;
    color: #333;
    font-weight: bold;
  }

  /* -----------------------------------------------フッター----------------------------------------------------------------------------------------------------------------------------------------- */
  /* 	ECリンク */
  .ec-link-box {
    flex-direction: column;
    right: 0;
    bottom: 20px;
  }

  a.ec-link {
    margin-bottom: 10px;
    font-size: 1rem;
  }

  .footer-sitemap-links {
    margin-top: 45px;
    padding: 1rem;
  }

  .sitemap-links-columns {
    width: 50%;
    margin-top: 31px;
    /* text-align: center; */
  }

  /* -----------------------------------------------トップページ ----------------------------------------------------------------------------------------------------------------------------------------- */
  .slide-box-parent {
    display: flex;
    justify-content: end;
    height: 60vh;
  }

  .mv {
    margin-top: 81px;
  }

  .slide-box {
    height: auto;
  }

  p.mv-text1 {
    font-size: 20px;
  }

  p.mv-text2 {
    font-size: 25px;
  }

  /* 会社概要 */
  h2.section-title {
    margin-left: 0;
    font-size: 40px;
    text-align: center;
  }

  p.section-text.text-center {
    text-align: left;
    padding: 1rem;
    margin-top: 35px;
  }

  p.section-back-text {
    font-size: 30px;
  }

  .business-card-columns {
    flex-direction: column;
  }

  /* 事業案内 */
  .business-card:not(:first-child) {
    margin-top: 60px;
  }

  .business-card {
    width: 100%;
    margin-top: 30px;
  }

  h3.business-title {
    width: 208px;
  }

  .business-card:first-child {
    margin-top: 90px
  }

  img.business-image {
    height: 50vh;
    width: 100%;
    object-fit: cover;
  }

  p.business-text {
    padding: 1rem;
  }

  img.sdgs-logo {
    max-width: 100%;
  }

  .viewmore-button-box {
    margin-top: 38px;
  }

  a.viewmore-button {
    max-width: 250px;
    padding: 1rem;
  }

  img.area-map {
    margin: 0;
    width: 100%;
  }

  .to-contact-box {
    padding: 1rem;
  }

  p.to-contact-box-text1 {
    font-size: 20px;
    text-align: center;
  }

  p.to-contact-text2 {
    font-size: 25px;
  }

  a.to-contact-button {
    padding: 1rem;
    font-size: 20px;
  }

  img.contact-woman {
    display: none;
  }

  img.sdgs-logo {
    width: 80%;
  }

  .insert-orange {
    padding: 51px;
  }

  .sdgx-action-box.first {
    flex-direction: column-reverse;
    margin-bottom: 23px;
  }

  .action-image, .action-content {
    width: 100%;
  }

  .action-content {
    padding: 1rem;
  }

  h3.action-title {
    font-size: 20px;
  }

  p.action-text {
    margin-top: 23px;
  }

  /* ----------------------------------------------私たちについてページ ----------------------------------------------------------------------------------------------------------------------------------------- */
  .maincontent {
    margin: 100px auto;
  }

  .mv-2nd {
    height: 35vh;
  }

  img.mv-2nd-image {
    height: 100%;
    object-fit: cover;
  }

  section.aboutus {
    margin-top: 50px;
  }

  section.aboutus h2 {
    font-size: 40px;
  }

  .business p.section-text.text-center.white {
    text-align: center;
  }

  img.vision-image2 {
    transform: translate(0%, -100%);
  }

  figure.company-info-image-box {
    height: 150px;
  }

  img.company-info-image {
    height: 100%;
    object-fit: cover;
  }

  .action-policy {
    padding: 66px 1rem;
  }

  .action-policy-column {
    width: 100%;
  }

  .action-policy-column:not(:first-child) {
    margin-top: 20px;
  }

  h2.section-title.white.shadow {
    left: 50%;
    transform: translateX(-50%);
  }

  .section-content-box {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-content {
    padding: 1rem;
  }

  table.company-info-table th {
    display: block;
    width: 100%;
    border: none;
  }

  table.company-info-table td {
    padding: 21.5px 39px;
    background-color: #fff;
    text-align: left;
    border-top: 1px solid #C7C7C7;
    border-right: 1px solid #C7C7C7;
    display: block;
    width: 100%;
    border: none;
  }

  h3.company-h3 {
    font-size: 30px;
  }

  /* ----------------------------------------------産業廃棄物収集運搬ページ ----------------------------------------------------------------------------------------------------------------------------------------- */

  figure.wp-block-image.size-large.ec-link-image {
    text-align: center;
    padding: 1rem;
  }

  /* -----------------------------------------------商品詳細ページ ----------------------------------------------------------------------------------------------------------------------------------------- */

  /* -----------------------------------------------商品一覧ページ ----------------------------------------------------------------------------------------------------------------------------------------- */

  li.item-archive-list-item {
    width: 100%;
  }

  li.item-archive-list-item:not(:first-child) {
    margin-top: 20px;
  }

  /* -----------------------------------------------カートページ ----------------------------------------------------------------------------------------------------------------------------------------- */
  .cart_navi ul li {
    width: 50%;
    border-bottom: 1px solid #fff;
  }

  /* お客様情報 */
  div#customer-info th, div#customer-info td, table#escott th, table#escott td {
    display: block;
    border-right: 1px solid #ddd;
  }

  div#customer-info th {
    width: 100%;
    border-right: 1px solid #ddd;
  }

}