body {
  /* font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif; */

  font-family:
    'M PLUS Rounded 1c',
    'Hiragino Kaku Gothic ProN',
    'Hiragino Sans',
    'Yu Gothic UI', 'Yu Gothic',
    'Meiryo',
    'Noto Sans JP',
    'Helvetica Neue', 'Helvetica', 'Arial',
    sans-serif;
  line-height: 1.6;
  color: #333;
  height: 100%;

}

ul.global-navigation__list {
  list-style: none;
}

/* ====================
common
==================== */
nav.breadcrumb {

  padding: 10px 30px;
}

nav.breadcrumb span {
  font-weight: 500;
  color: #b8d2e5;
  padding-right: 8px;
}

nav.breadcrumb span.breadcrumb_last {
  padding-left: 8px;
  color: #333;
}

body {
  overflow-x: hidden;
}

/* ====================
メニュー
==================== */

.header {
  position: fixed;
  left: 0;
  width: 240px;
  height: 100vh;
  background: #e3eaf5;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  padding: 32px 0 24px 0;
  box-sizing: border-box;
}

.nav-logo img {
  width: 90px;
  height: auto;
}

.main_box {
  width: 100%;
  position: relative;
}

nav.nav-menu {
  position: absolute;
  left: 0;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN', 'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
}

.nav-menu ul {
  list-style: none;
  padding-left: 33px;
  margin: 0;
  position: relative;
}


.nav-menu li {
  margin-bottom: 24px;
  text-align: left;
}

.nav-menu ul li::before {
  content: "";
  display: block;
  width: 14px;
  height: 60px;
  margin: 8px 0;
  background-color: #001d5f;
  position: absolute;
  left: 0;
}

.nav-menu a {
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  padding-top: 8px;
}

.nav-menu_link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.nav-menu_s {
  font-size: .9rem;
  color: #001d5f;
}

.menu-contact {
  margin-top: auto;
  width: 80%;
  text-align: left;
  font-family: 'Yu Mincho', serif;
}

.menu-contact .tel a {
  color: #26262f;
  font-weight: 900;
  font-size: 1.2rem;
  text-decoration: none;
}

.menu-contact .tel a::before {
  content: "";
  display: inline-block;
  background-image: url('../img/tel_icon.svg');
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
}

.nav-contact-btn {
  display: block;
  width: 100%;
  background: #001d5f;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 8px 0;
  margin: 16px 0 12px 0;
  font-size: 15px;
  cursor: pointer;
}

.nav-contact-btn:hover {
  background: #0d2a56;
}

.header__copy {
  position: absolute;
  right: 6px;
  top: 6px;
  writing-mode: vertical-rl;
  font-size: .9rem;
  white-space: nowrap;
}

.hamburger {
  display: none;
}

.header__nav-area {
  display: none;
}

/* =========================
   SP用ハンバーガーメニュー表示
========================= */
@media screen and (max-width: 1000px) {
  .header {
    /* position: static; */
    position: fixed;
    width: 100%;
    height: auto;
    flex-direction: row;
    padding: 0;
  }

  .main_box,
  .nav-menu,
  .menu-contact,
  .header__copy {
    display: none;
  }

  .hamburger {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    border: none;
    background-color: transparent;
    z-index: 100;
    padding: 0;
  }

  .hamburger.-active {
    left: 260px;
    top: 20px;
    position: fixed;
  }

  .hamburger__line {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 2px;
    background-color: #172e59;
    transition: 0.4s;
  }

  .hamburger__line::before,
  .hamburger__line::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #172e59;
    transition: 0.4s;
  }

  .hamburger__line::before {
    top: -8px;
    left: 0;
  }

  .hamburger__line::after {
    top: 8px;
    left: 0;
  }

  .hamburger__text::before {
    content: "メニュー";
    display: block;
    text-align: center;
    color: #172e59;
    font-size: 10px;
    font-weight: 900;
    position: absolute;
    top: 43px;
    left: 0;
    transform: translateX(-50%);
  }

  .global-navigation__list img {
    width: 100px;
  }
}


.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.-active .hamburger__line::after {
  transform: rotate(-45deg);
  top: 0;
}

.hamburger.-active .hamburger__text::before {
  content: "閉じる";
}


.header__nav-area {
  display: block;
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 9;
  transition: 0.4s;
  visibility: hidden;
  overflow-y: auto;
  overflow: auto;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
  height: 100vh;
}

