@charset "UTF-8";

/* =========================
COMMON
========================= */

@font-face {
  font-family: "FuturaStd";
  src: local("Futura Std Light"), local("FuturaStd-Light"), url("../css/fonts/FuturaStd-Light.woff2") format("woff2"), url("../css/fonts/FuturaStd-Light.woff") format("woff"), url("../css/fonts/FuturaStd-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "FuturaStd Condensed";
  src: local("Futura Std Condensed Bold"), local("FuturaStd-CondensedBold"), url("../css/fonts/FuturaStd-CondensedBold.woff2") format("woff2"), url("../css/fonts/FuturaStd-CondensedBold.woff") format("woff"), url("../css/fonts/FuturaStd-CondensedBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-stretch: 75%;
  font-display: swap;
}

@font-face {
  font-family: "KozGoPr6N";
  src: local("Kozuka Gothic Pr6N R"), local("KozGoPr6N-Regular"), url("../css/fonts/KozGoPr6N-Regular.woff2") format("woff2"), url("../css/fonts/KozGoPr6N-Regular.woff") format("woff"), url("../css/fonts/KozGoPr6N-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "KozGoPr6N";
  src: local("Kozuka Gothic Pr6N B"), local("KozGoPr6N-Bold"), url("../css/fonts/KozGoPr6N-Bold.woff2") format("woff2"), url("../css/fonts/KozGoPr6N-Bold.woff") format("woff"), url("../css/fonts/KozGoPr6N-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  /* colors: */
  --green: #1b794e;
  --orange: #f08001;
  --black: #000000;
  --fz15: clamp(0.875rem, 0.86rem + 0.06vw, 0.938rem);
  --fz20: clamp(1rem, 0.939rem + 0.26vw, 1.25rem);
  --fz22: clamp(1.125rem, 1.064rem + 0.26vw, 1.375rem);
  --fz25: clamp(1.25rem, 1.174rem + 0.32vw, 1.563rem);
  --fz30: clamp(1.313rem, 1.176rem + 0.58vw, 1.875rem);
  --fz35: clamp(1.375rem, 1.178rem + 0.84vw, 2.188rem);
  --fz36: clamp(1.563rem, 1.396rem + 0.71vw, 2.25rem);
  --fz40: clamp(1.75rem, 1.568rem + 0.78vw, 2.5rem);
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 135px;
  @media only screen and (max-width: 767px) {
    scroll-padding-top: 70px;
  }
}

body {
  font-size: var(--fz20);
  font-family: "Hiragino Sans", ヒラギノ角ゴシック, sans-serif;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: var(--black);
  transition: all ease 0.3s;
}
a:hover {
  opacity: 0.9;
}

li {
  list-style: none;
}

.pc-only {
  display: block;
}
.sp-only {
  display: none;
}

/* =========================
HEADER
========================= */

/* ヘッダー全体 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.site-header-inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 36px 45px 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  box-sizing: content-box;
}

.site-header-left {
  display: flex;
  align-items: end;
}

/* ロゴ */
.site-logo img {
  max-width: 240px;
}

/* ナビゲーション */
.site-nav {
  margin-left: 36px;
}

.site-nav-list {
  line-height: 0.75;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.site-nav-list a {
  font-size: var(--fz15);
  font-weight: 600;
  color: var(--green);
}

.site-nav-list a:hover {
  text-decoration: underline;
}

.site-cta-btn img {
  max-width: 430px;
}
/* ===== Hamburger ===== */
.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  border: 1px solid #000;
  border-radius: 10px;
  position: relative;
  background: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  z-index: 9999;
}
.hamburger span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: #000;
  border-radius: 10px;
  z-index: 9999;
  transition: transform 0.25s ease, opacity 0.2s ease, top 0.25s ease, bottom 0.25s ease;
}
.hamburger span:nth-child(1) {
  top: 12px;
}
.hamburger span:nth-child(2) {
  top: 27px;
}
.hamburger span:nth-child(3) {
  bottom: 14px;
}

/* 開いたとき（Xアイコン） */
.nav-open .hamburger span:nth-child(1) {
  top: 27px;
  transform: translateX(-50%) rotate(45deg);
}
.nav-open .hamburger span:nth-child(2) {
  opacity: 0;
}
.nav-open .hamburger span:nth-child(3) {
  bottom: auto;
  top: 27px;
  transform: translateX(-50%) rotate(-45deg);
}

@media only screen and (max-width: 1699px) {
  .site-logo img {
    max-width: 180px;
  }
  .site-cta-btn img {
    max-width: 300px;
  }
  .site-nav-list {
    gap: 30px;
  }
  .site-header-inner {
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 1279px) {
  .site-cta-btn img {
    max-width: 270px;
  }
  .site-nav-list {
    gap: 20px;
  }
  .site-nav {
    margin-left: 24px;
  }
}
@media only screen and (max-width: 999px) {
  .site-nav-list {
    gap: 1rem;
  }
}

@media only screen and (max-width: 768px) {
  .site-nav-list {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    padding: 24px;
    box-sizing: border-box;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: scale(0.98);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s step-end;
  }

  /* オープン時：ふわっと拡大して表示 */
  .nav-open .site-nav-list {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: scale(1);
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0s step-start;
  }

  /* メニューアイテム：段階的にスライドイン */
  .site-nav-list li {
    opacity: 0;
    transform: translateY(8px);
  }
  .nav-open .site-nav-list li {
    animation: navItem 0.45s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
  }
  .nav-open .site-nav-list li:nth-child(1) {
    animation-delay: 0.06s;
  }
  .nav-open .site-nav-list li:nth-child(2) {
    animation-delay: 0.12s;
  }
  .nav-open .site-nav-list li:nth-child(3) {
    animation-delay: 0.18s;
  }
  .nav-open .site-nav-list li:nth-child(4) {
    animation-delay: 0.24s;
  }
  .nav-open .site-nav-list li:nth-child(5) {
    animation-delay: 0.3s;
  }

  @keyframes navItem {
    to {
      opacity: 1;
      transform: none;
    }
  }

  /* メニューリンク基本 */
  .site-nav-list a {
    position: relative;
    padding: 0.3em 0.1em;
    font-size: 18px;
    color: #1b794e;

    font-weight: 600;
  }

  /* 下線（最初は幅0 → 中央起点） */
  .site-nav-list a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1b794e;
    transform: translateX(-50%);
    transition: width 0.4s ease;
  }

  /* nav-open状態のときに全て100%まで伸ばす */
  .nav-open .site-nav-list a::after {
    width: 100%;
  }
  .nav-open .site-nav-list li:nth-child(1) a::after {
    transition-delay: 0.05s;
  }
  .nav-open .site-nav-list li:nth-child(2) a::after {
    transition-delay: 0.1s;
  }
  .nav-open .site-nav-list li:nth-child(3) a::after {
    transition-delay: 0.15s;
  }
  .nav-open .site-nav-list li:nth-child(4) a::after {
    transition-delay: 0.2s;
  }
  .nav-open .site-nav-list li:nth-child(5) a::after {
    transition-delay: 0.25s;
  }

  /* メニューオープン中はページスクロールを止める */
  body.nav-open {
    overflow: hidden;
  }

  .site-header-inner {
    justify-content: space-between;
    gap: 12px;
  }

  .site-nav {
    margin-left: 0;
  }
  .site-cta-btn img {
    max-width: 300px;
  }
  .hamburger {
    display: block;
  }

  .nav-open .site-nav-list {
    display: flex;
    position: fixed;
    inset: 0;
    background: #d9eeec;
    z-index: 1000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 24px;
    box-sizing: border-box;
  }
  .nav-open .site-nav-list a {
    font-size: 18px;
    color: #1b794e;
    font-weight: 600;
  }
}
@media only screen and (max-width: 499px) {
  .site-header-inner {
    padding: 8px 10px;
  }
  .hamburger {
    width: 70px;
    height: 50px;
  }
  .hamburger span:nth-child(1) {
    top: 12px;
  }
  .hamburger span:nth-child(2) {
    top: 26px;
  }
  .hamburger span:nth-child(3) {
    bottom: 8px;
  }
  .nav-open .hamburger span:nth-child(1) {
    top: 24px;
  }
  .nav-open .hamburger span:nth-child(3) {
    top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav-list,
  .site-nav-list li,
  .hamburger span {
    transition: none !important;
    animation: none !important;
  }
}
@media only screen and (max-width: 399px) {
  .hamburger {
    width: 60px;
    height: 40px;
  }
  .hamburger span:nth-child(1) {
    top: 9px;
  }
  .hamburger span:nth-child(2) {
    top: 19px;
  }
  .nav-open .hamburger span:nth-child(1) {
    top: 20px;
  }
  .nav-open .hamburger span:nth-child(3) {
    top: 20px;
  }
}

/* =========================
CAREER STEPUP
========================= */

.career-stepup {
  max-width: 640px;
  margin: 1rem auto;
  padding: 0 2rem;
  box-sizing: content-box;
}

/* =========================
INTERVIEW
========================= */

.interview {
  max-width: 1000px;
  margin: 120px auto 0;
  padding: 0 1rem;
  box-sizing: content-box;
}

.interview-heading {
  max-width: 900px;
  margin: 0 auto;
}

.interview-lead {
  font-size: var(--fz25);
  line-height: 2;
  text-align: center;
  margin-block: 72px;
}

.interview-card {
  max-width: 640px;
  margin: 0 auto;
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  align-items: start;
}
.interview-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.interview-profile {
  position: relative;
  border-right: 6px solid rgba(57, 181, 74, 0.4);
  border-bottom: 6px solid rgba(57, 181, 74, 0.4);
  padding: 1rem;
  margin-top: 8px;
}
.interview-meta {
  font-size: var(--fz15);
  font-weight: 300;
  color: var(--black);
  margin: 0 0 6px;
}
.interview-name {
  font-size: var(--fz36);
  letter-spacing: 0.1em;
  margin: 0 0 10px;
}
.interview-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.interview-desc {
  font-size: var(--fz15);
  line-height: 1.66;
}

/* 詳しくみるボタン（＋/−） */
.interview-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fz20);
  color: #39b54a;
  cursor: pointer;
  font-weight: 600;
}
.interview-more:focus-visible {
  outline: 2px solid #39b54a;
  outline-offset: 4px;
}
.interview-toggle-icon {
  font-size: var(--fz20);
  line-height: 1;
  transition: transform 0.25s ease;
}

/* アコーディオン本体 */
.interview-body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: max-height 0.45s ease, opacity 0.45s ease, transform 0.45s ease;
  padding-top: 0;
  margin-top: 8px;
}

/* 開いた状態 */
.interview-body.open {
  max-height: 100%;
  opacity: 1;
  transform: translateY(0);
}
.interview-card {
  margin-bottom: 85px;
}

.interview-block {
  margin-top: 25px;
  border-bottom: 1px solid #808080;
}
.interview-block:first-child {
  margin-top: 0;
}
.interview-block:last-child {
  border-bottom: 6px solid rgba(57, 181, 74, 0.4);
}
.interview-head {
  font-size: var(--fz20);
  font-weight: 600;
  color: #39b54a;
  line-height: 1.5;
  margin-bottom: 25px;
}
.interview-text {
  font-size: var(--fz15);
  line-height: 1.66;
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .interview {
    margin: 80px auto 0;
    padding: 0 1rem;
  }
  .interview-lead {
    margin-block: 30px;
  }
  .interview-card {
    gap: 1rem;
    margin-bottom: 50px;
  }
  .interview-bottom {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
  .interview-profile {
    padding: 0.75rem;
  }
  .interview-more {
    margin-left: auto;
  }
  .interview-text {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 499px) {
  .interview-lead {
    font-size: 18px;
  }
  .interview-desc .pc-only {
    display: none;
  }
}
/* =========================
ENVIRONMENT
========================= */

/* セクション見出し */
.env-section {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 250px;
  padding: 0 1rem;
  box-sizing: content-box;
}
.env-heading {
  text-align: center;
  font-size: var(--fz40);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 50px;
}
.em-orange {
  color: var(--orange);
  font-weight: 700;
}
.em-orange-strong {
  color: var(--orange);
  font-weight: 800;
}

/* グリッド */
.env-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* カード共通 */
.env-card {
  background: #fff;
  padding: 1rem;
}

.env-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 120px;
}

/* カードヘッダー */
.env-card-head {
  position: relative;
  display: block;
  margin-bottom: 12px;
}
.env-badge {
  position: absolute;
  top: -25px;
  display: inline-grid;
  place-items: center;
  font-family: "M PLUS 2", sans-serif;
  font-size: 60px;
  font-weight: 800;
  color: rgba(57, 181, 74, 0.4);
}
.env-card-title {
  position: relative;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fz22);
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  border-bottom: 1px solid #fff;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
  padding-left: 0.5em;
  margin-bottom: 24px;
}

/* 枠とボックス（共通） */
.env-card-list {
  display: grid;
  gap: 24px;
}
.env-card-item {
  background: #fff;
  padding: 1rem;
  text-align: center;
}
.env-item-lead {
  font-size: var(--fz25);
  font-weight: 600;
  line-height: 1.4;
}

.env-item-lead span,
.env-item-txt span {
  font-weight: 800;
  color: var(--orange);
}

.env-item-txt {
  font-size: var(--fz22);
  font-weight: 600;
  line-height: 1.6;
}
.env-item-em {
  font-size: var(--fz25);
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 6px;
}

/* テーマ：Green */
.env-card-green {
  background-color: #8fd599;
}

/* テーマ：Blue */
.env-card-blue {
  background-color: #53bbe8;
}
.env-card-blue .env-card-list {
  gap: 38px;
}
.env-card-blue .env-badge {
  color: rgb(57 136 170 / 40%);
}
.env-card-blue .env-card-title {
  text-align: center;
}

/* テーマ：Pink */
.env-card-pink {
  background-color: #ffb5b5;
}
.env-card-pink .env-card-list {
  gap: 38px;
}
.env-card-pink .env-badge {
  color: rgb(238 113 113 / 40%);
}

/* =========================
ENV – Responsive
========================= */

@media (max-width: 1400px) {
  .env-section {
    margin-top: 200px;
    padding: 0 24px;
  }
  .env-heading {
    margin-bottom: 40px;
  }
}

@media (max-width: 1200px) {
  .env-card {
    padding: 14px;
  }
  .env-card-list {
    gap: 20px;
  }
  .env-card-title {
    height: 56px;
  }
  .env-badge {
    top: -22px;
    font-size: 55px;
  }
}

@media (max-width: 1024px) {
  .env-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .env-section {
    margin-top: 160px;
  }
  .env-badge {
    font-size: 48px;
    top: -20px;
  }
}

@media (max-width: 768px) {
  .env-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    margin-bottom: 60px;
  }
  .env-section {
    margin-top: 120px;
    padding: 0 16px;
  }
  .env-heading {
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .env-card {
    padding: 12px;
  }
  .env-card-list {
    gap: 20px;
  }
  .env-card-title {
    height: 52px;
    padding-left: 0.5em;
    margin-bottom: 16px;
  }

  .env-badge {
    top: -18px;
  }
}

@media (max-width: 480px) {
  .env-section {
    margin-top: 96px;
  }
  .env-card {
    padding: 10px;
  }
  .env-heading {
    font-size: 22px;
  }
  .env-card-title {
    font-size: 20px;
    height: 48px;
    padding-bottom: 4px;
  }
  .env-badge {
    top: -16px;
  }
  .env-card-blue .env-card-list {
    gap: 20px;
  }
  .env-card-pink .env-card-list {
    gap: 20px;
  }
}

/* =========================
BG-GRADATION
========================= */
.bg-gradation {
  background: url("../images/bg-gradation.png") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding-top: 70px;
}

.inner {
  padding: 0 1rem;
  box-sizing: content-box;
}
.branch-hero {
  max-width: 900px;
  margin: 0 auto;
}
/* セクション */
.salary-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
}
.salary-heading {
  font-size: var(--fz40);
  font-weight: 800;
  line-height: 1.5;
  margin-bottom: 50px;
  text-align: center;
}
.salary-em {
  color: var(--orange);
}

