@charset "UTF-8";

/* ==========================================================================
   CAT Site - 障がい者求人サイト
   ========================================================================== */

/* 固定ヘッダーオフセット */
html {
  scroll-padding-top: 80px;
}

@media (max-width: 1024px) {
  html {
    scroll-padding-top: 64px;
  }
}

/* ===================== CAT Header ===================== */
.cat-header {
  background-color: #fff;
  height: 80px;
  position: fixed;
  width: 100%;
  z-index: 9999;
  -webkit-box-shadow: 0 0 8px rgba(51, 51, 51, .15);
  box-shadow: 0 0 8px rgba(51, 51, 51, .15);
}

@media (max-width: 1024px) {
  .cat-header {
    height: 64px;
  }
}

.cat-header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  padding: 0 0 0 32px;
}

.cat-header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
}

.cat-header-left a {
  display: block;
}

.cat-header-logo {
  height: 56px;
  width: auto;
}

@media (max-width: 1024px) {
  .cat-header-inner {
    padding: 0 0 0 16px;
  }

  .cat-header-left {
    gap: 8px;
  }

  .cat-header-logo {
    height: 33px;
  }
}

.cat-header-subtitle {
  font-size: 1.6rem;
  font-weight: 400;
  color: #222;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cat-header-subtitle {
    font-size: 1.4rem;
  }
}

.cat-header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/* ハンバーガーボタン */
.cat-hamburger-button {
  background-color: #e62d2c;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.cat-hamburger-button:hover {
  opacity: .7;
}

@media (max-width: 1024px) {
  .cat-hamburger-button {
    width: 64px;
    height: 64px;
    gap: 10px;
  }

  .cat-hamburger-button.active span:nth-child(1) {
    -webkit-transform: translateY(14px) rotate(45deg);
    transform: translateY(14px) rotate(45deg);
  }

  .cat-hamburger-button.active span:nth-child(3) {
    -webkit-transform: translateY(-14px) rotate(-45deg);
    transform: translateY(-14px) rotate(-45deg);
  }
}

.cat-hamburger-button span {
  display: block;
  width: 48px;
  height: 4px;
  /* border-radius: 200px; */
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

@media (max-width: 1024px) {
  .cat-hamburger-button span {
    width: 32px;
    height: 4px;
  }
}

.cat-hamburger-button.active span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(45deg);
  transform: translateY(10px) rotate(45deg);
}

.cat-hamburger-button.active span:nth-child(2) {
  opacity: 0;
}

.cat-hamburger-button.active span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(-45deg);
  transform: translateY(-10px) rotate(-45deg);
}

/* ドロワーメニュー */
.cat-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .3s ease, visibility .3s ease;
  transition: opacity .3s ease, visibility .3s ease;
}

.cat-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cat-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  height: 100vh;
  background-color: #fff;
  z-index: 10001;
  -webkit-transition: right .3s ease;
  transition: right .3s ease;
  overflow-y: auto;
}

.cat-drawer.open {
  right: 0;
}

@media (max-width: 1024px) {
  .cat-drawer {
    width: 100%;
  }
}

.cat-drawer-inner {
  padding: 30px 20px 60px;
}

.cat-drawer-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .cat-drawer-close {
    width: 64px;
    height: 64px;
  }
}

.cat-drawer-close svg {
  width: 48px;
  height: 48px;
}

.cat-drawer-logo {
  text-align: center;
  padding: 60px 60px 36px;
}

.cat-drawer-logo img {
  width: 235px;
  height: auto;
}

.cat-drawer-logo p {
  font-size: 1.6rem;
  color: #222;
  margin-top: 8px;
  text-align: center;
}

.cat-drawer-nav ul {
  /* padding: 0 20px; */
}

.cat-drawer-nav li {
  border-bottom: 1px solid #ddd;
}

.cat-drawer-nav li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 0;
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

.cat-drawer-nav li a:hover {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
  opacity: 1;
}

.cat-drawer-nav li a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3107 11.9998L9.52974 17.7808L8.46924 16.7203L13.1897 11.9998L8.46924 7.28075L9.52974 6.21875L15.3107 11.9998Z' fill='%23E62D2C'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* ===================== CAT Main ===================== */
.cat-page {
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .cat-page {
    margin-top: 64px;
  }
}

.cat-page .inner {
  max-width: calc(1280px + 5% * 2);
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 1024px) {
  .cat-page .inner {
    max-width: 100%;
  }
}

/* ===================== CAT 共通パーツ ===================== */
.cat-h2-ttl {
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-h2-ttl {
    font-size: 2.8rem;
  }
}

.cat-h2-subtitle {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #969696;
  line-height: 1.5;
  /* margin-bottom: 8px; */
}

@media (max-width: 1024px) {
  .cat-h2-subtitle {
    font-size: 1.6rem;
  }
}

.cat-h3-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-h3-ttl {
    font-size: 2rem;
  }
}

/* ボタン */
.cat-btn {
  display: block;
  max-width: 400px;
  margin: 40px auto 0;
  padding: 17px;
  border-radius: 50px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.44;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 1024px) {
  .cat-btn {
    font-size: 1.4rem;
    padding: 14px;
    max-width: 300px;
  }
}

.cat-btn-primary {
  background-color: #fe9931;
  color: #fff;
  border: 2px solid #fe9931;
}

.cat-btn-primary:hover {
  background-color: #fff;
  color: #fe9931;
  opacity: 1;
}

.cat-btn-outline {
  background-color: #fff;
  color: #fe9931;
  border: 2px solid #fe9931;
}

.cat-btn-outline:hover {
  background-color: #fe9931;
  color: #fff;
  opacity: 1;
}

.cat-btn-white {
  background-color: #fff;
  color: #222;
  border: 1px solid #ddd;
  -webkit-transition: background-color .3s, color .3s, border-color .3s;
  transition: background-color .3s, color .3s, border-color .3s;
}

.cat-btn-white:hover {
  background-color: #222;
  color: #fff;
  border-color: #222;
  opacity: 1;
}

/* ===================== 1. Hero (FV) ===================== */
/* FVだけ767pxでPC/SP切替（グローバルの1024px上書き） */
@media (min-width: 768px) {
  .cat-fv .show--pc {
    display: block;
  }

  .cat-fv .show--sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .cat-fv .show--pc {
    display: none;
  }

  .cat-fv .show--sp {
    display: block;
  }
}