.header__nav-area.-active {
  left: 0;
  visibility: visible;
}

.global-navigation {
  padding: 60px 25px;
}

.global-navigation__list>li {
  padding-bottom: 20px;
  border-bottom: 2px solid #e7e9ee;
}

.global-navigation__list>li+li {
  margin-top: 20px;
}

.global-navigation__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  padding: 0;
  color: inherit;
}

.global-navigation__link.-accordion::before,
.global-navigation__link.-accordion::after {
  content: '';
  position: absolute;
  background-color: #001d5f;
  transition: transform 0.4s;
}

.global-navigation__link.-accordion::before {
  width: 12px;
  height: 2px;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}

.global-navigation__link.-accordion::after {
  width: 2px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}

.global-navigation__link.-accordion.js-sp-accordion-trigger.-active {
  background-color: #e3eaf5;
  color: #001d5f;
  padding: 4px 8px;
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}

.accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}

.accordion__link {
  font-size: 0.75rem;
  color: #172e59;
}

.accordion__list li+li {
  margin-top: 21px;
}

/* ====================
フロントページ
==================== */
.main-contents {
  margin-left: 240px;
  background: #fff;
  min-height: 100vh;
}

.top-mv {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.top-mv__imgLayer {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.top-mv__video {
  position: absolute;
  top: 0;
  inset: 0;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  background-color: transparent;
}

h1.visually-hidden {
  display: none;
}

/* お知らせ */
.top-info {
  background: #fff;
  padding-top: 60px;
  padding-bottom: 90px;
  margin-bottom: 200px;
}

.container {
  width: 90%;
  margin: 0 auto;
}

.info_ttl {
  text-align: left;
}

.info_ttl_center {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: fit-content;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
}

.info_ttl_center span {
  font-size: .9rem;
  color: #001d5f;
  font-weight: 900;
  letter-spacing: .1em;
  width: max-content;
  margin-bottom: 0;
}

.info_ttl_center h2 {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 32px;
  width: max-content;
  margin-top: 0;
}

.news-list {
  max-width: 900px;
  margin: 0 auto 32px;
}

.news-item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #bfc8d6;
  padding: 12px;
  flex-direction: column;
  gap: 12px;
}

.news-days .date {
  min-width: 90px;
  color: #99a0a6;
  font-size: .8rem;
}

.news-item .category,
.news-detail-meta .category {
  display: inline-block;
  font-size: .8rem;
  padding: 2px 10px;
  margin-left: 8px;
  letter-spacing: 0.05em;
}

.news-item .category.news,
.news-detail-meta .category.news {
  background: #001d5f;
  color: #fff;
}

.news-item p {
  margin: 0;
  font-weight: 500;
}

.view-more {
  text-align: center;
  margin: 20px auto;
}

.view-more-btn {
  position: relative;
  padding-right: 20px;
  text-decoration: none;
  color: #001d5f;
  font-weight: 700;
  display: inline-block;
  background: #001d5f;
  color: #fff;
  border-radius: 20px;
  padding: 8px 32px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s;
}

.view-more-btn:hover {
  background-color: #0d2a56;
}

.view-more-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #fff;
}

@media screen and (max-width: 1650px) {
  .top-info {
    padding-top: 0;
  }
}

@media screen and (max-width: 1600px) {
  .top-info {
    margin-top: -50px;
  }
}