/* グリッド */
.salary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

/* カード共通 */
.salary-card {
  position: relative;
}
.salary-sublead {
  text-align: center;
  color: #0071bc;
  font-size: var(--fz20);
  font-weight: 700;
  margin: 0 0 10px;
}

/* ラベル（帯＋下向き三角） */
.salary-label {
  font-size: var(--fz35);
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
}

.salary-label > span {
  position: relative;
  display: inline-block;
  padding: 10px 18px;
  color: #fff;
  border-radius: 10px;
}
.salary-label > span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid currentColor;
}

/* 枠ボックス */
.salary-box {
  border: 5px solid #0071bc;
}
.salary-row {
  display: grid;
  grid-template-columns: 22% 1fr;
  align-items: start;
  font-size: var(--fz20);
  font-weight: 600;
  white-space: nowrap;
  padding: 20px 20px 5px 20px;
}

.salary-row + .salary-row {
  padding-top: 0;
}
.salary-desc span {
  font-weight: 300;
}

.salary-divider {
  border-top: 5px solid #0071bc;
}

.salary-notes {
  font-size: var(--fz22);
  font-weight: 600;
  margin-top: 25px;
  text-align: center;
}

.salary-card-fixed .salary-sublead {
  color: #0071bc;
}
.salary-card-fixed .salary-label > span {
  background: #0071bc;
  color: #0071bc;
}