.cat-fv {
  position: relative;
  height: min(calc(735 / 1920 * 100vw), 735px);
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}

@media (max-width: 767px) {
  .cat-fv {
    height: calc(720 / 400 * 100vw);
  }
}

.cat-fv-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  max-width: 1536px;
  height: 100%;
}

@media (max-width: 767px) {
  .cat-fv-bg {
    width: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
  }
}

.cat-fv-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.cat-fv-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 767px) {
  .cat-fv-bg img {
    -o-object-position: center bottom;
    object-position: center bottom;
  }
}

.cat-fv-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 767px) {
  .cat-fv-bg::after {
    width: 100%;
    height: 38%;
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(68%, rgba(255, 255, 255, .39)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to bottom, #fff 49%, rgba(255, 255, 255, .39) 68%, rgba(255, 255, 255, 0) 84%);
  }
}

.cat-fv-content {
  position: relative;
  z-index: 2;
  max-width: 1720px;
  margin: 0 auto;
  padding: min(calc(132 / 1920 * 100vw), 132px) 20px 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  .cat-fv-content {
    padding: calc(22 / 400 * 100vw) 0 0;
  }
}

.cat-fv-ttl-wrap {
  max-width: min(calc(900 / 1920 * 100vw), 900px);
}

@media (max-width: 767px) {
  .cat-fv-ttl-wrap {
    max-width: 100%;
  }
}

.cat-fv-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .cat-fv-ttl {
    font-size: calc(14 / 400 * 100vw);
  }
}

.cat-fv-ttl-line {
  display: block;
  margin-bottom: -2px;
}

@media (max-width: 767px) {
  .cat-fv-ttl-line {
    margin-bottom: calc(4 / 400 * 100vw);
  }

  .cat-fv-ttl-line:last-child {
    margin-bottom: 0;
  }
}

.cat-fv-ttl-bg {
  display: inline;
  background-color: #e62d2c;
  padding: 4px 16px;
  font-size: min(calc(48 / 1920 * 100vw), 4.8rem);
  font-weight: 700;
  line-height: 1.8;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .cat-fv-ttl-bg {
    font-size: calc(28 / 400 * 100vw);
    padding: calc(4 / 400 * 100vw) calc(8 / 400 * 100vw) calc(4 / 400 * 100vw) calc(16 / 400 * 100vw);
  }
}

.cat-fv-note {
  font-size: min(calc(20 / 1920 * 100vw), 2rem);
  color: #222;
  margin-top: 0px;
  line-height: normal;
}

@media (max-width: 767px) {
  .cat-fv-note {
    font-size: calc(14 / 400 * 100vw);
    padding-left: calc(14 / 400 * 100vw);
  }
}

.cat-fv-bottom {
  margin-top: min(calc(40 / 1920 * 100vw), 40px);
}