@media screen and (max-width: 1400px) {
  .top-info {
    margin-top: -180px;
  }
}
@media screen and (max-width: 1380px) {
  .top-info {
    margin-top: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .main-contents {
    margin-left: 0;
    min-height: auto;
  }
}

@media screen and (max-width: 920px) {
  .top-mv__imgLayer {
    margin-top: 80px;
  }

  .top-info {
    margin-top: 0;
  }
}

@media screen and (max-width: 750px) {
  .top-mv {
    min-height: auto;
    height: 500px;
  }

  .top-info {
    margin-top: 20px;
  }
}

@media screen and (max-width: 600px) {
  .top-mv__catch h1 {
    font-size: clamp(1.8rem, 4vw, 3.0rem);
    margin-bottom: 12px;
    letter-spacing: 0;
  }

  .top-mv__catch p {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
    letter-spacing: 0;
    padding-top: 8px;
  }
}

@media screen and (max-width: 585px) {
  .top-mv {
    min-height: auto;
    height: 400px;
  }
}

@media screen and (max-width: 380px) {
  .top-mv__catch {
    padding-left: 10px;
    top: 53%;
  }

  .top-mv__catch h1 {
    font-size: clamp(1.6rem, 4vw, 3.0rem);
  }
}

/* ====================
フッター
==================== */
.footer {
  position: relative;
  background: #d9e1e6;
  margin-left: 240px;
  padding: 0;
  height: 450px;
  box-sizing: border-box;

}

.footer__nav {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  background: #001d5f;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  padding: 30px 4%;
  box-sizing: border-box;
  z-index: 2;
}

.footer_menu {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  padding-bottom: 30px;
  border-bottom: 2px solid #fff;
  align-items: center;
}

.footer__nav ul {
  display: flex;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}

.footer__nav li a:hover {
  opacity: 0.7;
}

.footer__contact {
  margin-right: 10%;
}

.footer__contact-btn {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #fff;
  width: 80px;
  height: 80px;
  border-radius: 10vw;
  color: #001d5f;
  border: 2px solid #001d5f;
  /* border-radius: 50px; */
  padding: 12px 10px;
  font-size: .8rem;
  text-decoration: none;
  font-weight: 700;
  border: none;
  /*  */
}

.footer__contact-btn img {
  width: 30px;
  height: 30px;
}

.footer__contact-btn:hover {
  background-color: #e3eaf5;
  flex-direction: row;
  gap: 20px;
  width: 140px;
  font-size: 1.0rem;
}

.footer__info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 50px;
  padding-bottom: 0;
  margin-right: 5%;
  position: relative;
  z-index: 1;
}

.footer__links {
  display: flex;
}

.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0;
  flex-direction: column;
  gap: 8px;
  justify-content: flex-end;
}

.footer__links li {
  font-size: 14px;
  margin-bottom: 8px;
  color: #fff;
}

.footer__links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.2s;
}

.footer__links a:hover {
  opacity: 0.7;
}

.footer__copy {
  text-align left;
  padding: 0 8% 16px 8%;
  font-size: 12px;
  color: #bfc8d6;
}

.footer__decoration {
  position: absolute;
  right: 5%;
  bottom: 32px;

  font-size: 32px;
  line-height: 1.3;
  text-align: right;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
}

@media screen and (max-width: 1000px) {
  .footer {
    margin: 0;
  }
}

@media screen and (max-width: 700px) {
  .business-processing-plant {
    margin-bottom: 60px;
  }

  .footer_menu {
    padding-bottom: 0;
    border-bottom: none;
  }

  .footer__contact {
    margin-right: 0;
  }

  .footer__nav {
    top: -20px;
  }

  .footer__nav ul {
    flex-direction: column;
    gap: 8px;
  }

  .footer__info {
    margin-right: 0;
    padding: 8px;
    width: 50%;
    margin: auto;
    margin-top: -28px;
  }

  .footer__nav .footer__links ul {
    flex-direction: row;
    gap: 20px;
    margin: 0;
  }

}

