@charset "UTF-8";
/*-- foundationフォルダの中の_index.scss --*/
/*---------------------------------

 reset

---------------------------------*/
/*** The new CSS Reset - version 1.2.0 (last updated 23.7.2021) ***/
/* ブラウザのUAスタイルシートのすべてのスタイルを削除します、displayは除く */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

/* box-sizingの優先値 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/*
  リストのスタイル（箇条書き・番号）を削除します
  normalize.cssで使用する場合
*/
ol,
ul {
  list-style: none;
}

/* 画像がコンテナを超えないようにするため */
img {
  max-width: 100%;
  vertical-align: top;
}

/* テーブルのセル間のスペースを削除します */
table {
  border-collapse: collapse;
}

/* Safariのtextarea要素のwhite-spaceプロパティを元に戻します */
textarea {
  white-space: revert;
}

/*** The new CSS Reset ***/
/* =========================
   Loading Overlay
   - 初期は非表示（チラ見え防止）
   - 初回のみ .is-active で表示
========================= */
#loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: #15126F;
  color: #fff;
  /* ★ デフォルトは非表示 */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  /* 初回のみ表示 */
}
#loading.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#loading {
  /* 消える状態 */
}
#loading.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#loading {
  /* 中身 */
}
#loading .loading-inner {
  text-align: center;
  padding: 20px;
}
#loading {
  /* ロゴ・画像（PNG / WebP などOK） */
}
#loading .loading-media {
  width: min(220px, 60vw);
  height: auto;
  display: block;
  margin: 0 auto 14px;
  animation: loading-float 1.3s ease-in-out infinite;
}
#loading {
  /* テキスト */
}
#loading .loading-text {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.9;
}
#loading {
  /* 流れるバー */
}
#loading .loading-bar {
  width: min(280px, 70vw);
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
  margin: 0 auto;
}
#loading .loading-bar::before {
  content: "";
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  animation: loading-bar 1s ease-in-out infinite;
}

/* =========================
   Animations
========================= */
/* ロゴふわふわ */
@keyframes loading-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* バーが流れる */
@keyframes loading-bar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(260%);
  }
}
/* =========================
   Video（ちらつき防止）
========================= */
video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*-- globalフォルダの中の_index.scss --*/
body {
  background-color: #fff;
  color: var(--main-TextColor);
}

h1,
h2,
h3,
h4,
p,
a,
li,
summary,
address input {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

@media (max-width: 707px) {
  p {
    font-size: 14.4px;
  }
}
html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scroll-margin-top: 200px;
}

:root {
  scrollbar-gutter: stable;
  /* モダンブラウザならこれ推奨 */
}

h1 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: bold;
  margin: 0;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
}
h3 {
  font-weight: 500;
  margin-top: 0;
  font-size: 1.3rem;
  margin-bottom: 20px;
  text-align: justify;
  color: #080c14;
}

h2 {
  font-size: 2.5rem;
  color: #792C2C;
  font-weight: 1000;
  font-style: italic;
  margin-bottom: 0.5em;
  display: inline-block;
  text-align: left;
}

@media (max-width: 1585px) {
  h3 {
    font-size: 1rem;
  }
}
a:hover {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px;
}

.subH2 {
  display: block;
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  line-height: 0px;
}

section {
  scroll-margin-top: 250px;
}

.subtop {
  background-color: #fff;
}
.subtop footer {
  background: #fafafb;
}

h2.section-title {
  font-size: 1.5rem;
  border-left: 5px solid #792C2C;
  padding-left: 1rem;
}
h2.section-title .main {
  color: #792C2C;
  margin-right: 0.5rem;
}
h2.section-title .sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: #444;
}

@media (max-width: 768px) {
  h2.section-title {
    font-size: 1.5rem;
    padding-left: 0.75rem;
    border-left-width: 4px;
  }
  h2.section-title .main {
    margin-right: 0.4rem;
  }
  h2.section-title .sub {
    font-size: 1.2rem;
  }
}
@media (max-width: 430px) {
  h2.section-title {
    font-size: 1.15rem;
    padding-left: 0.6rem;
    border-left-width: 3px;
  }
  h2.section-title .sub {
    font-size: 1rem;
  }
}
/*-- componentフォルダの中の_index.scss --*/
.text {
  padding-bottom: 3px;
  font-size: 60px;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.text:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.saiyou-Btn {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  right: max(0.5px, env(safe-area-inset-right));
}
.saiyou-Btn a {
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: #ffffff;
  color: #792C2C;
  padding: 18px 16px;
  border-radius: 3px 0 0 3px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-height: 80vh;
  max-width: calc(100vw - max(16px, env(safe-area-inset-right)));
  overflow: visible;
}
.saiyou-Btn a:hover {
  background-color: #792C2C;
  color: #fff;
}
.saiyou-Btn a::after {
  content: "→";
  font-size: 1.2em;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .saiyou-Btn {
    right: max(15px, env(safe-area-inset-right));
  }
  .saiyou-Btn a {
    padding: 12px 8px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    border-radius: 3px;
  }
  .saiyou-Btn a::after {
    content: "";
    display: none;
  }
}

.more-btn {
  flex: 0 0 140px;
}

.moreborder {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.8em 1.8em;
  border: 1px solid #333;
  font-size: 1.1rem;
  transition: 0.3s;
}

.moreborder:hover {
  background: #792C2C;
  color: white;
  border-color: #792C2C;
}

.more-recruit {
  border: 1px solid #ffffff;
  color: #fff;
  padding: 20px 90px;
  text-decoration: none;
  border-radius: 3px;
  transition: 0.8s;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.more-recruit:hover {
  background-color: #ffffff;
  color: #792C2C;
}

@media (max-width: 707px) {
  .more-recruit {
    font-size: 14px;
    padding: 20px 50px;
    text-align: center;
  }
}
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}
.back-to-top img {
  width: 60px;
  height: auto;
  display: block;
}
.back-to-top:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
  }
  .back-to-top img {
    width: 45px;
  }
}
.next-links {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: nowrap;
  margin: 80px auto 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.next-links::-webkit-scrollbar {
  display: none;
}

.next-card {
  background: #792C2C;
  color: #fff;
  padding: 12px 24px;
  text-align: center;
  flex: 0 0 300px;
  border-radius: 2px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  white-space: nowrap;
}
.next-card .number {
  display: block;
  font-size: 0.75rem;
  opacity: 0.6;
}
.next-card .title {
  display: block;
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 3px;
}
@media (max-width: 768px) {
  .next-card .title {
    font-size: 0.85rem;
  }
}
.next-card .more {
  display: block;
  font-size: 0.8rem;
  border-top: 1px solid #fff;
  padding-top: 3px;
}
.next-card:hover {
  background: #5f2121;
}

/* --------------------
   レスポンシブ設定
-------------------- */
/* タブレット */
@media (max-width: 1350px) {
  .next-card {
    flex: 0 0 280px;
  }
}
/* スマホ */
@media (max-width: 1265px) {
  .next-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .next-card {
    flex: 0 0 100%;
  }
}
.button-32 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  width: 400px;
  margin: 0 auto;
  padding: 0.9em 2em;
  overflow: hidden;
  border: 1px solid #FF6B4A;
  border-radius: 5px;
  background-color: #fff;
  color: #FF6B4A;
  font-size: 1em;
}

.button-32:hover {
  background-color: transparent;
  color: #fff;
}

.button-32::before {
  position: absolute;
  z-index: -1;
  transform: rotate(-30deg);
  width: 100%;
  height: 0;
  border-radius: 5px;
  background-color: #FF6B4A;
  content: "";
  transition: height 0.3s ease;
}

.button-32:hover::before {
  height: 350%;
}

@media (max-width: 499px) {
  .button-32 {
    max-width: 240px;
    /* ← 小画面向け */
    font-size: 0.9em;
    padding: 0.75em 1.4em;
  }
}
.R-footbtn {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  flex-wrap: wrap;
}
.R-footbtn .btn-block {
  width: 300px;
  padding: 28px 20px;
  text-align: left;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 130px;
  color: #FF6B4A;
  border: 2px solid transparent;
}
.R-footbtn .btn-block .en {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.R-footbtn .btn-block .jp {
  font-size: 0.9rem;
  margin-top: 8px;
  display: inline-block;
  font-weight: 700;
}
.R-footbtn .btn-block .icon {
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 1.2rem;
  border: 2px solid currentColor;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.R-footbtn .btn-block:hover {
  opacity: 0.85;
}
.R-footbtn {
  /* 塗りボタン */
}
.R-footbtn .btn-block.filled {
  background: #FF6B4A;
  color: #fff;
}
.R-footbtn .btn-block.filled .icon {
  border-color: #fff;
}
.R-footbtn {
  /* 枠線ボタン */
}
.R-footbtn .btn-block.outline {
  background: #fff;
  border-color: #FF6B4A;
  color: #FF6B4A;
}
.R-footbtn .btn-block.outline .icon {
  border-color: #FF6B4A;
}
.R-footbtn {
  /* 塗りボタン */
}
.R-footbtn .btn-block.filled {
  background: #FF6B4A;
  color: #fff;
}
.R-footbtn .btn-block.filled .icon {
  border-color: #fff;
}
.R-footbtn .btn-block.filled.is-entry {
  background: #792C2C;
  margin-bottom: 60px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .R-footbtn {
    flex-direction: column;
    align-items: center;
  }
  .R-footbtn .btn-block {
    width: 90%;
    max-width: 350px;
  }
}
.breadcrumb-004 {
  display: flex;
  gap: 0 20px;
  list-style: none;
  padding: 6px 0 6px 18px;
  overflow: hidden;
  background-color: #792C2C;
}
@media (max-width: 499px) {
  .breadcrumb-004 {
    padding: 3px 0 3px 18px; /* ← 少し小さめ */
  }
}

.breadcrumb-004 li {
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 20px;
}

.breadcrumb-004 li:first-child a::before {
  display: inline-block;
  width: 2em;
  height: 1em;
  margin-right: 4px;
  margin-bottom: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23fff'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  vertical-align: text-bottom;
  content: "";
}

.breadcrumb-004 li:not(:last-child)::before,
.breadcrumb-004 li:not(:last-child)::after {
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  content: "";
}

.breadcrumb-004 li:not(:last-child)::before {
  right: 0;
  border-left: 10px solid #fff;
}

.breadcrumb-004 li:not(:last-child)::after {
  right: 2px;
  border-left: 10px solid #792C2C;
}

.breadcrumb-004 a {
  font-size: 0.75em;
  color: #fff;
  text-decoration: none;
}

#loading {
  position: fixed;
  inset: 0;
  background: #ffffff; /* ブランドカラー */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  color: #fff;
}

.forklift {
  width: 180px;
  animation: drive 1.8s ease-in-out infinite;
}

@keyframes drive {
  0% {
    transform: translateX(-40px);
  }
  50% {
    transform: translateX(40px);
  }
  100% {
    transform: translateX(-40px);
  }
}
/*-- projectフォルダの中の_index.scss --*/
.site-footer {
  background: #fafafb;
  color: #333;
}
.site-footer a {
  color: inherit;
  text-decoration: none;
}
.site-footer a:hover {
  color: #000000;
}
.site-footer img {
  max-width: 100%;
  height: auto;
  display: block;
}

.footer-inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  padding: 28px 0 16px;
  display: grid;
  gap: 15px;
}
@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 2fr;
    -moz-column-gap: 28px;
         column-gap: 28px;
    align-items: start;
  }
}