@media (max-width: 767px) {
  .cat-fv-bottom {
    position: absolute;
    bottom: calc(58 / 400 * 100vw);
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.cat-fv-bottom-group {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.cat-fv-sub {
  font-size: min(calc(32 / 1920 * 100vw), 3.2rem);
  font-weight: 700;
  color: #222;
  line-height: normal;
  text-align: center;
}

@media (max-width: 767px) {
  .cat-fv-sub {
    font-size: calc(22 / 400 * 100vw);
    text-align: center;
  }
}

.cat-fv-sub-img {
  display: block;
  height: auto;
  width: 328px;
}

@media (max-width: 767px) {
  .cat-fv-sub-img {
    width: calc(328 / 400 * 100vw);
  }
}

.cat-fv-hexicons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

@media (max-width: 767px) {
  .cat-fv-hexicons {
    gap: calc(8 / 400 * 100vw);
    margin-top: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cat-hex-icon {
  position: relative;
  width: min(calc(156 / 1920 * 100vw), 156px);
  height: min(calc(180 / 1920 * 100vw), 180px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .cat-hex-icon {
    width: calc(104 / 400 * 100vw);
    height: calc(120 / 400 * 100vw);
  }
}

.cat-hex-svg {
  position: absolute;
}

.cat-hex-outer {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cat-hex-inner {
  width: 93%;
  height: 92%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cat-hex-label {
  position: relative;
  z-index: 2;
  font-size: min(calc(36 / 1920 * 100vw), 3.6rem);
  font-weight: 700;
  color: #fff;
}

@media (max-width: 767px) {
  .cat-hex-label {
    font-size: calc(24 / 400 * 100vw);
  }
}

/* ===================== 2. ピックアップニュース ===================== */
.cat-pickup {
  position: relative;
  z-index: 3;
  margin-top: max(calc(-60 / 1920 * 100vw), -60px);
  padding-left: 2%;
  padding-right: 2%;
  padding-bottom: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .cat-pickup {
    margin-top: -32px;
    padding: 0 20px 80px;
  }
}

.cat-pickup-inner {
  background-color: #fef4f4;
  border-radius: 4px;
  padding: 32px 2.125%;
  max-width: 1280px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

@media (max-width: 1024px) {
  .cat-pickup-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
}

.cat-pickup-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1.5;
}

.cat-pickup-subtitle {
  font-size: 1.6rem;
  font-weight: 700;
  color: #e62d2c;
}

.cat-pickup-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  text-align: center;
}

@media (max-width: 1024px) {
  .cat-pickup-title {
    font-size: 2rem;
  }
}

.cat-pickup-divider {
  width: 1px;
  height: 124px;
  background-color: #ccc;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-pickup-divider {
    width: 100%;
    height: 1px;
  }
}

.cat-pickup-list {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

@media (max-width: 1024px) {
  .cat-pickup-list {
    width: 100%;
  }
}

.cat-pickup-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  color: #222;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

.cat-pickup-item-link:hover {
  color: #e62d2c;
  opacity: 1;
}

.cat-pickup-item-link:hover .cat-pickup-ttl {
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
}

.cat-pickup-icon {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-pickup-icon {
    width: 16px;
    height: 16px;
  }
}

.cat-pickup-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.8;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: text-decoration-color .2s;
  transition: text-decoration-color .2s;
  min-width: 0;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media (max-width: 1024px) {
  .cat-pickup-ttl {
    font-size: 1.6rem;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

/* ===================== 3. パートナー ===================== */
.cat-partner {
  padding-bottom: 120px;
}

@media (max-width: 1024px) {
  .cat-partner {
    padding: 0 0 80px;
  }
}

.cat-partner .inner {
  text-align: center;
}

.cat-partner-desc {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-partner-desc {
    font-size: 1.6rem;
    text-align: left;
  }
}

.cat-partner-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}

.cat-partner-item {
  /* width: calc((100% - 100px) / 6); */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 56px;
}

@media (max-width: 1024px) {
  .cat-partner-item {
    width: calc((100% - 32px) / 2);
    height: 56px;
  }
}

.cat-partner-item img {
  max-height: 100%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

/* ===================== 4. 課題 ===================== */
.cat-issue {
  position: relative;
}

.cat-issue-bg {
  background-color: #f9f9f9;
  padding: 120px 0 80px;
}

@media (max-width: 1024px) {
  .cat-issue-bg {
    padding: 80px 0 40px;
  }
}

.cat-issue-desc {
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-issue-desc {
    font-size: 1.6rem;
    margin-top: 24px;
    text-align: left;
  }
}

.cat-issue-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(40 / 1280 * 100vw), 40px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-issue-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.cat-issue-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  padding: 40px 3.125%;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cat-issue-card {
    gap: 16px;
    padding: 24px;
  }
}

.cat-issue-ttl {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  text-align: center;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-issue-ttl {
    font-size: 2.4rem;
  }
}

.cat-issue-img {
  overflow: hidden;
  border-radius: 8px;
}

.cat-issue-img img {
  width: 100%;
  /* height: 200px; */
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .cat-issue-img img {
    height: auto;
  }
}

.cat-issue-checks li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 2.2rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-issue-checks li {
    font-size: 2rem;
  }
}

.cat-issue-checks li svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.cat-issue-triangle {
  width: 100%;
  line-height: 0;
}

.cat-issue-triangle svg {
  width: 100%;
  height: auto;
}

/* ===================== 5. 強み概要 ===================== */
.cat-strengths-summary {
  padding: 80px 0 120px;
}

@media (max-width: 1024px) {
  .cat-strengths-summary {
    padding: 45px 0 80px;
  }
}

.cat-strengths-summary .inner {
  text-align: center;
}

.cat-strengths-summary-intro {
  margin-top: 40px;
}

.cat-strengths-summary-lead {
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  /* margin-top: 16px; */
}

@media (max-width: 1024px) {
  .cat-strengths-summary-lead {
    font-size: 2.4rem;
  }
}

.cat-strengths-summary-badges-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-block: 16px;
}

@media (max-width: 1024px) {
  .cat-strengths-summary-badges-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    margin-block: 8px 0px;
  }
}

.cat-strengths-summary-badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

@media (max-width: 1024px) {
  .cat-strengths-summary-badges {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
  }
}

.cat-badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 148px;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  background-color: #fe9931;
}

@media (max-width: 1024px) {
  .cat-badge {
    width: auto;
    padding: 5px 24px;
    font-size: 2.4rem;
  }
}

.cat-badge--kankyo {
  background-color: #46bba9;
}

.cat-badge--gyomu {
  background-color: #2f88ec;
}

.cat-strengths-summary-highlight {
  color: #ff4785;
}

.cat-strengths-summary-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-strengths-summary-cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
}

.cat-strengths-summary-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-strengths-summary-card img {
  width: 100%;
  height: auto;
}

.cat-strengths-summary-note {
  background-color: #f9f9f9;
  padding: 24px 40px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-strengths-summary-note {
    padding: 24px;
  }
}

.cat-strengths-summary-note p {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-strengths-summary-note p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* ===================== 6. 3つの強み詳細 ===================== */
.cat-feature {
  background-color: #f9f9f9;
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .cat-feature {
    padding: 80px 0;
  }
}

.cat-feature-desc {
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-feature-desc {
    font-size: 1.6rem;
    text-align: left;
    margin-top: 24px;
  }
}

.cat-feature-list{
  margin-top: 40px;
}
.cat-feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(calc(64 / 1280 * 100vw), 64px);
}

@media (max-width: 1024px) {
  .cat-feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
  }
}

.cat-feature-item--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media (max-width: 1024px) {
  .cat-feature-item--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cat-feature-item+.cat-feature-item{
  margin-top: min(calc(64 / 1280 * 100vw), 64px);
}

@media (max-width: 1024px) {
  .cat-feature-item+.cat-feature-item{
    margin-top: 40px;
  }
}

.cat-feature-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-feature-img {
  width: 43.75%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cat-feature-img {
    width: 100%;
  }
}

.cat-feature-img img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .cat-feature-img img {
    height: 270px;
  }
}

.cat-feature-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.cat-feature-number {
  font-size: 4.0rem;
  font-weight: 700;
  color: #e62d2c;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-feature-number {
    font-size: 3.6rem;
  }
}

.cat-feature-h3 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #e62d2c;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-feature-h3 {
    font-size: 2.4rem;
  }
}

.cat-feature-body {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-feature-body {
    font-size: 1.6rem;
  }
}

.cat-feature-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-feature-links {
    margin-top: 24px;
  }
}

.cat-feature-link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 1.8rem;
  color: #222;
  font-weight: 700;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

.cat-feature-link:hover {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
  opacity: 1;
}

@media (max-width: 1024px) {
  .cat-feature-link {
    font-size: 1.6rem;
  }
}

.cat-feature-link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ===================== 7. ITサポート業務 ===================== */
.cat-works {
  background-color: #fff;
  padding: 120px 0 0;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cat-works {
    padding: 80px 0 0;
  }
}

.cat-page .cat-works-system {
  padding-top: 80px;
}

.cat-works-desc {
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 1.8;
  margin-top: 40px;
  margin-bottom: 80px;
}

@media (max-width: 1024px) {
  .cat-works-desc {
    font-size: 1.6rem;
    text-align: left;
    margin-top: 24px;
    margin-bottom: 40px;
  }
}

.cat-works-highlight {
  font-weight: 700;
  color: #2f88ec;
}

/* H3 with side lines */
.cat-works-h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-works-h3 {
    font-size: 2.4rem;
    text-align: center;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
  }
}