@media screen and (max-width: 600px) {
  .footer__info {
    width: auto;
    margin: 0;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .footer__info {
    padding: 8px;
    width: auto;
    margin: 0;
    justify-content: flex-start;
    gap: 0;
  }

  .footer__nav .footer__links ul {
    gap: 20px;
    margin: 0;
    width: 100%;
    justify-content: flex-start;
    padding-left: 1.0rem;
  }

}

/* ====================
お知らせ一覧
==================== */
.page-header {
  position: relative;
  width: 100%;
  height: 550px;
  overflow: hidden;
}

.page-header img {
  width: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.4;
  height: 550px;
}

.page-header__inner {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
}

.page-header__inner h1.page-header__title {
  font-size: 2.8rem;
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 3.3rem;

}

.page-header__inner p.page-header__subtitle {
  font-size: 1.1rem;
  font-weight: 700;
  padding-left: 1.0rem;
}


.news-archive {
  background: #e5ecf1;
  padding: 60px 0;
}

.news-archive_container {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px 0 20px 0;
  border-radius: 8px;
}

.news-list {
  width: 90%;
  margin: 0 auto;
}

.news-archive-pagination {
  margin: 30px;
  text-align: center;
  padding-bottom: 100px;
}

.pagination {
  text-align: center;
  margin: 32px 0 0 0;
}

.pagination ul {
  display: inline-flex;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination li {
  display: inline-block;
  text-decoration: none;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-weight: 500;
  font-size: 1.1rem;

}

.pagination .current {
  color: #fff;
  font-weight: 500;
  padding: 0 6px;
  background-color: #001d5f;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 10vw;
}


.pagination a {
  color: #222;
  text-decoration: none;
  padding: 0 6px;
  transition: color 0.2s;
}

.pagination a:hover {
  color: #003366;
}

@media screen and (max-width: 1400px) {
  .page-header {
    height: auto;
  }

  .page-header img {
    object-fit: contain;
    height: auto;
  }
}

@media screen and (max-width: 1000px) {
  .page-header img {
    margin-top: 83px;
  }
}

@media screen and (max-width: 700px) {
  .page-header__inner h1.page-header__title {
    font-size: clamp(2.0rem, 4vw, 2.8rem);
  }
}

/* ====================
お知らせ詳細
==================== */

.page-header__inner.company {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.page-header__inner.company .page-header__subtitle {
  text-align: center;
  padding-left: 0;
}

.news-detail-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 160px 0;
}

.news-detail-box {
  border: 2px solid #2c406e;
  border-radius: 6px;
  width: 80%;
  max-width: 800px;
  min-height: 350px;
  background: #fff;
  padding: 40px 40px 60px 40px;
  box-sizing: border-box;
  position: relative;
}

.news-detail-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.news-detail-label {
  background: #2c406e;
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 2px;
  font-weight: bold;
  letter-spacing: 1px;
}

.news-detail-date {
  font-size: 12px;
  color: #333;
}

.news-detail-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-top: 0;
}

.news-detail-content {
  line-height: 1.7;
  text-align: left;
}

.news-detail-back {
  margin: 30px 0 0 0;
  text-align: center;
}

.news-detail-back a {
  display: inline-block;
  background: #2c406e;
  color: #fff;
  font-size: 13px;
  padding: 6px 24px;
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s;
}

.news-detail-back a:hover {
  background: #1a2947;
}

@media screen and (max-width: 900px) {
  .company-message {
    width: 90%;
  }
}

/* ====================
会社案内
==================== */

/* 社長あいさつ */
.company-message {
  margin: 40px auto 60px;
}

.company-message .company-message_ttl,
.company-profile .company-message_ttl,
.company-access .company-message_ttl,
.business-workflow .company-message_ttl,
.business-equipment .company-message_ttl,
.business-processing-plant .company-message_ttl,
.business-owned-vehicle .company-message_ttl {
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
  text-align: center;
}

.company-message .company-message_ttl p,
.company-profile .company-message_ttl p,
.company-access .company-message_ttl p,
.business-workflow .company-message_ttl p,
.business-equipment .company-message_ttl p,
.business-processing-plant .company-message_ttl p,
.business-owned-vehicle .company-message_ttl p {
  color: #001d5f;
}

.company-message .company-message_ttl h2,
.company-profile .company-message_ttl h2,
.company-access .company-message_ttl h2,
.business-workflow .company-message_ttl h2,
.business-equipment .company-message_ttl h2,
.business-processing-plant .company-message_ttl h2,
.business-owned-vehicle .company-message_ttl h2 {
  font-size: 2.0rem;
  font-weight: 700;
  color: #333;
}

.company-message .message-inner {
  margin: 24px auto;
  width: 100%;
  max-width: 1200px;
}

.company-message .message-content {
  text-align: left;
  font-size: 1.1rem;
}

.company-message .greeting-text {
  line-height: 1.8;
}

.company-message h2,
.company-message .message-title {
  color: #3a4a6a;
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* 会社概要 */
.company-message_ttl {
  margin-bottom: 30px;
}

.company-profile {
  max-width: 700px;
  margin: 40px auto;
  color: #26262f;
}

.profile-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 20px 0;
}

.profile-table th,
.profile-table td {
  padding: 10px 12px;
  vertical-align: middle;
  line-height: 1.7;
}

.profile-table th {
  width: 30%;
  max-width: 180px;
  /* color: #26262f; */
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: left;
  border-top: 2px solid #1d2089;
}


.profile-table td {
  border-top: 2px solid #6c6e7e;
}


.profile-table tr:last-child th {
  border-bottom: 2px solid #1d2089;
}


.profile-table tr:last-child td {
  border-bottom: 2px solid #6c6e7e;
}

.table-ttl {
  display: inline-block;
  font-weight: 500;
  color: #26262f;
  letter-spacing: 0.05em;
}

.profile-table td p {
  margin: 0 0 4px 0;
  padding: 0;
}

@media screen and (max-width: 600px) {
  .company-profile {
    max-width: 90%;
    margin: 20px auto;
  }

  .profile-table th,
  .profile-table td {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 8px 6px;
    font-size: 12px;
    vertical-align: middle;
  }

  .profile-table tr {
    display: block;
    margin-bottom: 16px;
  }

  .profile-table th {
    background-color: #1d2089;
    border: none;
    padding: 8px;
    text-align: center;
    font-size: 1.0rem;
  }

  .table-ttl {
    color: #fff;
  }
}


/* アクセス */
.company-access {
  margin-top: 60px;
  margin-bottom: 100px;
  background: #f0f4f7;
  padding: 40px 0;
}

.company-access .section-title {
  text-align: center;
  color: #3a4a6a;
  font-size: 20px;
  margin-bottom: 32px;
  letter-spacing: 0.1em;
}

.access-map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.access-map iframe,
.access-map>div {
  width: 100%;
  max-width: 900px;
  /* height: 300px; */
  border: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media screen and (max-width: 900px) {
  .company-message .message-inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .access-map iframe,
  .access-map>div {
    width: 100%;
    min-width: 0;
    height: 220px;
  }

  .access-map iframe,
  .access-map>div {
    max-height: 300px;
  }
}

/* ====================
事業内容
==================== */

.workflow-content {
  margin: 20px auto;
}

.workflow_list {
  margin: 60px auto 80px;
  width: 100%;
  max-width: 1400px;
}

.workflow_row {
  position: relative;
  margin-top: -30px;
}

.workflow_items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  column-gap: 24px;
  row-gap: 0;
}

.workflow_item {
  display: flex;
  flex-direction: column;
  margin: 0;
  box-shadow: 0 0 20px 0 rgba(227, 234, 245, 1);
  border-radius: 6px;
  padding: 14px;
  background: #fff;
}

.workflow_item--empty {
  min-height: 1px;
  box-shadow: none;
  padding: 0;
  background: transparent;
}

.workflow_mid-arrow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-width: 64px;
  position: relative;
  height: 100%;
}

