/* ============================= */
/*  変数・フォント設定           */
/* ============================= */
@charset "UTF-8";
/* ============================= */
/*  フォント                     */
/* ============================= */
/* Swei Match Sans CJK */
@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --white-color: #ffffff;
  --black-color: #001c2b;
  --gray-color: #f0f0f0;
  --gray-color02: #ccc;
  --gray-color03: #f2f2f2;
  --gray-color04: #707070;
  --primary-color: #E8342F;
  --primary-color02: #2e7bff;
  --primary-color03: #07213b;
  --accent-color: #d90609;
  --accent-color02: #ffdd00;
  --bg-color: #f5f7ff;
  --primary-gradation: linear-gradient(
    180deg,
    #05184e 0%,
    #183080 50%,
    #05184e 100%
  );
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 800px;
  --content-width: 936px;
  --content-width-lg: 1080px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-page-top: 50;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

/* Swei Match Sans CJK */
@font-face {
  font-family: "SweiMatchSansCJK";
  src: url("../fonts/SweiMatchSansCJK.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
h1 {
  font-family: "SweiMatchSansCJK", sans-serif;
}

/* ============================= */
/*  ベース・共通                 */
/* ============================= */
body {
  background: var(--white-color);
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.pc-only {
  display: none;
}

@media screen and (min-width: 1080px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 1080px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sm-only {
    display: none;
  }
}

.form-wrapper {
  padding: 0 10px;
}

@media screen and (min-width: 768px) {
  .form-wrapper {
    padding: 0 20px;
  }
}

@media screen and (min-width: 1080px) {
  .form-wrapper {
    display: none;
  }
}

@media screen and (min-width: 1200px) {
  .form-wrapper {
    display: none;
  }
}

/* ============================= */
/*  ディバイダー                 */
/* ============================= */
.divider {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary-color);
  margin: 10px 0;
  position: relative;
}

@media screen and (min-width: 768px) {
  .divider {
    margin: 20px 0;
  }
}

.divider::before {
  content: "";
  display: block;
  height: 2px;
  background: var(--gray-color);
  width: calc(100% - 35px);
  position: absolute;
  top: 0;
  right: 0;
}

/* ============================= */
/*  ヘッダー                     */
/* ============================= */
/* ========== ヘッダー ========== */
.site-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  background: var(--white-color);
}
.site-header__top-left {
  display: flex;
  align-items: center;
}

.site-header__logo-img {
  width: 100px;
}
@media screen and (min-width: 1080px) {
  .site-header__logo-img {
    width: 200px;
  }
}
.site-header__top-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__tel {
  display: none;
}
@media screen and (min-width: 768px) {
  .site-header__tel {
    display: block;
  }
}
.site-header__contact-btn {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 50vh;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.2s;
}
.site-header__contact-btn:hover {
  background: #ffffff;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.site-header__bottom {
  display: flex;
  align-items: center;
  background: var(--primary-color);
  padding: 0.2rem 2rem;
  position: relative;
}
.site-header__title {
  font-size: 20px;
  color: var(--primary-color);
  margin: 0;
  font-weight: bold;
}

@media screen and (min-width: 1080px) {
  .site-header__title {
    font-size: 24px;
  }
}

.site-header__link {
  text-decoration: none;
}
.site-header__hamburger {
  display: block;
  width: 40px;
  height: 28px;
  position: relative;
  z-index: 1001;
  border: none;
  background: transparent;
}
.site-header__hamburger-bar {
  width: 100%;
  height: 4px;
  position: absolute;
  right: 0;
  background: var(--primary-color);
}
.bar01 {
  top: 0;
  width: 50px;
}
.bar02 {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}
.bar03 {
  top: 100%;
  transform: translateY(-100%);
  width: 30px;
}

@media (min-width: 1080px) {
  .site-header__top-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  .site-header__hamburger {
    display: none;
  }
  .site-header__nav {
    display: flex;
  }
}
@media screen and (min-width: 1080px) {
  .site-header__hamburger {
    display: none;
  }

  .site-header__contact-btn {
    display: inline-block;
  }

  .nav__list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    gap: 10px;
    border-bottom: 1px solid var(--white-color);
  }

  .nav__item {
    font-size: 14px;
  }

  .nav__item:not(:first-child):before {
    content: "|";
    margin: 0 20px;
    color: var(--white-color);
    font-size: 14px;
  }

  .top__kv-right-contents {
    display: none;
  }
}
/* ========== モバイル時のヘッダー上部レイアウト調整 ========== */

@media (max-width: 1080px) {
  .site-header__bottom {
    /* display: none; */
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    z-index: 2000;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0 1rem; /* 上下パディングは nav-opened で付与 */
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease;
  }
  .site-header__bottom.nav-opened {
    /* display: block; */
    opacity: 1;
    height: 100vh;
    pointer-events: auto;
    padding: 0.7rem 1rem; /* 上下パディングも復活 */
  }
  .site-header__nav {
    display: block;
    width: 100%;
  }
  .nav__list--border {
    flex-direction: column;
    width: 100%;
  }
  .nav__item {
    width: 100%;
  }
  .nav__link {
    display: block;
    width: 100%;
    padding: 1.2rem 0.5rem;
    color: var(--white-color);
    border-bottom: 1px solid #2e7bff;
    text-align: left;
  }
  .nav__link:last-child {
    border-bottom: none;
  }
}

/* ============================= */
/*  ナビゲーション                */
/* ============================= */
/* ========== ナビゲーション ========== */
.site-header__nav {
  display: none;
  flex-direction: column;
  gap: 0;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
}

@media screen and (min-width: 1080px) {
  .site-header__nav {
    top: 0;
  }
}

.site-header__nav.nav--open {
  display: flex;
  background: var(--primary-color);
  transition: right 0.3s ease;
}
.site-header__nav-link {
  color: #333;
  text-decoration: none;
  padding: 1rem;
  border-radius: 0;
  border-bottom: 1px solid #eee;
  transition: background 0.2s;
}
.site-header__nav-link:hover {
  background: #e0e0e0;
}
.site-header__nav-separator {
  display: none;
}

/* ============================= */
/*  メイン・トップページ           */
/* ============================= */
/* ========== Main & Others ========== */
.main {
  width: 100%;
  margin: 2rem auto;
  padding: 0 10px;
}

.pc-form {
  display: none;
}

@media screen and (min-width: 1080px) {
  .pc-form {
    display: block;
  }
}

.top__contents {
  padding: 50px 0;
  max-width: var(--content-width-lg);
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .top__contents {
    padding: 50px 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top__contents {
    padding: 50px 10px;
  }

  .top__contents-pc {
    padding: 0 10px 50px;
  }
}

.pc-form .top__contents {
  max-width: 1080px;
}

.top__category-search .top__contents {
  max-width: 1200px;
}

.top__category-search-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-color);
}

@media screen and (min-width: 1080px) {
  .top__category-search-title {
    font-size: 36px;
  }
}

.top__category-list {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}

.top__category-item {
  width: calc((100% - 40px) / 2);
}

@media screen and (min-width: 1080px) {
  .top__category-item {
    width: calc((100% - 80px) / 3);
  }
}