/* 会社情報 */
@media (min-width: 768px) {
  .footer-brand {
    border-bottom: none;
    padding-bottom: 0;
    grid-template-columns: 72px 1fr;
  }
}
.footer-brand .brand-info .brand-title {
  font-family: "Noto Serif JP", serif;
  color: #080c14;
  font-style: normal;
  font-size: clamp(20px, 2.1vw, 25px);
  line-height: 1.2;
}
.footer-brand .brand-info .brand-title .brand-sub {
  display: block;
  font-size: 11px;
  color: #080c14;
  letter-spacing: 0.08em;
}
.footer-brand .brand-info .brand-addr {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 30px;
  letter-spacing: 0.05em;
}

/* ナビ（アコーディオンなし、純粋なグリッド） */
.footer-nav {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  align-content: start;
}

.nav-col .nav-title {
  margin: 0 0 8px;
}
.nav-col .nav-title a {
  display: inline-block;
  text-decoration: none;
  background-image: linear-gradient(#000000, #000000);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size 0.3s ease;
}
.nav-col .nav-title a:hover {
  background-size: 100% 1px;
  color: #792C2C;
}

.nav-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}
.nav-links a {
  font-size: 13.5px;
  color: #666;
  line-height: 1.7;
  font-weight: 400;
  word-break: break-word;
}
.nav-links a:hover {
  color: #792C2C;
}

/* ボトムバー */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  width: min(1200px, 92%);
  margin: 12px auto 0;
  padding: 12px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom small {
  color: #666;
}
.footer-bottom .bottom-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 14px;
}
.footer-bottom .bottom-links a {
  color: #666;
}
.footer-bottom .bottom-links a:hover {
  color: #333;
}

.site-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 5rem;
  position: fixed;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.85);
}
.site-header.scrolled {
  background-color: #fff;
}
.site-header.scrolled .logo-link h1,
.site-header.scrolled .header-nav a:not(.saiyou) {
  color: #333;
}
.site-header.scrolled a:not(.saiyou):hover {
  color: #792C2C;
}

body.subtop .site-header, body.subtop-color .site-header {
  background-color: #fff;
}

.logo .logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.logo .logo-link img {
  width: 90px;
  height: auto;
  margin-right: 1rem;
}
.logo .logo-link h1 {
  white-space: nowrap;
}
.logo .logo-link span {
  display: block;
  font-size: 1.1rem;
  line-height: 20px;
}

.header-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header-nav ul li {
  position: relative;
  /* --- SNS専用レイアウト --- */
}
.header-nav ul li.sns-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-nav ul li.sns-item .sns-label {
  font-size: 0.85rem;
  color: #792C2C;
  font-weight: 900;
  margin-bottom: 4px;
  white-space: nowrap;
}
.header-nav ul li.sns-item .sns-links {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-direction: row;
}
.header-nav ul li.sns-item .sns-links img {
  width: 24px;
  height: 24px;
  display: block;
}
.header-nav ul li img {
  margin-right: 10px;
  width: 26px;
  height: 26px;
}
.header-nav ul li a {
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  font-weight: 500;
  color: #000;
}
.header-nav ul li a.text {
  padding-bottom: 3px;
  background-image: linear-gradient(#000, #000);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 1px;
  transition: background-size 0.3s, color 0.3s;
}
.header-nav ul li a.text:hover {
  color: #792C2C;
  background-size: 100% 1px;
}
.header-nav ul li a.saiyou {
  background-color: #792C2C;
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  font-weight: bold;
  transition: background-color 0.3s;
}
.header-nav ul li a.saiyou:hover {
  background-color: #8a5e5e;
}
.header-nav ul li.has-submenu .submenu {
  display: block;
  position: absolute;
  top: 103%;
  left: 0;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  min-width: 200px;
}
.header-nav ul li.has-submenu .submenu li a {
  display: block;
  padding: 0.8rem 1rem;
  color: #333;
  font-weight: 500;
  transition: background-color 0.3s, color 0.2s;
}
.header-nav ul li.has-submenu .submenu li a:hover {
  background-color: #792C2C;
  color: #fff;
}
.header-nav ul li.has-submenu .submenu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0s;
}
.header-nav ul li.has-submenu:hover .submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0.1s;
}
.header-nav .sns-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-nav .sns-links a {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1100;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

.header-nav ul {
  flex-wrap: nowrap;
}

.header-nav a {
  white-space: nowrap;
}

@media (max-width: 1600px) {
  .site-header {
    padding: 0.6rem 2rem;
  }
  .header-nav ul {
    gap: 1.2rem;
  }
  .logo-link h1 {
    font-size: 1.1rem;
  }
  .logo .logo-link img {
    width: 60px;
    margin-right: 0.8rem;
  }
}
@media (max-width: 1370px) {
  .hamburger {
    display: flex;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 380px;
    height: 100vh;
    background: #fff;
    padding: 4rem 2rem;
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }
  .header-nav.open {
    right: 0;
  }
  .header-nav > ul {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
  }
  .header-nav ul li.has-submenu > ul.submenu {
    display: block !important;
    position: static !important;
    margin: 0.5rem 0 0 1rem;
    padding: 0;
    background: none;
    box-shadow: none;
    border-radius: 0;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
  }
  .header-nav ul li.has-submenu > ul.submenu li a {
    font-size: 0.9rem;
    line-height: 1.6;
    padding: 0.3rem 0.5rem;
    color: #333;
  }
  .header-nav .sns-links {
    flex-direction: column;
    align-items: baseline;
  }
}
@media (max-width: 768px) {
  .site-header {
    padding: 0.6rem 1rem;
  }
  .logo .logo-link img {
    width: 30px;
  }
  .logo-link h1 {
    font-size: 1.2rem;
    margin-top: 5px;
  }
  .logo .logo-link span {
    display: none;
  }
}
.fade-in-element {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease-out 0.3s;
}

.fade-in-element.visible {
  opacity: 1;
  transform: translateX(0);
}

#message {
  background: linear-gradient(to right, #fff 0%, #fff 50%, #c8a6a6 100%);
  margin-top: 100px;
}
#message .message-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
#message .message-content .message-text {
  flex: 1.5;
}
#message .message-content .message-text h3 {
  font-size: 1.8rem;
  font-family: serif;
  font-weight: 900;
  color: #792C2C;
  margin-bottom: 20px;
}
#message .message-content .message-text p {
  margin-bottom: 1em;
}
#message .message-content .message-text .sign {
  text-align: right;
  font-weight: 600;
}
#message .message-content .message-photo {
  flex: 1.5;
  display: flex;
  justify-content: center;
}
#message .message-content .message-photo img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
@media (max-width: 768px) {
  #message {
    background: #fff;
  }
  #message .message-content {
    flex-direction: column;
  }
  #message .message-photo {
    order: 1;
    margin-bottom: 20px;
  }
  #message .message-photo img {
    width: 100%;
    max-width: 500px;
  }
}

.about-inner {
  display: flex;
  width: 100%;
  margin: 100px auto;
  min-height: auto;
  margin-bottom: 0px;
}

.about-left {
  flex: 0.8;
}
.about-left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.about-right {
  flex: 1;
  position: relative;
  background: #792C2C;
  display: flex;
  align-items: center;
  padding: 60px;
  color: #fff;
}
.about-right .overlay-logo {
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 200px;
  opacity: 0.5;
}
.about-right .overlay-logo img {
  width: 100%;
  height: auto;
}

.about-text {
  position: relative;
  z-index: 2;
  width: 100%;
}
.about-text p:first-child {
  font-family: serif;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 25px;
}
.about-text p {
  color: #fff;
  margin-bottom: 15px;
}

/* スマホ時は上下に並べる */
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
  }
  .about-right {
    padding: 30px;
    min-height: auto;
  }
  .about-text {
    position: relative;
    width: 100%;
  }
  .about-text p:first-child {
    font-size: 1.4rem;
  }
  .about-text p {
    font-size: 0.9rem;
  }
  .about-right {
    min-height: 200px;
  }
}
.history {
  background: url("../../img/BACK.jpg") repeat;
}

.history {
  background: url("../../img/BACK.jpg") repeat;
}

/* PC：左右２カラム（沿革 / 100年史） */
.history-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  padding: 60px 20px 60px;
}
.history-inner .history-left,
.history-inner .history-right {
  flex: 1 1 0;
  min-width: 0;
}

/* セクション内の小見出し（沿革・100年史など） */
.timeline-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 20px 0;
  padding: 3px 20px;
  color: #fff;
  background-color: #792C2C;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/* タイムライン（沿革） */
.history-list {
  position: relative;
  list-style: none;
  padding-left: 40px;
  margin: 0;
  border-left: 3px solid #792C2C;
}

.history-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  position: relative;
}

.history-list li img {
  position: absolute;
  left: -35px;
  /* 縦線の中央に配置 */
  top: -5px;
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  padding: 2px;
}

.history-list .content {
  margin-left: 30px;
}

.history-list .eve {
  font-family: serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: #792C2C;
  margin-bottom: 3px;
}

.history-list .era {
  font-size: 0.85rem;
  font-weight: 400;
  color: #333;
  margin-left: 20px;
  margin-bottom: 3px;
}