.mid-arrow-icon {
  display: block;
  width: 0;
  height: 0;
  border-top: 21px solid transparent;
  border-bottom: 21px solid transparent;
  border-left: 32px solid #309bdf;
}

.workflow_row.is-reverse .mid-arrow-icon {
  border-left: none;
  border-right: 32px solid #309bdf;
}

.workflow_row.is-last .workflow_mid-arrow {
  display: none;
}

.workflow_item-title h3 {
  margin: 0 0 10px;
  padding: 6px 10px;
}

.workflow_item-title h3 span {
  position: relative;
  display: inline-block;
  padding: 10px 12px;
  background: #073072;
  color: #fff;
  font-size: 1.1rem;
  z-index: 0;
}

.workflow_item-title h3 span:before {
  content: "";
  position: absolute;
  inset: 5px -5px -5px 5px;
  border: 2px solid #001d5f;
  z-index: -1;
}

.workflow_item-media {
  width: 100%;
  text-align: center;
}

.workflow_images {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.workflow_image-wrap {
  flex: 1 1 calc(50% - 6px);
  max-width: calc(50% - 6px);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f3f5f8;
  border-radius: 4px;
}

.workflow-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.workflow_caption {
  margin-top: 12px;
}

.workflow_caption p {
  margin: 0 0 .7rem;
  line-height: 1.8;
  color: #333;
  text-align: left;
}

.workflow-content img.workflow_pc {
  width: 80%;
}

@media screen and (min-width: 1001px) {
  .workflow-content .workflow_pc {
    display: block;
    margin: 0 auto;
  }

  .workflow-content .workflow_sp {
    display: none;
  }

}

@media screen and (max-width: 1000px) {
  .workflow-content .workflow_pc {
    display: none;
  }

  .workflow-content .workflow_sp {
    display: block;
    margin: 0 auto;
    width: 80%;
  }

  .workflow_row {
    position: relative;
    margin-bottom: 48px;
    padding-bottom: 48px;
    margin-top: 0;
  }

  .workflow_items {
    grid-template-columns: 1fr;
    /* row-gap: 16px; */
  }

  .workflow_mid-arrow {
    display: none !important;
  }

  .workflow_item {
    position: static;
  }

  .workflow_item::after {
    content: none !important;
  }

  .workflow_row::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: calc(48px / 2 - 11px);
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 22px solid #2a5db0;
  }

  .workflow_row.is-last::after {
    content: none;
  }

  /* .workflow_row.is-last {
    margin-bottom: 0;
    padding-bottom: 0;
  } */


  .workflow_image-wrap {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
  }
}