.cat-works-h3-line {
  display: block;
  width: 16px;
  height: 2px;
  background-color: #969696;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

/* Role description */
.cat-works-role-desc {
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-works-role-desc {
    font-size: 1.6rem;
  }
}

/* Cards (mamori / seme) */
.cat-works-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: min(calc(32 / 1280 * 100vw), 32px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-works-cards {
    gap: 32px;
  }
}

.cat-works-card {
  position: relative;
  padding-top: 26px;
}

@media (max-width: 1024px) {
  .cat-works-card {
    padding-top: 0;
  }
}

.cat-works-card-label {
  position: absolute;
  top: 0;
  left: 26px;
  z-index: 1;
  padding: 8px 24px;
  border-radius: 4px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.8;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cat-works-card-label {
    left: 16px;
    right: 16px;
    width: auto;
    padding: 8px;
    font-size: 2rem;
    -webkit-font-feature-settings: 'palt';
    font-feature-settings: 'palt';
    text-align: center;
    white-space: normal;
  }
}

.cat-works-card-label--blue {
  background-color: #2f88ec;
}

.cat-works-card-label--orange {
  background-color: #fe9931;
}

.cat-works-card-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: min(calc(40 / 1280 * 100vw), 40px);
  padding: 56px 40px 40px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .cat-works-card-body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    margin-top: 44px;
    padding: 72px 24px 24px;
  }
}

.cat-works-card--mamori .cat-works-card-body {
  background-color: #f5f9fe;
}

.cat-works-card--seme .cat-works-card-body {
  background-color: #fffaf5;
}

.cat-works-card-body--simple {
  padding: 56px 40px 40px;
}

@media (max-width: 1024px) {
  .cat-works-card-body--simple {
    margin-top: 44px;
    padding: 72px 24px 24px;
  }
}

.cat-works-card-img {
  width: 27%;
  height: auto;
  aspect-ratio: 4 / 3;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cat-works-card-img {
    width: 100%;
    height: auto;
    aspect-ratio: 320 / 240;
  }
}

.cat-works-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cat-works-card-detail {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}

.cat-works-card-ttl {
  font-size: 2.2rem;
  font-weight: 400;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-works-card-ttl {
    font-size: 2rem;
  }
}

.cat-works-card-line {
  border: none;
  border-top: 1px solid #ddd;
  margin: 0;
}

.cat-works-card-txt {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-works-card-txt {
    font-size: 1.6rem;
  }
}

/* サポート体制 */
.cat-works-system-desc {
  font-size: 1.8rem;
  color: #222;
  text-align: center;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-works-system-desc {
    font-size: 1.6rem;
    text-align: left;
  }
}

.cat-works-diagram {
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cat-works-diagram img {
  width: 100%;
  height: auto;
}

.cat-works-note {
  font-size: 2.2rem;
  color: #222;
  line-height: 1.8;
  text-align: right;
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .cat-works-note {
    font-size: 2rem;
    text-align: left;
  }
}

/* ===================== 8. 業務内容 ===================== */
.cat-works-service {
  background-color: #f9f9f9;
  border-radius: 4px;
  padding: 120px 60px;
  margin-top: 120px;
}

@media (max-width: 1024px) {
  .cat-works-service {
    padding: 80px 0px;
    margin-top: 80px;
    border-radius: 0;
  }
}

.cat-works-service > .inner {
  /* max-width: calc(1080px + 5% * 2); */
}

.cat-service-cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: min(calc(40 / 1280 * 100vw), 40px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-service-cards {
    gap: 24px;
    margin-top: 40px;
  }
}

.cat-service-card {
  width: calc((100% - min(calc(40 / 1280 * 100vw), 40px)) / 2);
  background-color: #fff;
  overflow: hidden;
  padding: 40px 3.125%;
}

@media (max-width: 1024px) {
  .cat-service-card {
    width: 100%;
    padding: 24px;
  }
}

.cat-service-card-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

@media (max-width: 1024px) {
  .cat-service-card-head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

.cat-service-card-icon {
  width: 120px;
  height: 120px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cat-service-card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cat-service-card-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-service-card-ttl {
    font-size: 2.2rem;
    text-align: left;
  }
}

.cat-service-card hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 24px 0;
}

@media (max-width: 1024px) {
  .cat-service-card hr {
    margin: 24px 0;
  }
}

.cat-service-card-body {
  padding: 0;
}

.cat-service-card-sub {
  position: relative;
  padding-left: 20px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

.cat-service-card-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(1.5em / 2 - 1px);
  width: 12px;
  height: 2px;
  background-color: #ff4785;
}

@media (max-width: 1024px) {
  .cat-service-card-sub {
    font-size: 2rem;
    line-height: 1.8;
    padding-left: 20px;
  }
}

.cat-service-card-txt {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .cat-service-card-txt {
    font-size: 1.6rem;
  }
}

/* アコーディオントグルボタン（PC非表示） */
.cat-service-card-toggle {
  display: none;
}

@media (max-width: 1024px) {
  /* SP: カードヘッドを横並びに */
  .cat-service-card-head {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 8px;
    text-align: left;
  }

  /* SP: アイコンサイズ調整 */
  .cat-service-card-icon {
    width: 80px;
    height: 80px;
  }

  /* SP: hrを非表示 */
  .cat-service-card hr {
    display: none;
  }

  /* SP: トグルボタン表示 */
  .cat-service-card-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: none;
    border: none;
    padding: 8px 0 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }

  .cat-service-card-toggle-line {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    height: 1px;
    background-color: #ccc;
  }

  .cat-service-card-toggle-icon {
    width: 32px;
    height: 32px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  }

  .cat-service-card-toggle-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  /* SP: 開いた状態 → 上向き（元の向き） */
  .cat-service-card.is-open .cat-service-card-toggle-icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  /* SP: bodyを非表示（閉じ状態） — JSのslideToggleで制御 */
  .cat-service-card-body {
    display: none;
  }
}

/* ===================== 10. 募集要項 ===================== */
.cat-recruit {
  background-color: #fff;
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .cat-recruit {
    padding: 80px 0;
  }
}

.cat-recruit-table {
  /* max-width: 1000px; */
  margin: 40px auto 0;
}

