/* ===============================
メインビジュアルエリア
=============================== */
.main-visual-area {
  position: relative;
}

/** メインビジュアルスライドショー **/
.kenburns {
  animation: kenburns 7000ms linear both;
}

.splide {
  position: relative;
  overflow: hidden;
  /* 線のアニメーション */
}

.main-visual-area .splide__slide {
  aspect-ratio: auto;
  height: calc(100vh + 120px);
  min-height: 580px;
}

.splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  will-change: transform;
  transform-origin: center center;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}


/** scroll down **/

.splide .scroll {
  position: absolute;
  right: 30px;
  bottom: 400px;
  writing-mode: vertical-rl;
  z-index: 2;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 12px;
}

@media screen and (max-width: 575px) {
  .splide .scroll {
    right: 10px;
    display: none;
  }
}

.splide .scroll::before {
  animation: scroll 2s infinite;
  background-color: var(--navy);
  bottom: -215px;
  content: "";
  height: 200px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
  z-index: 2;
}

.splide .scroll::after {
  background-color: #ccc;
  bottom: -215px;
  content: "";
  height: 200px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 2px;
}

@media print,
screen and (max-width: 991px) {
  .splide .scroll {
    display: none;
  }
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }

  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }

  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }

  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.mv-ttl-box {
  position: absolute;
  bottom: 20%;
  left: 0;
  padding: 75px 55px;
  background-color: rgba(44, 76, 147, 0.5);
}

.mv-ttl-box h2 {
  color: #fff;
  letter-spacing: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 90px;
  font-feature-settings: "palt";
  font-weight: 700;
}

.mv-ttl-box p {
  font-family: "Shippori Mincho", serif;
  color: #fff;
  font-size: 32px;
}

.color-bar-list {
  display: flex;
  gap: 0 28px;
  margin-top: 31px;
}

.color-bar {
  color: #fff;
  font-weight: 700;
  font-size: 36px;
  position: relative;
  background-color: #2c4c93;
  display: table;
  padding: 10px 34px;
}

.blue-bar {
  background-color: #2c4c93;
}

.yellow-bar {
  background-color: #d6ad16;
}

.pink-bar {
  background-color: #d66d8b;
}

.color-bar:before {
  content: "";
  position: absolute;
  top: 6px;
  /* 内側に入れる距離 */
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #ffffff;
  pointer-events: none;
}

.mv-ttl-box .sp {
  display: none;
}

@media (max-width: 1800px) {

  /** 通常のCSS **/
  .mv-ttl-box {
    bottom: 20%;
    padding: min(calc(40px + (75 - 40) * (100vw - 768px) / (1800 - 768)),
        75px) min(calc(30px + (40 - 30) * (100vw - 768px) / (1800 - 768)),
        40px);
  }

  .mv-ttl-box h2 {
    font-size: min(calc(40px + (90 - 40) * (100vw - 768px) / (1800 - 768)),
        90px);
  }

  .mv-ttl-box p {
    font-size: min(calc(20px + (32 - 20) * (100vw - 768px) / (1800 - 768)),
        32px);
  }

  .color-bar-list {
    gap: 0 min(calc(20px + (28 - 20) * (100vw - 768px) / (1800 - 768)),
        28px);
    margin-top: min(calc(20px + (31 - 20) * (100vw - 768px) / (1800 - 768)),
        31px);
  }

  .color-bar {
    font-size: min(calc(18px + (36 - 18) * (100vw - 768px) / (1800 - 768)),
        36px);
    padding: 10px min(calc(20px + (34 - 20) * (100vw - 768px) / (1800 - 768)),
        34px);
  }
}

@media (max-width: 768px) {
  .main-visual-area .splide__slide {
    aspect-ratio: auto;
    height: 85vh;
    min-height: 580px;
  }

  .mv-ttl-box h2 {
    font-size: 34px;
    line-height: 1.4;
  }

  .mv-ttl-box {
    width: 500px;
    position: absolute;
    bottom: 12%;
    left: 0;
    background-color: rgba(44, 76, 147, 0.5);
  }

  .color-bar-list {
    max-width: 240px;
    width: 100%;
    display: block;
    gap: 15px 28px;
    margin-top: 20px;
  }

  .color-bar {
    width: 100%;
  }

  .color-bar+.color-bar {
    margin-top: 15px;
  }

  .color-bar:before {
    content: "";
    position: absolute;
    top: 4px;
    /* 内側に入れる距離 */
    left: 4px;
    right: 4px;
    bottom: 4px;
    border: 1px solid #ffffff;
    pointer-events: none;
  }

  .mv-ttl-box .sp {
    display: block;
  }

  .color-bar {
    font-size: 18px;
  }
}