/* 右側：100年史（デジタルブック） */
.history-right {
  text-align: center;
  padding: 0 20px;
}
.history-right .history-photo {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.history-right .history-photo p {
  background-color: #fff;
  margin-bottom: 40px;
}
.history-right .history-photo .highlight {
  font-weight: bold;
  color: #792C2C;
}
.history-right .history-photo img {
  width: 100%;
  height: auto;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #ccc;
  transition: transform 0.3s ease;
}
.history-right .history-photo img:hover {
  transform: scale(1.02);
}

/* スマホ対応：上下に並べる */
@media (max-width: 900px) {
  .history-inner {
    flex-direction: column;
    /* ← ここで上下配置に切り替え */
    gap: 40px;
  }
  .history-left,
  .history-right {
    width: 100%;
    padding: 0 10px;
  }
  .history-list {
    border-left: none;
    padding-left: 0;
  }
  .history-list li img {
    position: static;
    margin-bottom: 6px;
  }
  .history-list .content {
    margin-left: 0;
  }
  .history-right {
    text-align: center;
    padding: 0;
  }
  .history-right .history-photo {
    max-width: 300px;
    margin: 0 auto;
  }
}
.company-info {
  padding: 80px 0;
}
.company-info .company-inner {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.company-info .company-left {
  flex: 1;
}
.company-info .company-left table {
  width: 100%;
  border-collapse: collapse;
}
.company-info .company-left table th {
  text-align: left;
  width: 120px;
  padding: 20px 10px;
  color: #792C2C;
  font-weight: 600;
  vertical-align: top;
  border-bottom: 1px solid #333;
  font-family: "Noto Sans JP", sans-serif;
}
.company-info .company-left td {
  padding: 20px 10px;
  border-bottom: 1px solid #ccc;
  letter-spacing: 1px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .company-info .company-left td {
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  .company-info .company-left .board-list ul {
    font-size: 0.95rem;
  }
}
.company-info .company-left .board-list li {
  display: flex;
  gap: 8px;
}
.company-info .company-left .board-list .role {
  display: inline-block;
  width: 150px;
  /* ★役職側の幅を固定して揃える */
  text-align: left;
  padding-right: 6px;
}
@media (max-width: 768px) {
  .company-info .company-left .board-list .role {
    width: 130px;
  }
}
.company-info .company-left .board-list .name {
  display: inline-block;
}
.company-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.company-photos {
  align-items: center;
}
.company-photos img {
  width: 100%;
  height: 80%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 10px;
}

@media (max-width: 768px) {
  .company-inner {
    flex-direction: column;
  }
  .company-photos {
    display: flex;
    margin-right: 1px;
  }
  .company-photos img {
    width: 80%;
    height: 80%;
    -o-object-fit: cover;
       object-fit: cover;
    margin: 0;
    margin-right: 5px;
  }
}
.contact-main {
  position: relative;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
}
.contact-main .section-title {
  margin-bottom: 20px;
}
.contact-main .contact-box {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #792C2C;
  margin: 0 auto;
  padding: 30px 60px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.contact-main .contact-box p {
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 1rem;
  text-align: left;
}
.contact-main .contact-box {
  /* --- 連絡先リスト --- */
}
.contact-main .contact-box .contact-info {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  /* ← 高さを均一に */
  flex-wrap: wrap;
  gap: 25px;
}
.contact-main .contact-box .contact-info li {
  flex: 1 1 250px;
  /* 幅を均等に分配 */
  border: 1px solid #792C2C;
  border-radius: 3px;
  padding: 20px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  /* 中央に配置 */
  gap: 10px;
  transition: background 0.3s ease, color 0.3s ease;
  min-height: 70px;
}
.contact-main .contact-box .contact-info li img {
  width: 22px;
  height: auto;
}
.contact-main .contact-box .contact-info a {
  color: #792C2C;
  font-weight: bold;
  text-decoration: none;
  font-size: 0.85rem;
}
.contact-main .contact-box .contact-info a:hover {
  text-decoration: underline;
}
.contact-main .contact-box {
  /* 注記（受付時間） */
}
.contact-main .contact-box .note {
  display: inline-block;
  background: #792C2C;
  color: #fff;
  padding: 8px 18px;
  border-radius: 3px;
  font-size: 0.85rem;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 10px;
}
.contact-main {
  /* ===== スマホ対応 ===== */
}
@media (max-width: 768px) {
  .contact-main {
    padding: 50px 20px 20px;
  }
  .contact-main .contact-box {
    padding: 40px 20px;
  }
  .contact-main .contact-box .contact-info {
    flex-direction: column;
    gap: 15px;
  }
  .contact-main .contact-box .contact-info li {
    flex: none;
    width: 100%;
    font-size: 1rem;
    min-height: auto;
    /* ← 縦並びでは可変に戻す */
  }
  .contact-main .contact-box .contact-info li a {
    font-size: 0.7rem;
    text-align: left;
  }
  .contact-main .contact-box .note {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}
.contact-main .contactForm {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 20px 80px;
  font-family: "Noto Sans JP";
}
.contact-main .contactForm__note {
  text-align: center;
  color: rgba(0, 0, 0, 0.68);
  margin: 0 0 18px;
  font-size: 0.95rem;
}
.contact-main .contactForm__table {
  border-top: 1px solid #c9c1a3;
}
.contact-main .contactForm__submit {
  text-align: center;
  margin-top: 28px;
}
.contact-main .contactForm__submit button {
  background: #792C2C;
  color: #fff;
  border: none;
  border-radius: px;
  padding: 14px 80px;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.contact-main .contactForm__submit button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}
.contact-main {
  /* 1行 */
}
.contact-main .frow {
  display: grid;
  grid-template-columns: 180px 80px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #c9c1a3;
  font-family: "Noto Sans JP";
}
.contact-main .frow__label {
  font-weight: 700;
  color: #333;
}
.contact-main .frow__req {
  display: flex;
  justify-content: flex-start;
}
.contact-main .frow .req {
  font-family: "Noto Sans JP";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  background: #792C2C;
  letter-spacing: 0.1em;
}
.contact-main .frow .req--ghost {
  background: transparent;
  color: transparent;
}
.contact-main .frow__field {
  width: 100%;
}
.contact-main .frow input,
.contact-main .frow select,
.contact-main .frow textarea {
  font-family: "Noto Sans JP";
  width: 100%;
  box-sizing: border-box;
  border: none;
  background: #f3f3f3;
  padding: 12px 14px;
  font-size: 0.95rem;
  outline: none;
}
.contact-main .frow textarea {
  font-family: "Noto Sans JP";
  resize: vertical;
  min-height: 140px;
}
.contact-main .frow--textarea {
  align-items: start;
}
.contact-main .frow--textarea .frow__label,
.contact-main .frow--textarea .frow__req {
  padding-top: 12px;
}
@media (max-width: 768px) {
  .contact-main .contactForm {
    padding: 50px 16px 60px;
  }
  .contact-main .contactForm__note {
    font-size: 0.85rem;
    margin-bottom: 14px;
  }
  .contact-main .frow {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
  }
  .contact-main .frow__label {
    font-size: 0.75rem;
  }
  .contact-main .frow__req {
    order: 2;
  }
  .contact-main .frow__field {
    order: 3;
  }
  .contact-main .frow .req {
    min-width: 44px;
    height: 15px;
    font-size: 0.5rem;
    letter-spacing: 0.08em;
  }
  .contact-main .frow input,
  .contact-main .frow select,
  .contact-main .frow textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
  .contact-main .frow textarea {
    min-height: 120px;
  }
  .contact-main .contactForm__submit {
    margin-top: 22px;
  }
  .contact-main .contactForm__submit button {
    width: 100%;
    max-width: 320px;
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

#recruitFields[hidden] {
  display: none !important;
}

.news-detail {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px 0;
  /* パンくず */
}
.news-detail .breadcrumb {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 20px;
}
.news-detail .breadcrumb a {
  color: #792C2C;
  text-decoration: none;
}
.news-detail .breadcrumb a:hover {
  text-decoration: underline;
}
.news-detail {
  /* 記事本文 */
}
.news-detail .news-article {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 30px;
}
.news-detail .news-article .date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .news-detail .news-article .date {
    font-size: 0.75rem;
  }
}
.news-detail .news-article .title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #792C2C;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .news-detail .news-article .title {
    font-size: 1.2rem;
  }
}
.news-detail .news-article .content {
  line-height: 1.8;
  margin-bottom: 70px;
}
.news-detail .news-article .content p {
  margin-bottom: 20px;
}
.news-detail .news-article .btn-saiyou {
  display: inline-block;
  border: 1px solid #792C2C;
  padding: 25px 30px;
  text-decoration: none;
  color: #792C2C;
}
@media (max-width: 768px) {
  .news-detail .news-article .btn-saiyou {
    font-size: 0.75rem;
  }
}
.news-detail .news-article .btn-saiyou:hover {
  background: #792C2C;
  color: #fff;
}
.news-detail .news-article {
  /* ナビゲーション */
}
.news-detail .news-article .news-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.news-detail .news-article .news-nav a {
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
}
.news-detail .news-article .news-nav .btn-prev {
  background: #792C2C;
  font-size: 0.75rem;
}
.news-detail .news-article .news-nav .btn-list {
  background: #555;
  font-size: 0.75rem;
}

/* ===============================
   採用トップ ブロック全体
================================ */
.recruit-top-wrapper {
  position: relative;
  /* 三角デコの基準 */
  overflow: hidden;
  background: #fff;
}

.recruit-catch {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.recruit-catch .catch-text {
  flex: 1;
}

.recruit-catch .catch-text p {
  font-family: serif;
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.08em;
  color: #646464;
  font-weight: 800;
}

.recruit-catch .catch-text .begin {
  font-size: 3.8rem;
  line-height: 1.1;
  display: block;
  background: linear-gradient(to right, rgb(255, 126, 95), rgba(255, 126, 95, 0.65));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 右側写真（外側は今のままでOK） */
/* 枠（今のままでOK） */
.recruit-photo {
  flex: 0 0 45%;
  max-width: 570px;
  height: 360px;
  overflow: hidden;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
}

/* スライダー内の画像重ねる */
.recruit-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

/* 各画像：重ねてフェード処理 */
.recruit-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  animation: recruitFade 30s infinite;
}

.recruit-slider img:nth-child(1) {
  animation-delay: 0s;
}

.recruit-slider img:nth-child(2) {
  animation-delay: 5s;
}

.recruit-slider img:nth-child(3) {
  animation-delay: 10s;
}

.recruit-slider img:nth-child(4) {
  animation-delay: 15s;
}

.recruit-slider img:nth-child(5) {
  animation-delay: 20s;
}

.recruit-slider img:nth-child(6) {
  animation-delay: 25s;
}

@keyframes recruitFade {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ===============================
   左上・右下の三角（帯）デザイン
================================ */
.triangle-deco02 {
  position: absolute;
  top: -90px;
  left: -20%;
  width: 60%;
  height: 260px;
  background: #ff9d86;
  transform: skewY(-35deg);
  z-index: 1;
}

.triangle-deco03 {
  position: absolute;
  top: -150px;
  left: -25%;
  width: 60%;
  height: 260px;
  background: #ffd1c5;
  transform: skewY(-35deg);
  z-index: 1;
}

.triangle-deco {
  position: absolute;
  bottom: -120px;
  right: -20%;
  width: 60%;
  height: 260px;
  background: #ff9d86;
  transform: skewY(-35deg);
  z-index: 0;
}

.triangle-deco01 {
  position: absolute;
  bottom: -160px;
  right: -25%;
  width: 60%;
  height: 260px;
  background: #ffd1c5;
  transform: skewY(-35deg);
  z-index: 1;
}

/* ===============================
   レスポンシブ（スマホ）
================================ */
@media (max-width: 768px) {
  .recruit-catch {
    flex-direction: column;
    padding: 50px 16px 40px;
    text-align: center;
  }
  .recruit-catch .catch-text p {
    font-size: 0.85rem;
    margin-bottom: 24px;
    text-align: center;
  }
  .recruit-catch .catch-text .begin {
    font-size: 2rem;
    letter-spacing: 0.12em;
    text-align: center;
    margin-bottom: 25px;
  }
  .recruit-photo {
    width: 100%;
    max-width: 420px;
    height: 230px;
    clip-path: none;
    margin: 0 auto;
  }
  .recruit-photo img {
    height: auto;
  }
  .triangle-deco02,
  .triangle-deco03,
  .triangle-deco,
  .triangle-deco01 {
    display: none;
  }
}
.about-section.about-recruit .next-card {
  background: #FF6B4A;
}

.number-wrapper {
  position: relative;
}

.recruit-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.recruit-back img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.04;
  -o-object-fit: cover;
     object-fit: cover;
}

.numbers-box {
  margin-bottom: 60px;
}
.numbers-box .numbers-desc {
  margin-top: 15px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #FF6B4A;
  text-align: center;
  border-bottom: 1px solid #dadada;
}
@media (max-width: 768px) {
  .numbers-box .numbers-desc {
    font-size: 0.85rem;
  }
}

.css-circle {
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease;
}
.css-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  background-color: #fff;
  border-radius: 55% 45% 74% 26%/66% 32% 68% 34%;
  box-shadow: 0 0 25px rgba(255, 126, 95, 0.25);
  animation: corners 16s ease-in-out infinite, rotate 45s linear infinite;
  z-index: 1;
}

@keyframes corners {
  0% {
    border-radius: 55% 45% 74% 26%/66% 32% 68% 34%;
  }
  25% {
    border-radius: 38% 62% 59% 41%/41% 60% 40% 59%;
  }
  50% {
    border-radius: 50% 50% 37% 63%/62% 45% 55% 38%;
  }
  75% {
    border-radius: 61% 39% 53% 47%/49% 63% 37% 51%;
  }
  100% {
    border-radius: 55% 45% 74% 26%/66% 32% 68% 34%;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ------------------------
   中央の数字＋丸内テキスト
------------------------- */
.number-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  pointer-events: none;
}
.number-inner .num {
  font-size: 3.2rem;
  font-weight: 900;
  color: #ff6b4a;
  letter-spacing: 7px;
  font-family: "Lato";
}
.number-inner .unit {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ff6b4a;
}

.inner-text {
  font-size: 0.75rem;
  color: #ff7e5f;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.35s ease;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}

/* ------------------------
   ホバー時の挙動
------------------------- */
.number-card:hover .css-circle, .number-card.is-open .css-circle {
  transform: scale(1.35);
}
.number-card:hover .number-inner, .number-card.is-open .number-inner {
  transform: scale(0.75);
}
.number-card:hover .inner-text, .number-card.is-open .inner-text {
  opacity: 1;
  transform: translateY(0);
}
.number-card .css-circle {
  width: 150px;
  height: 150px;
}

.numbers-warehouse {
  padding: 80px 20px;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.numbers-warehouse .section-title {
  border-left: 5px solid #ff6b4a;
}
.numbers-warehouse .section-title .main {
  color: #ff6b4a;
}
.numbers-warehouse-inner {
  position: relative;
  width: min(750px, 90vw);
  aspect-ratio: 4/3;
  margin: 0 auto;
}

/* 倉庫イラスト（真ん中） */
.warehouse-illust {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  max-width: 400px;
}
.warehouse-illust img {
  margin-top: 50px;
  width: 100%;
  height: auto;
  display: block;
}

/* ここから丸の“位置調整” --------------- */
.circle-1 {
  position: absolute;
  top: -3%;
  left: 50%;
}

/* ★ 上中央寄り右 */
.circle-2 {
  position: absolute;
  top: 8dvb;
  right: -4%;
}

/* ★ 右上 */
.circle-3 {
  position: absolute;
  bottom: 0%;
  right: -10%;
  transform: translateY(-50%);
}

/* ★ 右下 */
.circle-4 {
  position: absolute;
  bottom: -20%;
  right: 10%;
}

/* ★ 下中央寄り右 */
.circle-5 {
  position: absolute;
  bottom: -25%;
  right: 45%;
}

/* ★ 下中央寄り左 */
.circle-6 {
  position: absolute;
  bottom: -8%;
  left: 5%;
}

/* ★ 左下 */
.circle-7 {
  position: absolute;
  bottom: 34%;
  left: -5%;
}

/* ★ 左上 */
.circle-8 {
  position: absolute;
  top: 20%;
  left: 18%;
  transform: translateY(-50%);
}

.number-card {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ================================
   iPad 横くらい（1024〜900px）
   丸がはみ出さないように微調整
================================ */
@media (max-width: 1024px) and (min-width: 900px) {
  .numbers-warehouse-inner {
    width: 90vw;
    max-width: 720px;
    aspect-ratio: 4/3;
    margin: 0 auto;
  }
  .warehouse-illust {
    width: 50%;
    max-width: 380px;
  }
  .warehouse-illust img {
    margin-top: 30px;
    width: 100%;
    height: auto;
  }
  .number-card .css-circle {
    width: 150px;
    height: 150px;
  }
  /* 位置調整：はみ出しを弱める ---------------- */
  .circle-1 {
    position: absolute;
    top: -4%;
    left: 50%;
    transform: translateX(-50%);
  }
  /* 上中央寄り右 */
  .circle-2 {
    position: absolute;
    top: 4%;
    right: -2%;
  }
  /* 右上 */
  .circle-3 {
    position: absolute;
    bottom: 15%;
    right: -4%;
    transform: translateY(0);
  }
  /* 右下 */
  .circle-4 {
    position: absolute;
    bottom: -14%;
    right: 8%;
  }
  /* 下中央寄り右 */
  .circle-5 {
    position: absolute;
    bottom: -16%;
    right: 38%;
  }
  /* 下中央寄り左 */
  .circle-6 {
    position: absolute;
    bottom: -6%;
    left: 6%;
  }
  /* 左下 */
  .circle-7 {
    position: absolute;
    bottom: 34%;
    left: -4%;
  }
  /* 左上 */
  .circle-8 {
    position: absolute;
    top: 8%;
    left: 4%;
    transform: translateY(-50%);
  }
}
/* ------------------------
   スマホレイアウト
   4個の丸 → 倉庫 → 4個の丸
------------------------- */
@media (max-width: 768px) {
  .numbers-warehouse-inner {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
    row-gap: 20px;
  }
  .numbers-warehouse-inner > .number-card,
  .numbers-warehouse-inner > .warehouse-illust {
    position: static;
    transform: none;
    margin: 0 auto;
  }
  .warehouse-illust {
    grid-column: 1/-1;
    justify-self: center;
    width: 65%;
  }
  .warehouse-illust img {
    margin-top: 0;
    width: 100%;
    height: auto;
  }
  .circle-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .circle-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .circle-3 {
    grid-column: 3;
    grid-row: 1;
  }
  .circle-4 {
    grid-column: 4;
    grid-row: 1;
  }
  .circle-5 {
    grid-column: 1;
    grid-row: 3;
  }
  .circle-6 {
    grid-column: 2;
    grid-row: 3;
  }
  .circle-7 {
    grid-column: 3;
    grid-row: 3;
  }
  .circle-8 {
    grid-column: 4;
    grid-row: 3;
  }
  .number-card .css-circle::before {
    width: 120px;
    height: 120px;
  }
  .number-card .number-inner .num {
    margin-right: 30px;
    font-size: 2.5rem;
  }
  .number-card .number-inner .inner-text {
    font-size: 0.75rem;
  }
}
@media (max-width: 499px) {
  .numbers-warehouse {
    padding: 60px 10px;
  }
  .numbers-warehouse-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
  }
  .warehouse-illust {
    grid-column: 1/-1;
    justify-self: center;
    width: 80%;
    margin: 10px 0 5px;
  }
  .circle-1 {
    grid-column: 1;
    grid-row: 1;
  }
  .circle-2 {
    grid-column: 2;
    grid-row: 1;
  }
  .circle-3 {
    grid-column: 1;
    grid-row: 2;
  }
  .circle-4 {
    grid-column: 2;
    grid-row: 2;
  }
  .circle-5 {
    grid-column: 1;
    grid-row: 4;
  }
  .circle-6 {
    grid-column: 2;
    grid-row: 4;
  }
  .circle-7 {
    grid-column: 1;
    grid-row: 5;
  }
  .circle-8 {
    grid-column: 2;
    grid-row: 5;
  }
  .number-card .css-circle {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
  }
  .number-card .number-inner .num {
    margin-right: 0;
    font-size: 2rem;
  }
  .number-card .number-inner .inner-text {
    font-size: 0.7rem;
    text-align: center;
    margin-top: 5px;
  }
}
/* ===========================
   福利厚生セクション 全体
=========================== */
#employee-benefits {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}
#employee-benefits .section-title {
  border-left: 5px solid #FF6B4A;
}
#employee-benefits .section-title .main {
  color: #FF6B4A;
}
#employee-benefits .Rec_title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 6px 14px;
  border-left: 4px solid #FF6B4A;
  background: #fff;
}
#employee-benefits .Rec_title i {
  font-size: 1.4rem;
  color: #FF6B4A;
}
#employee-benefits .Rec_title p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
}
#employee-benefits .benefits-groups {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#employee-benefits {
  /* カテゴリータイトル */
}
#employee-benefits .benefits-group-title {
  font-size: 1.2rem;
  font-weight: 700;
  padding-left: 10px;
  color: #444;
  border-left: 4px solid #FF6B4A;
  margin: 30px 0 20px 0;
}
#employee-benefits {
  /* ------------------------------
        各カテゴリー内のリスト
  ------------------------------ */
}
#employee-benefits .benefits-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
#employee-benefits {
  /* ------------------------------
         福利厚生のカード
  ------------------------------ */
}
#employee-benefits .benefit-item {
  border: 1px solid #FF6B4A;
  border-radius: 6px;
  padding: 16px 14px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