.salary-card-fixed .salary-label > span p {
  color: #fff;
}
.salary-card-fixed .salary-box,
.salary-card-fixed .salary-divider {
  border-color: #0071bc;
  margin-top: 14px;
}

/* 右：成果報酬（ピンク） */
.salary-card-commission .salary-sublead {
  color: #e95377;
}
.salary-card-commission .salary-label > span {
  background: #e95377;
  color: #e95377;
}
.salary-card-commission .salary-label > span p {
  color: #fff;
}
.salary-card-commission .salary-box,
.salary-card-commission .salary-divider {
  border-color: #e95377;
  margin-top: 14px;
}
.salary-card.salary-card-commission .salary-row {
  padding-bottom: 10px;
}
.salary-card.salary-card-commission .salary-row + .salary-row {
  padding-bottom: 30px;
}

/* レスポンシブ */
@media (max-width: 1099px) {
  .salary-section {
    margin: 60px auto;
  }
  .salary-grid {
    gap: 36px;
    grid-template-columns: 1fr;
  }
  .salary-row {
    grid-template-columns: 100px 1fr;
    white-space: unset;
  }
  .salary-box {
    height: auto;
  }
}

@media (max-width: 480px) {
  .salary-section .sp-only {
    display: block;
  }
  .salary-heading {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .salary-box {
    border: 3px solid #0071bc;
    padding: 10px;
  }
  .salary-divider {
    border-width: 3px;
  }
  .salary-row {
    grid-template-columns: 92px 1fr;
    padding: 15px 15px 3px 15px;
  }
  .salary-section {
    padding: 24px 16px;
  }
  .salary-label {
    font-size: 20px;
  }
  .salary-notes {
    font-size: 16px;
  }
  .salary-card-commission .sp-only {
    display: block;
  }
}

.workstyle-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
}