.cat-recruit-table figure.wp-block-table {
  margin: 0;
  overflow-x: visible;
}

.cat-recruit-table .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  border: none;
}

.cat-recruit-table table {
  width: 100%;
  border-collapse: collapse;
}

.cat-recruit-table th,
.cat-recruit-table td,
.cat-recruit-table .wp-block-table th,
.cat-recruit-table .wp-block-table td {
  padding: 12px 24px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #222;
  border: 1px solid #ccc;
  vertical-align: top;
  text-align: left;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .cat-recruit-table th,
  .cat-recruit-table td,
  .cat-recruit-table .wp-block-table th,
  .cat-recruit-table .wp-block-table td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

.cat-recruit-table th,
.cat-recruit-table .wp-block-table th,
.cat-recruit-table .wp-block-table td:first-child {
  width: 240px;
  font-size: 2.2rem;
  font-weight: 700;
  background-color: #f6fcfb;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cat-recruit-table th,
  .cat-recruit-table .wp-block-table th,
  .cat-recruit-table .wp-block-table td:first-child {
    font-size: 2rem;
    width: 100%;
    padding: 16px 10px;
    background-color: #f6fcfb;
    text-align: center;
    border-bottom: none;
  }

  .cat-recruit-table tr + tr th,
  .cat-recruit-table .wp-block-table tr + tr td:first-child {
    border-top: none;
  }
}

@media (max-width: 1024px) {
  .cat-recruit-table td,
  .cat-recruit-table .wp-block-table td {
    font-size: 1.6rem;
    padding: 14px 24px;
  }

  .cat-recruit-table .wp-block-table td:first-child {
    font-size: 2rem;
    padding: 14px 10px;
  }
}

/* ===================== 11. 応募の流れ ===================== */
.cat-flow {
  background-color: #f9f9f9;
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .cat-flow {
    padding: 80px 0;
  }
}

.cat-flow-steps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: min(calc(32 / 1280 * 100vw), 32px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-flow-steps {
    gap: 16px;
  }
}

.cat-flow-row {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 50px;
}

@media (max-width: 1024px) {
  .cat-flow-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 16px;
  }
}

.cat-flow-step {
  position: relative;
  text-align: center;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc(25% - 32px);
  flex: 0 0 calc(25% - 32px);
  background-color: #fff;
  border-radius: 4px;
  padding: 24px 1.875%;
}

@media (max-width: 1024px) {
  .cat-flow-step {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
}

.cat-flow-step-num {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2f88ec;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-flow-step-num {
    font-size: 1.4rem;
  }
}

.cat-flow-step-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-flow-step-ttl {
    font-size: 2.2rem;
  }
}

.cat-flow-step-icon {
  width: 140px;
  height: 140px;
  margin: 24px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cat-flow-step-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .cat-flow-step-info {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-width: 0;
    text-align: center;
  }

  .cat-flow-step-icon {
    width: 120px;
    height: 120px;
    margin: 0;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.cat-flow-step-txt {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 24px;
  text-align: left;
}

@media (max-width: 1024px) {
  .cat-flow-step-txt {
    font-size: 1.6rem;
    margin-top: 0;
    width: 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
}

/* ステップ間の右矢印 */
.cat-flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -36px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-style: solid;
  border-width: 17.5px 0 17.5px 18px;
  border-color: transparent transparent transparent #2f88ec;
}

@media (max-width: 1024px) {
  .cat-flow-step:not(:last-child)::after {
    display: none;
  }
}

.cat-flow-row--second {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* margin-top: 26px; */
}

.cat-flow-row--second::before {
  content: '';
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -ms-flex-item-align: center;
  align-self: center;
  border-style: solid;
  border-width: 17.5px 0 17.5px 18px;
  border-color: transparent transparent transparent #2f88ec;
  margin-right: -32px;
}

@media (max-width: 1024px) {
  .cat-flow-row--second {
    position: relative;
    margin-top: 0;
    padding-top: 0;
  }

  .cat-flow-row--second::before {
    display: none;
  }
}

/* SP: ステップ間の下矢印（HTMLで追加） */
.cat-flow-arrow {
  display: none;
}

@media (max-width: 1024px) {
  .cat-flow-arrow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cat-flow-arrow::before {
    content: '';
    border-style: solid;
    border-width: 18px 17.5px 0 17.5px;
    border-color: #2f88ec transparent transparent transparent;
  }
}

/* ===================== 12. FAQ ===================== */
.cat-faq {
  background-color: #fff;
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .cat-faq {
    padding: 80px 0;
  }
}

.cat-faq-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}

.cat-faq-tab {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 12px 16px 8px;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ccc;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

@media (max-width: 1024px) {
  .cat-faq-tab {
    font-size: 2rem;
    padding: 16px;
  }
}

.cat-faq-tab[data-target="faq-company"].active {
  color: #656cde;
  border-bottom: 2px solid #656cde;
}

.cat-faq-tab[data-target="faq-seeker"].active {
  color: #fe9931;
  border-bottom: 2px solid #fe9931;
}

.cat-faq-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: 24px;
}

.cat-faq-item {
  border-radius: 4px;
}

.cat-faq-q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
}

.cat-faq-q:hover {
  opacity: .7;
}

.cat-faq-q-label {
  font-size: 2.8rem;
  font-weight: 700;
  margin-right: 16px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  line-height: 1.5;
}

@media (max-width: 1024px) {
  .cat-faq-q-label {
    font-size: 2.4rem;
  }
}

.cat-faq-q-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-faq-q-text {
    font-size: 1.6rem;
  }
}

.cat-faq-toggle {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 16px;
  position: relative;
}

.cat-faq-toggle::before,
.cat-faq-toggle::after {
  content: "";
  position: absolute;
  -webkit-transition: .3s;
  transition: .3s;
}

.cat-faq-toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cat-faq-toggle::after {
  width: 2px;
  height: 16px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.cat-faq-item.open .cat-faq-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.cat-faq-a {
  display: none;
  padding: 16px 16px 16px 50px;
  border: 1px solid #eee;
  border-top: none;
}

@media (max-width: 1024px) {
  .cat-faq-a {
    padding: 16px 16px 16px 48px;
  }
}

.cat-faq-a p {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-faq-a p {
    font-size: 1.6rem;
  }
}

/* 企業向けFAQ（パープル） */
#faq-company .cat-faq-q {
  background-color: #f3f3fc;
}