#employee-benefits .benefit-item i {
  font-size: 2rem;
  color: #FF6B4A;
  margin-bottom: 6px;
}
#employee-benefits .benefit-item h3 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #FF6B4A;
  margin: 10px 0 10px 0;
}
#employee-benefits .benefit-item p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #444;
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  #employee-benefits .benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}
#employee-benefits {
  /* ------------------------------
          レスポンシブ
  ------------------------------ */
}
@media (max-width: 768px) {
  #employee-benefits .benefits-group-title {
    font-size: 1.05rem;
  }
  #employee-benefits .benefits-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #employee-benefits .benefit-item {
    padding: 14px 12px;
  }
  #employee-benefits .benefit-item i {
    font-size: 1.7rem;
  }
  #employee-benefits .benefit-item h3 {
    font-size: 0.95rem;
  }
  #employee-benefits .benefit-item p {
    font-size: 0.8rem;
  }
}
#employee-benefits {
  /* ▼ 超スマホ対応（iPhone SE 等） */
}
@media (max-width: 480px) {
  #employee-benefits .benefits-group-title {
    font-size: 1rem;
    padding-left: 8px;
  }
  #employee-benefits .benefit-item {
    padding: 12px 10px;
  }
  #employee-benefits .benefit-item i {
    font-size: 1.5rem;
  }
  #employee-benefits .benefit-item h3 {
    font-size: 0.9rem;
  }
  #employee-benefits .benefit-item p {
    font-size: 0.78rem;
  }
}

.recruit-sub-photo img {
  margin: 60px 0;
  width: 100%;
  object-fit: cover;
  height: 30%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 200px;
  max-height: 200px;
}

.recruit-info-content {
  font-family: "Noto Sans JP", sans-serif;
  padding: 80px 20px 0px;
  max-width: 1100px;
  margin: 0 auto;
}
.recruit-info-content .section-title {
  border-left: 5px solid #FF6B4A;
}
.recruit-info-content .section-title .main {
  color: #FF6B4A;
}
.recruit-info-content .flow {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}
.recruit-info-content .flow .flow-step {
  padding: 25px;
  background: #f7c6a4;
  border-radius: 3px;
  font-weight: 500;
  color: #353535;
  min-width: 120px;
  text-align: center;
  font-size: 0.95rem;
}
.recruit-info-content .flow .flow-step.first {
  background: #FFE5B4;
}
.recruit-info-content .flow .flow-step.second {
  background: #FFD1A4;
}
.recruit-info-content .flow .flow-step.third {
  background: #FF9E7A;
}
.recruit-info-content .flow .flow-step.highlight {
  background: #FF6B4A;
}
.recruit-info-content .flow .arrow {
  font-size: 1.2rem;
  margin: 0 10px;
  color: #FF6B4A;
}
@media (max-width: 768px) {
  .recruit-info-content .flow {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
  }
  .recruit-info-content .flow-step {
    width: 100%;
    min-width: auto;
    padding: 18px 16px;
    font-size: 0.9rem;
  }
  .recruit-info-content .arrow {
    margin: 0;
    font-size: 1.1rem;
    transform: rotate(90deg);
    align-self: center;
  }
}
.recruit-info-content .recruit-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.recruit-info-content .recruit-table th,
.recruit-info-content .recruit-table td {
  border-bottom: 1px solid #dad8d8;
  background: #fff;
  padding: 15px;
  text-align: left;
  margin-bottom: 10px;
}
.recruit-info-content .recruit-table th {
  width: 25%;
  background: #eee;
  font-weight: 600;
  color: #333;
  border-left: 3px solid #ffffff;
}
.recruit-info-content .recruit-table td {
  color: #444;
}