.workstyle-inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
  text-align: center;
}

.workstyle-title {
  display: inline-block;
  font-size: var(--fz40);
  font-weight: 800;
  line-height: 1.5;
  border: 1px solid #333333;
  margin-bottom: 36px;
  padding: 12px 64px;
  text-align: center;
}

/* ブロック */
.workstyle-item + .workstyle-item {
  margin-top: 70px;
}

/* 見出し行 */
.workstyle-head {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 20px;
}
.workstyle-diamond {
  width: 20px;
  height: 20px;
  background: #39b54a;
  transform: rotate(45deg);
  display: inline-block;
  margin-top: 6px;
}
.workstyle-heading {
  font-size: var(--fz35);
  font-weight: 800;
}
.workstyle-pattern {
  font-size: var(--fz22);
  color: #39b54a;
  font-weight: 800;
  margin-right: 8px;
}

/* 見出し下の細い緑ライン */
.workstyle-head::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #39b54a;
}

/* 本文 */
.workstyle-body {
  padding-left: 2em;
}
.workstyle-text {
  font-size: var(--fz25);
  line-height: 1.6;
  text-align: left;
}

.text-strong {
  font-weight: 800;
}
.text-blue-strong {
  color: #0071bc;
  font-weight: 800;
}
.text-pink-strong {
  color: #e95377;
  font-weight: 800;
}