.top__category-link {
  display: block;
  font-size: 8px;
  color: var(--black-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top__category-link:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  .top__category-link {
    font-size: 12px;
  }
}

@media screen and (min-width: 1080px) {
  .top__category-link {
    font-size: 14px;
  }
}


.top__category-link::before {
  content: "▲";
  color: var(--accent-color);
  margin-right: 5px;
  display: inline-block;
  transform: rotate(90deg);
}

.top__category-img-wrapper {
  width: 100%;
  aspect-ratio: 1.3 / 1;
  margin-top: 10px;
}

.top__category-img {
  width: 100%;
  height: auto;
}

.top__category-link[href="#"] {
  color: #999; /* 文字色をグレーに */
  pointer-events: none; /* クリック不可に */
  cursor: default; /* カーソルを変更 */
}

.top__category-link[href="#"] img {
  opacity: 0.5; /* 画像を半透明に */
}

.top__about-grant-subtitle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.top__about-grant-subtitle {
  padding: 5px 70px;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  line-height: 1;
  background: var(--white-color);
}

@media screen and (min-width: 1080px) {
  .top__about-grant-subtitle {
    font-size: 20px;
  }
}

.top__about-grant-title {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  margin-top: 10px;
  line-height: 1.1;
}

@media screen and (min-width: 1080px) {
  .top__about-grant-title {
    font-size: 40px;
  }
}

.top__about-grant-text {
  line-height: 1.8;
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .top__about-grant-text {
    text-align: center;
  }
}

.top__about-grant-font-small {
  font-size: 20px;
}

@media screen and (min-width: 1080px) {
  .top__about-grant-font-small {
    font-size: 24px;
  }
}

.top__about-grant-font-small02 {
  font-size: 18px;
  line-height: 1;
}

@media screen and (min-width: 1080px) {
  .top__about-grant-font-small02 {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .mobile-table {
    display: none;
  }
}

.product__manufacturer-link {
  color: #0073aa !important; /* WP管理画面っぽいブルー */
  text-decoration: underline !important;
}
.product__manufacturer-link:hover {
  color: #005177 !important;
}

.pc-table {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-table {
    display: table;
    margin-left: auto;
    margin-right: auto;
  }
}

.top__about-table {
  margin-top: 20px;
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #e6e6e6;
  background: var(--white-color);
}

.top__about-table thead {
  background: var(--primary-color);
  color: var(--white-color);
  width: 100%;
}

@media screen and (min-width: 1080px) {
  .top__about-table {
    font-size: 20px;
  }
}

.top__about-table th {
  text-align: center;
  font-weight: 500;
  padding: 5px 0;
}

@media screen and (min-width: 1080px) {
  .top__about-table th {
    font-size: 20px;
    padding: 15px 100px;
  }
}

.top__about-table td {
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--black-color);
  border: 1px solid #e6e6e6;
}

@media screen and (min-width: 1080px) {
  .top__about-table td {
    font-size: 18px;
  }

  .pc-td {
    text-align: center;
  }
}

.top__about-grant-subtitle-other {
  padding: 5px 40px;
}


.top__about-grant_sub-title {
  text-align: center;
  font-size: 24px;
  color: var(--primary-color);
  font-weight: bold;
  margin-top: 40px;
}

.top__about-table_other {
  background: transparent;
  border: none;
  text-align: center;
  table-layout: fixed;
  max-width: 900px;
}

.top__about-table_other thead {
  background: transparent;
}

.top__about-table_other th {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  white-space: nowrap;
}

.top__about-table_other td {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 1px solid var(--primary-color);
  padding: 20px 40px;
  font-size: 16px;
  color: var(--black-color);
    white-space: nowrap;

}

.td-wrapper {
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  color: var(--primary-color);
}

.top__flow-img-wrapper {
  display: none;
}

@media screen and (min-width: 1080px) {
  .top__flow-img-wrapper {
    display: block;
    margin-top: 40px;
    max-width: var(--content-width-lg);
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1080px) {
  .top__flow-list {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .top__flow-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top__flow-step-wrapper {
    width: 240px;
  }
}

.form__text-align-center {
  text-align: center;
}

.top__about-table-copy {
  font-size: 10px;
  color: var(--gray-color04);
  margin-top: 10px;
}

.top__about-detail-btn-wrapper {
  margin: 0 auto;
  background: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 50vh;
  width: 350px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
  color: var(--primary-color);
}

.btn-red {
  background: var(--primary-color);
  color: var(--white-color);
}

.top__about-detail-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: bold;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top__about-detail-btn:hover {
  opacity: 0.8;
}

.top__flow-title {
  text-align: center;
  font-weight: 500;
  font-size: 24px;
  color: var(--primary-color);
}

.top__flow-step-number {
  margin-top: 20px;
  color: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .top__flow-step-number {
    margin-top: 0;
  }
}

.top__flow-step-title {
  margin-top: 10px;
  font-size: 20px;
  color: var(--black-color);
  font-weight: 500;
}

.top__flow-item-text {
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (min-width: 1080px) {
  .top__flow-item-text {
    font-size: 16px;
    width: calc((100% - 240px) - 20px);
  }
}

.top__kv {
  height: 210px;
  position: relative;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 1)),
    url("../img/kv-img.png") center/cover;
}
@media screen and (min-width: 1080px) {
  .top__kv {
    height: 400px;
  }
}

.top__kv-contents {
  width: 100%;
  padding: 0 10px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 1080px) {
  .top__kv-contents {
    /* position: static; */
    top: 50%;
    left: auto;
    transform: translateY(-50%);
    padding: 20px 50px 0;
  }
}


.top__flow-btn-wrapper {
  margin-top: 20px;
}

.top__kv-title {
  font-size: 20px;
  color: var(--white-color);
  font-weight: 600;
}

@media screen and (min-width: 768px) {
  .top__kv-title {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-title {
    font-size: 56px;
  }
}

@media screen and (min-width: 1200px) {
  .top__kv-title {
    font-size: 48px;
  }
}

.top__kv-title-sub {
  color: var(--white-color);
  font-weight: 500;
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .top__kv-title-sub {
    font-size: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-title-sub {
    font-size: 32px;
  }
}

@media screen and (min-width: 1200px) {
  .top__kv-title-sub {
    font-size: 48px;
    text-align: left;
  }
}

.top__kv-copy-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .top__kv-copy-inner {
    align-items: end;
  }
}

@media screen and (min-width: 1200px) {
  .top__kv-copy-inner {
    justify-content: center;
    align-items: end;
    position: relative;
  }

  /* .top__kv-copy-inner::before {
    content: "";
    background: url("../img/top_kv_icon.png") center/cover;
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 200px;
    height: 200px;
    transform: scaleY(-50%);
  } */
}

.top__kv-copy {
  text-align: center;
  color: var(--accent-color02);
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
}

@media screen and (min-width: 768px) {
  .top__kv-copy {
    font-size: 48px;
    display: flex;
    justify-content: flex-start;
    margin-bottom: 2px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-copy {
    font-size: 40px;
    display: flex;
    margin-bottom: 4px;
  }
}

.top__kv-num {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 10px;
  font-size: 24px;
  color: var(--accent-color02);
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .top__kv-num {
    font-size: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-num {
    font-size: 40px;
  }
}

.top__kv-font-bold {
  font-size: 72px;
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .top__kv-font-bold {
    font-size: 120px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-font-bold {
    font-size: 80px;
    line-height: 1;
  }
}

/* @media screen and (min-width: 1080px) {
  .top__kv-copy-wrapper {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
  }
} */

.top__kv-sub-copy {
  text-align: center;
  color: var(--white-color);
  font-size: 20px;
  font-weight: 500;
  margin-top: 10px;
  position: relative;
}

@media screen and (min-width: 768px) {
  .top__kv-sub-copy {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-sub-copy {
    font-size: 32px;
  }
}

/* @media screen and (min-width: 1080px) {
  .top__kv-sub-copy {
    text-align: left;
    font-size: 32px;
    display: inline-block;
    margin-bottom: 4px;
    margin-left: 40px;
    color: var(--primary-color);
    background: var(--white-color);
    padding: 5px 20px;
    font-weight: 500;
  }
} */

.top__kv-sub-copy::before {
  content: "";
  width: calc((100% - 152px - 60px) / 2);
  position: absolute;
  height: 2px;
  background: var(--white-color);
  top: 50%;
  left: 0;
  margin-left: 10px;
}

@media screen and (min-width: 768px) {
  .top__kv-sub-copy::before {
    width: calc((100% - 280px - 100px) / 2);
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-sub-copy::before {
    width: calc((100% - 280px - 150px) / 2);
    margin-left: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .top__kv-sub-copy::before {
    width: calc((100% - 280px - 200px) / 2);
    margin-left: 100px;
  }
}

/* @media screen and (min-width: 1200px) {
  .top__kv-sub-copy::before {
    display: none;
  }
} */

.top__kv-sub-copy::after {
  content: "";
  width: calc((100% - 152px - 60px) / 2);
  position: absolute;
  height: 2px;
  background: var(--white-color);
  top: 50%;
  right: 0;
  margin-right: 10px;
}

@media screen and (min-width: 768px) {
  .top__kv-sub-copy::after {
    width: calc((100% - 280px - 60px) / 2);
  }
}

@media screen and (min-width: 1080px) {
  .top__kv-sub-copy::after {
    width: calc((100% - 280px - 150px) / 2);
    margin-right: 80px;
  }
}

@media screen and (min-width: 1200px) {
  .top__kv-sub-copy::after {
    width: calc((100% - 280px - 200px) / 2);
    margin-right: 100px;
  }
}

/* @media screen and (min-width: 1200px) {
  .top__kv-sub-copy::after {
    display: none;
  }
} */

.top__kv-search-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--black-color);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top__kv-search-title {
    font-size: 32px;
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .top__kv-right-contents .sp-only {
    display: block;
  }
}

/* ============================= */
/*  検索フォーム                  */
/* ============================= */
/* ========== top__kv-search-form ========== */
.top__kv-search-form {
  border-radius: 8px;
  /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06); */
  margin-top: 1.2rem;
}

@media screen and (min-width: 1080px) {
  .top__kv-search-form {
    margin-top: 0.5rem;
  }
}
.top__kv-search-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}

.top__kv-search-label {
  color: #333;
}

.top__kv-search-input,
.top__kv-search-select {
  padding: 15px 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  background: #fafbfc;
  transition: border 0.2s;
}

@media screen and (min-width: 768px) {
  .top__kv-search-input,
  .top__kv-search-select {
    font-size: 12px;
    padding: 15px 0;
    padding-right: 50px;
    padding-left: 15px;
  }
}

.top__kv-search-input:focus,
.top__kv-search-select:focus {
  border: 1.5px solid #007bff;
  outline: none;
}
.top__kv-search-button {
  width: 100%;
  padding: 0.7rem 0;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.top__kv-search-button:hover {
  background: #c6110a;
}

.page__kv-contents {
  padding: 0 10px;
}

/* .search__result {
  padding: 50px 10px;
}

@media screen and (min-width: 1080px) {
  .search__result {
    padding: 50px;
  }
} */

.page-contents {
  padding: 10px 10px;
}

@media screen and (min-width: 1080px) {
  .page-contents {
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.search__result-label {
  margin-left: 20px;
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .product__contents {
    padding: 0;
  }
}

@media screen and (min-width: 768px) {
  .product__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .product__item {
    width: calc((100% - 40px) / 2);
  }

  .product__item-img-wrapper {
    width: 100%;
    aspect-ratio: 6 / 4;
    object-fit: cover;
  }

  .product__item-img {
    width: 100%;
    aspect-ratio: 6 / 4;
    object-fit: cover;
  }
  
}

@media screen and (min-width: 1080px) {
  .product__list {
    display: none;
  }
}

/* デフォルト（モバイル〜タブレット）は非表示 */
.product__table {
  display: none;
}

.product__table-list th,
.product__table-list td {
  word-wrap: break-word; /* 長い単語を折り返す */
  word-break: break-all; /* 必要に応じて単語を分割 */
}

/* 1080px以上で表示 */
@media screen and (min-width: 1080px) {
  .product__table {
    display: block;
    margin: 0 auto;
    overflow-x: auto; /* 横スクロール対応 */
  }

  .product__table-list {
    border-collapse: collapse;
    width: 100%;
    min-width: 1050px; /* 6列 × 175px の最低幅 */
    table-layout: fixed; /* 均等に割り当て */
  }

  .product__table-list th,
  .product__table-list td {
    width: 175px;
    height: 120px;
    text-align: left;
    border: 1px solid #ccc;
    padding: 8px;
    vertical-align: middle;
  }

  .product__table-list th {
    height: 50px;
    text-align: center;
  }

  .product__img-inner {
    position: relative;
  }

  .product__img-inner.has-overlay::after {
    content: "イメージ";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 1.5rem;
    /* font-weight: 600; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
  }

  /* 画像セルは中央寄せ */
  .product__table-img img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
  }

  /* 背景色を交互に */
  .product__table-list tbody tr:nth-child(odd) {
    background-color: #fff;
  }
  .product__table-list tbody tr:nth-child(even) {
    background-color: #f0f3ff;
  }

  /* ヘッダー */
  .product__table-list th {
    background-color: #000000;
    color: #fff;
    font-weight: bold;
  }

  /* お問い合わせボタンの体裁（例） */
  .product__btn-link {
    display: inline-block;
    margin: 4px 2px;
    padding: 6px 12px;
    font-size: 0.9rem;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid var(--black-color);
    color: var(--black-color);
    transition: all 0.2s;
    background: var(--white-color);
  }
  .product__btn-link:hover {
    background-color: var(--black-color);
    color: #fff;
  }
}

@media screen and (min-width: 1080px) {
  .top__pc-form-title {
    color: var(--black-color);
    font-size: 40px;
    /* background: var(--primary-color); */
    padding: 5px 10px;
    font-weight: bold;
    display: inline-block;
  }
}

/* PC表示時 */
@media (min-width: 1080px) {
  /* ラッパーを横並びに */
  .top__kv-search-row-wrapper {
    flex-direction: row;
    gap: 5px;
    flex-wrap: nowrap; /* 改行させない */
    height: 100%;
  }

  /* 各項目を均等に広げる */
  .top__kv-search-row-wrapper .top__kv-search-row {
    flex: 1;
    max-width: 250px; /* 幅固定を解除 */
  }

  /* ボタンを含む最終行も横並びにしたい場合 */
  .top__kv-search-form > .top__kv-search-row:last-child {
    display: flex;
    justify-content: flex-start; /* 左寄せ */
    /* gap: 5px; */
    max-width: 250px;
  }
}

/* ============================= */
/*  検索結果・ソート・ページネーション */
/* ============================= */
.search-result__sort {
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid var(--black-color);
  width: 290px;
}

.search-result__sort-select-wrapper {
  position: relative;
  display: inline-block;
}

.search-result__sort-select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--black-color);
  font-size: 12px;
}

.search-result__sort-select-wrapper select {
  padding-right: 2em; /* ▼分の余白 */
  appearance: none; /* デフォルト矢印を消す */
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
}

.search-result__sort-select {
  width: 140px;
}

/* ============================= */
/*  製品リスト・詳細              */
/* ============================= */
.product__item {
  padding: 20px 10px;
  background: var(--white-color);
  border: 1px solid var(--gray-color);
  border-radius: 10px;
  margin-bottom: 20px;
}

.product__item-img-wrapper {
  position: relative;
}

.product__item-img-wrapper.has-overlay::after {
  content: "イメージ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 2rem;
  /* font-weight: 600; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .product__item-img-wrapper.has-overlay::after {
    font-size: 3rem;
  }
}

.product__title {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.product__description {
  font-size: 14px;
  margin-top: 10px;
}

.product__btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
}

.product__btn-inner {
  width: calc((100% - 40px) / 2);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--black-color);
  height: 30px;
}

.more-inner {
  background: var(--white-color);
}

.contact-inner {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

@media screen and (min-width: 768px) {
  .product__btn-inner {
    height: 40px;
  }
}

.product__btn-more,
.product__btn-contact {
  /* padding-top: 5px;
  padding-bottom: 5px; */
  width: 100%;
  text-align: center;
}

.product__btn-more {
  color: var(--black-color);
  font-weight: 500;
}

.product__btn-contact {
  color: var(--white-color);
  font-weight: 500;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.product__btn-link {
  font-size: 12px;
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}

.product__input,
.product__textarea {
  border: 1px solid var(--gray-color02);
  width: 100%;
  padding: 5px 10px;
  margin-top: 10px;
}

.product__submit {
  text-align: center;
}

.pagination__list {
  display: flex;
  gap: 0.5em;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination__link {
  display: inline-block;
  padding: 0.5em 1em;
  color: var(--black-color);
  text-decoration: none;
  border: none;
  background: none;
  font-weight: bold;
  transition: background 0.2s, color 0.2s;
}
.pagination__link.current {
  background: var(--primary-color);
  color: var(--white-color);
  pointer-events: none;
  font-weight: bold;
}
.pagination__link:hover:not(.pagination__link.current) {
  background: #f0f0f0;
}

@media screen and (min-width: 1080px) {
  .product-detail {
    padding: 0 50px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
}

/* .product-detail__img-wrapper {
  position: relative;
  display: inline-block;
  overflow: hidden;
} */

.product-detail__img-wrapper {
  width: 100%;
  aspect-ratio: 6 / 4;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .product-detail__img-wrapper {
    max-width: 600px;
  }
}

.product-detail__img-wrapper.has-overlay::after {
  content: "イメージ";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 3rem;
  /* font-weight: 600; */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}

.product-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__catalog-num {
  font-size: 12px;
  color: var(--primary-color);
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .product-detail__catalog-num {
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__catalog-num {
    font-size: 16px;
  }
}

.product-detail__title {
  font-size: 20px;
  margin-top: 5px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .product-detail__title {
    font-size: 24px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__title {
    font-size: 32px;
  }
}

.product-detail__description {
  margin-top: 10px;
}

@media screen and (min-width: 1080px) {
  .product-detail__description {
    display: flex;
    justify-content: flex-start;
    align-items: start;
    gap: 20px;
  }
}

.product-detail__description-heading {
  display: inline-block;
  width: 120px;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .product-detail__description-heading {
    font-size: 16px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__description-heading {
    font-size: 20px;
  }
}

.product-detail__description-text {
  font-size: 12px;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .product-detail__description-text {
    font-size: 14px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__description-text {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__description-text {
    width: calc(100% - 140px);
  }
}

.product-detail__btn-wrapper {
  margin-top: 20px;
  max-width: var(--content-width-lg);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .product-detail__btn-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

.product-detail__btn-inner {
  max-width: 500px;
  border: 1px solid var(--black-color);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .product-detail__btn-inner {
    font-size: 18px;
  }
}

@media screen and (min-width: 1080px) {
  .product-detail__btn-inner {
    min-width: 450px;
    font-size: 22px;
  }
}

.product-detail__btn-more,
.product-detail__btn-contact {
  padding-top: 20px;
  padding-bottom: 20px;
  width: 100%;
}

.product-detail__btn-more {
  color: var(--black-color);
  font-weight: 500;
  text-align: center;
}

.product-detail__btn-contact {
  color: var(--white-color);
  background: var(--primary-color);
  text-align: center;
}

.product-detail__btn-spmt {
  margin-top: 10px;
  border: 1px solid var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .product-detail__btn-spmt {
    margin-top: 0;
  }
}

.product-detail__summary {
  margin-top: 50px;
}

.product-detail__summary-title {
  font-size: 24px;
  font-weight: 500;
}

@media screen and (min-width: 1080px) {
  .product-detail__summary-title {
    font-size: 32px;
  }
}

.product-detail__summary-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
}

@media screen and (min-width: 1080px) {
  .product-detail__summary-text {
    font-size: 18px;
  }
}

.product-detail__summary-date {
  position: relative;
}

@media screen and (min-width: 1080px) {
  .product-detail__summary-date {
    font-size: 18px;
  }
}

.product-detail__seller {
  margin-top: 20px;
  max-width: var(--content-width-lg);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .product-detail__seller {
    padding: 0 50px;
  }
}

.product-detail__seller-info {
  background: #F5F5F5;
  padding: 20px 10px;
}

@media screen and (min-width: 768px) {
  .product-detail__seller-info {
    display: flex;
    justify-content: start;
    gap: 40px;
    padding: 20px;
  }
}

.product-detail__seller-title {
  font-size: 20px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .product-detail__seller-title {
    font-size: 24px;
  }
}

.product-detail__seller-name,
.product-detail__seller-website,
.product-detail__seller-contact {
  font-size: 16px;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .product-detail__seller-name,
  .product-detail__seller-website,
  .product-detail__seller-contact {
    flex-direction: row;
    gap: 20px;
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  .product-detail__seller-name {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .product-detail__seller-name-label,
  .product-detail__seller-website-label,
  .product-detail__seller-contact-label {
    width: 140px;
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .product-detail__seller-contact-label {
    flex-shrink: 0;
  }
}

.product-detail__seller-contact-inner {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

@media screen and (min-width: 768px) {
  .product-detail__seller-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
}

@media screen and (min-width: 768px) {
  .product-detail__contact-form {
    padding: 0 50px;
  }
}

.form__contents {
  max-width: var(--content-width-lg);
  margin: 0 auto;
}

.product-detail__contact-form-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .product-detail__contact-form-title {
    margin-bottom: 40px;
  }
}

/* ============================= */
/*  問い合わせフォーム            */
/* ============================= */
.product__contact-form {
  margin-top: 20px;
}

.product__contact-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--gray-color);
  font-size: 14px;
  background: var(--white-color);
  margin-top: 10px;
}

.product__contact-form textarea {
  width: 100%;
  height: 150px;
  padding: 10px;
  border: 1px solid var(--gray-color);
  font-size: 14px;
  background: var(--white-color);
  margin-top: 10px;
  resize: vertical;
}

.form-group label {
  color: var(--black-color);
  font-weight: bold;
}

.privacy-policy-label {
  margin-top: 20px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
}

@media screen and (min-width: 1080px) {
  .privacy-policy-label {
    font-size: 14px;
  }
}

.privacy-policy-label a {
  color: var(--primary-color);
  font-weight: 500;
}

.required {
  font-size: 14px;
  margin-left: 20px;
  color: var(--accent-color);
  font-weight: bold;
}

/* .product__contact-form-btn {
  max-width: 500px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--primary-color);
  background: var(--white-color);
  padding: 15px 0;
  color: var(--primary-color);
  font-weight: 600;
  margin-left: auto;
  margin-right: auto;
}
 */
.wpcf7-spinner {
  display: none;
}

.contact__kv {
  padding: 50px 10px;
  background: var(--primary-color);
}

@media screen and (min-width: 1080px) {
  .contact__kv {
    padding: 100px 10px;
  }
}

.contact__kv-contents-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .contact__kv-contents-title {
    font-size: 30px;
  }
}

.product__contact-form-btn {
  max-width: 500px;
  margin: 20px auto 0 auto;
}

.product__contact-form-btn button {
  width: 100%;
  padding: 15px 0;
  border: 1px solid var(--black-color);
  background: var(--white-color);
  color: var(--black-color);
  font-weight: 600;
  cursor: pointer;
  font-size: 1rem;
}

#submitBtn:disabled {
  background-color: #ccc; /* グレー */
  color: #666; /* 文字も薄く */
  cursor: not-allowed; /* 禁止マーク */
  opacity: 0.7; /* 少し薄く */
}

/* ============================= */
/*  フッター                      */
/* ============================= */
.footer {
  background: #000000;
  padding: 20px 10px;
}

.footer__header {
  position: relative;
}
.footer__header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--white-color);
  /* position: absolute;
  bottom: 0;
  left: 0; */
  margin: 20px 0;
}

.footer__title {
  font-size: 24px;
  font-weight: 500;
  color: var(--white-color);
  text-align: center;
}

.footer__company-info {
  padding: 0 40px;
  margin-top: 10px;
  color: var(--white-color);
}

.footer__company-name {
  margin-bottom: 10px;
  text-align: center;
}

.footer__company-link {
  display: flex;
  justify-content: center;
}

.footer__company-link-img {
  width: 15px;
  height: 15px;
  margin-left: 5px;
}

.footer__address {
  text-align: center;
}

.footer__categories {
  display: none;
}

.footer__navigation {
  padding: 20px 0;
}

.footer__navigation::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--white-color);
  margin-bottom: 20px;
}

.footer__navigation::after {
  content: "";
  display: block;
  height: 1px;
  background: var(--white-color);
  margin-top: 20px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--white-color);
}

.footer__nav-item {
  margin-top: 5px;
}

.footer__nav-link {
  margin-top: 16px;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .footer__nav-link {
    font-size: 14px;
  }
}

.footer__nav-link-line {
  margin-left: 10px;
  margin-right: 10px;
}

.footer__bottom {
  text-align: center;
  color: var(--white-color);
}

/* .footer__bottom::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--white-color);
  margin-bottom: 20px;
  margin-top: 20px;
} */

.footer__copyright {
  text-align: center;
  margin-top: 10px;
  color: var(--white-color);
}

/* ============================= */
/*  レスポンシブ                  */
/* ============================= */

/* @media (min-width: 1080px) {
  .top__kv-search-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    height: 60px;
  }

  .top__kv-search-row-top {
    max-width: 510px;
    height: 100%;
    min-width: 420px;
  }

  .top__kv-search-row {
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }
  .top__kv-search-row {
    flex: 0 1 180px;
    min-width: 140px;
    gap: 0;
    height: 100%;
  }
  .top__kv-search-row:first-child {
    flex: 2 1 320px;
    min-width: 180px;
    max-width: 300px;
    height: 100%;
  }

  .top__kv-search-row .top__kv-search-input {
    width: 100%;
    height: 100%;
  }

  .top__kv-search-button {
    width: 100%;
    min-width: 100px;
    padding: 0.7rem 2.2rem;
    margin-top: 0;
    align-self: flex-end;
    height: 100%;
  }
} */

@media (min-width: 1080px) {
  .top__kv-search-form {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: flex-end;
    max-width: 1000px;
    height: 60px;
    gap: 5px;
  }

  .search-row-top {
    height: 100%;
    width: 500px;
  }

  .search-row-second {
    width: 250px;
  }

  .search-row-button {
    width: 250px;
    height: 100%;
  }

  .top__kv-search-row {
    flex-direction: column;
    margin-bottom: 0;
    margin-right: 0;
    margin-left: 0;
  }
  /* .top__kv-search-row {
    min-width: 150px;
    gap: 0;
    height: 100%;
  } */

  .top__kv-search-row:first-child {
    /* flex: 2 1 320px; */
    /* min-width: 220px; */
    /* max-width: 300px; */
    height: 100%;
  }

  .top__kv-search-input,
  .top__kv-search-select {
    width: 100%;
    /* height: 100%; */
    height: 60px;
  }

  .top__kv-search-button {
    width: 100%;
    /* min-width: 100px; */
    /* padding: 0.7rem 2.2rem; */
    margin-top: 0;
    align-self: flex-end;
    height: 100%;
  }
}

/* @media (min-width: 1200px) {
  .top__kv-search-form {
    max-width: 1200px;
  }

  .top__kv-search-row {
    gap: 0;
    height: 100%;
    width: 350px;
  }
 */
  /* 各項目を均等に広げる */
  /* .top__kv-search-row-wrapper .top__kv-search-row {
    flex: 1;
    max-width: 200px;
  }
} */

/* =============================
/*  省力化事例 Swiper カルーセル   */
/* ============================= */
/* ========== 省力化事例 Swiper カルーセル ========== */
@media screen and (min-width: 1080px) {
  .top__case-swiper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
  }
}

.top__case-content {
  margin-top: 20px;
}

.top__case-title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 500;
}

.top__case-content-title {
  font-size: 20px;
  font-weight: 500;
}

.top__case-content-industry,
.top__case-content-category {
  font-size: 14px;
  margin-top: 10px;
}

.top__case-img {
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
}

.top__case-detail-btn-wrapper {
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 355px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  border: 1px solid var(--primary-color);
}

.top__case-detail-btn {
  color: var(--primary-color);
  font-weight: 500;
}

@media (max-width: 1080px) {
  /* .top__case-swiper {
    position: relative;
    width: 100%;
    padding-bottom: 48px;
    margin-top: 20px;
  }
  .top__case-swiper .swiper-wrapper {
    width: 100%;
  }
  .top__case-swiper .swiper-slide {
    width: 90%;
    margin: 0 auto;
    box-sizing: border-box;
  } */

  .top__case-controls {
    display: flex;
    align-items: center;
    justify-content: center; /* 中央に寄せる */
    gap: 100px; /* ボタンとページネーションの間隔 */
    margin-top: 30px; /* スライダーとの距離 */
    position: relative;
    padding: 10px 0;
    height: 40px;
    overflow: visible;
  }

  .top__case-pagination {
    position: absolute;
    top: 2px;
  }

  .top__case-button-prev,
  .top__case-button-next {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    cursor: pointer;
    /* margin-top: 10px; */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    z-index: 10;
  }

  .top__case-button-prev {
    border-top: none;
    border-right: none;
    left: 20%;
  }

  .top__case-button-next {
    border-bottom: none;
    border-left: none;
    right: 20%;
  }
}

/* 選択ボックス本体 */
.select2-container .select2-selection--single {
  height: 60px !important; /* 高さを指定 */
  display: flex !important; /* 中央寄せのため flex を使用 */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  border: 1px solid #ccc !important;
  background: #fafbfc !important;
  border-radius: 4px;
  box-sizing: border-box;
}


/* テキスト部分 */
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  text-align: left;
  width: 100%;
  font-size: 14px;
}

/* 矢印 */
.select2-selection__arrow {
  display: none; /* 矢印を非表示に */
}

/* ============================= */
/*  flow   */
/* ============================= */
/* Reset and Base Styles */
/* Hero Section */
.hero {
  background-color: #000000;
  padding: 30px 15px;
  text-align: center;
}

.hero-title {
  color: white;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.hero-description {
  color: white;
  font-size: 14px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

/* Buttons */
.btn {
  border: none;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  min-width: 200px;
}

.btn-primary {
  background-color: #2139a3;
  color: white;
}

.btn-primary:hover {
  background-color: #1a2d7a;
}

.btn-white {
  background-color: white;
  color: #2139a3;
}

.btn-white:hover {
  background-color: #f0f0f0;
}

.btn-outline {
  background-color: white;
  color: #2139a3;
  border: 2px solid #2139a3;
}

.btn-outline:hover {
  background-color: #f0f0f0;
}

/* Main Content */
.main {
  padding: 30px 15px;
}

.page-main {
  padding: 0 10px;
}

.steps-section {
  margin-bottom: 50px;
}

.section-title {
  color: #0e227c;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

/* Step Cards */
.step-card {
  background-color: white;
  border-radius: 0 4px 4px 0;
  margin-bottom: 20px;
  display: flex;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-card-large {
  min-height: 140px;
}

.step-number {
  background-color: #2139a3;
  width: 80px;
  min-height: 120px;
  border-radius: 4px 0 0 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
}

.step-number-large {
  min-height: 140px;
}

.step-label {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.step-num {
  font-size: 24px;
  font-weight: 700;
}

.step-content {
  padding: 20px;
  flex: 1;
}

.step-title {
  color: #2139a3;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-description {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.step-btn {
  margin: 0 auto 30px;
  display: block;
}

.step-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
}

/* Tablet Styles (768px+) */
@media (min-width: 768px) {
  .hero {
    padding: 50px 30px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .main {
    padding: 50px 30px;
  }

  .page-main {
    padding: 0 30px;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .step-card {
    max-width: 800px;
    margin: 0 auto 30px;
  }

  .step-number {
    width: 100px;
    min-height: 144px;
  }

  .step-number-large {
    min-height: 168px;
  }

  .step-label {
    font-size: 16px;
  }

  .step-num {
    font-size: 32px;
    line-height: 1;
  }

  .step-title {
    font-size: 20px;
  }

  .step-description {
    font-size: 16px;
  }

  .step-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 40px;
  }

  .btn {
    font-size: 16px;
    padding: 15px 30px;
    min-width: 250px;
  }
}

/* Desktop Styles (1024px+) */
@media (min-width: 1024px) {
  .hero {
    padding: 80px 40px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 18px;
  }

  .main {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .page-main {
    padding: 0 50px;
  }

  .section-title {
    font-size: 40px;
  }

  .step-card {
    max-width: 900px;
  }

  .step-content {
    padding: 30px;
  }

  .step-title {
    font-size: 24px;
  }
}

/* Large Desktop Styles (1440px+) */
@media (min-width: 1440px) {
  .hero {
    padding: 100px;
  }

  .main {
    padding: 100px;
    max-width: 1440px;
  }
}

/* Accessibility and Interactive States */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States for Accessibility */
.btn:focus,
.nav-item:focus,
.footer-nav-item:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .nav,
  .hero-buttons,
  .step-btn,
  .step-buttons,
  .contact-btn {
    display: none;
  }

  .hero {
    background: white;
    color: black;
  }

  .hero-title,
  .section-title {
    color: black;
  }
}

/* ============================= */
/*  カタログ補助金とは   */
/* ============================= */
.catalog-subsidy-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 0;
}

.m__section-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}

.m__section-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--black-color);
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .m__section-title {
    font-size: 40px;
  }
}

.m__section-feature_list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}


@media screen and (min-width: 1080px) {
  .m__section-feature_list {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
}

@media screen and (min-width: 1200px) {
  .m__section-feature_list {
    max-width: 1200px;
    gap: 10px;
  }
}

.m__section-feature_item {
  width: 167px;
  height: 167px;  
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media screen and (min-width: 454px) {
  .m__section-feature_item {
    width: 200px;
    height: 200px;  
  }
}

@media screen and (min-width: 1080px) {
  .m__section-feature_item {
    width: 240px;
    height: 240px;
      margin-top: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .m__section-feature_item {
    width: 260px;
    height: 260px;
  }
}

.m__section-feature_inner-circle {
  width: 157px;
  height: 157px;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

@media screen and (min-width: 454px) {
  .m__section-feature_inner-circle {
    width: 190px;
    height: 190px;
  }
}

@media screen and (min-width: 1080px) {
  .m__section-feature_inner-circle {
    width: 220px;
    height: 220px;
    gap: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .m__section-feature_inner-circle {
    width: 240px;
    height: 240px;
  }
}

.m__section-feature_img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

@media screen and (min-width: 454px) {
  .m__section-feature_img {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1080px) {
  .m__section-feature_img {
    width: 100px;
    height: 100px;
  }
}



.m__section-feature_copy {
  font-size: 10px;
  text-align: center;
  font-weight: bold;
}

@media screen and (min-width: 454px) {
  .m__section-feature_copy {
    font-size: 12px;
  }
}

@media screen and (min-width: 1080px) {
  .m__section-feature_copy {
    font-size: 14px;
  }
}

@media screen and (min-width: 1200px) {
  .m__section-feature_copy {
    font-size: 16px;
  }
}

.catalog-subsidy-copy {
  font-size: 20px;
  text-align: center;
}

.catalog-subsidy-text {
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .catalog-subsidy-text {
    text-align: center;
  }
}

.catalog-subsidy-button {
  background: var(--primary-color);
  color: white;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.catalog-subsidy-content {
  padding: 20px 0;
}

.catalog-subsidy-sub-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: center;
}

.expense__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1080px) {
  .expense__content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}

.expense__content {
  background: var(--white-color);
  padding: 20px 10px;
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .expense__content {
    width: 500px;
    padding: 20px 10px;
  }
}

.expense__content-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
}

.expense__content-copy {
  margin-top: 10px;
}

.expense__accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 10px;
  border: 1px solid var(--primary-color);
  width: 100%;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 14px;
  margin-top: 20px;
  transition: background 0.3s;
}

.expense__accordion-header:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.expense__accordion-header-plus {
  transition: transform 0.3s;
}

.expense__accordion-header[aria-expanded="true"]
  .expense__accordion-header-plus {
  transform: rotate(45deg);
}

.expense__accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.expense__accordion-content.open {
  padding: 1rem;
  max-height: 1000px; /* コンテンツ量に応じて調整 */
}

.expense__accordion-content-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.expense__accordion-content-item {
  margin-bottom: 0.5rem;
}

.rules__content-title {
  font-size: 18px;
  font-weight: bold;
  color: var(--white-color);
  text-align: center;
  background: var(--primary-color);
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .rules__content-title {
    font-size: 20px;
    padding: 5px 0;
  }
}

.rules__content-text {
  margin-top: 10px;
}

.sub-rules__content {
  max-width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  background: var(--white-color);
  padding: 10px;
}

.sub-rules__title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
}

.sub-rules__text,
.sub-rules__copy {
  font-size: 14px;
  margin-top: 5px;
}

.rules__content-item-sub-title {
  font-weight: bold;
  color: var(--primary-color);
  margin-top: 10px;
}

.rules__content-copy {
  font-size: 14px;
  margin-top: 10px;
}

.rules__content-img-wrapper {
  margin-top: 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/*  case-studies   */
/* ============================= */
/* Reset and Base Styles */

/* Mobile-first Main Content Styles */
.main-content {
  width: 100%;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro-section {
  margin-bottom: 32px;
}

.intro-text {
  font-weight: 500;
  color: black;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}

/* Mobile-first Case Studies Styles */
.case-studies {
  width: 100%;
  margin-bottom: 32px;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 100%;
}

.case-study-card {
  width: 100%;
  background-color: transparent;
}

.card-image {
  position: relative;
  margin-bottom: 12px;
}

.card-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 8px;
}

.card-date {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

.card-title {
  font-size: 16px;
  font-weight: 700;
  color: black;
  line-height: 1.5;
}

.card-category {
  font-size: 14px;
  font-weight: 400;
  color: #2139a3;
  line-height: 1.5;
}

/* Mobile-first Pagination Styles */
.pagination {
  margin-top: 32px;
}

.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-link {
  color: #2139a3;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
  padding: 8px 12px;
  border-radius: 4px;
}

.page-link:hover {
  opacity: 0.8;
  background-color: rgba(33, 57, 163, 0.1);
}

.page-link.active {
  width: 32px;
  height: 32px;
  background-color: #2139a3;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px;
}

.page-next {
  display: block;
  width: 32px;
  height: 32px;
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.arrow-right {
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid #2139a3;
  border-bottom: 2px solid #2139a3;
  transform: rotate(-45deg);
}

.case-studies {
  padding: 0 20px;
  max-width: 1200px;
}

/* Tablet Styles - 768px and up */
@media (min-width: 768px) {
  .main-content {
    padding: 48px 32px;
  }

  .intro-section {
    margin-bottom: 48px;
  }

  .intro-text {
    font-size: 20px;
  }

  .case-studies {
    margin-bottom: 48px;
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
  }

  .card-date {
    font-size: 13px;
  }

  .card-title {
    font-size: 18px;
  }

  .card-category {
    font-size: 15px;
  }

  .pagination {
    margin-top: 48px;
  }

  .pagination-container {
    gap: 24px;
  }

  .page-link {
    font-size: 15px;
  }
}

/* Desktop Styles - 1024px and up */
@media (min-width: 1024px) {
  .header-container {
    padding: 8px 40px;
  }

  .logo h1 {
    font-size: 24px;
  }

  .header-right {
    gap: 32px;
  }

  .phone {
    font-size: 24px;
    line-height: 36px;
  }

  .contact-btn {
    font-size: 20px;
  }

  .navigation {
    padding: 0 40px;
  }

  .nav-container {
    gap: 0;
  }

  .nav-link {
    font-size: 16px;
    padding: 4px 8px;
  }

  .nav-separator {
    font-size: 16px;
    padding: 0 8px;
  }

  .main-content {
    padding: 64px 40px;
  }

  .intro-section {
    margin-bottom: 64px;
  }

  .intro-text {
    font-size: 24px;
    line-height: 43.2px;
  }

  .case-studies {
    margin-bottom: 64px;
  }

  .case-studies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
  }

  .case-study-card {
    max-width: 379px;
  }

  .card-content {
    gap: 4px;
    padding: 0;
  }

  .card-date {
    font-size: 14px;
    color: black;
    line-height: 21px;
  }

  .card-title {
    font-size: 20px;
    line-height: 30px;
  }

  .card-category {
    font-size: 16px;
    color: black;
    line-height: 24px;
  }

  .pagination {
    margin-top: 64px;
  }

  .pagination-container {
    gap: 40px;
  }

  .page-link {
    font-size: 16px;
    padding: 0;
  }

  .page-link:hover {
    background-color: transparent;
  }

  .page-link.active {
    width: 30px;
    height: 30px;
    border-radius: 0;
  }

  .page-next {
    width: 8px;
    height: 8px;
  }

  .arrow-right {
    width: 8px;
    height: 8px;
  }
}

/* ============================= */
/*  case-studies-indetail   */
/* ============================= */
/* Reset and Base Styles */
/* Main Content */
.main-content {
  padding: 40px 0;
}

.title-section {
  text-align: left;
  margin-bottom: 40px;
}

.main-title {
  font-size: 30px;
  font-weight: bold;
  color: black;
  margin-bottom: 10px;
}

@media screen and (min-width: 1080px) {
  .main-title {
    font-size: 40px;
  }
}

/* Content Layout */
/* PC（デフォルト） */
.content-layout {
  display: grid;
  grid-template-columns: 3fr 1fr; /* メイン:サイド = 3:1 */
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
}

/* メイン・サイドの調整 */
.main-area {
  display: grid;
}

.main-title {
  margin-top: 20px;
}

.sidebar {
  display: grid;
}

/* SP画面用（例：幅1000px以下） */
@media screen and (max-width: 1000px) {
  .content-layout {
    grid-template-columns: 1fr; /* 1カラムに */
    gap: 20px; /* 隙間を少し狭く */
  }

  .sidebar {
    order: 2; /* メインの下に表示 */
  }

  .main-area {
    order: 1; /* メインは上 */
  }
}

.useful-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 6 / 4;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .useful-image {
    max-width: 800px;
  }
}

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

.case-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 6 / 4;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .case-image {
    max-width: 800px;
  }
}

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

.main-area h2 {
  padding: 20px 0 5px;
  font-size: 22px;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 10px;
}

@media screen and (min-width: 1080px) {
  .main-area h2 {
    font-size: 24px;
    padding-top: 40px;
  }
}

.main-area h3 {
  padding: 10px 0 5px;
  font-size: 20px;
  color: var(--primary-color);
}

.main-area h4 {
  padding: 5px 0 5px;
  font-size: 18px;
}

.main-area table {
  font-size: 14px;
}

@media screen and (min-width: 1080px) {
  .main-area table {
    font-size: 16px;
  }
}

/* 太字 */
strong,
b {
  font-weight: bold;
}

/* Hero Image */
.hero-image {
  margin-bottom: 40px;
  text-align: center;
}

.hero-image img {
  width: 600px;
  height: 337px;
  object-fit: cover;
  border-radius: 8px;
}

/* Table of Contents */
.table-of-contents {
  background-color: white;
  padding: 20px 40px;
  border-radius: 4px;
  margin-bottom: 40px;
  width: 500px;
}

.toc-title {
  font-size: 20px;
  font-weight: 500;
  color: black;
  margin-bottom: 20px;
}

.toc-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.toc-number {
  color: #2139a3;
  font-weight: 500;
  font-size: 16px;
  margin-right: 15px;
  width: 25px;
}

.toc-text {
  color: black;
  font-size: 16px;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  margin-bottom: 50px;
}

.content__section-title {
  font-size: 24px;
  font-weight: bold;
  color: #2139a3;
  margin-bottom: 20px;
}

.section-divider {
  width: 600px;
  height: 2px;
  background-color: #d9d9d9;
  margin-bottom: 25px;
}

.section-list {
  list-style: none;
  padding-left: 20px;
}

.section-list li {
  font-size: 16px;
  color: black;
  margin-bottom: 15px;
  position: relative;
}

.section-list li::before {
  content: "・";
  position: absolute;
  left: -20px;
}

.product-info {
  padding-left: 20px;
}

.product-name {
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 25px;
}

.efficiency-title {
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 15px;
}

.efficiency-list {
  list-style: none;
  padding-left: 30px;
}

.efficiency-list li {
  font-size: 14px;
  color: black;
  margin-bottom: 12px;
  position: relative;
}

.efficiency-list li::before {
  content: "・";
  position: absolute;
  left: -20px;
}

.effect-list {
  list-style: none;
  padding-left: 20px;
}

.effect-list li {
  font-size: 16px;
  font-weight: 500;
  color: black;
  margin-bottom: 25px;
  position: relative;
}

.customer-voice {
  font-size: 16px;
  font-weight: 500;
  color: black;
  line-height: 1.8;
  padding-left: 20px;
  width: 560px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.btn {
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 300px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background-color: #2139a3;
  color: white;
}

.btn-primary:hover {
  background-color: #1a2d82;
}

.btn-secondary {
  background-color: white;
  color: #2139a3;
  border: 1px solid #2139a3;
}

.btn-secondary:hover {
  background-color: #f0f4ff;
}

/* Sidebar */
.recommended-section {
  overflow: hidden;
}

.recommended-header {
  background-color: #2139a3;
  padding: 5px 0;
  text-align: center;
}

.recommended-header h3 {
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.recommended-article {
  text-align: left;
  width: 100%;
  margin-top: 20px;
}

.recommended-article:last-child {
  border-bottom: none;
}

.article-image {
  width: 100%;
  aspect-ratio: 6 / 4;
  object-fit: cover;
  margin-bottom: 15px;
}

.article-title {
  font-size: 16px;
  font-weight: bold;
  color: black;
  margin-bottom: 8px;
}

.article-tag {
  font-size: 14px;
  color: black;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .content-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    margin: 0 auto;
  }

  .title-section,
  .content-section,
  .table-of-contents {
    margin-left: 0;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .table-of-contents {
    width: 100%;
    max-width: 500px;
  }

  .section-divider {
    width: 100%;
    max-width: 600px;
  }

  .customer-voice {
    width: 100%;
    max-width: 560px;
  }
}

@media (max-width: 768px) {
  body {
    min-width: auto;
  }

  .header-content {
    flex-direction: column;
    gap: 15px;
  }

  .nav-content {
    flex-wrap: wrap;
    gap: 10px;
  }

  .main-title,
  .sub-title {
    font-size: 24px;
  }

  .action-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/* ============================= */
/* For manufacturers   */
/* ============================= */
.main-content {
  line-height: 1.8;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-section {
  padding: 50px 0;
}

.section-subtitle {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 1080px) {
  .section-subtitle {
    font-size: 32px;
  }
}

@media screen and (min-width: 1080px) {
  .benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.benefit-card {
  background: var(--white-color);
  padding: 120px 20px 20px;
  border-radius: 4px;
  position: relative;
  margin-top: 100px;
  width: 270px;
  min-height: 300px;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .benefit-card {
    width: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .benefit-card {
    width: 270px;
  }
}

.benefit-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -30%);
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-icon img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.benefit-title {
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 20px;
  margin-bottom: 10px;
}

.process-section {
  padding: 50px 0;
}

.flow-section {
  padding: 50px 0;
}

@media screen and (min-width: 1080px) {
  .flow-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.flow-grid-step {
  margin-top: 20px;
}

.cta-btn {
  background: var(--primary-color);
  color: var(--white-color);
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1080px) {
  .cta-btn {
    margin-top: 80px;
  }
}

.innovation-section {
  padding: 50px 0;
}

@media screen and (min-width: 1080px) {
  .innovation-description {
    text-align: center;
  }
}

.innovation-description-text:not(:first-child) {
  margin-top: 10px;
}

.innovation-benefits {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 1080px) {
  .innovation-benefits {
    flex-direction: row;
    gap: 40px;
  }
}

.innovation-card {
  background: var(--white-color);
  padding: 20px 10px;
  border: 1px solid var(--primary-color);
  width: 100%;
  max-width: 500px;
}

.innovation-card-title {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.innovation-list li {
  margin-top: 10px;
  font-size: 14px;
}

.innovation-support {
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .innovation-support {
    text-align: center;
  }
}

.faq-section {
  padding: 50px 0;
}

.faq-list {
  margin-top: 20px;
}

.faq-item {
  margin-top: 10px;
  background: var(--white-color);
  padding: 20px 10px;
  width: 100%;
}

.faq-question {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  width: 100%;
}

.faq-q {
  font-size: 20px;
  color: var(--primary-color);
}

.faq-text {
  text-align: left;
  font-weight: 600;
}

.faq-arrow {
  font-size: 20px;
  color: var(--primary-color);
  transition: all 0.3s;
  display: inline-block;
  margin-left: auto;
}

.faq-item.active .faq-arrow {
  transform: rotate(45deg);
  transition: all 0.3s;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px;
  max-height: 200px;
}

/* ============================= */
/*  Distributor   */
/* ============================= */
@media screen and (min-width: 1080px) {
  .section-service-description {
    font-size: 20px;
    text-align: center;
  }
}

@media screen and (min-width: 1080px) {
  .benefits-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }
}

.benefit-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}

@media screen and (min-width: 1080px) {
  .benefit-list {
    width: calc((100% - 40px) / 2);
  }
}

.benefit-list-icon {
  width: 80px;
  height: 80px;
  border-radius: 50px;
  background: var(--primary-color);
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 1080px) {
  .benefit-list-icon {
    width: 100px;
    height: 100px;
  }
}

.benefit-list-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

@media screen and (min-width: 1080px) {
  .benefit-list-icon img {
    width: 60px;
    height: 60px;
  }
}

.benefit-list-title {
  font-weight: 600;
  font-size: 18px;
}

@media screen and (min-width: 1080px) {
  .benefit-list-title {
    font-size: 24px;
  }
}

.section-sub-title {
  margin-top: 40px;
  font-size: 20px;
  color: var(--primary-color);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (min-width: 1080px) {
  .section-sub-title {
    font-size: 28px;
  }
}

@media screen and (min-width: 768px) {
  .flow-sp-style {
    display: none;
  }
}

.flow-pc-style {
  display: none;
}

@media screen and (min-width: 768px) {
  .flow-pc-style {
    display: flex;
  }
}

/* ============================= */
/*  News   */
/* ============================= */

.top__news-contents {
  width: 90%;
  background: var(--white-color);
  padding: 20px;
  margin-left: auto;
  margin-right: auto;
}

.top__news-title {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (min-width: 1080px) {
  .top__news-title {
    font-size: 36px;
  }
}

.top__news-tag {
  color: var(--primary-color02);
  border: 1px solid var(--primary-color02);
  border-radius: 2px;
  padding: 2px 4px;
  margin-left: 10px;
}

.top__news-text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 1080px) {
  .top__news-text {
    font-size: 18px;
    margin-top: 0;
  }
}

.top__news-item {
  border-bottom: 1px solid #ccc;
  padding: 15px 0;
}

@media screen and (min-width: 1080px) {
  .top__news-link-disabled,
  .top__news-link {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    align-items: center;
  }
}

.top__news-btn-wrapper {
  width: 300px;
  height: 50px;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primary-color);
  color: var(--white-color);
  margin-left: auto;
  margin-right: auto;
}

/* ============================= */
/*  js   */
/* ============================= */

.js_body.is-hidden {
  overflow: hidden;
}

.nav-contact-btn {
  display: none;
}

.site-header__bottom.nav-opened .nav-contact-btn {
  display: block;
  margin: 1.2rem 0 0 0;
  text-align: center;
  width: 100%;
}

.site-header__hamburger-bar {
  transition: top 0.24s, transform 0.24s, opacity 0.24s;
}

.site-header__hamburger.is-active .site-header__hamburger-bar.bar01 {
  top: 50%;
  transform: translateY(-50%) rotate(135deg);
  background: var(--white-color);
}
.site-header__hamburger.is-active .site-header__hamburger-bar.bar02 {
  opacity: 0;
}
.site-header__hamburger.is-active .site-header__hamburger-bar.bar03 {
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  background: var(--white-color);
  width: 50px;
}

@media (max-width: 1080px) {
  .site-header__hamburger {
    z-index: 3000;
  }
}

.js_nav {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}

@media screen and (min-width: 1080px) {
  .js_nav {
    opacity: 1;
    pointer-events: auto;
  }
}

.js_nav.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* ============================= */
/*  News Single Page  */
/* ============================= */

/* News Single Article */
/* .news-single {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .news-single {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1080px) {
  .news-single {
    padding: 80px 0;
  }
} */

/* News Single Inner */
.news-single__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* News Single Header */
.news-single__header {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .news-single__header {
    margin-bottom: 60px;
  }
}

/* News Single Meta */
.news-single__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .news-single__meta {
    gap: 20px;
    margin-bottom: 30px;
  }
}

/* News Single Date */
.news-single__date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news-single__date {
    font-size: 16px;
  }
}

/* News Single Categories */
.news-single__categories {
  display: flex;
  gap: 8px;
}

.news-single__category {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news-single__category {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* News Single Title */
.news-single__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .news-single__title {
    font-size: 28px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1080px) {
  .news-single__title {
    font-size: 32px;
  }
}

/* News Single Thumbnail */
.news-single__thumbnail {
  margin-bottom: 40px;
}

.news-single__thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .news-single__thumbnail {
    margin-bottom: 60px;
  }
}

/* News Single Content */
.news-single__content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 60px;
}

.news-single__content h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary-color);
}

.news-single__content h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 30px 0 15px;
}

.news-single__content p {
  margin-bottom: 20px;
}

.news-single__content ul,
.news-single__content ol {
  margin: 20px 0;
  padding-left: 20px;
}

.news-single__content li {
  margin-bottom: 8px;
}

.news-single__content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
}

@media screen and (min-width: 768px) {
  .news-single__content {
    font-size: 18px;
    margin-bottom: 80px;
  }

  .news-single__content h2 {
    font-size: 24px;
    margin: 60px 0 30px;
  }

  .news-single__content h3 {
    font-size: 20px;
    margin: 40px 0 20px;
  }
}

/* News Single File */
.news-single__file {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 40px;
  background: #f9f9f9;
}

@media screen and (min-width: 768px) {
  .news-single__file {
    padding: 30px;
    margin-bottom: 60px;
  }
}

.news-single__file-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}

@media screen and (min-width: 768px) {
  .news-single__file-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.news-single__file-item {
  background: var(--white-color);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.news-single__file-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.news-single__file-link {
  display: flex;
  align-items: center;
  padding: 15px;
  text-decoration: none;
  color: #333;
}

@media screen and (min-width: 768px) {
  .news-single__file-link {
    padding: 20px;
  }
}

.news-single__file-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

@media screen and (min-width: 768px) {
  .news-single__file-icon {
    width: 60px;
    height: 60px;
    margin-right: 20px;
  }
}

.news-single__file-icon-text {
  font-size: 10px;
  font-weight: bold;
  color: var(--white-color);
  line-height: 1;
}

@media screen and (min-width: 768px) {
  .news-single__file-icon-text {
    font-size: 12px;
  }
}

.news-single__file-info {
  flex: 1;
  min-width: 0;
}

.news-single__file-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin-bottom: 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .news-single__file-name {
    font-size: 16px;
  }
}

.news-single__file-size {
  display: block;
  font-size: 12px;
  color: #666;
}

@media screen and (min-width: 768px) {
  .news-single__file-size {
    font-size: 14px;
  }
}

/* News Single Footer */
.news-single__footer {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .news-single__footer {
    padding-top: 40px;
    margin-bottom: 80px;
  }
}

/* News Single Tags */
.news-single__tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.news-single__tags-label {
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

.news-single__tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-single__tags-item {
  margin: 0;
}

.news-single__tags-link {
  display: inline-block;
  background: #f5f5f5;
  color: #666;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.news-single__tags-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

@media screen and (min-width: 768px) {
  .news-single__tags-label {
    font-size: 16px;
  }

  .news-single__tags-link {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* News Single Navigation */
.news-single__nav {
  background: #f8f9fa;
  padding: 40px 0;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .news-single__nav {
    padding: 60px 0;
  }
}

.news-single__nav-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (min-width: 768px) {
  .news-single__nav-inner {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}

.news-single__nav-item {
  flex: 1;
}

.news-single__nav-item--prev {
  order: 1;
}

.news-single__nav-item--next {
  order: 2;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .news-single__nav-item--next {
    text-align: left;
  }
}

.news-single__nav-link {
  display: block;
  padding: 20px;
  background: var(--white-color);
  border: 1px solid #ddd;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
}

.news-single__nav-link:hover {
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-single__nav-label {
  display: block;
  font-size: 12px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 8px;
}

.news-single__nav-title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .news-single__nav-label {
    font-size: 14px;
  }

  .news-single__nav-title {
    font-size: 16px;
  }
}

/* News Single Back */
.news-single__back {
  text-align: center;
  padding-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .news-single__back {
    padding-bottom: 60px;
  }
}

.news-single__back-inner {
  display: inline-block;
}

.news-single__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 15px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  min-width: 200px;
}

.news-single__back-link:hover {
  background: #1a5490;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 768px) {
  .news-single__back-link {
    font-size: 16px;
    padding: 18px 40px;
    min-width: 250px;
  }
}

/* ============================= */
/*  News Archive Page  */
/* ============================= */

/* News Archive */
/* .news-archive {
  padding: 40px 0;
}

@media screen and (min-width: 768px) {
  .news-archive {
    padding: 60px 0;
  }
}

@media screen and (min-width: 1080px) {
  .news-archive {
    padding: 80px 0;
  }
} */

/* News Archive Inner */
.news-archive__inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* News Archive Header */
.news-archive__header {
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .news-archive__header {
    margin-bottom: 60px;
  }
}

/* News Archive Title */
.news-archive__title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .news-archive__title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .news-archive__title {
    font-size: 36px;
  }
}

/* News Archive Description */
.news-archive__description {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .news-archive__description {
    font-size: 16px;
  }
}

/* News Archive List */
.news-archive__list {
  margin-bottom: 60px;
}

@media screen and (min-width: 768px) {
  .news-archive__list {
    margin-bottom: 80px;
  }
}

/* News Archive Item */
.news-archive__item {
  border-bottom: 1px solid #ccc;
}

.news-archive__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}


/* News Archive Item Link */
.news-archive__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.news-archive__item-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 768px) {
  .news-archive__item-link {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }
}

@media screen and (min-width: 1080px) {
  .news-archive__item-link {
    gap: 40px;
  }
}

/* News Archive Item Thumbnail */
.news-archive__item-thumbnail {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 20px;
}

.news-archive__item-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 768px) {
  .news-archive__item-thumbnail {
    width: 300px;
    height: 180px;
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1080px) {
  .news-archive__item-thumbnail {
    width: 350px;
    height: 200px;
  }
}

/* News Archive Item No Image */
.news-archive__item-noimage {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-archive__item-noimage-text {
  font-size: 14px;
  color: #999;
  font-weight: 500;
}

/* News Archive Item Content */
.news-archive__item-content {
  flex: 1;
  padding: 20px;
}

/* News Archive Item Meta */
.news-archive__item-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

@media screen and (min-width: 768px) {
  .news-archive__item-meta {
    gap: 20px;
    margin-bottom: 20px;
  }
}

/* News Archive Item Date */
.news-archive__item-date {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news-archive__item-date {
    font-size: 16px;
  }
}

/* News Archive Item Categories */
.news-archive__item-categories {
  display: flex;
  gap: 8px;
}

.news-archive__item-category {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .news-archive__item-category {
    font-size: 14px;
    padding: 6px 12px;
  }
}

/* News Archive Item Title */
.news-archive__item-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
  margin-bottom: 15px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .news-archive__item-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1080px) {
  .news-archive__item-title {
    font-size: 22px;
  }
}

/* News Archive Item Excerpt */
.news-archive__item-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media screen and (min-width: 768px) {
  .news-archive__item-excerpt {
    font-size: 16px;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}

/* News Archive Pagination */
.news-archive__pagination {
  text-align: center;
}

.news-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-decoration: none;
  color: #666;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.news-archive__pagination .page-numbers:hover,
.news-archive__pagination .page-numbers.current {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.news-archive__pagination .page-numbers.prev,
.news-archive__pagination .page-numbers.next {
  width: auto;
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .news-archive__pagination .page-numbers {
    width: 45px;
    height: 45px;
    margin: 0 8px;
    font-size: 16px;
  }

  .news-archive__pagination .page-numbers.prev,
  .news-archive__pagination .page-numbers.next {
    padding: 0 20px;
  }
}

/* News Archive Empty */
.news-archive__empty {
  text-align: center;
  padding: 60px 0;
}

.news-archive__empty-text {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .news-archive__empty {
    padding: 80px 0;
  }

  .news-archive__empty-text {
    font-size: 18px;
  }
}

/* END */