#faq-company .cat-faq-q-label {
  color: #656cde;
}

#faq-company .cat-faq-toggle::before,
#faq-company .cat-faq-toggle::after {
  background-color: #656cde;
}

/* 求職者向けFAQ（オレンジ） */
#faq-seeker .cat-faq-q {
  background-color: #fffaf5;
}

#faq-seeker .cat-faq-q-label {
  color: #fe9931;
}

#faq-seeker .cat-faq-toggle::before,
#faq-seeker .cat-faq-toggle::after {
  background-color: #fe9931;
}

/* ===================== 取得する主要スキル ===================== */
.cat-page .cat-works-skills {
  padding-top: 120px;
}

@media (max-width: 1024px) {
  .cat-page .cat-works-skills {
    padding-top: 80px;
  }
}

.cat-skills-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(64 / 1280 * 100vw), 64px);
  margin-top: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

@media (max-width: 1024px) {
  .cat-skills-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.cat-skills-list {
  -webkit-box-flex: .74;
  -ms-flex: .74;
  flex: .74;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /* gap: 24px; */
}

@media (max-width: 1024px) {
  .cat-skills-list {
    /* gap: 16px; */
  }
}

.cat-skills-item {
  padding-bottom: 24px;
}

.cat-skills-item:last-child {
  padding-bottom: 0;
}

.cat-skills-item + .cat-skills-item {
  padding-top: 24px;
  border-top: 1px solid #ccc;
}

@media (max-width: 1024px) {
  .cat-skills-item {
    padding: 0 16px 16px;
  }

  .cat-skills-item:last-child {
    padding-bottom: 0;
  }

  .cat-skills-item + .cat-skills-item {
    padding-top: 16px;
  }
}

.cat-skills-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1024px) {
  .cat-skills-item-head {
    gap: 8px;
  }
}

.cat-skills-check {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-skills-check {
    width: 20px;
    height: 20px;
  }
}

.cat-skills-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-skills-name {
    font-size: 2rem;
  }
}

.cat-skills-desc {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-skills-desc {
    font-size: 1.6rem;
  }
}

.cat-skills-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 55%;
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}

@media (max-width: 1024px) {
  .cat-skills-img {
    min-width: 0;
    margin-right: 0;
    /* border-radius: 8px; */
  }
}

.cat-skills-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

/* ===================== スキルアップの流れ + キャリアパス wrapper ===================== */
.cat-works-growth {
  background-color: #f9f9f9;
  padding: 120px 0;
  margin-top: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .cat-works-growth {
    padding: 80px 0;
    margin-top: 80px;
  }
}

.cat-page #works-career {
  padding-top: 80px;
}

/* ===================== スキルアップの流れ ===================== */
.cat-skillup-timeline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 40px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

@media (max-width: 1024px) {
  .cat-skillup-timeline {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 8px;
  }
}

/* PC: vertical cards (header on top, body below) */
.cat-skillup-step {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  overflow: hidden;
}

.cat-skillup-step--orange {
  border: 1px solid #fe9931;
}

.cat-skillup-step--green {
  border: 1px solid #46bba9;
  min-height: 224px;
}

.cat-skillup-step--blue {
  border: 1px solid #2f88ec;
  min-height: 280px;
}

/* SP: horizontal cards (label left, body right) */
@media (max-width: 1024px) {
  .cat-skillup-step {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    height: 200px;
  }

  .cat-skillup-step--orange {
    width: 66.67%;
  }

  .cat-skillup-step--green {
    width: 83.33%;
    min-height: auto;
  }

  .cat-skillup-step--blue {
    width: 100%;
    min-height: auto;
  }
}