/* 緑の帯 */
.workstyle-banner {
  font-size: var(--fz22);
  font-weight: 800;
  background: #39b54a;
  color: #fff;
  margin-top: 36px;
  padding-block: 8px;
  text-align: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .workstyle-section {
    margin: 40px auto;
    padding: 20px 16px;
  }
  .workstyle-inner {
    max-width: 100%;
    padding: 0;
  }
  .workstyle-heading {
    font-size: 20px;
  }
  .workstyle-title {
    padding: 14px;
  }
  .workstyle-body {
    padding-left: 0;
  }
}
@media only screen and (max-width: 499px) {
  .workstyle-section .pc-only {
    display: none;
  }

  .workstyle-heading {
    display: flex;
    flex-direction: column;
  }
  .workstyle-pattern {
    margin-left: 8px;
    margin-right: 0;
    text-align: left;
  }
  .workstyle-diamond {
    width: 15px;
    height: 15px;
    margin-top: -30px;
  }
  .workstyle-title {
    font-size: 24px;
  }
  .workstyle-head {
    gap: 0;
  }
  .workstyle-head::after {
    width: 100%;
    left: 0;
  }
  .workstyle-text {
    font-size: 18px;
  }
  .workstyle-banner {
    text-align: left;
    margin-top: 30px;
    padding: 8px 12px;
  }
  .workstyle-item + .workstyle-item {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 399px) {
  .workstyle-title {
    font-size: 20px;
  }
  .workstyle-heading {
    font-size: 17px;
    text-align: left;
  }
  .workstyle-text {
    font-size: 17px;
  }
}

/* セクション */
.income-section {
  padding: 60px 0;
}
.income-inner {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: content-box;
}

.income-title {
  font-weight: 800;
  line-height: 1.5;
  font-size: var(--fz40);
  text-align: center;
  margin-bottom: 55px;
}
.income-em {
  color: var(--orange);
  font-weight: 900;
}

/* グリッド */
.income-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* カード */
.income-card {
  text-align: center;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .income-figure {
    max-width: 70%;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .income-section .pc-only {
    display: none;
  }
  .income-section .sp-only {
    display: block;
  }
  .income-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .income-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 499px) {
  .income-section {
    padding: 40px 0;
  }
  .bg-gradation {
    padding-top: 35px;
  }
}
@media only screen and (max-width: 399px) {
  .income-title {
    font-size: 20px;
  }
}

/* =========================
VISION-SECTION
========================= */

.vision-section {
  background: url("../images/vision-sec-bg.png") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding-block: 120px;
}
.vision-inner {
  max-width: 80%;
  margin-left: auto;
  display: grid;
  grid-template-columns: 1fr 47%;
  gap: 32px;
}

/* 左カラム */
.vision-lead {
  font-size: var(--fz30);
  line-height: 1;
  white-space: nowrap;
  margin-bottom: 40px;
}
.vision-brand img {
  max-width: 285px;
}
.vision-rule {
  border: 0;
  border-top: 1px solid #000;
  margin-bottom: 45px;
}

.vision-text {
  font-size: var(--fz20);
  line-height: 2;
  margin-bottom: 30px;
}

.vision-text span {
  font-size: var(--fz22);
  font-weight: bold;
}
.vision-figure {
  margin-top: 100px;
}

@media only screen and (max-width: 1399px) {
  .vision-brand img {
    max-width: 200px;
  }
}
@media (max-width: 1024px) {
  .vision-section {
    padding-block: 80px;
  }
  .vision-inner {
    max-width: 90%;
    grid-template-columns: 1fr 45%;
    gap: 24px;
  }
  .vision-lead {
    font-size: var(--fz26);
    margin-bottom: 30px;
  }
  .vision-text {
    font-size: var(--fz18);
    margin-bottom: 24px;
  }
  .vision-figure {
    margin-top: 60px;
  }
  .vision-rule {
    margin-bottom: 30px;
  }
}

/* スマホ */
@media (max-width: 768px) {
  .vision-section {
    padding-block: 60px;
  }
  .vision-inner {
    grid-template-columns: 1fr;
    max-width: 94%;
  }
  .vision-figure {
    order: -1;
    margin: 0 0 32px;
  }
  .vision-brand img {
    max-width: 175px;
  }
  .vision-lead {
    font-size: var(--fz22);
    margin-bottom: 24px;
  }
  .vision-text {
    font-size: var(--fz16);
    margin-bottom: 20px;
    line-height: 1.8;
  }
}
/* =========================
FEATURES
========================= */
.features {
  background: url("../images/features-bg.png") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding-bottom: 200px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 200px 1rem 0;
  box-sizing: content-box;
}
.features-heading-inner {
  max-width: 1000px;
}
.features-heading {
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.features-lead {
  text-align: center;
}
.features-lead h3 {
  font-size: var(--fz30);
  font-weight: 600;
  color: #1b794e;
  margin-bottom: 40px;
}
.features-lead p {
  font-size: var(--fz25);
  line-height: 2;
}
.features-text {
  font-size: var(--fz20);
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 30px;
}
.features-text-normal {
  font-size: var(--fz20);
  font-weight: normal;
  line-height: 1.75;
  margin-bottom: 24px;
}

.features-text-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fz25);
  font-weight: 600;
  color: #f08001;
  margin-bottom: 24px;
}
.features-text-orange::before,
.features-text-orange::after {
  background-color: #f08001;
  content: "";
  height: 3px;
  width: 75px;
}
.features-text-orange::before {
  margin-right: 15px;
}
.features-text-orange::after {
  margin-left: 15px;
}

.c-green {
  color: #1b794e;
  margin-bottom: 24px;
}

.carriers-inner {
  padding-top: 70px;
}
/* 白いカード本体 */
.carriers-card {
  background: #fff;
  text-align: center;
  box-sizing: border-box;
  margin-bottom: 55px;
  padding: 3rem 2rem;
}

/* アイコン */
.carriers-icon {
  margin-bottom: 28px;
}
.carriers-icon img {
  width: 64px;
}

/* 見出し */
.carriers-heading {
  font-size: var(--fz30);
  font-weight: 800;
  color: #1b794e;
  margin-bottom: 42px;
}

.carriers-strong {
  font-size: var(--fz30);
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 12px;
}
.carriers-sub {
  font-size: var(--fz25);
  line-height: 1.8;
}

.carriers-image {
  max-width: 75%;
  margin: 0 auto;
  margin-block: 50px;
}

.carriers-image:last-child {
  margin-bottom: 0;
}
/* 線 */
.carriers-rule {
  border: 0;
  border-top: 1px solid #39b54a;
  width: 90%;
  margin: 25px auto;
}

.green-diamond {
  font-size: 2rem;
  color: #39b54a;
  vertical-align: middle;
  margin-top: 6px;
  margin-right: 6px;
}
.green-border {
  font-size: var(--fz20);
  white-space: nowrap;
  line-height: 1.4;
  display: flex;
  align-items: center;
  text-align: left;
  max-width: 75%;
  margin: 0 auto;
  border-bottom: 2px solid #39b54a;
  padding-bottom: 8px;
  margin-bottom: 36px;
}

.carriers-text {
  font-size: var(--fz25);
  line-height: 1.8;
}

.guidance-figure img {
  max-height: 640px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .carriers-card {
    padding: 40px 28px;
  }
  .carriers-heading {
    font-size: 24px;
  }
  .carriers-strong {
    font-size: 24px;
  }
  .carriers-sub,
  .carriers-text {
    font-size: 18px;
  }
  .green-border {
    white-space: unset;
  }
}
@media (max-width: 768px) {
  .features {
    padding-bottom: 0;
  }

  .features-inner {
    padding: 75px 1rem 0;
  }
  .carriers-inner {
    padding-top: 40px;
  }
  .features-lead h3 {
    margin-bottom: 20px;
  }
  .features-lead p {
    font-size: 18px;
    line-height: 1.8;
  }

  .carriers-section {
    padding: 12px 0;
  }
  .carriers-card {
    padding: 30px 20px;
  }
  .carriers-icon img {
    width: 50px;
  }
  .carriers-image {
    max-width: 100%;
    margin: 0 auto;
    margin-block: 25px;
  }
  .carriers-heading {
    font-size: 22px;
    margin-bottom: 18px;
  }
  features-text-orange::before,
  .features-text-orange::after {
    background-color: #f08001;
    content: "";
    height: 2.5px;
    width: 20%;
  }

  .carriers-strong {
    font-size: 22px;
  }
  .carriers-sub,
  .carriers-text {
    font-size: 16px;
    line-height: 1.9;
  }
  .carriers-rule {
    width: 92%;
    margin: 20px auto;
    border-top-width: 2px;
  }
  .green-border {
    white-space: unset;
    align-items: start;
    max-width: 100%;
  }
  .green-diamond {
    font-size: 23px;
    margin-top: 0;
  }
}
@media only screen and (max-width: 499px) {
  .features .pc-only {
    display: none;
  }
  .features .sp-only {
    display: block;
  }
  .carriers-text {
    text-align: left;
  }
  .sp-left {
    text-align: left;
  }
}
/* =========================
GUIDANCE-SECTION
========================= */
.guidance-section {
  background: url("../images/moon-bg.png") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
  padding-block: 150px;
}

.guidance-inner {
  max-width: 100%;
  margin-right: auto;
  display: grid;
  grid-template-columns: 50% 46%;
  gap: 12px;
  align-items: start;
}

.guidance-title {
  font-size: var(--fz40);
  font-weight: 600;
  color: #1b794e;
  margin-bottom: 54px;
  text-align: center;
}

.guidance-box p {
  font-size: var(--fz25);
  line-height: 1.8;
  margin-bottom: 20px;
}
.guidance-box p:last-child {
  margin-bottom: 25px;
}

.guidance-label {
  display: inline-block;
  background: #808080;
  font-size: var(--fz25);
  line-height: 1.8;
  color: #fff;
  padding: 8px;
  margin: 16px 0 36px;
}

.guidance-box .highlight-orange {
  display: inline-block;
  background: #fbaf3b;
  font-weight: 600;
  white-space: nowrap;
  padding: 4px;
  margin-block: 0;
}
.guidance-box .highlight-orange span {
  display: none;
}
.guidance-box .highlight-orange-middle {
  padding-top: 0;
  margin-bottom: 25px;
}
.guidance-box .highlight-orange-bottom {
  margin-bottom: 36px;
}

.guidance-box .guidance-text {
  margin-bottom: 0;
}

.guidance-note {
  font-size: var(--fz15);
  line-height: 1.3;
}
@media only screen and (max-width: 1199px) {
  .guidance-label {
    margin: 0 0 24px;
  }
  .guidance-box .highlight-orange {
    white-space: unset;
    margin-bottom: 20px;
  }
  .guidance-box .highlight-orange span {
    display: inline;
  }
  .guidance-box .highlight-orange-middle {
    display: none;
  }
}
@media only screen and (max-width: 999px) {
  .guidance-inner {
    max-width: 90%;
  }
  .guidance-box .pc-only {
    display: none;
  }
}
/* スマホ対応 */
@media (max-width: 899px) {
  .guidance-inner {
    max-width: 100%;
    padding: 0 1rem;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .guidance-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .guidance-label {
    display: block;
    text-align: center;
    margin: 0 auto 20px;
  }
  .guidance-section {
    padding: 0;
  }
}
@media only screen and (max-width: 499px) {
  .guidance-box p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .guidance-box .highlight-orange {
    margin-bottom: 15px;
    padding: 4px;
  }
}

/* =================================
  SECTION WRAPPER
================================= */

.philosophy-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}

/* =================================
  1) 図（吹き出し）
================================= */
.career-figure {
  margin-top: 150px;
  margin-bottom: 64px;
}

/* =================================
  2) 研修風景写真
================================= */
.training-figure {
  margin-bottom: 96px;
}
/* =================================
  3) 企業理念タイトルバッジ
================================= */
.philosophy-head {
  text-align: left;
  margin-bottom: 50px;
}

.badge-corp {
  display: inline-block;
  min-width: 200px;
  position: relative;
  background: #39b54a;
  color: #fff;
  font-size: var(--fz20);
  font-weight: bold;
  padding: 8px 16px;
  text-align: center;
}

.badge-corp::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  width: 100%;
  height: 100%;
  background: #1b794e;
  z-index: -1;
}
/* =================================
  STATEMENTS（M/V/V）
================================= */