/*倉庫一覧ページ*/
body.back-image {
  background: url("../../img/whbackphoto.jpg") repeat;
  /* タイル状に繰り返す */
  background-size: 2000px auto;
  /* 画面いっぱいに広げる */
}

.backwh {
  background-color: #fff;
}

.warehouse-menu {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}
.warehouse-menu p {
  font-family: serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #333;
  line-height: 1.6;
}
.warehouse-menu .W_content {
  position: relative;
}
.warehouse-menu .W_content::before, .warehouse-menu .W_content::after {
  content: "";
  position: absolute;
  top: 1.5rem;
  width: 50%;
  height: 5px;
  margin-top: 20px;
  background: #792C2C;
}
.warehouse-menu .W_content::before {
  left: 0;
  transform: rotate(-10deg);
  transform-origin: right center;
}
.warehouse-menu .W_content::after {
  right: 0;
  transform: rotate(10deg);
  transform-origin: left center;
}
.warehouse-menu .W_content img {
  margin-top: 80px;
  width: 120px;
  height: auto;
}
.warehouse-menu .W_content ul {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 3rem auto 0;
  max-width: 1000px;
  align-items: stretch;
}
.warehouse-menu .W_content li a {
  display: flex;
  align-items: center;
  background: #792C2C;
  color: #fff;
  padding: 1.5rem 1.2rem;
  border-radius: 3px;
  font-weight: 500;
  text-align: left;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  gap: 0.5rem;
}
.warehouse-menu .W_content li a:hover {
  background: linear-gradient(135deg, #8a2f2f 0%, #a74b4b 100%);
  box-shadow: 0 6px 14px rgba(121, 44, 44, 0.3);
  transform: translateY(-4px);
}
.warehouse-menu .W_content li a .numbers {
  font-family: "Kanit", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.25);
  margin-right: 0.3em;
  position: relative;
  top: -1px;
  /* おしゃれなライン装飾（下線代わり） */
}
.warehouse-menu .W_content li a .numbers::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  opacity: 0.8;
  border-radius: 2px;
}

/* ▼ タブレット（3列×3段） */
@media (max-width: 1024px) {
  .warehouse-menu {
    width: 90%;
  }
  .warehouse-menu p {
    font-size: 1.3rem;
  }
  .warehouse-menu .W_content img {
    margin-top: 60px;
    width: 120px;
  }
  .warehouse-menu .W_content ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
  }
  .warehouse-menu .W_content li a {
    padding: 1.2rem;
    font-size: 0.95rem;
  }
}
/* ▼ スマホ（2列×4段） */
@media (max-width: 768px) {
  .warehouse-menu {
    width: 95%;
  }
  .warehouse-menu p {
    font-size: 1.1rem;
  }
  .warehouse-menu .W_content::before, .warehouse-menu .W_content::after {
    top: 0.8rem;
    height: 4px;
    margin-top: 15px;
  }
  .warehouse-menu .W_content img {
    margin-top: 40px;
    width: 80px;
  }
  .warehouse-menu .W_content ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .warehouse-menu .W_content li a {
    padding: 1rem;
    font-size: 0.9rem;
  }
}
/* ▼ 極小スマホ（1列表示） */
@media (max-width: 480px) {
  .warehouse-menu .W_content ul {
    grid-template-columns: 1fr;
  }
}
.Google_map {
  padding: 40px 20px 80px;
  margin: 0 auto;
  max-width: 1100px;
}

.map-frame {
  border: 2px solid #792C2C;
  padding: 6px;
  display: inline-block;
  width: 100%;
  /* レスポンシブ対応 */
}
.map-frame iframe {
  width: 100%;
  height: 400px;
  border: none;
}

.Wh_Container {
  padding: 40px;
  max-width: 1100px;
  margin: 40px auto;
  background-color: #f5f5f5;
}