.cat-skillup-label {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  padding: 12px 24px;
  text-align: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cat-skillup-step--orange .cat-skillup-label {
  background-color: #fe9931;
}

.cat-skillup-step--green .cat-skillup-label {
  background-color: #46bba9;
}

.cat-skillup-step--blue .cat-skillup-label {
  background-color: #2f88ec;
}

@media (max-width: 1024px) {
  .cat-skillup-label {
    font-size: 2rem;
    padding: 24px 12px;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: upright;
    text-orientation: upright;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
  }
}

.cat-skillup-content {
  padding: 24px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.cat-skillup-content p {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-skillup-content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .cat-skillup-content p {
    font-size: 1.6rem;
  }
}

/* ===================== キャリアパス ===================== */
.cat-career-path {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-career-path {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.cat-career-step {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  background-color: #fff;
  padding: 24px 16px 24px 24px;
  -webkit-box-shadow: 4px 4px 0 0 #e62d2c;
  box-shadow: 4px 4px 0 0 #e62d2c;
}

@media (max-width: 1024px) {
  .cat-career-step {
    width: 100%;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    padding: 24px 16px 24px 24px;
  }
}

.cat-career-img {
  width: 124px;
  height: 124px;
  /* border-radius: 50%; */
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-career-img {
    width: 120px;
    height: 120px;
  }
}

.cat-career-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.cat-career-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-career-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-career-title {
    font-size: 1.6rem;
  }
}

.cat-career-sub {
  font-size: 1.6rem;
  font-weight: 700;
  color: #222;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-career-sub {
    font-size: 1.4rem;
  }
}

.cat-career-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.cat-career-arrow-right {
  display: block;
}

.cat-career-arrow-down {
  display: none;
}

@media (max-width: 1024px) {
  .cat-career-arrow-right {
    display: none;
  }

  .cat-career-arrow-down {
    display: block;
  }
}

.cat-career-note {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-career-note {
    font-size: 1.8rem;
    text-align: left;
  }
}

/* ===================== 募集要項 追加 ===================== */
.cat-recruit-note {
  text-align: center;
  font-size: 1.8rem;
  color: #e41a1b;
  font-weight: 700;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-recruit-note {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* 勤務地詳細 */
.cat-recruit-location {
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .cat-recruit-location {
    margin-top: 64px;
  }
}

.cat-recruit-location-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 32px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: min(calc(40 / 1280 * 100vw), 40px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-recruit-location-grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
}

.cat-recruit-location-card {
  background-color: #f6fcfb;
  border-radius: 4px;
  padding: 40px 6.125%;
}

@media (max-width: 1024px) {
  .cat-recruit-location-card {
    padding: 24px;
  }
}

.cat-recruit-location-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(24 / 1280 * 100vw), 24px);
}

@media (max-width: 1024px) {
  .cat-recruit-location-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
}

.cat-recruit-location-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-recruit-location-name {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;
}

@media (max-width: 1024px) {
  .cat-recruit-location-name {
    font-size: 2rem;
  }
}

.cat-recruit-location-addr {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  /* margin-top: 8px; */
}

@media (max-width: 1024px) {
  .cat-recruit-location-addr {
    font-size: 1.6rem;
  }
}

.cat-recruit-location-station {
  border: 1px solid #46bba9;
  /* border-radius: 4px; */
  overflow: hidden;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cat-recruit-location-station {
    margin-top: 24px;
  }
}

.cat-recruit-location-station-label {
  background-color: #46bba9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.8;
  padding: 0px 12px;
}

@media (max-width: 1024px) {
  .cat-recruit-location-station-label {
    font-size: 1.6rem;
  }
}

.cat-recruit-location-station-text {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  padding: 8px 12px;
  background-color: #fff;
}

@media (max-width: 1024px) {
  .cat-recruit-location-station-text {
    font-size: 1.6rem;
    padding: 8px 10px;
  }
}

.cat-recruit-location-photo {
  width: 240px;
  height: 240px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cat-recruit-location-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .cat-recruit-location-photo {
    width: 100%;
    height: auto;
  }

  .cat-recruit-location-photo img {
    height: auto;
  }
}

.cat-recruit-location-map {
  border-radius: 4px;
  height: 310px;
  overflow: hidden;
  position: relative;
  margin-top: 32px;
}

@media (max-width: 1024px) {
  .cat-recruit-location-map {
    margin-top: 24px;
  }
}

.cat-recruit-location-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1024px) {
  .cat-recruit-location-map {
    height: 312px;
  }
}

/* ===================== 実習内容 ===================== */
.cat-h3-ttl--mt {
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .cat-h3-ttl--mt {
    margin-top: 80px;
  }
}

.cat-flow-internship-note {
  text-align: center;
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .cat-flow-internship-note {
    font-size: 1.6rem;
    margin-top: 24px;
  }
}

.cat-internship-table {
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-internship-table {
    margin-top: 40px;
  }
}

.cat-internship-table th {
  background-color: #f5f9fe;
}

/* ===================== ニュース・ブログ ===================== */
.cat-news-blog {
  background-color: #f9f9f9;
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .cat-news-blog {
    padding: 80px 0;
  }
}

.cat-news-blog-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(calc(40 / 1280 * 100vw), 40px);
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .cat-news-blog-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }
}

.cat-news-col,
.cat-blog-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background-color: #fff;
  padding: 40px 3.125% 24px;
}

@media (max-width: 1024px) {
  .cat-news-col,
  .cat-blog-col {
    padding: 24px 24px 10px;
  }
}

.cat-news-list {
  max-width: 100%;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-news-list {
    margin-top: 28px;
  }
}

.cat-news-item {
  border-bottom: 1px solid #ccc;
}

.cat-news-item:last-child {
  border-bottom: none;
}

.cat-news-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.cat-news-item a:hover {
  opacity: 1;
}

.cat-news-item a:hover .cat-news-ttl {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
}

.cat-news-item-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-news-date {
  font-size: 1.6rem;
  color: #222;
  display: block;
}

@media (max-width: 1024px) {
  .cat-news-date {
    font-size: 1.4rem;
  }
}

.cat-news-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

@media (max-width: 1024px) {
  .cat-news-ttl {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 4px;
  }
}

.cat-news-arrow {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-news-arrow {
    width: 16px;
    height: 16px;
  }
}

/* ブログ列 */
.cat-blog-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

@media (max-width: 1024px) {
  .cat-blog-list {
    gap: 24px;
    margin-top: 40px;
  }
}

.cat-blog-item {
  border-bottom: 1px solid #ccc;
  padding-bottom: 16px;
}

.cat-blog-item:last-child {
  border-bottom: none;
}

@media (max-width: 1024px) {
  .cat-blog-item {
    padding-bottom: 24px;
  }
}

.cat-blog-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

@media (max-width: 1024px) {
  .cat-blog-item a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 8px;
  }
}

.cat-blog-item a:hover {
  opacity: 1;
}

.cat-blog-item a:hover .cat-blog-ttl {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
}

.cat-blog-img {
  width: 189px;
  height: 94px;
  border-radius: 8px;
  overflow: hidden;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .cat-blog-img {
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
  }
}

.cat-blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: -webkit-transform .3s;
  transition: transform .3s;
}

.cat-blog-item a:hover .cat-blog-img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.cat-blog-info {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-blog-date {
  font-size: 1.6rem;
  color: #222;
  display: block;
}

@media (max-width: 1024px) {
  .cat-blog-date {
    font-size: 1.4rem;
  }
}

.cat-blog-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

@media (max-width: 1024px) {
  .cat-blog-ttl {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-top: 4px;
  }
}

.cat-news-blog .cat-btn-cta {
  position: relative;
  display: block;
  max-width: 366px;
  margin: 40px auto 0;
  text-align: center;
  background-color: #e62d2c;
  color: #fff;
  border: 2px solid #e62d2c;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 1.6rem;
  font-weight: 700;
  -webkit-transition: background-color .3s, color .3s, border-color .3s;
  transition: background-color .3s, color .3s, border-color .3s;
}

@media (max-width: 1024px) {
  .cat-news-blog .cat-btn-cta {
    padding: 14px 58px 14px 32px;
  }
}

.cat-news-blog .cat-btn-cta::before,
.cat-news-blog .cat-btn-cta::after {
  content: '';
  position: absolute;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: opacity .3s;
  transition: opacity .3s;
}

@media (max-width: 1024px) {
  .cat-news-blog .cat-btn-cta::before,
  .cat-news-blog .cat-btn-cta::after {
    width: 16px;
    height: 16px;
    right: 52px;
  }
}

.cat-news-blog .cat-btn-cta::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='m' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='1' y='1' width='22' height='22'%3E%3Cpath d='M12 22C17.523 22 22 17.523 22 12C22 6.477 17.523 2 12 2C6.477 2 2 6.477 2 12C2 17.523 6.477 22 12 22Z' fill='white' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10.5 16.5L15 12L10.5 7.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23m)'%3E%3Cpath d='M0 0H24V24H0V0Z' fill='white'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
}