.statement-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 10px;
}
.statement-title {
  font-size: var(--fz25);
  font-weight: 600;
  line-height: 1.2;
}
.statement-border {
  border: none;
  border-top: 1px solid #f08001;
  width: 100%;
  margin: 10px 0;
}
.statement-tag {
  font-size: var(--fz25);
  font-family: "FuturaStd Condensed";
  font-weight: bold;
  color: #fbaf3b;
  letter-spacing: 0.15em;
}

/* 本文 */
.statement-text,
.statement-list {
  font-size: var(--fz20);
  line-height: 2.5;
  padding: 28px 28px 60px;
}
.statement-text span,
.statement-list span {
  font-weight: bold;
}

.statement-list li {
  padding-left: 1em;
  text-indent: -1em;
}
@media only screen and (max-width: 899px) {
  section.philosophy-section {
    margin-top: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .philosophy-head {
    margin-bottom: 40px;
  }
  .training-figure {
    margin-bottom: 50px;
  }
  .statement-text,
  .statement-list {
    padding: 1rem 0.5rem;
    line-height: 2;
  }
  .statement-list li {
    margin-bottom: 12px;
  }
  .career-figure {
    margin-top: 64px;
    margin-bottom: 32px;
  }
}

@media (max-width: 640px) {
  .badge-corp {
    padding: 6px 12px;
  }
  .statement-head {
    gap: 12px;
    margin-bottom: 4px;
  }
  .statement-border {
    margin: 0;
  }
}

.recruit-message {
  max-width: 1000px;
  margin: 30px auto;
}

.message-heading {
  max-width: 395px;
}

/* 本文ボックス */
.message-box {
  margin-top: -25px;
  background: #fff;
  border: 0.5px solid #eeeeee;
  padding: 2rem;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.5);
}