.Wh_Container-kanri {
  padding: 20px;
  max-width: 1100px;
  margin: 40px auto;
  background-color: #f5f5f5;
  color: #333;
}
.Wh_Container-kanri .wh-kanri {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.Wh_Container-kanri .wh-kanri .heading-5 {
  padding: 0 0.4em 0.2em;
  border-bottom: 3px double #792C2C;
  color: #444;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 25px;
  letter-spacing: 3px;
  font-family: "Noto Sans JP", sans-serif;
}
.Wh_Container-kanri .wh-kanri .kanri {
  width: 500px;
}
.Wh_Container-kanri .wh-kanri .kanri,
.Wh_Container-kanri .wh-kanri .kanri p {
  font-size: 12.5px;
}
.Wh_Container-kanri .wh-kanri .kanri .kanrisub {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  margin-bottom: 3px;
  padding-bottom: 3px;
  border-bottom: 1px solid #c4c4c4;
}
.Wh_Container-kanri .wh-kanri .kanri .label {
  display: inline-block;
  min-width: 70px;
  padding: 4px 8px;
  color: #fff;
  border-radius: 3px;
  margin-right: 8px;
  text-align: center;
}
.Wh_Container-kanri .wh-kanri {
  /* 色設定 */
}
.Wh_Container-kanri .wh-kanri .label.cold {
  background: #68C5FF;
}
.Wh_Container-kanri .wh-kanri .label.frozen {
  background: #2A63DE;
}
.Wh_Container-kanri .wh-kanri .label.teion {
  background: #777;
}
.Wh_Container-kanri .wh-kanri .label.hot {
  background: #FF7441;
}
.Wh_Container-kanri .wh-kanri .label.clean {
  background: #84B839;
}

@media (max-width: 768px) {
  .wh-kanri {
    padding: 0 10px;
  }
  .wh-kanri .heading-5 {
    font-size: 1.05rem;
    margin-bottom: 20px;
  }
  .wh-kanri .kanri {
    width: 100%;
    max-width: 100%;
  }
  .wh-kanri .kanri,
  .wh-kanri .kanri p {
    font-size: 12px;
  }
  .wh-kanri .kanri .kanrisub {
    align-items: flex-start;
    gap: 6px;
  }
  .wh-kanri .kanri .label {
    min-width: 80px;
    font-size: 11px;
    padding: 5px 6px;
  }
  .wh-kanri .kanritext {
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .wh-kanri .kanri .kanrisub {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .wh-kanri {
    /* 冷蔵・冷凍を縦並び */
  }
  .wh-kanri .kanri .label.cold,
  .wh-kanri .kanri .label.frozen {
    width: auto;
    margin-right: 0;
    margin-bottom: 6px;
  }
  .wh-kanri .kanritext {
    display: flex;
    gap: 12px;
    width: 100%;
    flex-wrap: wrap;
  }
}
.warehouse {
  margin-bottom: 80px;
}

.Wh_title01 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.wh-name {
  width: 70%;
  font-size: 1.2rem;
  font-weight: bold;
  background: #792C2C;
  color: #fff;
  padding: 0.8rem 1rem;
  margin-bottom: 2rem;
  clip-path: polygon(100% 100%, 75% 0, 0 0, 0 100%);
}
.wh-name span {
  font-size: 1rem;
  font-weight: 400;
  margin-left: 1rem;
  color: #fff;
}
@media (max-width: 768px) {
  .wh-name span {
    display: none;
  }
}

.Warehouse-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}
.Warehouse-content .photos {
  flex: 1;
  min-width: 300px;
}
.Warehouse-content .photos .Whmainphoto {
  width: 100%;
  max-width: 650px;
}
.Warehouse-content .photos {
  /* サブ画像 */
}
.Warehouse-content .photos .sub-photos {
  display: flex;
  justify-content: left;
  gap: 1rem;
  margin-top: 1rem;
}
.Warehouse-content .photos .sub-photos img {
  width: 100px;
  height: 70px;
  -o-object-fit: cover;
     object-fit: cover;
}
.Warehouse-content .Wh_Info {
  padding: 1.5rem;
  background-color: #fff;
  border: 1px solid #792C2C;
  flex: 1;
  min-width: 300px;
  font-size: 15px;
}
.Warehouse-content .Wh_Info .tags {
  margin-bottom: 1rem;
}
.Warehouse-content .Wh_Info .tags .tag {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  margin-right: 0.5rem;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  background: #717171;
  font-family: "Noto Sans JP", sans-serif;
}
.Warehouse-content .Wh_Info .tags .tag.hot {
  background: #FF7441;
}
.Warehouse-content .Wh_Info .tags .tag.clean {
  background: #84B839;
}
.Warehouse-content .Wh_Info .tags .tag.cold {
  background: #68C5FF;
}
.Warehouse-content .Wh_Info .tags .tag.frozen {
  background: #2A63DE;
}
.Warehouse-content .Wh_Info .tags .tag.palette {
  background: #85498B;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo {
  display: flex;
  margin-bottom: 1rem;
  gap: 40px;
  font-family: "Noto Sans JP", sans-serif;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo dt {
  font-weight: bold;
  width: 65px;
  flex-shrink: 0;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo dd {
  line-height: 1.6;
  flex: 1;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo {
  /* 所在地部分 */
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo .mapurl ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo .mapurl ul li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo .mapurl ul li i {
  color: #792C2C;
  font-size: 1rem;
  min-width: 16px;
  text-align: center;
  position: relative;
  top: 1px;
  /* テキスト高さを微調整 */
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo .mapurl ul li a {
  color: #333;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: #ccc;
  /* 控えめな下線 */
  transition: all 0.3s ease;
}
.Warehouse-content .Wh_Info dl .Wh_Subinfo .mapurl ul li a:hover {
  color: #a64b4b;
  text-decoration-color: #a64b4b;
  text-decoration-thickness: 2px;
}

/* ---------------- レスポンシブ ---------------- */
/* ▼ タブレット（写真と情報を縦並び） */
@media (max-width: 1024px) {
  .Wh_title01 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .Warehouse-content {
    flex-direction: column;
    align-items: center;
  }
  .Warehouse-content .photos,
  .Warehouse-content .Wh_Info {
    width: 100%;
    max-width: 800px;
  }
  .Warehouse-content .photos .sub-photos {
    width: 100%;
    height: auto;
  }
  .wh-name {
    width: 100%;
    font-size: 1.15rem;
  }
  li a {
    font-size: 14px;
  }
}
/* ▼ スマホ（余白・行間調整） */
@media (max-width: 768px) {
  .Wh_Container {
    padding: 40px 20px;
  }
  .wh-name {
    font-size: 0.95rem;
    padding: 0.6rem 0.8rem;
  }
  .Warehouse-content {
    font-size: 0.85rem;
    gap: 1.5rem;
  }
  .Warehouse-content .Wh_Info {
    padding: 1.2rem;
  }
  .Warehouse-content .Wh_Info .tags .tag {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }
  .Warehouse-content .photos img {
    margin-bottom: 0.8rem;
  }
  .Warehouse-content .photos .sub-photos img {
    height: 90px;
  }
}
.whpagecontact {
  background-color: #fff;
  padding: 60px 0 0;
  margin-top: 60px;
}

.service-policy {
  text-align: center;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-policy .toppage-reason {
  margin-top: 30px;
}
.service-policy .toppage-reason .subtitle {
  margin-bottom: 20px;
}
.service-policy .toppage-reason .subtitle p {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}
.service-policy .toppage-reason .subtitle p .s-image {
  width: 40px;
  height: auto;
  margin: 0 4px -4px;
  animation: s-bounce 2s infinite ease-in-out;
}
.service-policy .toppage-reason .subtitle p .accent {
  color: #792C2C;
}
.service-policy .toppage-reason .subtitle p .sub-text {
  font-size: 0.95rem;
  font-weight: 400;
  color: #666;
}
@media (max-width: 768px) {
  .service-policy .toppage-reason .subtitle p .sub-text {
    font-size: 0.79rem;
  }
}
.service-policy .toppage-reason {
  /* 3つのポイントブロック */
}
.service-policy .toppage-reason .toppage-3point-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: left;
}
.service-policy .toppage-reason .toppage-3point-wrap .fade-in-element {
  height: 100%;
}
.service-policy .toppage-reason .point-content {
  position: relative;
  background: #fff;
  border-radius: 14px;
  border: 2px solid rgba(121, 44, 44, 0.2);
  padding: 40px 30px 30px;
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.service-policy .toppage-reason .point-content::before, .service-policy .toppage-reason .point-content::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(121, 44, 44, 0.08);
  pointer-events: none;
}
.service-policy .toppage-reason .point-content {
  /* 左上 */
}
.service-policy .toppage-reason .point-content::before {
  top: -30px;
  left: -30px;
}
.service-policy .toppage-reason .point-content {
  /* 右下 */
}
.service-policy .toppage-reason .point-content::after {
  bottom: -30px;
  right: -30px;
}
.service-policy .toppage-reason .point-content .point-illust {
  display: block;
  width: 260px;
  max-width: 100%;
  height: auto;
  margin: 10px auto 20px;
}
.service-policy .toppage-reason .point-content h3 {
  font-size: 1.5rem;
  color: #792C2C;
  font-weight: 700;
  min-height: 3.5em;
  position: relative;
  /* 下に細いバー */
}
.service-policy .toppage-reason .point-content h3::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: #792C2C;
  border-radius: 999px;
}
.service-policy .toppage-reason .point-content p {
  margin-top: 18px;
  margin-bottom: 0;
  text-align: left;
  line-height: 1.8;
  color: #444;
}
.service-policy .toppage-reason .point-content {
  /* ホバー時 */
}
.service-policy .toppage-reason .point-content:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(121, 44, 44, 0.4);
}
.service-policy .toppage-reason {
  /* レスポンシブ対応 */
}
@media (max-width: 768px) {
  .service-policy .toppage-reason .point-content h3 {
    min-height: auto;
  }
  .service-policy .toppage-reason .point-content h3::after {
    bottom: -10px;
    width: 140px;
  }
  .service-policy .toppage-reason .subtitle p {
    font-size: 1.2rem;
  }
  .service-policy .toppage-reason .point-content {
    padding: 30px 20px 25px;
  }
  .service-policy .toppage-reason .point-content .point-illust {
    width: 200px;
  }
  .service-policy .toppage-reason .point-content h3 {
    min-height: auto;
  }
  .service-policy .toppage-reason .point-content p {
    margin-top: 12px;
  }
}
@media (max-width: 480px) {
  .service-policy .toppage-reason .point-content h3::after {
    width: 110px;
    bottom: -20px;
  }
  .service-policy .toppage-reason .subtitle p {
    font-size: 1.12rem;
  }
  .service-policy .toppage-reason .point-content {
    padding: 25px 16px 22px;
  }
  .service-policy .toppage-reason .point-content .point-illust {
    width: 170px;
  }
}

/* Sアイコンのバウンス（そのまま使える用） */
@keyframes s-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
/*==================================================
  SERVICE BLOCK
==================================================*/
.service-block {
  padding: 80px 0;
  overflow: hidden;
}
.service-block .service-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  /* 右側に画像、左にテキスト */
}
.service-block .service-inner.reverse {
  flex-direction: row-reverse;
}
.service-block .service-inner.reverse .service-photo img {
  clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}
.service-block {
  /*----------------------------------------------
    画像：大きく ＆ 斜めカット
  ----------------------------------------------*/
}
.service-block .service-photo {
  flex: 1.3;
  position: relative;
}
.service-block .service-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* ★ 斜めカット（左が低い台形） */
  clip-path: polygon(8% 0, 100% 0, 95% 100%, 0 100%);
  transition: clip-path 0.4s ease, transform 0.4s ease;
}
.service-block {
  /*----------------------------------------------
    テキスト
  ----------------------------------------------*/
}
.service-block .service-text {
  flex: 1;
}
.service-block .service-text .type {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.service-block .service-text .type span {
  font-size: 1.5rem;
  position: relative;
  font-weight: 400;
  display: inline-block;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 768px) {
  .service-block .service-text .type span {
    font-size: 1.1rem;
  }
}
.service-block .service-text .type span.cold {
  background-color: #68C5FF;
}
.service-block .service-text .type span.frozen {
  background-color: #2A63DE;
}
.service-block .service-text .type span.normal {
  background-color: #777;
}
.service-block .service-text .type span.warm {
  background-color: #FF7441;
}
.service-block .service-text .type span.clean {
  background-color: #84B839;
}

/*==================================================
  RESPONSIVE
==================================================*/
@media (max-width: 1024px) {
  .service-block .service-inner {
    gap: 40px;
  }
  .service-photo img {
    clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (max-width: 768px) {
  .service-block {
    padding: 60px 0;
  }
  .service-block .service-inner {
    flex-direction: column !important;
    /* 縦並びに強制 */
    gap: 30px;
  }
  .service-block .service-inner .service-photo img {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    /* スマホは自然に */
  }
}
@media (max-width: 768px) {
  .service-block .service-inner {
    flex-direction: column !important;
    gap: 30px;
  }
  .service-block .service-text {
    order: 1;
  }
  .service-block .service-photo {
    order: 2;
  }
}
/* ------------------------------
   セクション個別背景色
------------------------------ */
#service01 {
  background: #f1f1f1;
  /* 柔らかい赤系 */
}

#service02 {
  background: #fff;
}

#service03 {
  background: #f1f1f1;
  margin-bottom: 60px;
}

.step-flow {
  margin: 60px auto 0;
  padding: 40px 20px;
  max-width: 1200px;
  background: #fdf6f6;
  border-top: 2px solid #792C2C;
  border-bottom: 2px solid #792C2C;
}

.step-flow h4 {
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #792C2C;
  font-weight: 700;
  margin: 0;
  position: relative;
  padding-bottom: 12px;
}

/* 見出し下に細いライン */
.step-flow h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: #792C2C;
}

/* ステップ一覧 */
.step-flow .step-list {
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

/* 各ステップボックス */
.step-flow .step-list li {
  position: relative;
  flex: 1 1 150px;
  min-width: 140px;
  background: #ffffff;
  border: 1px solid #792C2C;
  border-radius: 3px;
  padding: 10px 14px;
  text-align: center;
  color: #792C2C;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

@media (max-width: 900px) {
  .step-flow {
    padding: 30px 16px;
    margin-top: 40px;
  }
  .step-flow .step-list {
    gap: 12px;
  }
  .step-flow .step-list li {
    flex: 1 1 calc(50% - 8px);
    font-size: 0.85rem;
    padding: 10px;
  }
  .step-flow .step-list li::after {
    display: none;
  }
}
@media (max-width: 600px) {
  .step-flow .step-list {
    flex-direction: column;
  }
  .step-flow .step-list li {
    flex: 1 1 auto;
    width: 100%;
  }
}
/* ===========================
   社員インタビュー セクション
=========================== */
.subtop-color {
  background-color: #faf9f7;
}

.interview-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.interview-wrapper .workstyle-back {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: -1;
}
.interview-wrapper .workstyle-back img {
  height: auto;
  opacity: 0.085;
  -o-object-fit: contain;
     object-fit: contain;
}

.interview-section {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 60px;
  padding: 0 20px;
  overflow: hidden;
}
.interview-section .section-title {
  border-left: 5px solid #FF6B4A;
}
.interview-section .section-title .main {
  color: #FF6B4A;
}
.interview-section .interview-lead {
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.9;
  margin: 20px 0 40px;
  color: #444;
}
@media (max-width: 760px) {
  .interview-section .interview-lead {
    font-size: 0.75rem;
  }
}
.interview-section .interview-lead span {
  font-size: 1.75rem;
  position: relative;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 2px;
}
@media (max-width: 760px) {
  .interview-section .interview-lead span {
    font-size: 1.2rem;
  }
}
.interview-section .interview-lead span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #FF6B4A;
  opacity: 0.55;
  border-radius: 2px;
}
.interview-section .interview-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.interview-section .interview-row.reverse {
  flex-direction: row-reverse;
}
.interview-section .interview-row .interview-photo {
  flex: 0 0 50%;
  max-width: 520px;
}
.interview-section .interview-row .interview-photo img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 10px 28px rgba(255, 126, 95, 0.22);
}
.interview-section .interview-row .interview-text {
  flex: 1;
}
.interview-section .interview-row .interview-text .interview-subhead {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #FF6B4A;
  font-weight: 700;
}
.interview-section .interview-row .interview-text .qa-1 {
  max-width: 100%;
}
@media (max-width: 768px) {
  .interview-section .interview-row {
    flex-direction: column;
  }
  .interview-section .interview-row.reverse {
    flex-direction: column;
  }
  .interview-section .interview-row .interview-photo {
    max-width: 100%;
  }
}

/* ===========================
   Q&A アコーディオン（details）
=========================== */
.qa-1 {
  max-width: 500px;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 5px;
  background: #fff;
}
.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}
@media (max-width: 768px) {
  .qa-1 summary {
    font-size: 0.9rem;
  }
}
.qa-1 summary::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #75bbff;
  content: "Q";
}
.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}
.qa-1[open] summary::after {
  transform: rotate(225deg);
}
.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.9;
  transition: transform 0.5s, opacity 0.5s;
}
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}
.qa-1[open] p {
  transform: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .interview-section .interview-row {
    flex-direction: column;
    align-items: center;
  }
  .interview-section .interview-row .interview-photo {
    max-width: 100%;
    order: 1;
  }
  .interview-section .interview-row .interview-text {
    order: 2;
  }
  .interview-section .interview-row.reverse {
    flex-direction: column;
  }
}

.talk-wrapper {
  position: relative;
  background: url(../../img/ws-sub.jpg);
  position: relative;
  background-attachment: fixed;
}
.talk-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 0;
}