@media (max-width: 560px) {
  .workflow_image-wrap {
    flex: 1 1 100%;
    max-width: 100%;
    aspect-ratio: 4 / 3;
  }
}


/* 設備紹介 */
.business-equipment,
.business-owned-vehicle {
  padding-top: 100px;
}

.equipment_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 90%;
  margin: 0 auto;
}

.equipment-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background-color: #001d5f;
  padding: 20px;
  color: #fff;
}

.equipment-image {
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}

.equipment-image img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  filter: drop-shadow(-10px 20px 20px rgba(38, 38, 47, .2));
}

.equipment-text {
  text-align: left;
}

.equipment-number {
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}

.equipment-device {
  font-size: clamp(1.1rem, 1vw, 1.5rem);
  font-weight: 700;
  margin: 20px 0;
  color: #001d5f;
}

.equipment-device span {
  background-color: #fff;
  padding: 12px 18px;
  display: inline-block;
}

.equipment-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.equipment-info li {
  margin-bottom: 6px;
}

/* 工場関連 */
.processing-plant-content {
  width: 80%;
  margin: 0 auto;
}

.processing-plant-content img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.business-processing-plant {
  margin: 100px auto 160px;
}

/* 車両紹介 */
.business-owned-vehicle {
  margin-bottom: 120px;
}

.vehicle-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  margin: 20px auto;
  width: 80%;
}

.vehicle-type {
  width: 30%;
  padding: 20px;
}

.vehicle-img {
  width: 50%;
  padding: 20px;
}

/* レスポンシブ */


@media (max-width: 1000px) {
  .equipment-device {
    font-size: clamp(1.0rem, 4vw, 1.3rem);
  }

  .equipment-image img {
    max-height: 250px;
    filter: none;
  }
}

@media (max-width: 985px) {

  .business-equipment,
  .business-owned-vehicle {
    padding-top: 0;
  }
}