.message-box p {
  font-size: var(--fz20);
  line-height: 1.5;
  margin-bottom: 30px;
}
.message-box p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .message-box {
    padding: 1.5rem;
  }
  .message-box p {
    margin-bottom: 15px;
  }
  .message-heading {
    max-width: 70%;
  }
}

/* =========================
ENTRY
========================= */

.entry-inner {
  max-width: 1000px;
  margin: 140px auto 0;
  padding: 0 1rem;
  box-sizing: content-box;
}

.entry-heading {
  max-width: 900px;
  margin: 0 auto;
}
.entry-steps {
  margin-top: 100px;
}

.entry-step {
  max-width: 75%;
  margin: 0px auto 12px;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 12px;
}
.entry-step-left {
  width: 90%;
  padding-bottom: 1rem;
  border-bottom: 1px solid #39b54a;
}
.entry-step-left__content {
  display: flex;
  align-items: center;
  gap: 30px;
}
.entry-step-label {
  font-size: var(--fz30);
  font-family: "Helvetica Neue", Helvetica, Arial, "Hiragino Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #1b794e;
}
.entry-step-text {
  font-size: var(--fz25);
  font-family: "KozGoPr6N";
}

.entry-step-icon img {
  max-width: 100px;
}

@media only screen and (max-width: 768px) {
  .entry-step {
    max-width: 90%;
  }
  .entry-step-icon img {
    max-width: 64px;
  }
  .entry-step-left__content {
    gap: 12px;
  }
  .entry-steps {
    margin-top: 60px;
  }
}
@media only screen and (max-width: 499px) {
  .entry-inner {
    margin: 90px auto 0;
  }
  .entry-step {
    max-width: 95%;
  }
  .entry-step-left {
    padding-bottom: 0.5rem;
  }
  .entry-step-text {
    font-size: 16px;
  }
  .entry-step-left__content {
    flex-direction: column;
    align-items: start;
    gap: 0;
  }
  .entry-step-icon img {
    max-width: 60px;
  }
  .entry-steps {
    margin-top: 45px;
  }
}
@media only screen and (max-width: 399px) {
  .entry-step-text {
    font-size: 16px;
  }
}

/* =========================
WALFARE
========================= */

.welfare {
  margin-top: 180px;
}

.welfare-hero {
  position: relative;
  z-index: 1;
}