.talk-section {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: 60px;
}
.talk-section .talk-inner {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
}
.talk-section .section-title {
  border-left: 5px solid #FF6B4A;
}
.talk-section .section-title .main {
  color: #FF6B4A;
}
.talk-section .talk-subtitle {
  text-align: center;
}
.talk-section .talk-subtitle .talk-heading {
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: 2px solid #FF6B4A;
}
@media (max-width: 760px) {
  .talk-section .talk-subtitle .talk-heading {
    font-size: 1.2rem;
    font-family: "Noto Sans JP", sans-serif;
  }
}
.talk-section .talk-subtitle .section-lead {
  margin-top: 20px;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
@media (max-width: 760px) {
  .talk-section .talk-subtitle .section-lead {
    font-size: 0.75rem;
  }
}
.talk-section {
  /* 集合写真 */
}
.talk-section .talk-hero {
  margin-bottom: 40px;
  text-align: center;
}
.talk-section .talk-hero img {
  width: 100%;
  max-width: 750px;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.talk-section .talk-hero .hero-caption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #666;
}
.talk-section {
  /* 座談会本体 */
}
.talk-section .timeline-talk {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.talk-section .talk-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.talk-section .talk-row.is-right {
  flex-direction: row-reverse;
}
.talk-section .talk-row.is-right .bubble {
  border-radius: 18px 0 18px 18px;
}
.talk-section .talk-row.is-right .bubble::before {
  left: auto;
  right: 100%;
  border-width: 8px 10px 8px 0;
  border-color: transparent #ffffff transparent transparent;
}
.talk-section .talk-row.is-right .person {
  text-align: center;
}
.talk-section .person {
  width: 120px;
  flex-shrink: 0;
  text-align: center;
}
.talk-section .person .person-photo {
  width: 110px;
  height: 110px;
  margin: 0 auto 8px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #FF6B4A;
}
.talk-section .person .person-photo img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.talk-section .person .person-name {
  font-size: 0.95rem;
  font-weight: 900;
  color: #FF6B4A;
}
.talk-section .bubble {
  margin-top: 40px;
  border: solid 0.5px #FF6B4A;
  position: relative;
  flex: 1;
  background: #ffffff;
  border-radius: 0 16px 16px 16px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  font-size: 0.95rem;
  line-height: 1.9;
}
.talk-section .bubble p {
  margin: 0;
}
.talk-section {
  /* スマホ対応 */
}
@media (max-width: 768px) {
  .talk-section {
    padding: 60px 16px;
  }
  .talk-section .section-title {
    font-size: 1.5rem;
  }
  .talk-section .section-lead {
    font-size: 0.9rem;
  }
  .talk-section .talk-hero img {
    border-radius: 14px;
  }
  .talk-section .timeline-talk {
    gap: 20px;
  }
  .talk-section .talk-row {
    gap: 12px;
  }
  .talk-section .person {
    width: 80px;
  }
  .talk-section .person .person-photo {
    width: 60px;
    height: 60px;
  }
  .talk-section .bubble {
    font-size: 0.85rem;
    padding: 12px 14px;
  }
  .talk-section .bubble::before {
    top: 14px;
  }
}

.time-schedule {
  width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 60px;
}
.time-schedule .section-title {
  border-left: 5px solid #FF6B4A;
  margin-bottom: 40px;
}
.time-schedule .section-title .main {
  color: #FF6B4A;
}
.time-schedule .time-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .time-schedule {
    width: 100%;
    padding: 0 16px;
    margin-bottom: 40px;
  }
  .time-schedule .section-title {
    margin-bottom: 24px;
    font-size: 1.4rem;
    border-left-width: 4px;
  }
  .time-schedule .section-title .main {
    font-size: 1.1rem;
  }
  .time-schedule .time-img {
    max-width: 100%;
  }
}
.thanks {
  padding: 50px 16px 70px;
}
.thanks__inner {
  max-width: 980px;
  margin: 0 auto;
}
.thanks__box {
  background: #fff;
  border-radius: 20px;
  padding: 36px 22px;
  border: 1px solid #792C2C;
  text-align: center;
}
.thanks__text {
  margin-top: 18px;
  line-height: 1.9;
}
.thanks__info {
  margin-top: 18px;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.thanks__note {
  margin-top: 20px;
}
.thanks__actions {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.thanks__btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 3px;
  border: 1px solid #792C2C;
  text-decoration: none;
  font-weight: 700;
  background-color: #792C2C;
  transition: opacity 0.2s ease;
  color: #ffffff;
  min-width: 220px;
}
.thanks__btn:hover {
  opacity: 0.75;
}
.thanks__btn--sub {
  background-color: #fff;
  border-color: #666;
  color: #666;
}

@media (max-width: 768px) {
  .thanks {
    padding: 36px 16px 56px;
  }
  .thanks__box {
    padding: 28px 16px;
  }
}
/*-- layoutフォルダの中の_index.scss --*/
.top {
  position: relative;
}
.top video {
  filter: grayscale(30%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* テキスト配置エリア */
.bg-wrap-group {
  position: absolute;
  top: 50%;
  left: 65%;
  transform: translateY(-50%);
  max-width: 40%;
  z-index: 2;
  text-align: left;
}
.bg-wrap-group .bg.is-animated .bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #792C2C, #d6a2a2);
  transform-origin: left center;
  animation: bg-slide 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  z-index: 0;
}
.bg-wrap-group .bg .bg-wrap {
  position: relative;
  display: inline-block;
  margin-top: 8px;
}
.bg-wrap-group .bg .bg-wrap .inn {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding: 8px 16px;
  line-height: 1.4;
  transition: opacity 0.5s ease;
}
@media (max-width: 1024px) {
  .bg-wrap-group {
    top: 70%;
    left: 35%;
    max-width: 80%;
    transform: translate(-50%, -50%);
    text-align: left;
  }
}
@media (max-width: 480px) {
  .bg-wrap-group {
    top: 70%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 480px) {
  .bg-wrap-group {
    top: 70%;
    left: 40%;
    transform: translate(-50%, -50%);
  }
}

#changing-text-jp {
  font-size: 4rem;
  white-space: normal;
  line-height: 1.3;
  transition: opacity 0.5s ease;
}

#changing-text-en {
  font-size: 1.25rem;
  white-space: pre-line;
  margin-top: 0.5rem;
  display: block;
  transition: opacity 0.5s ease;
}

.hidden {
  opacity: 0;
  transition: opacity 0.5s ease;
}

@media (max-width: 1550px) {
  #changing-text-jp {
    font-size: 2.8rem;
  }
  #changing-text-en {
    font-size: 1rem;
  }
}
@media (max-width: 1090px) {
  #changing-text-jp {
    font-size: 2.8rem;
  }
  #changing-text-en {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  #changing-text-jp {
    font-size: 2.5rem;
  }
  #changing-text-en {
    font-size: 0.9rem;
  }
}
@media (max-width: 599px) {
  #changing-text-jp {
    font-size: 2rem;
  }
  #changing-text-en {
    font-size: 0.8rem;
  }
}
@media (max-width: 480px) {
  #changing-text-jp {
    font-size: 1.5rem;
  }
  #changing-text-en {
    font-size: 0.8rem;
  }
}
@keyframes bg-slide {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1) translateX(0);
  }
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2em;
  margin-top: -110px;
  margin-bottom: 80px;
  color: #333;
}
.services .service-box {
  display: flex;
  background: rgb(255, 255, 255);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  padding: 30px;
  border-radius: 3px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.services .service-box p.S-1 {
  font-family: Kanit;
  font-weight: 600;
  font-style: italic;
  color: #792C2C;
}
.services .service-box h3 {
  margin-bottom: 10px;
}
.services .service-box p.S-2 {
  text-align: left;
  margin-bottom: 20px;
}
@media (max-width: 1100px) {
  .services .service-box p.S-2 {
    margin-bottom: 0;
  }
}
.services .service-box .text {
  margin-top: auto;
  align-self: flex-end;
  align-items: flex-end;
  color: #792C2C;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: Kanit;
  font-style: italic;
}
@media (max-width: 768px) {
  .services .service-box .text {
    font-size: 1.2rem;
  }
}
.services .service-box img {
  width: 40px;
  height: auto;
  vertical-align: middle;
  margin: 0 10px;
}

@media (max-width: 1220px) {
  .services {
    display: flex;
  }
}
@media (max-width: 1100px) {
  .services {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
#news-section {
  margin-bottom: 80px;
}

.news-set {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 75px;
  flex-wrap: wrap;
  margin: 0 80px 0 20px;
}
@media (max-width: 1200px) {
  .news-set {
    display: contents;
    font-size: 10rem;
  }
  .news-set .moreborder {
    display: none;
  }
  .news-set .N-text {
    font-size: 14px;
  }
}

.news-list {
  flex: 1;
  padding: 0;
  margin: 0;
}
@media (max-width: 1200px) {
  .news-list {
    margin-top: 20px;
  }
}

.news-list li {
  border-bottom: 1px solid #333;
}

.news-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  position: relative;
}
.news-link:hover {
  background-color: rgba(128, 65, 65, 0.2);
}
.news-link .date {
  width: 130px;
  font-size: 14px;
}
.news-link .N-text {
  flex: 1;
  padding-right: 2em;
}
.news-link .arrow {
  width: 40px;
  margin-top: 20px;
  text-align: right;
  transition: transform 0.2s ease;
}
.news-link:hover .arrow {
  transform: translateX(10px);
}
@media (max-width: 1050px) {
  .news-link {
    gap: 1em;
  }
  .news-link .date {
    width: auto;
    font-size: 13px;
  }
  .news-link .N-text {
    padding-right: 0;
    font-size: 14px;
  }
}

.c-text {
  font-family: "Noto Sans JP", sans-serif;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  margin: 60px 0 40px 0;
}

.c-text__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 100px;
  font-weight: bold;
  display: inline-block;
  color: rgba(221, 221, 221, 0.9);
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) linear infinite;
}