@media (max-width: 966px) {
  .equipment_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .workflow_item {
    flex-direction: column;
  }

  .workflow_image-wrap {
    width: 100%;
    height: auto;
  }

  .workflow-thumb {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .equipment_list {
    grid-template-columns: 1fr;
  }
}


/* ====================
施工実績
==================== */
.main-contents.works-contents {
  min-height: auto;
}

.container-slider {
  width: 100%;
  margin: 0 auto;
}

.works {
  margin-bottom: 60px;
}

.swiper {
  position: relative;
  width: 100%;
  margin: 0 auto 160px !important;
  padding-bottom: 50px !important;
  box-sizing: border-box;
}

.swiper-wrapper,
.swiper-slide {
  box-sizing: border-box;
}

.swiper-slide {
  width: 450px !important;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.slide-image-box {
  width: 450px;
  height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.swiper-slide img {
  width: 450px;
  height: 400px;
  object-fit: contain;
  display: block;
}

.slide-caption {
  position: absolute;
  bottom: 10px;
  left: 20px;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 5px;
  pointer-events: none;
}

.works-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0;
}

.works-item {
  flex: 1 1 calc(50% - 20px);
  min-width: 280px;
  padding: 16px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  flex-direction: row;
}

.works-year {
  position: relative;
  margin-right: 1rem;
  padding: 0 16px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #001d5f;
  box-shadow: 6px 6px #001d5f;
  border: 2px solid #001d5f;
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
}

.works-img {
  width: 50%;
  margin-top: 0;
}

.works-img img {
  width: 100%;
  height: auto;
  display: block;
}

.works-list-content {
  font-family: 'Yu Mincho', '游明朝', 'Hiragino Mincho ProN',
    'ヒラギノ明朝 Pro W3', 'HiraMinProN-W3', 'MS PMincho', serif;
  width: auto;
  margin: 0;
}

.works-list-content h4 {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 1.1rem;
}

.works-list-content ul li {
  list-style: none;
  padding-left: 0.6rem;
  line-height: 1.8;
  font-size: 1rem;
}

/* 画面幅900px以下のレスポンシブ対応 */
@media (max-width: 900px) {
  .swiper-slide img {
    width: auto !important;
  }

  .works-list {
    gap: 20px;
  }

  .works-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .works-img {
    width: 100%;
    margin-top: 10px;
  }

  .works-year {
    margin-bottom: 10px;
  }
}

/* 画面幅600px以下のスマホ対応 */
@media (max-width: 600px) {
  .works-list {
    gap: 16px;
  }

  .works-item {
    padding: 12px;
    gap: 8px;
  }

  .works-year {
    font-size: 1rem;
    padding: 4px 20px;
  }

  .works-list-content {
    width: 80%;
    margin: auto;
  }

  .works-list-content h4 {
    font-size: 1rem;
  }

  .works-list-content ul li {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* ====================
404ページ
==================== */
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');

.not-found {
  position: relative;
  display: grid;
  place-content: center;
  background-image: url('../img/sorry.jpg');
  background-size: cover;
  width: 100%;
  height: 100vh;
  margin-bottom: 100px;
}

.not-found::before {
  position: absolute;
  inset: 0;
  background: inherit;
  filter: brightness(.1);
  animation: textSlide 4s 1s forwards linear;
  content: '';
}

.not-found .box {
  position: relative;
  text-align: center;
  font-family: 'Anton', sans-serif;
}

.box h1 {
  font-size: 150px;
  margin-bottom: 1rem;
  font-weight: bold;
  color: #fff;
}


.box p {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  animation: textAnime 6s 0.5s forwards;
  margin-bottom: 4rem;
}



.box a {
  padding: 0.5rem 1rem;
  background-color: #121212;
  color: #fff;
  text-decoration: none;
}


@keyframes textSlide {
  100% {
    filter: brightness(.8);
  }
}

/* ====================
問い合わせフォーム
==================== */

.contact {
  background-color: #d9e1e6;
  margin-bottom: 160px;
  padding: 40px;
}

.contact-txt {
  padding: 30px;
  text-align: center;
}

.contact-tel {
  padding: 30px;
}

.contact-b.bold {
  font-size: 1.4rem;
  display: block;
}

.bold {
  font-weight: 700;
}

.contact-txt .red {
  color: #e74c3c;
}


.contact-form .forms-field-container {
  max-width: 700px;
  margin: 40px auto 0 auto;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.forms-field {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: start;
  gap: 0 16px;
  margin-bottom: 18px;
}

.forms-field.forms-field-checkbox {
  display: grid !important;
  grid-template-columns: 120px 1fr;
  align-items: start;
  gap: 0 16px;
  margin-bottom: 18px;
}

.forms-field.forms-field-checkbox fieldset {
  display: contents !important;
  border: none;
  padding: 0;
  margin: 0;
  background: none;
}

.forms-field-checkbox .forms-field-label,
.forms-field.forms-field-checkbox .forms-field-label {
  grid-column: 1 / 2;
  margin-bottom: 0;
  text-align: left;
  padding: 0;
  align-self: center;
}

.forms-field-checkbox .forms-field-description,
.forms-field.forms-field-checkbox .forms-field-description {
  grid-column: 2 / 3;
  margin-bottom: 8px;
  margin-top: 0;
  font-size: .8rem;
  color: #666;
  line-height: 1.5;
}

.forms-field-checkbox ul {
  grid-column: 2 / 3;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 24px;
}

.forms-field-checkbox li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.forms-field-checkbox label {
  font-weight: normal;
}

span.forms-required-label {
  color: #e74c3c;
  font-size: 0.8rem;
  margin-left: 4px;
}

.forms-field-label,
.forms-field legend.forms-field-label {
  grid-column: 1 / 2;
  margin-bottom: 0;
  text-align: left;
  padding: 0;
  align-self: center;
}

.forms-field input[type="text"],
.forms-field input[type="email"],
.forms-field textarea,
.forms-field select {
  grid-column: 2 / 3;
  width: 100%;
  max-width: 100%;
  padding: 8px 10px;
  border: 1px solid #bfc9d1;
  border-radius: 4px;
  background: #fff;
  box-sizing: border-box;
  font-size: 16px;
}

.forms-field textarea {
  min-height: 100px;
  resize: vertical;
}

.forms-field-description {
  grid-column: 2 / 3;
  margin-bottom: 8px;
  font-size: .8rem;
  color: #666;
  line-height: 1.5;
}

.wpforms-submit-container {
  grid-column: 1 / 3;
  text-align: center;
  margin-top: 24px;
}

.wpforms-submit {
  background-color: #0a2650;
  color: #fff;
  font-weight: 700;
  padding: 10px 40px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s;
}

.wpforms-submithover {
  background: #163d6b;
}

.contact-txt {
  text-align: center;
  margin-bottom: 24px;
}

.contact-tel {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 10px 0 18px 0;
}

.form_link {
  font-weight: 700;
  font-size: .9rem;
  color: #001d5f;
  border-bottom: 1px solid #19852f;
}

.cf-submit {
  margin: 10px auto;
  text-align: center;
}

.pp_txt {
  text-align: center;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  padding: 4px 10px;
  background-color: #001d5f;
  border: 1px solid #001d5f;
  color: #fff;
  font-weight: 700;
  width: 120px;
  cursor: pointer;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  background-color: #fff;
  color: #001d5f;
}

@media (max-width: 600px) {

  .forms-field,
  .forms-field.forms-field-checkbox fieldset {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .forms-field-label,
  .forms-field legend.forms-field-label,
  .forms-field input[type="text"],
  .forms-field input[type="email"],
  .forms-field textarea,
  .forms-field-description,
  .forms-field-checkbox,
  .wpforms-submit-container,
  .forms-field-checkbox .forms-field-description,
  .forms-field-checkbox ul {
    grid-column: 1 / 2 !important;
  }

  .forms-field-checkbox ul {
    flex-direction: column;
    gap: 8px;
  }
}

@media screen and (max-width: 450px) {
  .container {
    width: 100%;
    margin: 0 auto;
  }

  .contact-txt {
    padding: 0;
  }
}

/* ====================
サイトマップ
==================== */

.sitemap {
  margin-bottom: 160px;
}

.sitemap_box {
  margin: 30px;
  display: flex;
  gap: 30px;
  justify-content: space-around;
  flex-wrap: wrap;
}

ul.sitemap_li {
  list-style: none;
}

ul.sitemap_li h2:hover,
ul.sitemap_li li:hover {
  font-weight: 900;
  color: #e3eaf5;
  background-color: #001d5f;

}

ul.sitemap_li li {
  padding-left: 1rem;
  line-height: 1.6;
}

ul.sitemap_li li::before {
  content: "・";
  display: inline-block;
}

@media screen and (max-width: 768px) {
  .sitemap_box {
    flex-direction: column;
    gap: 20px;
    margin: 20px;
  }

  ul.sitemap_li {
    width: 100%;
  }

  ul.sitemap_li h2 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  ul.sitemap_li li {
    font-size: 0.95rem;
    padding-left: 0.8rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  .sitemap_box {
    gap: 15px;
    margin: 15px;
  }

  ul.sitemap_li h2 {
    font-size: 1rem;
  }

  ul.sitemap_li li {
    font-size: 0.9rem;
  }
}

/* ====================
プライバシーポリシー
==================== */
.privacy-policy {
  margin: 50px;
  padding-bottom: 160px;
}

.privacy-policy h2 {
  text-align: center;
  padding-bottom: 8px;
}

.privacy-policy ul {
  line-height: 2.0;
}

.privacy-policy li {
  list-style: none;
  margin: 8px 0;
}

.privacy-policy li strong {
  font-size: 1.1rem;
  padding: 4px 8px;
  border-bottom: 3px dotted #001d5f;
}

.privacy-p_txt {
  padding-left: 1.0rem;
}

.privacy-p_txt.privacy-p_tel {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 790px) {
  .page-header__inner.company {
    width: 90%;
    text-align: center;
    top: calc(50% + 83px);
    transform: translate(-50%, calc(-50% - 45px));
  }
}


[id] {
  scroll-margin-top: 90px;
}