.welfare-bg {
  background: url("../images/walfare-bg.png") 0 0 no-repeat;
  -moz-background-size: cover;
  background-size: cover;
}
.welfare-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}
.welfare-heading {
  position: absolute;
  max-width: 900px;
  top: 65%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* =========================
BENEFITS
========================= */
.benefits {
  background: #1b794e;
  padding-block: 60px;
  color: #fff;
  font-size: var(--fz20);
  line-height: 2.5;
  margin-top: -7%;
  position: relative;
  z-index: 10;
}

.benefits-list {
  width: 90%;
  margin: 0 auto;
}
.benefits-list li {
  border-bottom: 1px solid #fff;
  padding: 16px 0 10px;
}

.benefits-list-last {
  margin-block: 72px;
}
.benefits-list-last li:first-child {
  border-bottom: none;
}
.workplace {
  width: 90%;
  margin: 0 auto;
  margin-top: 30px;
}
.workplace p {
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}
.workplace ul {
  margin-top: 20px;
}
.workplace li {
  margin-bottom: 20px;
  line-height: 1.6;
}
.welfare-branch-hero {
  margin-top: 90px;
}
@media only screen and (max-width: 1023px) {
  .benefits {
    width: 75%;
    margin: 0 auto;
    margin-top: 24px;
    padding-block: 50px;
  }
  .welfare-heading {
    width: 95%;
  }
  .benefits-list-last {
    margin-block: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .benefits {
    width: 90%;
    padding-block: 30px;
  }
  .benefits-list-last {
    margin-block: 30px;
  }
  .welfare {
    margin-top: 120px;
  }
  .welfare-branch-hero {
    margin-top: 40px;
    padding: 0 1rem;
  }
}
@media only screen and (max-width: 499px) {
  .benefits {
    width: 100%;
    padding-block: 12px;
  }
  .welfare {
    margin-top: 90px;
  }
  .benefits-list li {
    font-size: 14px;
    padding: 12px 0 0;
  }
  .benefits-list-last {
    margin-block: 15px;
  }
  .workplace {
    font-size: 14px;
  }
  .benefits-list-last li {
    padding-block: 0;
  }
  .workplace p {
    padding-bottom: 0;
  }
}
/* =========================
RECRUIMENT
========================= */
.recruitment {
  background: #d9eeec;
  margin-top: 90px;
  padding-top: 125px;
  padding-bottom: 70px;
}
.recruitment-heading {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: content-box;
}
.recruitment-inner {
  padding: 0 1rem;
}

.recruit-block {
  background-color: #fff;
  max-width: 1000px;
  margin: 85px auto 0;
  padding-bottom: 70px;
}
.job-section {
  max-width: 90%;
  margin: 0 auto;
  padding-top: 20px;
}
.job-title {
  background-color: #1b794e;
  font-size: var(--fz20);
  font-weight: 600;
  color: #fff;
  padding: 12px;
}
.job-content {
  padding-top: 30px;
}
.job-content p {
  font-size: var(--fz20);
  line-height: 1.75;
  margin-bottom: 40px;
}
h4.job-sub {
  font-weight: normal;
}
h4.job-sub-bottom {
  margin-top: 30px;
}

.recruit-cta-block {
  max-width: 430px;
  margin: 60px auto;
  text-align: center;
}

.recruitment-salary-label {
  font-size: var(--fz20);
}
.recruitment-salary-row {
  font-size: 16px;
}
.recruitment-salary-row-note {
  font-size: 16px;
}
.recruitment-salary-grid {
  gap: 24px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.recruitment-salary-sublead {
  font-size: 14px;
}
.recruitment-salary-row + .recruitment-salary-row {
  margin-bottom: 1rem;
}
.recruitment-salary-grid .salary-card.salary-card-commission .salary-row + .salary-row {
  padding-bottom: 26px;
}
.recruitment .salary-notes {
  font-size: 18px;
  margin-bottom: 30px;
}

.income-results {
  max-width: 550px;
  margin-right: auto;
  margin-bottom: 1rem;
}

.income-results__title {
  font-size: var(--fz20);
  font-weight: 600;
  color: #fff;
  text-align: center;
  background: #b7c6d6;
  padding: 1rem;
}

.income-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 2px solid #b7c6d6;
  border-top: 0;
  overflow: hidden;
  table-layout: fixed;
}

.income-table thead th {
  font-size: var(--fz18);
  text-align: center;
  padding: 12px;
  border-right: 2px solid #b7c6d6;
}

.income-table tbody td {
  font-size: var(--fz18);
  text-align: center;
  padding: 12px;
  border-top: 2px solid #b7c6d6;
  border-right: 2px solid #b7c6d6;
}
.income-table thead th:last-child,
.income-table tbody td:last-child {
  border-right: 0;
}

@media only screen and (max-width: 1023px) {
  .recruitment-salary-grid {
    grid-template-columns: 1fr;
  }
  .recruitment-salary-row + .recruitment-salary-row {
    margin-bottom: 3rem;
  }
}
@media only screen and (max-width: 768px) {
  .recruitment {
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 35px;
  }
  .recruit-block {
    margin: 45px auto 0;
    padding-bottom: 35px;
  }
  .job-title {
    font-size: 16px;
    padding: 8px;
  }
  .job-content {
    padding-top: 20px;
  }
  .job-section {
    padding-top: 10px;
  }
  .job-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .job-list li {
    text-indent: -1em;
    padding-left: 1em;
  }
  .recruit-cta-block {
    max-width: 70%;
    margin: 40px auto;
  }
  .recruitment-salary-grid {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .recruitment-salary-row + .recruitment-salary-row {
    margin-bottom: 1rem;
  }
  .recruitment .salary-notes {
    font-size: 14px;
    margin: 10px 0 30px;
  }
  .income-results__title {
    font-size: 16px;
    padding: 0.6rem;
  }
  .income-table thead th,
  .income-table tbody td {
    font-size: 14px;
    padding: 8px;
  }
}
@media only screen and (max-width: 499px) {
  .income-results__title {
    padding: 0.3rem;
  }
  .income-table thead th,
  .income-table tbody td {
    padding: 4px;
  }
}
/* =========================
ENTRY NOTE
========================= */
.entry {
  margin-top: 150px;
}
.entry-note {
  padding-block: 75px;
}
.entry-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.entry-note-title {
  font-size: var(--fz30);
  font-weight: 800;
  margin-bottom: 25px;
  padding-bottom: 14px;
  border-bottom: 1px solid #231815;
}
.entry-note-text {
  padding-top: 32px;
}
.entry-note-text p {
  font-size: var(--fz20);
  line-height: 1.5;
  color: #231815;
  text-align: left;
  margin-bottom: 32px;
}
@media only screen and (max-width: 768px) {
  .entry {
    margin-top: 75px;
  }
}
/* =========================
FOOTER
========================= */
.site-footer {
  background: #f2f2f2;
  padding-block: 64px;
}
.footer-inner {
  padding: 0 1rem;
  text-align: center;
}
.footer-logo {
  display: inline-block;
  width: clamp(170px, 24vw, 250px);
  height: auto;
  margin-bottom: 18px;
}
.footer-sep {
  width: min(520px, 80%);
  margin: 12px auto 24px;
  border: 0;
  border-top: 1px solid #000000;
}
.footer-address {
  font-size: var(--fz25);
  font-family: "KozGoPr6N";
  font-style: normal;
  line-height: 1.75;
  letter-spacing: 0;
  color: #000000;
}

@media (max-width: 768px) {
  .site-footer {
    padding-block: 32px;
  }
  .entry-note {
    padding-block: 35px;
  }
  .entry-note-text {
    padding-top: 24px;
  }
  .entry-note-text p {
    font-size: 15px;
    margin-bottom: 24px;
  }
  .entry-note-title {
    font-size: 22px;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
  .footer-logo {
    margin-bottom: 8px;
  }
  .footer-sep {
    margin: 8px auto 12px;
  }
  .footer-address {
    font-size: 15px;
  }
}
@media (max-width: 399px) {
  .footer-address {
    font-size: 13px;
  }
}

/* =========================
TOPへ戻るボタン
========================= */

#page-top a {
  display: block;
  width: 64px;
  height: 64px;
  background: url("../images/top-btn.png") no-repeat center;
  background-size: contain;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*上に上がる動き*/

#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*下に下がる動き*/

#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
@media only screen and (max-width: 768px) {
  #page-top {
    right: 10px;
    bottom: 10px;
  }
  #page-top a {
    width: 48px;
    height: 48px;
  }
}