@keyframes MoveLeft {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.aboutus {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.aboutbackphoto {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4) url(../../img/images/DJI_0192.jpg);
  background-blend-mode: darken;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.aboutus .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.aboutus .container {
  position: relative;
  z-index: 2;
  color: #fff;
}
.aboutus .container h2.section-title {
  font-size: 1.5rem;
  border-left: 5px solid #fff;
  padding-left: 1rem;
  margin-top: 60px;
}
@media (max-width: 430px) {
  .aboutus .container h2.section-title {
    font-size: 1.15rem;
    padding-left: 0.6rem;
    border-left-width: 3px;
  }
}
.aboutus .container h2.section-title .main {
  color: #fff;
  margin-right: 0.5rem;
}
.aboutus .container h2.section-title .sub {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.aboutus .container h2.section-title .sub {
  font-size: 1rem;
}
.aboutus .container .services {
  margin-top: 40px;
}

.recruit {
  display: flex;
  justify-content: left;
  align-items: center;
  margin-bottom: 80px;
}
.recruit .recruit-info {
  width: 100%;
  height: 100%;
}
.recruit .recruit-overlay {
  display: flex;
  flex-direction: column;
  justify-content: left;
  height: 100%;
  align-items: center;
  padding: 20px;
  width: 100%;
  background-color: #792C2C;
}
@media (max-width: 500px) {
  .recruit .recruit-overlay {
    justify-content: flex-start;
    align-items: normal;
  }
}
.recruit .recruit-overlay h2.section-title {
  font-size: 1.5rem;
  border-left: 5px solid #fff;
  padding-left: 1rem;
}
@media (max-width: 430px) {
  .recruit .recruit-overlay h2.section-title {
    font-size: 1.15rem;
    padding-left: 0.6rem;
    border-left-width: 3px;
  }
}
.recruit .recruit-overlay h2.section-title .main {
  color: #fff;
  margin-right: 0.5rem;
}
.recruit .recruit-overlay h2.section-title .sub {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}
.recruit .recruit-overlay p {
  color: #fff;
}
@media (max-width: 499px) {
  .recruit .recruit-overlay p {
    text-align: center;
  }
}
.recruit .recruit-overlay .recruit-Ttl {
  font-family: serif;
  font-size: 3rem;
  padding-left: 50px;
}
@media (max-width: 999px) {
  .recruit .recruit-overlay .recruit-Ttl {
    padding-left: 0;
    font-size: 2.5rem;
  }
}
@media (max-width: 656px) {
  .recruit .recruit-overlay .recruit-Ttl {
    padding-left: 0;
    font-size: 1.8rem;
  }
}
@media (max-width: 499px) {
  .recruit .recruit-overlay .recruit-Ttl {
    margin-bottom: 10px;
    padding-left: 0;
    font-size: 1.65rem;
    padding-left: 0px;
    text-align: center;
    margin-left: 20px;
  }
}
.recruit .recruit-overlay p {
  margin-bottom: 30px;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.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: 16.6666666667vw;
}
.scroll-infinity__item > img {
  width: 100%;
}
@media (max-width: 1024px) {
  .scroll-infinity__item {
    width: 25vw;
  }
}
@media (max-width: 768px) {
  .scroll-infinity__item {
    width: 33.3333333333vw;
  }
}
@media (max-width: 430px) {
  .scroll-infinity__item {
    width: 50vw;
  }
}

#contact {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
#contact .contact-content {
  border: 1px solid #792C2C;
  padding: 40px 80px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #fff;
  /* ===== 上部テキストエリア ===== */
}
#contact .contact-content .Top-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}
#contact .contact-content .Top-contact p {
  text-align: left;
  margin-bottom: 5px;
}
#contact .contact-content .Top-contact .note {
  background-color: #792C2C;
  color: #fff;
  display: flex;
  flex-direction: column;
  /* 改行に対応 */
  justify-content: center;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.8rem;
  border-radius: 4px;
  line-height: 1.4;
  text-align: left;
}
#contact .contact-content {
  /* ===== ボタンエリア ===== */
}
#contact .contact-content .contact-buttons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
#contact .contact-content .contact-buttons .phone-btn,
#contact .contact-content .contact-buttons .mail-btn {
  font-family: "Noto Sans JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 25px;
  min-width: 260px;
  flex: 1;
  border: 1px solid #792C2C;
  border-radius: 3px;
  font-size: 1.1rem;
  letter-spacing: 1.3px;
  transition: background 0.3s ease, color 0.3s ease;
}
#contact .contact-content .contact-buttons .phone-btn img,
#contact .contact-content .contact-buttons .mail-btn img {
  width: 24px;
  height: auto;
}
#contact .contact-content .contact-buttons .mail-btn a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}
@media (max-width: 499px) {
  #contact .contact-content .contact-buttons .mail-btn a {
    font-size: 0.75rem;
  }
}
#contact .contact-content .contact-buttons .mail-btn a:hover {
  text-decoration: underline;
}
#contact .contact-content {
  /* ===== スマホ対応 ===== */
}
@media (max-width: 768px) {
  #contact .contact-content {
    padding: 40px 28px;
  }
  #contact .contact-content .Top-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  #contact .contact-content .Top-contact .note {
    align-self: flex-start;
    /* 左寄せに配置 */
    font-size: 0.75rem;
    padding: 8px 15px;
  }
  #contact .contact-content .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  #contact .contact-content .contact-buttons .phone-btn,
  #contact .contact-content .contact-buttons .mail-btn {
    width: 100%;
    min-width: auto;
    font-size: 1rem;
  }
}

.company-illust {
  margin-top: 100px;
  text-align: center;
}
.company-illust img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .company-illust {
    margin-top: 60px;
  }
  .company-illust img {
    width: 100%;
    max-width: 100%;
  }
}
/* -----------------------
   下層ページのアイキャッチ画像とテキスト
----------------------- */
.Top {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.Top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 250px;
  max-height: 310px;
}

.Top-text {
  position: absolute;
  top: 65%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
}
.Top-text p {
  font-size: 3rem;
  line-height: 1.5;
  font-weight: 800;
  color: #fff;
}
.Top-text p span {
  display: block;
  font-size: 1.2rem;
}

/* -----------------------
   レスポンシブ対応
----------------------- */
/* タブレットサイズ以下 */
@media (max-width: 1024px) {
  .Top-text {
    left: 10%;
  }
  .Top-text p span {
    font-size: 1rem;
  }
}
/* スマホサイズ以下 */
@media (max-width: 768px) {
  .Top img {
    min-height: 200px;
    max-height: 200px;
  }
  .Top-text {
    left: 9%;
    top: 60%;
  }
  .Top-text p {
    font-size: 2.2rem;
    line-height: 1.4;
  }
  .Top-text p span {
    font-size: 0.9rem;
  }
}
/* -----------------------------------
   倉庫一覧 TOP
----------------------------------- */
.warehouse-section {
  position: relative;
  overflow: hidden;
}
.warehouse-section .background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  background: rgb(201, 201, 201) url("../../img/AOK_4042_2.jpg") center/cover;
  z-index: -1;
}
.warehouse-section .warehouse-content {
  margin: 30px 0;
}
.warehouse-section .warehouse-content p {
  line-height: 1.7;
}
.warehouse-section {
  /* =============================
     メインレイアウト
  ============================= */
}
.warehouse-section .wh_all {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.warehouse-section .wh_all .wh_Left,
.warehouse-section .wh_all .wh_Right {
  flex: 0 0 50%;
  max-width: 50%;
}
.warehouse-section .wh_all {
  /* -----------------------------------
     MAP エリア
  ----------------------------------- */
}
.warehouse-section .wh_all .map-area {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin-top: 20px;
}
.warehouse-section .wh_all .map-area img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: drop-shadow(0 6px 20px rgb(66, 66, 66));
}
.warehouse-section .wh_all .map-area .map-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.warehouse-section .wh_all .map-area .map-point {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.warehouse-section .wh_all .map-area .map-label {
  position: absolute;
  width: 63px;
  height: 63px;
  line-height: 60px;
  background: #fff;
  border-radius: 50%;
  color: #792C2C;
  font-family: serif;
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: 0.3s;
}
.warehouse-section .wh_all .map-area .map-label:hover {
  color: #fff;
  transform: translate(-50%, -50%) scale(1.2);
  z-index: 10;
}
.warehouse-section .wh_all .map-area .map-label.active {
  background: #792C2C;
  color: #fff;
}
@media (max-width: 768px) {
  .warehouse-section .wh_all .map-area .map-label {
    width: 45px;
    height: 45px;
    line-height: 43px;
    font-size: 16px;
  }
}
@media (max-width: 430px) {
  .warehouse-section .wh_all .map-area .map-label {
    width: 38px;
    height: 38px;
    line-height: 36px;
    font-size: 14px;
  }
}
.warehouse-section .wh_all {
  /* -----------------------------------
     倉庫リスト（右側）
  ----------------------------------- */
}
.warehouse-section .wh_all .wh_Right .warehouse-item {
  margin-bottom: 10px;
}
.warehouse-section .wh_all .wh_Right {
  /* リストの背景（共通） */
}
.warehouse-section .wh_all .wh_Right .warehouse-bg {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 40px;
  padding-right: 250px;
  height: 65px;
  width: 100%;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5) center/cover;
  background-blend-mode: multiply;
  color: #ffffff;
  border-radius: 3px;
  transition: transform 0.4s ease, background-position 1s ease;
}
.warehouse-section .wh_all .wh_Right .warehouse-okabe .warehouse-bg {
  background-image: url("../../img/okabe.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-hatara .warehouse-bg {
  background-image: url("../../img/hatara.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-hanazono .warehouse-bg {
  background-image: url("../../img/hanazono.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-gunma .warehouse-bg {
  background-image: url("../../img/takeda.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-isesaki .warehouse-bg {
  background-image: url("../../img/gunnma.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-nitta .warehouse-bg {
  background-image: url("../../img/isesaki.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-akabori .warehouse-bg {
  background-image: url("../../img/nitta.jpg");
}
.warehouse-section .wh_all .wh_Right .warehouse-takeda .warehouse-bg {
  background-image: url("../../img/akabori.jpg");
}
.warehouse-section .wh_all .wh_Right {
  /* 番号・タイトル */
}
.warehouse-section .wh_all .wh_Right .warehouse-number {
  margin-right: 10px;
  font-size: 2rem;
  font-weight: 800;
  transition: 0.3s;
}
.warehouse-section .wh_all .wh_Right .warehouse-title {
  font-size: 1.2rem;
  font-weight: 800;
  white-space: nowrap;
  transition: 0.3s;
}
.warehouse-section .wh_all .wh_Right {
  /* ホバー時 */
}
.warehouse-section .wh_all .wh_Right .warehouse-item:hover .warehouse-bg {
  animation: bgSlide 3s linear infinite alternate;
  transform: translateX(10px);
  filter: brightness(0.7);
}
.warehouse-section .wh_all .wh_Right {
  /* アクティブ状態（JS連動想定） */
}
.warehouse-section .wh_all .wh_Right .warehouse-item.active .warehouse-number,
.warehouse-section .wh_all .wh_Right .warehouse-item.active .warehouse-title {
  color: #ffffff;
}
.warehouse-section .wh_all .wh_Right .warehouse-item.active .warehouse-bg {
  transform: translateX(10px);
}
@keyframes bgSlide {
  0% {
    background-position: left center;
  }
  100% {
    background-position: right center;
  }
}

/* ============================
   レスポンシブ
============================ */
/* 1280px以下（背景画像の右余白がキツくなる幅） */
@media (max-width: 1280px) {
  .wh_Right .warehouse-bg {
    padding-right: 180px;
  }
}
/* タブレット以下：縦並び */
@media (max-width: 1024px) {
  .warehouse-section .background {
    height: 100%;
  }
  .warehouse-section .wh_all {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .warehouse-section .wh_all .wh_Left,
  .warehouse-section .wh_all .wh_Right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .warehouse-section .map-area {
    max-width: 90%;
    margin: 0 auto;
  }
  .warehouse-section .wh_Right .warehouse-bg {
    padding: 5px 20px;
    padding-right: 120px;
    height: 55px;
  }
  .warehouse-section .wh_Right .warehouse-number {
    font-size: 1.5rem;
  }
  .warehouse-section .wh_Right .warehouse-title {
    font-size: 1rem;
    white-space: normal;
  }
}
/* スマホ：文字・ラベル縮小 */
@media (max-width: 768px) {
  .warehouse-section .warehouse-content p {
    font-size: 14px;
  }
  .warehouse-section .wh_Right .warehouse-bg {
    padding-right: 20px;
  }
  .warehouse-section .warehouse-title {
    white-space: normal;
  }
  .warehouse-section .map-area .map-label {
    width: 45px;
    height: 45px;
    font-size: 16px;
    line-height: 45px;
  }
  .warehouse-section .map-area .map-point {
    width: 6px;
    height: 6px;
  }
}
/* さらに小さい端末向け */
@media (max-width: 480px) {
  .warehouse-section .map-area .map-label {
    width: 36px;
    height: 36px;
    font-size: 14px;
    line-height: 36px;
  }
  .warehouse-section .map-area .map-point {
    width: 4px;
    height: 4px;
  }
  .warehouse-section .wh_Right .warehouse-number {
    font-size: 1rem;
  }
  .warehouse-section .wh_Right .warehouse-title {
    font-size: 0.8rem;
  }
}/*# sourceMappingURL=style.css.map */