@media (max-width: 630px) {
  .mv-ttl-box {
    width: 320px;
  }

  .mv-ttl-box h2 {
    margin-bottom: 5px;
    font-size: 26px;
  }
}

/* ===============================
お知らせ
=============================== */

.info-bar {
  position: relative;
  background: #0f3170;
  background: linear-gradient(to right, #2c4c93, #00276a);
  padding: 40px 0 80px;
}

.info-box {
  max-width: 1290px;
  width: 100%;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  padding: 40px;
  margin-top: -120px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


.info-flex {
  display: flex;
  gap: 0 40px;
}

.info-row {
  padding-top: 20px;
}

.info-ttl .en {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1;
  color: #d6ad16;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
}

.info-area .info-ttl h3 {
  color: #2c4c93;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-area .info-ttl h3::after {
  content: none;
}

.info-meta {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 15px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.info-label {
  line-height: 1;
  font-weight: 700;
}

.info-meta {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 15px;
}

.info-date {
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}


.info-new {
  display: inline-block;
  padding: 3px 8px;
  font-size: 11px;
  color: #fff;
  background: #2c4c93;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

.info-text {
  font-size: 18px;
  flex: 1 1 auto;
  line-height: 2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
  word-break: break-all;
}

@media (max-width: 1500px) {
  .info-bar {
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }
}

@media (max-width: 991px) {

  .info-date {
    font-size: 20px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
  }

  .info-new {
    padding: 3px 8px;
    font-size: 16px;
  }

  .info-text {
    font-size: 16px;
  }

  .info-date {
    font-size: 16px;
  }

  .info-flex {
    display: flex;
    gap: 0 30px;
  }
}

@media (max-width: 768px) {
  .info-flex {
    display: block;
    gap: 0 30px;
  }

  .info-box {
    margin-top: -80px;
  }
}

@media (max-width: 480px) {

  /* 青いバー */
  .info-bar {
    padding: 40px 0 60px;
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }

  .info-date {
    font-size: 14px;
  }

  .info-new {
    padding: 3px 8px;
    font-size: 14px;
  }

  .info-text {
    font-size: 14px;
  }
}

/* ===============================
Metal Scrap
=============================== */
/* セクション全体：背景画像＋青オーバーレイ */
.metal-scrap-area {
  position: relative;
  padding: 100px 20px 80px;
  color: #fff;
  text-align: center;
  background-color: #00276a;
  background-image: url("../images/top/metal-bg.jpg");
  background-size: cover;
  background-position: center;
}


/* 中身の最大幅 */
.metal-scrap-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* 「Metal Scrap」のラベル */
.metal-label {
  margin-bottom: 24px;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  letter-spacing: 0;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--gold);
  letter-spacing: 0;
  display: inline-block;
  line-height: 1;

}


/* メイン見出し */
.metal-heading {
  font-size: 42px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 60px;
  padding-bottom: 22px;
  position: relative;
}

/* 見出し下の装飾ライン */
.metal-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background-color: #ffffff;
}

/* リード文 */
.metal-lead p {
  line-height: 2;
  text-align: center;
  color: #fff;
  margin-bottom: 4px;
}

/* 一番下のボタン風ボックス */
.metal-items {
  display: inline-block;
  margin-top: 40px;
  position: relative;
  padding: 14px 36px;
  font-size: 16px;
  letter-spacing: 0.1em;
  background: linear-gradient(to right, #2c4c93, #00276a);
}

.metal-items:before {
  content: "";
  position: absolute;
  top: 6px;
  /* 内側に入れる距離 */
  left: 6px;
  right: 6px;
  bottom: 6px;
  border: 1px solid #ffffff;
  pointer-events: none;
}

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

.metal-items ul {
  align-items: center;
  display: flex;
  gap: 0 20px;
}

.metal-items ul li {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  ;
}

@media (max-width: 991px) {
  .metal-items ul li {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
  }
}

/* 簡易レスポンシブ（スマホでの余白調整） */
@media (max-width: 768px) {
  .metal-scrap-area {
    padding: 60px 0 70px;
    padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
    padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
  }

  .metal-heading {
    font-size: 22px;
    line-height: 1.5;
  }

  .metal-label::before,
  .metal-label::after {
    width: 32px;
  }

  .metal-items {
    font-size: 14px;
    padding: 10px 20px;
  }

  .metal-items ul {
    display: flex;
    line-height: 1.8;
    max-width: 400px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {

  .metal-items ul li {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
  }
}

/* ===============================
ループボックス
=============================== */
.gallery-area {
  padding: 48px 0;
  background: linear-gradient(to right, #2c4c93, #00276a);
}

.gallery-area h4 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px;
  text-align: center;
}

.gallery-area .more-btn {
  margin: 40px auto 0;
}

.loop_box {
  overflow: hidden;
  width: 100%;
  transform: scaleX(-1);
}

.loop-track {
  --loop-distance: 0px;
  display: inline-flex;
  width: max-content;
  transform: translate3d(0, 0, 0);
  animation: loopScroll 30s linear infinite;
  will-change: transform;
}

.loop-track img {
  display: block;
  height: 200px;
  width: auto !important;
  max-width: none !important;
  object-fit: cover;
  flex-shrink: 0;
  margin-right: 20px;
  transform: scaleX(-1);
}

@keyframes loopScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(calc(-1 * var(--loop-distance)), 0, 0);
  }
}

@media (max-width: 991px) {
  .gallery-area h4 {
    padding-left: min(2.5vw, 50px);
    padding-right: min(2.5vw, 50px);
    color: #fff;
    line-height: 1.8;
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
    text-align: center;
  }

  .loop-track img {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .loop-track img {
    height: 140px;
  }

  .gallery-area h4 {
    padding-left: min(2.5vw, 50px);
    padding-right: min(2.5vw, 50px);
    color: #fff;
    line-height: 1.8;
    font-size: 20px;
    font-weight: 700;
    margin-top: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .gallery-area {
    padding: 40px 0;
  }

  .gallery-area h4 {
    font-size: 18px;
  }

  .loop-track img {
    height: 120px;
  }

  .gallery-area .more-btn {
    margin: 30px auto 0;
  }
}

/* ===============================
解体工事
=============================== */
.demolition-area {
  position: relative;
  background-color: var(--navy);
  background-image: url("../images/top/demolition-bg.jpg");
  padding: 120px 0;
  color: #fff;
  overflow: hidden;
}

/* 画像部分 */
.demolition-area .demolition-img {
  position: relative;
  max-width: 600px;
  width: calc(100% - 20px);
}

.img-wrap .main-img {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 背景の奥の写真（アクセント）を作りたい場合 → 以下を追加でOK */
.img-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 1;
}

@media (max-width: 991px) {
  .demolition-area {
    padding: 100px 0;
  }
}

@media (max-width: 768px) {
  .demolition-area {
    padding: 80px 0;
  }

  .demolition-area .demolition-img {
    position: relative;
    margin-left: 0;
    width: 100%;
    margin: 0 auto 50px;
  }

  .company-area a.more-btn {
    margin: 40px auto 0;
  }
}

@media (max-width: 768px) {
  .company-area {
    position: relative;
    background-color: var(--navy);
    background-image: url("../images/top/company-bg.jpg");
    padding: 80px 0 160px;
    overflow: hidden;
  }

}

/* ===============================
軽食サービスのご案内
=============================== */

.foodtruck-area {
  background: linear-gradient(90deg,
      #0086cf 0%,
      #0086cf 30%,
      #a7d7ed 70%);
  padding: 80px 30px;
  padding-left: calc(15px + 50 * (100vw - 320px) / 1180);
  padding-right: calc(15px + 50 * (100vw - 320px) / 1180);
}

/* 中の青い箱 */
.foodtruck-area .container {
  margin: 0 auto;
  padding: 52px 73px;
  background: linear-gradient(to right, #2c4c93, #00276a);
  display: flex;
  gap: 48px;
  color: #fff;
  box-sizing: border-box;
}

.foodtruck-content {
  flex: 1 1 50%;
  padding-top: 40px;
}

.foodtruck-label {
  font-size: 22px;
  font-weight: 700;
  color: #f6c443;
  margin-bottom: 8px;
}

.foodtruck-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 24px;
}

.foodtruck-divider {
  width: 80px;
  height: 2px;
  background-color: #ffffff;
  margin-bottom: 24px;
}

.foodtruck-text {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.foodtruck-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 180px;
  padding: 12px 32px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #003578;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.foodtruck-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #003578;
  font-size: 11px;
}

.foodtruck-visual {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.foodtruck-symbol {
  max-width: 350px;
  width: 100%;
  margin-bottom: 24px;
}

.foodtruck-symbol img {
  height: auto;
}

.foodtruck-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.foodtruck-photo {
  position: relative;
  overflow: hidden;
}

.foodtruck-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.foodtruck-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.foodtruck-arrow.prev {
  left: -13px;
}

.foodtruck-arrow.next {
  right: -13px;
}

.foodtruck-caption {
  font-size: 18px;
  color: var(--navy);
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  text-align: center;
}

/* 矢印ボタン（丸） */
.splide__arrow {
  width: clamp(40px, calc(57 / 2000 * 100vw), 57px);
  height: clamp(40px, calc(57 / 2000 * 100vw), 57px);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: #2c4c93;        /* 矢印の色 */
  display: block;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, calc(24 / 2000 * 100vw), 24px);
  cursor: pointer !important;
  transition: background 0.3s, color 0.3s;
  border: none !important;
  padding: 0;
  pointer-events: auto;
}


/* 左右の配置（必要に応じて調整） */
.splide__arrow--prev {
  left: -24px;
  top:50%;
  z-index: 100;
  transform: translateY(-50%);
  z-index: 1000;
  position: absolute;
}

.splide__arrow--next {
  right: -24px;
  top:50%;
  transform: translateY(-50%);
  position: absolute;
}

.splide {
    overflow: visible;
  }

/* ===============================
   POPUP
=============================== */
.menu-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* 表示ON */
.menu-popup.active {
  display: flex;
  overflow: hidden; /* ← スクロールバー消す */
}

/* ===============================
   BOX本体
=============================== */
.menu-popup__content {
  position: relative;
  background: #fff;
  padding: 20px; /* ← × ボタンが絶対切れない */
  
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden; /* ← 内側スクロールなし */
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.menu-popup__content img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===============================
   CLOSE ボタン
=============================== */
.menu-popup__close {
  position: absolute;
  top: 10px;   /* ← content 内側なので絶対切れない */
  right: 10px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  line-height: 28px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  padding: 0;

  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* 背景クリックで閉じる用 */
.menu-popup__overlay {
  position: absolute;
  inset: 0;
}


/* --- 矢印だけ確実にクリック可能にする最小修正 --- */
#dessertSlider { position: relative; }

/* 下層はイベントを拾わせない（重なり防止） */
#dessertSlider .splide__track,
#dessertSlider .splide__list,
#dessertSlider .splide__slide,
#dessertSlider .slide-card {
  pointer-events: none;
  z-index: 0;
}

/* 矢印レイヤーを最前面にしてイベントを受ける */
#dessertSlider .splide__arrows {
  position: absolute;
  inset: 0;
  z-index: 10;
}

#dessertSlider .splide__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: auto;            /* ← ここが肝 */
  cursor: pointer !important;
  z-index: 11;
}

/* 位置はお好みで */
#dessertSlider .splide__arrow--prev { left: 8px; }
#dessertSlider .splide__arrow--next { right: 8px; }

@media (max-width: 991px) {
  .foodtruck-symbol {
    max-width: 260px;
    width: 100%;
    margin-bottom: 24px;
  }

  .foodtruck-area .container {
    margin: 0 auto;
    padding: 52px 30px;
    background: linear-gradient(to right, #2c4c93, #00276a);
    display: block;
    gap: 48px;
    color: #fff;
    box-sizing: border-box;
  }
}

@media (max-width: 768px) {
  .foodtruck-inner {
    flex-direction: column;
    padding: 32px 20px;
  }

  .foodtruck-visual {
    align-items: flex-start;
  }

  .foodtruck-photo-wrap {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .foodtruck-content {
    flex: none;
    padding-top: 40px;
  }

  .foodtruck-symbol {
    max-width: 260px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .foodtruck-symbol {
    max-width: 200px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

/* ===============================
会社概要
=============================== */
.company-area {
  position: relative;
  background-color: var(--navy);
  background-image: url("../images/top/company-bg.jpg");
  padding: 224px 0;
  overflow: hidden;
}

.company-img.left {
  position: relative;
  max-width: 600px;
  margin-left: 0;
  width: 100%;
  width: calc(100% - 20px);
}

.img-wrap .main-img {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 背景の奥の写真（アクセント）を作りたい場合 → 以下を追加でOK */
.img-wrap::before {
  content: "";
  position: absolute;
  top: 20px;
  right: -20px;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 1;
}

.img-wrap.left::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  right: auto;
  width: 100%;
  height: 100%;
  background: var(--navy);
  z-index: 1;
}

@media (max-width: 991px) {
  .company-area {
    position: relative;
    background-color: var(--navy);
    background-image: url("../images/top/company-bg.jpg");
    padding: 140px 0;
    overflow: hidden;
  }
}

@media (max-width: 768px) {
  .company-area {
    position: relative;
    background-color: var(--navy);
    background-image: url("../images/top/company-bg.jpg");
    padding: 100px 0 180px;
    background-size: cover;
    overflow: hidden;
  }

  .company-img.left {
    position: relative;
    margin-left: 0;
    width: 100%;
    margin: 0 auto 50px;
  }

  .company-area a.more-btn {
    margin: 40px auto 0;
  }
}

@media (max-width: 480px) {
  .company-area {
    position: relative;
    background-color: var(--navy);
    background-image: url("../images/top/company-bg.jpg");
    padding: 80px 0 160px;
    overflow: hidden;
  }
}
.pc-img {
  display: block !important;
}
.sp-img {
  display: none !important;
}
@media (max-width: 768px) {
  .pc-img {
  display: none !important;
}
  .sp-img {
    display: block !important;
  }

}