.cat-news-blog .cat-btn-cta::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cmask id='m2' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='1' y='1' width='22' height='22'%3E%3Cpath d='M12 22C17.523 22 22 17.523 22 12C22 6.477 17.523 2 12 2C6.477 2 2 6.477 2 12C2 17.523 6.477 22 12 22Z' fill='white' stroke='white' stroke-width='2' stroke-linejoin='round'/%3E%3Cpath d='M10.5 16.5L15 12L10.5 7.5' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/mask%3E%3Cg mask='url(%23m2)'%3E%3Cpath d='M0 0H24V24H0V0Z' fill='%23e62d2c'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0;
}

.cat-news-blog .cat-btn-cta:hover {
  background-color: #fff;
  color: #e62d2c;
  border: 2px solid #e62d2c;
  opacity: 1;
}

.cat-news-blog .cat-btn-cta:hover::after {
  opacity: 0;
}

.cat-news-blog .cat-btn-cta:hover::before {
  opacity: 1;
}

/* ===================== 表記について ===================== */
.cat-notation {
  background-color: #fff;
  padding: 120px 0 80px;
}

@media (max-width: 1024px) {
  .cat-notation {
    padding: 80px 0 40px;
  }
}

.cat-notation-box {
  background-color: #fffaf5;
  padding: 40px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .cat-notation-box {
    padding: 24px;
  }
}

.cat-notation-ttl {
  font-size: 2.2rem;
  font-weight: 700;
  color: #e62d2c;
  padding-bottom: 24px;
  border-bottom: 1px solid #ccc;
}

@media (max-width: 1024px) {
  .cat-notation-ttl {
    font-size: 2rem;
    padding-bottom: 16px;
  }
}

.cat-notation-text {
  font-size: 1.8rem;
  color: #222;
  line-height: 1.8;
  margin-top: 24px;
}

@media (max-width: 1024px) {
  .cat-notation-text {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}

/* ===================== 15. CTA ===================== */
.cat-cta {
  background-color: #fe9931;
  text-align: center;
  padding: 60px 0;
}

@media (max-width: 1024px) {
  .cat-cta {
    padding: 40px 0;
  }
}

.cat-cta-text {
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

@media (max-width: 1024px) {
  .cat-cta-text {
    font-size: 1.8rem;
  }
}

.cat-cta .cat-btn-primary {
  background-color: #fff;
  color: #fe9931;
  border-color: #fff;
  margin-top: 24px;
}

.cat-cta .cat-btn-primary:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

/* ===================== CAT Footer ===================== */
.cat-footer {
  background-color: #fff;
  color: #222;
}

.cat-footer .inner {
  max-width: calc(1280px + 5% * 2);
  padding: 0 5% 120px;
}

@media (max-width: 1024px) {
  .cat-footer .inner {
    padding: 0 5% 80px;
  }
}

.cat-footer-nav {
  /* padding: 0 0 40px; */
}

.cat-footer-nav-cols {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

@media (max-width: 1024px) {
  .cat-footer-nav-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }
}

.cat-footer-nav-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.cat-footer-nav-col ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}

.cat-footer-nav-col a {
  font-size: 1.8rem;
  color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.8;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

@media (max-width: 1024px) {
  .cat-footer-nav-col a {
    font-size: 1.6rem;
  }
}

.cat-footer-nav-col a:hover {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
  opacity: 1;
}

.cat-footer-nav-icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 0;
}

.cat-footer-nav-col li.cat-footer-nav-sub {
  padding-left: 24px;
}

.cat-footer-nav-col li.cat-footer-nav-sub a {
  font-size: 1.6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .cat-footer-nav-col li.cat-footer-nav-sub a {
    font-size: 1.4rem;
  }
}

.cat-footer-nav-col li.cat-footer-nav-sub a::before {
  content: "";
  display: block;
  width: 8px;
  height: 1px;
  background-color: #e62d2c;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.cat-footer-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0;
}

.cat-footer-bottom {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (min-width: 1025px) {
  .cat-footer-bottom.show--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (max-width: 1024px) {
  .cat-footer-bottom {
    display: none;
  }
}

.cat-footer-company {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 48px;
}

@media (max-width: 1024px) {
  .cat-footer-company {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.cat-footer-company-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
}

.cat-footer-company-logo img {
  height: 62px;
  width: auto;
}

@media (max-width: 1024px) {
  .cat-footer-company-logo img {
    height: 56px;
  }
}

.cat-footer-company-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #222;
}

@media (max-width: 1024px) {
  .cat-footer-company-name {
    font-size: 1.6rem;
  }
}

.cat-footer-mascot img {
  width: 96px;
  height: 96px;
  -o-object-fit: contain;
  object-fit: contain;
}

.cat-footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 4px;
}

@media (min-width: 1025px) {
  .cat-footer-bottom-sp {
    display: none;
  }
}

.cat-footer-bottom-sp {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 36px;
}

.cat-footer-sp-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
@media (max-width: 1024px) {
  .cat-footer-sp-row {
    margin-top: 36px;
  }
}

.cat-footer-bottom-sp .cat-footer-links {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.cat-footer-links a {
  font-size: 1.6rem;
  color: #222;
  line-height: 1.8;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
  text-decoration-color: transparent;
  -webkit-transition: color .2s, text-decoration-color .2s;
  transition: color .2s, text-decoration-color .2s;
}

.cat-footer-links a:hover {
  color: #e62d2c;
  -webkit-text-decoration-color: #e62d2c;
  text-decoration-color: #e62d2c;
  opacity: 1;
}

/* ===================== コピーライト ===================== */
.cat-copyright {
  background-color: #222;
  padding: 10px;
  text-align: center;
}

.cat-copyright p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .cat-copyright p {
    font-size: 1.4rem;
  }
}

/* ===================== ユーティリティ ===================== */
.cat-no-posts {
  text-align: center;
  font-size: 1.6rem;
  color: #999;
  padding: 40px 0;
}
