@charset "UTF-8";
/* ==========================================================================
   Foundation
   ========================================================================== */
:root {
  --font-base: "Noto Sans JP", sans-serif;
}

.f-en {
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}

.mx1300 {
  max-width: 1300px;
}

/* スマホのみ表示 */
.br-sp {
  display: inline;
}
@media (min-width: 767.1px) {
  .br-sp {
    display: none;
  }
}

/* PCのみ表示 */
.br-pc {
  display: none;
}
@media (min-width: 767.1px) {
  .br-pc {
    display: inline;
  }
}

/* --------------------------------------------------
   reset.scss
   Modern Reset（destyle + sanitize + tailwind の良いとこ取り）
-------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@media (min-width: 767.1px) {
  html {
    scroll-padding-top: 200px;
  }
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  background-color: #fff;
  color: #000;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dd {
  margin-left: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  background-color: #f8fafc;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-size: clamp(20px, 20px + (36 - 20) * (100vw - 320px) / 960, 36px);
  font-weight: 700;
  line-height: 1.4;
}

h2 {
  font-size: clamp(18px, 18px + (30 - 18) * (100vw - 320px) / 960, 30px);
  font-weight: 700;
  line-height: 1.5;
}

h3 {
  font-size: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / 960, 24px);
  font-weight: 700;
  line-height: 1.6;
}

p {
  line-height: 1.8;
}

.opacty {
  opacity: 0.8;
}

.container {
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .container {
    padding-inline: 5vw;
  }
}

/* ==========================================================================
   Layout
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  z-index: 100;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 64px;
}
@media (min-width: 767.1px) {
  .header__inner {
    height: 72px;
    gap: 40px;
  }
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}
.header__logo-link:hover {
  opacity: 0.8;
}
.header__logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (min-width: 767.1px) {
  .header__logo-text {
    font-size: 26px;
  }
}
.header__logo-tagline {
  display: none;
  font-size: 10px;
  line-height: 1.6;
  color: #6b7280;
  border-left: 1px solid #e5e7eb;
  padding-left: 10px;
}
@media (min-width: 1024px) {
  .header__logo-tagline {
    display: block;
  }
}
.header__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 767.1px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.header__nav-link {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  border-radius: 4px;
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .header__nav-link {
    font-size: 15px;
    padding: 8px 14px;
  }
}
.header__nav-link:hover {
  color: #1e3a8a;
  background-color: rgba(30, 58, 138, 0.06);
}
.header__search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-left: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 50%;
  color: #111827;
  cursor: pointer;
  transition: color 0.2s, background-color 0.2s;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .header__search {
    margin-left: 0;
  }
}
.header__search:hover {
  color: #1e3a8a;
  background-color: rgba(30, 58, 138, 0.06);
}
.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.header__drawer {
  display: block;
  overflow: hidden;
  max-height: 0;
  background-color: #fff;
  border-top: 1px solid #e5e7eb;
  transition: max-height 0.3s ease;
}
@media (min-width: 767.1px) {
  .header__drawer {
    display: none;
  }
}
.header__drawer.is-open {
  max-height: 400px;
}
.header__drawer-list {
  list-style: none;
  padding: 8px 0;
}
.header__drawer-link {
  display: block;
  padding: 14px 5vw;
  font-size: 15px;
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  border-bottom: 1px solid #e5e7eb;
  transition: color 0.2s;
}
.header__drawer-link:hover {
  color: #1e3a8a;
}

.footer {
  background-color: #0f172a;
  color: #94a3b8;
}
.footer__main {
  padding-block: 40px 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 20px;
}
@media (min-width: 767.1px) {
  .footer__grid {
    grid-template-columns: 220px 1fr 1fr 1fr;
    gap: 0 40px;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    grid-template-columns: 240px 1fr 1fr 1fr;
    gap: 0 56px;
  }
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__col--brand {
  grid-column: span 2;
}
@media (min-width: 767.1px) {
  .footer__col--brand {
    grid-column: span 1;
  }
}
.footer__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #f1f5f9;
  text-decoration: none;
  letter-spacing: -0.01em;
  line-height: 1;
}
@media (min-width: 767.1px) {
  .footer__logo {
    font-size: 24px;
  }
}
.footer__logo-colon {
  color: #1e3a8a;
}
.footer__tagline {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #94a3b8;
  line-height: 1.8;
  margin: 0;
}
.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #94a3b8;
  transition: color 0.18s;
}
.footer__sns-link svg {
  width: 18px;
  height: 18px;
}
.footer__sns-link:hover {
  color: #f1f5f9;
}
.footer__col-title {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  color: #f1f5f9;
  margin: 0;
  letter-spacing: 0.04em;
}
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.18s;
}
.footer__link:hover {
  color: #f1f5f9;
}
.footer__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 100px;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #94a3b8;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.footer__tag:hover {
  border-color: #f1f5f9;
  color: #f1f5f9;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 14px;
}
.footer__bottom .footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.footer__copy {
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.footer__page-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #94a3b8;
  cursor: pointer;
  padding: 0;
  transition: color 0.18s;
}
.footer__page-top:hover {
  color: #f1f5f9;
}
.footer__page-top:hover .footer__page-top-icon {
  border-color: #f1f5f9;
}
.footer__page-top-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(148, 163, 184, 0.35);
  border-radius: 50%;
  transition: border-color 0.18s;
}
.footer__page-top-icon svg {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   Components
   ========================================================================== */
.more__btn {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.more__btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid #1e3a8a;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color 0.2s, color 0.2s;
}
@media (min-width: 767.1px) {
  .more__btn-link {
    font-size: 15px;
    padding: 15px 48px;
  }
}
.more__btn-link:hover {
  background-color: #1e3a8a;
  color: #fff;
}

/* ==========================================================================
   Project (Page-specific)
   ========================================================================== */
.sec__header {
  position: relative;
}
.sec__header-en {
  font-size: clamp(60px, 60px + (100 - 60) * (100vw - 320px) / 960, 100px);
  font-weight: 700;
  line-height: 1;
  color: #f2f2f2;
  position: absolute;
  right: 0;
  top: 20%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (min-width: 767.1px) {
  .sec__header-en {
    top: 50%;
  }
}

.worries {
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 320px) / 960, 80px);
}
.worries__header {
  margin-bottom: clamp(28px, 28px + (40 - 28) * (100vw - 320px) / 960, 40px);
}
.worries__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.worries__title-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #6b7280;
}
@media (min-width: 767.1px) {
  .worries__title-icon {
    width: 26px;
    height: 26px;
  }
}
.worries__lead {
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}
.worries__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 767.1px) {
  .worries__cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.worries__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 12px 24px;
  border-radius: 15px;
  height: 100%;
  text-decoration: none;
  color: #111827;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background: #fff !important;
}
@media (min-width: 767.1px) {
  .worries__card {
    padding: 36px 24px 28px;
  }
}
.worries__card:hover {
  transform: translateY(-10px);
}
.worries__card--career {
  background-color: #EFF6FF;
}
.worries__card--career .worries__card-title {
  color: #1e3a8a;
}
.worries__card--career .worries__card-icon {
  color: #1e3a8a;
}
.worries__card--career .worries__card-btn {
  background-color: #1e3a8a;
}
.worries__card--sidejob {
  background-color: #FFF7ED;
}
.worries__card--sidejob .worries__card-title {
  color: #c2410c;
}
.worries__card--sidejob .worries__card-icon {
  color: #c2410c;
}
.worries__card--sidejob .worries__card-btn {
  background-color: #c2410c;
}
.worries__card--money {
  background-color: #F0FDF4;
}
.worries__card--money .worries__card-title {
  color: #16a34a;
}
.worries__card--money .worries__card-icon {
  color: #16a34a;
}
.worries__card--money .worries__card-btn {
  background-color: #16a34a;
}
.worries__card--choose {
  background-color: #F5F3FF;
}
.worries__card--choose .worries__card-title {
  color: #7c3aed;
}
.worries__card--choose .worries__card-icon {
  color: #7c3aed;
}
.worries__card--choose .worries__card-btn {
  background-color: #7c3aed;
}
.worries__card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.worries__card-icon svg {
  width: 100%;
  height: 100%;
}
.worries__card-title {
  font-size: clamp(15px, 15px + (18 - 15) * (100vw - 320px) / 960, 18px);
  font-weight: 700;
  line-height: 1.55;
  margin: 0 0 12px;
}
.worries__card-body {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  line-height: 1.8;
  flex: 1;
  margin: 0 0 20px;
}
.worries__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  color: #fff;
  flex-shrink: 0;
  margin-top: auto;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media (min-width: 767.1px) {
  .worries__card-btn {
    width: 40px;
    height: 40px;
  }
}
.worries__card-btn svg {
  width: 18px;
  height: 18px;
}

.about-editor {
  padding-block: clamp(32px, 32px + (48 - 32) * (100vw - 320px) / 960, 48px);
}
.about-editor__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 20px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
}
@media (min-width: 767.1px) {
  .about-editor__card {
    flex-direction: row;
    align-items: center;
    gap: 28px;
    padding: 24px 32px;
  }
}
.about-editor__icon-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .about-editor__icon-wrap {
    width: 80px;
  }
}
.about-editor__icon img {
  width: 40px;
  height: 40px;
}
@media (min-width: 767.1px) {
  .about-editor__icon img {
    width: 70px;
    height: 70px;
  }
}
.about-editor__icon-label {
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  text-align: center;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.about-editor__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.about-editor__title {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  color: #1e3a8a;
  margin: 0;
  line-height: 1.4;
}
.about-editor__desc {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  margin: 0;
}
.about-editor__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}
@media (min-width: 767.1px) {
  .about-editor__btns {
    min-width: 176px;
  }
}
.about-editor__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 16px;
  border: 1.5px solid #1e3a8a;
  border-radius: 8px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  transition: background-color 0.18s, color 0.18s;
  white-space: nowrap;
}
.about-editor__btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.about-editor__btn:hover {
  background-color: #1e3a8a;
  color: #fff;
}

.latest {
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / 960, 64px);
}
.latest__header {
  margin-bottom: clamp(16px, 16px + (24 - 16) * (100vw - 320px) / 960, 24px);
}
.latest__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0;
}
.latest__title-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #6b7280;
}
@media (min-width: 767.1px) {
  .latest__title-icon {
    width: 22px;
    height: 22px;
  }
}
.latest__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 767.1px) {
  .latest__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.latest__card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.latest__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
}
.latest__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.latest__link:hover img {
  transform: scale(1.04);
}
.latest__img {
  position: relative;
  aspect-ratio: 1000/671;
  overflow: hidden;
}
.latest__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.latest__cat {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
.latest__cat--career {
  background-color: #1e3a8a;
}
.latest__cat--sidejob {
  background-color: #c2410c;
}
.latest__cat--money {
  background-color: #16a34a;
}
.latest__cat--gadget {
  background-color: #7c3aed;
}
.latest__body {
  padding: 12px 14px 16px;
}
.latest__card-title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  line-height: 1.6;
  color: #111827;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest__date {
  display: block;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #6b7280;
  letter-spacing: 0.04em;
}
.latest__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}
.latest__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  transition: opacity 0.18s;
}
.latest__more:hover {
  opacity: 0.7;
}

.compare {
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 320px) / 960, 80px);
}
.compare__header {
  margin-bottom: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / 960, 32px);
}
.compare__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.compare__title-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #1e3a8a;
}
@media (min-width: 767.1px) {
  .compare__title-icon {
    width: 24px;
    height: 24px;
  }
}
.compare__lead {
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}
.compare__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 767.1px) {
  .compare__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
.compare__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #111827;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}
.compare__card:hover {
  transform: translateY(-10px);
}
.compare__card--career .compare__icon {
  background-color: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
}
.compare__card--career .compare__card-title {
  color: #1e3a8a;
}
.compare__card--career .compare__btn {
  background-color: #1e3a8a;
}
.compare__card--sidejob .compare__icon {
  background-color: rgba(194, 65, 12, 0.08);
  color: #c2410c;
}
.compare__card--sidejob .compare__card-title {
  color: #c2410c;
}
.compare__card--sidejob .compare__axis svg {
  color: #c2410c;
}
.compare__card--sidejob .compare__btn {
  background-color: #c2410c;
}
.compare__card--money .compare__icon {
  background-color: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}
.compare__card--money .compare__card-title {
  color: #16a34a;
}
.compare__card--money .compare__axis svg {
  color: #16a34a;
}
.compare__card--money .compare__btn {
  background-color: #15803d;
}
.compare__card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 20px 20px;
  flex: 1;
}
@media (min-width: 767.1px) {
  .compare__card-top {
    padding: 28px 24px 20px;
  }
}
.compare__icon {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.compare__icon svg {
  width: 40px;
  height: 40px;
}
@media (min-width: 767.1px) {
  .compare__icon {
    width: 84px;
    height: 84px;
  }
  .compare__icon svg {
    width: 44px;
    height: 44px;
  }
}
.compare__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.compare__card-title {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.compare__desc {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  margin: 0;
}
.compare__axis {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #111827;
  margin: 0;
}
.compare__axis svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}
.compare__pr {
  font-size: clamp(12px, 12px + (12 - 12) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  text-align: right;
}
.compare__btn {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  padding: 7px 20px 9px;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  color: #fff;
  text-align: right;
}

.pickup {
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 320px) / 960, 80px);
}
.pickup__header {
  margin-bottom: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / 960, 32px);
}
.pickup__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.pickup__title-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #1e3a8a;
}
@media (min-width: 767.1px) {
  .pickup__title-icon {
    width: 24px;
    height: 24px;
  }
}
.pickup__lead {
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}
.pickup__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 767.1px) {
  .pickup__grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.pickup__link {
  display: block;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.pickup__cat {
  display: inline-block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: clamp(12px, 12px + (12 - 12) * (100vw - 320px) / 960, 12px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
.pickup__cat--career {
  background-color: #1e3a8a;
}
.pickup__cat--sidejob {
  background-color: #c2410c;
}
.pickup__cat--money {
  background-color: #16a34a;
}
.pickup__cat--gadget {
  background-color: #7c3aed;
}
.pickup__num {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background-color: #4b5563;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
}
.pickup__num--1 {
  background-color: #f59e0b;
  width: 32px;
  height: 32px;
  font-size: 16px;
}
.pickup__date {
  display: block;
  margin-top: 8px;
  letter-spacing: 0.04em;
}
.pickup__main {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}
.pickup__main .pickup__link {
  display: flex;
  flex-direction: column;
}
.pickup__main:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.pickup__main:hover img {
  transform: scale(1.03);
}
.pickup__main-img {
  position: relative;
  aspect-ratio: 1000/671;
  overflow: hidden;
}
@media (min-width: 767.1px) {
  .pickup__main-img {
    flex: 1;
  }
}
.pickup__main-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.pickup__main-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 767.1px) {
  .pickup__main-body {
    padding: 24px;
  }
}
.pickup__main-title {
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
  margin: 0;
}
.pickup__main-desc {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pickup__sub {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (min-width: 767.1px) {
  .pickup__sub {
    gap: 20px;
  }
}
.pickup__card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.pickup__card .pickup__link {
  display: flex;
  flex-direction: column;
}
.pickup__card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.pickup__card:hover img {
  transform: scale(1.03);
}
.pickup__card-img {
  position: relative;
  aspect-ratio: 1000/671;
  overflow: hidden;
}
.pickup__card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.pickup__card-body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
@media (min-width: 767.1px) {
  .pickup__card-body {
    padding: 14px 16px 18px;
  }
}
.pickup__card-title {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  line-height: 1.55;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pickup__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.pickup__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border: 1.5px solid #1e3a8a;
  border-radius: 100px;
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  color: #1e3a8a;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background-color 0.2s, color 0.2s;
}
.pickup__more:hover {
  background-color: #1e3a8a;
  color: #fff;
}

.tagsec {
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 320px) / 960, 80px);
}
.tagsec__header {
  margin-bottom: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / 960, 32px);
}
.tagsec__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}
.tagsec__title-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #6b7280;
}
@media (min-width: 767.1px) {
  .tagsec__title-icon {
    width: 24px;
    height: 24px;
  }
}
.tagsec__lead {
  line-height: 1.7;
  margin: 0;
  padding-left: 40px;
}
.tagsec__groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  padding: 20px 25px 30px;
}
@media (min-width: 767.1px) {
  .tagsec__groups {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 30px;
  }
  .tagsec__groups > * + * {
    border-left: 1px solid #e5e7eb;
    padding-left: 32px;
  }
  .tagsec__groups > *:not(:last-child) {
    padding-right: 32px;
  }
}
.tagsec__group-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  margin: 0 0 12px;
}
@media (min-width: 767.1px) {
  .tagsec__group-label {
    margin: 0 0 14px;
  }
}
.tagsec__group-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.tagsec__group--career .tagsec__group-label {
  color: #1e3a8a;
}
.tagsec__group--career .tagsec__group-dot {
  background-color: #1e3a8a;
}
.tagsec__group--career .tagsec__tag {
  border-color: rgba(30, 58, 138, 0.2);
  color: #1e3a8a;
}
.tagsec__group--career .tagsec__tag:hover {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}
.tagsec__group--sidejob .tagsec__group-label {
  color: #c2410c;
}
.tagsec__group--sidejob .tagsec__group-dot {
  background-color: #c2410c;
}
.tagsec__group--sidejob .tagsec__tag {
  border-color: rgba(194, 65, 12, 0.2);
  color: #c2410c;
}
.tagsec__group--sidejob .tagsec__tag:hover {
  background-color: #c2410c;
  color: #fff;
  border-color: #c2410c;
}
.tagsec__group--money .tagsec__group-label {
  color: #16a34a;
}
.tagsec__group--money .tagsec__group-dot {
  background-color: #16a34a;
}
.tagsec__group--money .tagsec__tag {
  border-color: rgba(22, 163, 74, 0.2);
  color: #16a34a;
}
.tagsec__group--money .tagsec__tag:hover {
  background-color: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.tagsec__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tagsec__tag {
  display: inline-block;
  padding: 4px 14px 5px;
  border: 1.5px solid;
  border-radius: 100px;
  font-size: clamp(11px, 11px + (13 - 11) * (100vw - 320px) / 960, 13px);
  line-height: 1;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}
@media (min-width: 767.1px) {
  .tagsec__tag {
    padding: 5px 16px 6px;
  }
}
.tagsec__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}
.tagsec__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 600;
  color: #1e3a8a;
  text-decoration: none;
  transition: opacity 0.18s;
}
.tagsec__more:hover {
  opacity: 0.7;
}

.fv {
  padding-top: 40px;
  padding-bottom: 56px;
}
.fv__header {
  margin-bottom: 20px;
}
.fv__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.04em;
}
.fv__label-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #1e3a8a;
  flex-shrink: 0;
}
.fv__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 20px;
  padding-bottom: 28px;
}
.fv__track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fv__slide {
  width: 82vw;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.96);
}
.fv__slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.14);
}
@media (min-width: 767.1px) {
  .fv__slide {
    width: 60vw;
  }
}
@media (min-width: 1024px) {
  .fv__slide {
    width: clamp(600px, 58vw, 840px);
  }
}
.fv__slide-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
@media (min-width: 767.1px) {
  .fv__slide-link {
    flex-direction: row;
  }
}
.fv__slide-img {
  flex-shrink: 0;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media (min-width: 767.1px) {
  .fv__slide-img {
    width: 50%;
    aspect-ratio: auto;
    height: 340px;
  }
}
@media (min-width: 1024px) {
  .fv__slide-img {
    height: 380px;
  }
}
.fv__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}
.fv__slide:hover .fv__slide-img img {
  transform: scale(1.03);
}
.fv__slide-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  background-color: #fff;
}
@media (min-width: 767.1px) {
  .fv__slide-body {
    width: 50%;
    padding: 36px 40px;
    gap: 20px;
  }
}
.fv__slide-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fv__slide-date {
  font-size: 12px;
  color: #6b7280;
  letter-spacing: 0.04em;
}
@media (min-width: 767.1px) {
  .fv__slide-date {
    font-size: 13px;
  }
}
.fv__slide-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
}
.fv__slide-cat--career {
  background-color: #1e3a8a;
}
.fv__slide-cat--sidejob {
  background-color: #c2410c;
}
.fv__slide-cat--money {
  background-color: #16a34a;
}
.fv__slide-cat--gadget {
  background-color: #7c3aed;
}
.fv__slide-title {
  font-size: clamp(18px, 18px + (26 - 18) * (100vw - 320px) / 960, 26px);
  font-weight: 700;
  line-height: 1.5;
  color: #111827;
  margin: 0;
}
.fv__slide-desc {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fv__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  color: #1e3a8a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, box-shadow 0.2s;
  z-index: 2;
}
.fv__arrow:hover {
  background-color: #1e3a8a;
  color: #fff;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}
.fv__arrow:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.fv__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.fv__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.25s, width 0.25s;
}
.fv__dot.is-active {
  background-color: #1e3a8a;
  width: 24px;
  border-radius: 4px;
}
.fv__dot:hover:not(.is-active) {
  background-color: #9ca3af;
}

.breadcrumb {
  background-color: #f8fafc;
}

.breadcrumb__inner {
  padding-block: 10px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin-right: 4px;
  color: #e5e7eb;
}
.breadcrumb__item--current {
  color: #111827;
  font-weight: 500;
}

.breadcrumb__link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb__link:hover {
  color: #1e3a8a;
}

.article-page {
  padding-block: clamp(24px, 24px + (48 - 24) * (100vw - 320px) / 960, 48px);
}

.article-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .article-wrap {
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
  }
}
.article-wrap > * {
  min-width: 0;
}

.article__header {
  margin-bottom: 24px;
}

.article__cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.article__cat--career {
  background-color: #1e3a8a;
}
.article__cat--sidejob {
  background-color: #c2410c;
}
.article__cat--money {
  background-color: #16a34a;
}
.article__cat--gadget {
  background-color: #7c3aed;
}

.article__title {
  font-size: clamp(22px, 22px + (32 - 22) * (100vw - 320px) / 960, 32px);
  font-weight: 700;
  line-height: 1.45;
  color: #111827;
  margin: 0 0 16px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}

.article__date {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
}

.article__pr-notice {
  display: inline-block;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  background-color: #f3f4f6;
  padding: 3px 8px;
  border-radius: 4px;
  margin: 0;
}

.article__eyecatch {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.article__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.toc {
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 40px;
}
@media (min-width: 767.1px) {
  .toc {
    padding: 20px 24px;
  }
}

.toc__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.toc__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #111827;
  margin: 0;
  transform: translateX(-8px);
}
.toc__title svg {
  color: #1e3a8a;
}

.toc__toggle {
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

.toc__list {
  margin: 0;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc-counter;
}
@media (min-width: 767.1px) {
  .toc__list {
    padding-left: 20px;
  }
}
.toc__list--sub {
  margin-top: 6px;
  padding-left: 16px;
  gap: 6px;
}
.toc__list > .toc__item {
  counter-increment: toc-counter;
}

.toc__item {
  line-height: 1.6;
}

.toc__link {
  color: #1e3a8a;
  text-decoration: none;
  transition: opacity 0.15s;
}
.toc__link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.toc__list > .toc__item > .toc__link::before {
  content: counter(toc-counter) ". ";
  font-weight: 700;
}

.article__body h2 {
  font-size: clamp(18px, 18px + (24 - 18) * (100vw - 320px) / 960, 24px);
  font-weight: 700;
  line-height: 1.45;
  margin: 48px 0 20px;
  padding: 14px 16px 14px 20px;
  background-color: #eff6ff;
  border-left: 4px solid #1e3a8a;
  border-radius: 0 8px 8px 0;
}
.article__body h2:first-child {
  margin-top: 0;
}
.article__body h3 {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  line-height: 1.5;
  margin: 36px 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}
.article__body h3::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1e3a8a;
}
.article__body h4 {
  font-size: clamp(14px, 14px + (17 - 14) * (100vw - 320px) / 960, 17px);
  font-weight: 700;
  margin: 24px 0 12px;
}
.article__body p {
  margin: 0 0 20px;
}
.article__body ul, .article__body ol {
  padding-left: 24px;
  margin: 0 0 24px;
}
.article__body ul li, .article__body ol li {
  margin-bottom: 6px;
}
.article__body ul {
  list-style: disc;
}
.article__body ol {
  list-style: decimal;
}
.article__body strong {
  font-weight: 700;
  color: #111827;
}
.article__body a {
  color: #1e3a8a;
  text-decoration: underline;
}
.article__body a:hover {
  opacity: 0.75;
}
.article__body blockquote {
  margin: 24px 0;
  padding: 16px 20px;
  background-color: #f8fafc;
  border-left: 4px solid #e5e7eb;
  border-radius: 0 8px 8px 0;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.8;
}
.article__body .article__disclaimer {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  line-height: 1.7;
  margin-top: 40px;
}

.article-checklist {
  list-style: none !important;
  padding-left: 0 !important;
}
.article-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #111827;
}
.article-checklist li::before {
  content: "✓";
  color: #1e3a8a;
  font-weight: 700;
  flex-shrink: 0;
}

.article-box {
  margin: 28px 0;
  padding: 18px 20px;
  border-radius: 10px;
}
.article-box .article-box__title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  margin: 0 0 10px;
}
.article-box p, .article-box ul, .article-box li {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  margin-bottom: 0;
}
.article-box ul {
  margin-top: 8px;
  padding-left: 20px;
  list-style: disc;
}
.article-box li {
  margin-bottom: 4px;
}
.article-box--result {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}
.article-box--result .article-box__title {
  color: #1e3a8a;
}
.article-box--note {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
}
.article-box--note .article-box__title {
  color: #111827;
}
.article-box--caution {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
}
.article-box--caution .article-box__title {
  color: #92400e;
}
.article-box--success {
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.article-box--success .article-box__title {
  color: #166534;
}

.article-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}
@media (max-width: calc(767.1px - 1px)) {
  .article-table-wrap::after {
    content: "← 横にスクロールできます →";
    display: block;
    text-align: center;
    font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
    color: #6b7280;
    padding: 6px;
    background-color: #f8fafc;
  }
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  min-width: 560px;
}
.article-table--simple {
  min-width: auto;
}
.article-table thead {
  background-color: #1e3a8a;
  color: #fff;
}
.article-table thead th {
  padding: 12px 14px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.article-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.article-table tbody tr:last-child {
  border-bottom: none;
}
.article-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}
.article-table tbody__highlight td {
  background-color: #eff6ff !important;
}
.article-table tbody td {
  padding: 12px 14px;
  line-height: 1.6;
}
.article-table .article-table__highlight td {
  background-color: #eff6ff !important;
}

.article-cta {
  margin: 32px 0;
  padding: 24px;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-cta__label {
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #6b7280;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0;
  text-align: right;
}

.article-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.18s;
  text-align: center;
}
.article-cta__btn svg {
  flex-shrink: 0;
}
.article-cta__btn:hover {
  opacity: 0.85;
}
.article-cta__btn--primary {
  background-color: #1e3a8a;
}
.article-cta__btn--secondary {
  background-color: #fff;
  color: #1e3a8a;
  border: 2px solid #1e3a8a;
}
.article-cta__btn--secondary:hover {
  background-color: #1e3a8a;
  color: #fff;
  opacity: 1;
}

.article-faq {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-faq__item {
  border-bottom: 1px solid #e5e7eb;
}
.article-faq__item:first-child {
  border-top: 1px solid #e5e7eb;
}

.article-faq__q {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  padding: 16px 16px 10px 44px;
  margin: 0;
  position: relative;
}
.article-faq__q::before {
  content: "Q";
  position: absolute;
  left: 14px;
  top: 18px;
  width: 22px;
  height: 22px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  padding-bottom: 3px;
  line-height: 20px;
  text-align: center;
}

.article-faq__a {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  line-height: 1.8;
  padding: 0 16px 16px 44px;
  margin: 0;
  position: relative;
}
.article-faq__a::before {
  content: "A";
  position: absolute;
  left: 14px;
  top: 2px;
  width: 22px;
  height: 22px;
  background-color: #f59e0b;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
}

.author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-top: 48px;
}
@media (min-width: 767.1px) {
  .author-box {
    padding: 24px;
    gap: 20px;
  }
}

.author-box__icon {
  flex-shrink: 0;
}
.author-box__icon img {
  width: 50px;
}
@media (min-width: 767.1px) {
  .author-box__icon img {
    width: 80px;
  }
}

.author-box__body {
  flex: 1;
}

.author-box__name {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px;
}

.author-box__bio {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 10px;
}

.author-box__link {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 600;
}
.author-box__link:hover {
  text-decoration: underline;
}

.related-articles {
  margin-top: 48px;
}

.related-articles__title {
  font-size: clamp(15px, 15px + (17 - 15) * (100vw - 320px) / 960, 17px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}
.related-articles__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #1e3a8a;
}

.related-articles__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (min-width: 767.1px) {
  .related-articles__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.related-articles__card {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
  padding: 12px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  transition: box-shadow 0.18s;
}
.related-articles__card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
@media (min-width: 767.1px) {
  .related-articles__card {
    flex-direction: column;
    gap: 10px;
    padding: 0;
    border: none;
    background: none;
  }
  .related-articles__card:hover {
    box-shadow: none;
  }
}

.related-articles__img {
  flex-shrink: 0;
  width: 80px;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
}
.related-articles__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 767.1px) {
  .related-articles__img {
    width: 100%;
    border-radius: 8px;
  }
}

.related-articles__body {
  flex: 1;
}

.related-articles__cat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: clamp(9px, 9px + (10 - 9) * (100vw - 320px) / 960, 10px);
  font-weight: 700;
  color: #fff;
  background-color: #1e3a8a;
  margin-bottom: 6px;
}

.related-articles__title-text {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  line-height: 1.55;
  color: #111827;
  margin: 0;
}

.article-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .article-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 88px;
  }
}

.sidebar-toc {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
}

.sidebar-toc__title {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  counter-reset: toc-counter;
}

.sidebar-toc__link {
  display: flex;
  gap: 5px;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
}
.sidebar-toc__link::before {
  counter-increment: toc-counter;
  content: counter(toc-counter) ".";
  color: #1e3a8a;
  font-weight: 700;
  flex-shrink: 0;
}
.sidebar-toc__link:hover {
  color: #1e3a8a;
}
.sidebar-toc__link.is-active {
  color: #1e3a8a;
  font-weight: 600;
}

.sidebar-cta {
  border-radius: 12px;
  padding: 18px 16px;
  border: 1px solid #e5e7eb;
}
.sidebar-cta--career {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}
.sidebar-cta--sidejob {
  background-color: #fff7ed;
  border-color: #fed7aa;
}
.sidebar-cta--money {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
}

.sidebar-cta__title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 12px;
  line-height: 1.5;
  text-align: center;
}

.sidebar-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 6px;
  background-color: #1e3a8a;
  color: #fff;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 8px;
  transition: opacity 0.15s;
}
.sidebar-cta__btn:hover {
  opacity: 0.85;
}
.sidebar-cta__btn--sub {
  background-color: #fff;
  color: #1e3a8a;
  border: 1.5px solid #1e3a8a;
}
.sidebar-cta__btn--sub:hover {
  background-color: #1e3a8a;
  color: #fff;
  opacity: 1;
}

.sidebar-cta__pr {
  font-size: clamp(9px, 9px + (10 - 9) * (100vw - 320px) / 960, 10px);
  color: #6b7280;
  text-align: right;
  margin: 4px 0 0;
}

.sidebar-popular {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px 20px;
}

.sidebar-popular__title {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-popular__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-popular__item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: flex-start;
  transition: opacity 0.15s;
}
.sidebar-popular__item:hover {
  opacity: 0.75;
}
.sidebar-popular__item img {
  flex-shrink: 0;
  width: 60px;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

.sidebar-popular__text {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #111827;
  line-height: 1.55;
  font-weight: 500;
}

.about-page {
  padding-block: clamp(32px, 32px + (56 - 32) * (100vw - 320px) / 960, 56px);
}

.about-wrap {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .about-wrap {
    padding-inline: 5vw;
  }
}

.about-page-header {
  margin-bottom: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px);
}

.about-page-title {
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / 960, 32px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
}

.about-profile {
  margin-bottom: 48px;
}

.about-profile__card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 30px;
}
@media (min-width: 767.1px) {
  .about-profile__card {
    gap: 28px;
    padding: 28px 32px;
  }
}

.about-profile__avatar {
  flex-shrink: 0;
}
.about-profile__avatar img {
  width: 72px;
  height: 72px;
}
@media (min-width: 767.1px) {
  .about-profile__avatar img {
    width: 100px;
    height: 100px;
  }
}

.about-profile__info {
  flex: 1;
}

.about-profile__name {
  font-size: clamp(16px, 16px + (20 - 16) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  color: #1e3a8a;
}

.about-profile__role {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  margin: 0 0 12px;
}

.about-profile__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.about-profile__tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #1e3a8a;
  border-radius: 100px;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #1e3a8a;
  font-weight: 600;
}

.about-table-wrap {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.about-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  background: #fff;
}
.about-table tr {
  border-bottom: 1px solid #e5e7eb;
}
.about-table tr:last-child {
  border-bottom: none;
}
.about-table th {
  width: 120px;
  padding: 15px 20px;
  font-weight: 700;
  color: #111827;
  background: #f8fafc;
  border-right: 1px solid #e5e7eb;
  text-align: left;
  white-space: nowrap;
}
@media (min-width: 767.1px) {
  .about-table th {
    width: 160px;
  }
}
.about-table td {
  padding: 12px 16px;
  color: #111827;
  line-height: 1.6;
}
.about-table td a {
  color: #1e3a8a;
}

.about-section {
  margin-bottom: 48px;
}
.about-section--last {
  margin-bottom: 0;
}

.about-section__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(18px, 18px + (22 - 18) * (100vw - 320px) / 960, 22px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e5e7eb;
  position: relative;
}
.about-section__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background-color: #1e3a8a;
}

.about-section__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background-color: #eff6ff;
  color: #1e3a8a;
  flex-shrink: 0;
}
.about-section__icon svg {
  width: 16px;
  height: 16px;
}

.about-section__body p {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  line-height: 1.9;
  color: #111827;
  margin: 0 0 16px;
}
.about-section__body p:last-child {
  margin-bottom: 0;
}
.about-section__body h3 {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  color: #111827;
  margin: 24px 0 10px;
}
.about-section__body ul {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  line-height: 1.8;
  padding-left: 20px;
  margin: 0 0 16px;
}
.about-section__body ul li {
  margin-bottom: 6px;
}
.about-section__body strong {
  font-weight: 700;
}
.about-section__body a {
  color: #1e3a8a;
}

.about-box {
  margin: 20px 0;
  padding: 16px 20px;
  border-radius: 10px;
}
.about-box .about-box__title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  margin: 0 0 10px;
}
.about-box ul {
  margin: 0;
  padding-left: 18px;
}
.about-box li {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  margin-bottom: 5px;
}
.about-box {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}
.about-box .about-box__title {
  color: #1e3a8a;
}
.about-box--info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
}
.about-box--info .about-box__title {
  color: #1e3a8a;
}
.about-box--caution {
  background-color: #fffbeb;
  border-color: #fde68a;
}
.about-box--caution .about-box__title {
  color: #92400e;
}

.about-list-dot li {
  position: relative;
}
.about-list-dot li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #1e3a8a;
}
.about-list-dot--yellow li::before {
  background-color: #92400F;
}

.about-skill-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-skill-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-skill-list__item strong {
  display: block;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.about-skill-list__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #1e3a8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.about-skill-list__icon svg {
  width: 12px;
  height: 12px;
}

.about-promise {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-promise__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.about-promise__item strong {
  display: block;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.about-promise__item p {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.about-promise__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1e3a8a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.about-contact {
  margin-top: 16px;
}

.about-contact__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 8px;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.18s;
  margin-bottom: 12px;
}
.about-contact__btn svg {
  width: 16px;
  height: 16px;
}
.about-contact__btn:hover {
  opacity: 0.85;
}

.about-contact__note {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.policy-page {
  padding-block: clamp(32px, 32px + (56 - 32) * (100vw - 320px) / 960, 56px);
}

.policy-wrap {
  max-width: 800px;
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .policy-wrap {
    padding-inline: 5vw;
  }
}

.policy-header {
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e5e7eb;
}

.policy-title {
  font-size: clamp(24px, 24px + (32 - 24) * (100vw - 320px) / 960, 32px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px;
}

.policy-meta {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  margin: 0;
}

.policy-body p {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  line-height: 1.9;
  color: #111827;
  margin: 0 0 20px;
}
.policy-body h2 {
  font-size: clamp(17px, 17px + (20 - 17) * (100vw - 320px) / 960, 20px);
  font-weight: 700;
  color: #111827;
  margin: 48px 0 16px;
  padding-left: 14px;
  border-left: 4px solid #1e3a8a;
  line-height: 1.4;
}
.policy-body h2:first-child {
  margin-top: 0;
}
.policy-body h3 {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  color: #111827;
  margin: 24px 0 10px;
}
.policy-body ul, .policy-body ol {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  line-height: 1.8;
  color: #111827;
  padding-left: 22px;
  margin: 0 0 20px;
}
.policy-body ul li, .policy-body ol li {
  margin-bottom: 6px;
}
.policy-body a {
  color: #1e3a8a;
  text-decoration: underline;
  word-break: break-all;
}
.policy-body a:hover {
  opacity: 0.75;
}

.policy-service-card {
  margin: 20px 0;
  padding: 18px 20px;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}
.policy-service-card p {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  margin: 0 0 8px;
}
.policy-service-card p:last-child {
  margin-bottom: 0;
}

.policy-service-card__name {
  font-weight: 700 !important;
  color: #111827 !important;
  font-size: 14px !important;
}

.policy-service-card__provider {
  color: #6b7280 !important;
  font-size: 11px !important;
  margin-bottom: 10px !important;
}

.policy-service-card__link {
  margin-top: 10px !important;
}

.policy-contact {
  margin: 16px 0 24px;
  padding: 20px 24px;
  background-color: #f8fafc;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
}

.policy-contact__info {
  margin: 0;
}
.policy-contact__info div {
  display: flex;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
}
.policy-contact__info div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.policy-contact__info div:first-child {
  padding-top: 0;
}
.policy-contact__info dt {
  flex-shrink: 0;
  width: 100px;
  font-weight: 700;
  color: #111827;
}
.policy-contact__info dd {
  margin: 0;
  color: #111827;
  line-height: 1.6;
}
.policy-contact__info dd a {
  color: #1e3a8a;
}

.policy-updated {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  text-align: right;
  margin-top: 48px !important;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
}

.policy-important-box {
  margin: 20px 0;
  padding: 18px 20px;
  background-color: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-radius: 10px;
}
.policy-important-box p {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  line-height: 1.8;
  margin: 0 0 10px;
}
.policy-important-box p:last-child {
  margin-bottom: 0;
}
.policy-important-box strong {
  color: #92400e;
}

.contact-notice {
  margin-bottom: 40px;
  padding: 18px 20px;
  background-color: #fffbeb;
  border: 1.5px solid #fbbf24;
  border-radius: 12px;
}

.contact-notice__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #92400e;
  margin: 0 0 12px;
}
.contact-notice__title svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.contact-notice__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-notice__list li {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #111827;
  line-height: 1.75;
  padding-left: 14px;
  position: relative;
}
.contact-notice__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #f59e0b;
}
.contact-notice__list li strong {
  font-weight: 700;
}

.contact-form-section {
  margin-top: 8px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
}

.contact-form__required {
  display: inline-block;
  padding: 2px 7px;
  background-color: #c2410c;
  color: #fff;
  border-radius: 4px;
  font-size: clamp(9px, 9px + (10 - 9) * (100vw - 320px) / 960, 10px);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-form__optional {
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #6b7280;
  font-weight: 400;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  background-color: #fff;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  color: #111827;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  transition: border-color 0.18s, box-shadow 0.18s;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact-form__input::-moz-placeholder, .contact-form__select::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #9ca3af;
}
.contact-form__input::placeholder,
.contact-form__select::placeholder,
.contact-form__textarea::placeholder {
  color: #9ca3af;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #1e3a8a;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}
.contact-form__input.is-error,
.contact-form__select.is-error,
.contact-form__textarea.is-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form__select-wrap {
  position: relative;
}
.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #6b7280;
  pointer-events: none;
}

.contact-form__select {
  cursor: pointer;
}
.contact-form__select:invalid {
  color: #9ca3af;
}

.contact-form__field--checkbox {
  gap: 6px;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
}

.contact-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.contact-form__checkbox:checked + .contact-form__checkbox-custom {
  background-color: #1e3a8a;
  border-color: #1e3a8a;
}
.contact-form__checkbox:checked + .contact-form__checkbox-custom::after {
  display: block;
}
.contact-form__checkbox:focus + .contact-form__checkbox-custom {
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.contact-form__checkbox-custom {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  background-color: #fff;
  position: relative;
  transition: background-color 0.15s, border-color 0.15s;
}
.contact-form__checkbox-custom::after {
  content: "";
  display: none;
  position: absolute;
  left: 5px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.contact-form__checkbox-text {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #111827;
}
.contact-form__checkbox-text a {
  color: #1e3a8a;
  text-decoration: underline;
}

.contact-form__error {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #ef4444;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.contact-form__error::before {
  content: "!";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #ef4444;
  color: #fff;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

.contact-form__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 8px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 360px;
  padding: 16px 24px;
  background-color: #1e3a8a;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: clamp(15px, 15px + (16 - 15) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.contact-form__submit svg {
  width: 18px;
  height: 18px;
}
.contact-form__submit:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.contact-form__submit:active {
  transform: translateY(0);
}

.contact-form__submit-note {
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #6b7280;
  margin: 0;
}

.contact-success {
  text-align: center;
  padding: 48px 24px;
}
.contact-success[hidden] {
  display: none;
}

.contact-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #dcfce7;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.contact-success__icon svg {
  width: 32px;
  height: 32px;
}

.contact-success__title {
  font-size: clamp(20px, 20px + (24 - 20) * (100vw - 320px) / 960, 24px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
}

.contact-success__text {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 28px;
}

.contact-success__btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 8px;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.18s;
}
.contact-success__btn:hover {
  opacity: 0.85;
}

.beg-section-title {
  font-size: clamp(20px, 20px + (26 - 20) * (100vw - 320px) / 960, 26px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 10px;
  line-height: 1.4;
}

.beg-section-lead {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 32px;
}

.beg-hero {
  background: linear-gradient(135deg, #eff6ff 0%, #f0fdf4 100%);
  padding-block: clamp(48px, 48px + (80 - 48) * (100vw - 320px) / 960, 80px);
  border-bottom: 1px solid #e5e7eb;
}

.beg-hero__inner {
  text-align: center;
}

.beg-hero__eyebrow {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  color: #1e3a8a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.beg-hero__title {
  font-size: clamp(24px, 24px + (36 - 24) * (100vw - 320px) / 960, 36px);
  font-weight: 700;
  color: #111827;
  line-height: 1.45;
  margin: 0 0 20px;
}

.beg-hero__desc {
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  color: #6b7280;
  line-height: 1.85;
  margin: 0 0 28px;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 28px;
}
.beg-hero__desc strong {
  color: #111827;
  font-weight: 700;
}

.beg-hero__badges {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.beg-hero__badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 100px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  color: #fff;
}
.beg-hero__badge--career {
  background-color: #1e3a8a;
}
.beg-hero__badge--sidejob {
  background-color: #c2410c;
}
.beg-hero__badge--money {
  background-color: #16a34a;
}

.beg-hero__cta {
  display: flex;
  justify-content: center;
}

.beg-hero__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 100px;
  font-size: clamp(14px, 14px + (15 - 14) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}
.beg-hero__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.beg-persona {
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / 960, 64px);
  background-color: #f8fafc;
}

.beg-persona__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
@media (min-width: 767.1px) {
  .beg-persona__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.beg-persona__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}
.beg-persona__item p {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #111827;
  line-height: 1.7;
  margin: 0;
}
.beg-persona__item p strong {
  font-weight: 700;
  color: #1e3a8a;
}

.beg-persona__icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.beg-persona__note {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  color: #1e3a8a;
  font-weight: 700;
  text-align: center;
  margin: 0;
}

.beg-situation {
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / 960, 64px);
}

.beg-situation__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 767.1px) {
  .beg-situation__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.beg-sit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  background-color: #fff;
  text-decoration: none;
  color: #111827;
  transition: transform 0.2s, box-shadow 0.2s;
}
.beg-sit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}
@media (min-width: 767.1px) {
  .beg-sit-card {
    padding: 24px;
  }
}

.beg-sit-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.beg-sit-card__icon svg {
  width: 28px;
  height: 28px;
}

.beg-sit-card__body {
  flex: 1;
}

.beg-sit-card__label {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.4;
}

.beg-sit-card__text {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0 0 10px;
}

.beg-sit-card__link {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
}

.beg-sit-card--career {
  border-color: rgba(30, 58, 138, 0.2);
}
.beg-sit-card--career .beg-sit-card__icon {
  background-color: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
}
.beg-sit-card--career .beg-sit-card__label {
  color: #1e3a8a;
}
.beg-sit-card--career .beg-sit-card__link {
  color: #1e3a8a;
}

.beg-sit-card--sidejob {
  border-color: rgba(194, 65, 12, 0.2);
}
.beg-sit-card--sidejob .beg-sit-card__icon {
  background-color: rgba(194, 65, 12, 0.08);
  color: #c2410c;
}
.beg-sit-card--sidejob .beg-sit-card__label {
  color: #c2410c;
}
.beg-sit-card--sidejob .beg-sit-card__link {
  color: #c2410c;
}

.beg-sit-card--money {
  border-color: rgba(22, 163, 74, 0.2);
}
.beg-sit-card--money .beg-sit-card__icon {
  background-color: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}
.beg-sit-card--money .beg-sit-card__label {
  color: #16a34a;
}
.beg-sit-card--money .beg-sit-card__link {
  color: #16a34a;
}

.beg-sit-card--choose {
  border-color: rgba(124, 58, 237, 0.2);
}
.beg-sit-card--choose .beg-sit-card__icon {
  background-color: rgba(124, 58, 237, 0.08);
  color: #7c3aed;
}
.beg-sit-card--choose .beg-sit-card__label {
  color: #7c3aed;
}
.beg-sit-card--choose .beg-sit-card__link {
  color: #7c3aed;
}

.beg-themes {
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / 960, 64px);
  background-color: #f8fafc;
}

.beg-themes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 767.1px) {
  .beg-themes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.beg-theme {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.beg-theme__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.beg-theme__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.beg-theme__icon svg {
  width: 24px;
  height: 24px;
}

.beg-theme__title {
  font-size: clamp(16px, 16px + (18 - 16) * (100vw - 320px) / 960, 18px);
  font-weight: 700;
  margin: 0;
}

.beg-theme__desc {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin: 0;
}

.beg-theme__articles {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #e5e7eb;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.beg-theme__articles li {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
}
.beg-theme__articles a {
  color: #111827;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.15s;
  display: flex;
  gap: 6px;
}
.beg-theme__articles a::before {
  content: "›";
  flex-shrink: 0;
}
.beg-theme__articles a:hover {
  color: #1e3a8a;
}

.beg-theme__btn {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 700;
  text-decoration: none;
  margin-top: auto;
  transition: opacity 0.15s;
}
.beg-theme__btn:hover {
  opacity: 0.8;
}

.beg-theme--career .beg-theme__icon {
  background-color: rgba(30, 58, 138, 0.08);
  color: #1e3a8a;
}
.beg-theme--career .beg-theme__title {
  color: #1e3a8a;
}
.beg-theme--career .beg-theme__btn {
  background-color: #1e3a8a;
  color: #fff;
}

.beg-theme--sidejob .beg-theme__icon {
  background-color: rgba(194, 65, 12, 0.08);
  color: #c2410c;
}
.beg-theme--sidejob .beg-theme__title {
  color: #c2410c;
}
.beg-theme--sidejob .beg-theme__btn {
  background-color: #c2410c;
  color: #fff;
}

.beg-theme--money .beg-theme__icon {
  background-color: rgba(22, 163, 74, 0.08);
  color: #16a34a;
}
.beg-theme--money .beg-theme__title {
  color: #16a34a;
}
.beg-theme--money .beg-theme__btn {
  background-color: #16a34a;
  color: #fff;
}

.beg-start {
  padding-block: clamp(40px, 40px + (64 - 40) * (100vw - 320px) / 960, 64px);
}

.beg-start__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.beg-start__item {
  border-bottom: 1px solid #e5e7eb;
}
.beg-start__item:first-child {
  border-top: 1px solid #e5e7eb;
}

.beg-start__card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  text-decoration: none;
  color: #111827;
  transition: background-color 0.15s;
}
.beg-start__card:hover {
  color: #1e3a8a;
}

.beg-start__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: #1e3a8a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.beg-start__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.beg-start__cat {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: clamp(9px, 9px + (10 - 9) * (100vw - 320px) / 960, 10px);
  font-weight: 700;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.beg-start__cat--career {
  background-color: #1e3a8a;
}
.beg-start__cat--sidejob {
  background-color: #c2410c;
}
.beg-start__cat--money {
  background-color: #16a34a;
}

.beg-start__title {
  font-size: clamp(13px, 13px + (15 - 13) * (100vw - 320px) / 960, 15px);
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.beg-start__desc {
  font-size: clamp(11px, 11px + (12 - 11) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

.beg-start__arrow {
  flex-shrink: 0;
  color: #6b7280;
  font-size: 16px;
}

.beg-about {
  padding-block: clamp(32px, 32px + (48 - 32) * (100vw - 320px) / 960, 48px);
  background-color: #f8fafc;
}

.beg-about__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
}
@media (min-width: 767.1px) {
  .beg-about__card {
    gap: 28px;
    padding: 28px 32px;
  }
}

.beg-about__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
}
.beg-about__icon svg {
  width: 100%;
  height: 100%;
}

.beg-about__body {
  flex: 1;
}

.beg-about__name {
  font-size: clamp(15px, 15px + (17 - 15) * (100vw - 320px) / 960, 17px);
  font-weight: 700;
  color: #1e3a8a;
  margin: 0 0 8px;
}

.beg-about__bio {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #6b7280;
  line-height: 1.8;
  margin: 0 0 14px;
}

.beg-about__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.beg-about__link {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  color: #1e3a8a;
  font-weight: 600;
  text-decoration: none;
}
.beg-about__link:hover {
  text-decoration: underline;
}

.beg-nav {
  padding-block: clamp(32px, 32px + (48 - 32) * (100vw - 320px) / 960, 48px);
}

.beg-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 767.1px) {
  .beg-nav__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

.beg-nav__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 12px;
  border-radius: 12px;
  border: 1.5px solid #e5e7eb;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.beg-nav__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
}

.beg-nav__card-label {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
}

.beg-nav__card-count {
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  color: #6b7280;
}

.beg-nav__card--career {
  border-color: rgba(30, 58, 138, 0.3);
  background-color: #eff6ff;
}
.beg-nav__card--career .beg-nav__card-label {
  color: #1e3a8a;
}

.beg-nav__card--sidejob {
  border-color: rgba(194, 65, 12, 0.3);
  background-color: #fff7ed;
}
.beg-nav__card--sidejob .beg-nav__card-label {
  color: #c2410c;
}

.beg-nav__card--money {
  border-color: rgba(22, 163, 74, 0.3);
  background-color: #f0fdf4;
}
.beg-nav__card--money .beg-nav__card-label {
  color: #16a34a;
}

.beg-nav__card--tag,
.beg-nav__card--all,
.beg-nav__card--about {
  background-color: #f8fafc;
}
.beg-nav__card--tag .beg-nav__card-label,
.beg-nav__card--all .beg-nav__card-label,
.beg-nav__card--about .beg-nav__card-label {
  color: #111827;
}

.ep-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0;
}
@media (min-width: 767.1px) {
  .ep-two-col {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.ep-col {
  padding: 18px 20px;
  border-radius: 10px;
}
.ep-col .ep-col__title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  margin: 0 0 10px;
}
.ep-col ul {
  margin: 0;
  padding-left: 18px;
}
.ep-col ul li {
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  margin-bottom: 5px;
  line-height: 1.6;
}
.ep-col--blue {
  background-color: #eff6ff;
  border: 1px solid #bfdbfe;
}
.ep-col--blue .ep-col__title {
  color: #1e3a8a;
}
.ep-col--amber {
  background-color: #fffbeb;
  border: 1px solid #fde68a;
}
.ep-col--amber .ep-col__title {
  color: #92400e;
}

.ep-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.ep-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  min-width: 480px;
}
.ep-table thead {
  background-color: #1e3a8a;
  color: #fff;
}
.ep-table thead th {
  padding: 11px 14px;
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}
.ep-table tbody tr {
  border-bottom: 1px solid #e5e7eb;
}
.ep-table tbody tr:last-child {
  border-bottom: none;
}
.ep-table tbody tr:nth-child(even) {
  background-color: #f8fafc;
}
.ep-table tbody td {
  padding: 12px 14px;
  line-height: 1.65;
}
.ep-table tbody td:first-child {
  font-weight: 600;
  white-space: nowrap;
}

.cat-hero {
  padding-block: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px);
  margin-bottom: clamp(30px, 30px + (50 - 30) * (100vw - 320px) / 960, 50px);
}
.cat-hero__inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (min-width: 767.1px) {
  .cat-hero__inner {
    gap: 28px;
  }
}
.cat-hero__icon {
  flex-shrink: 0;
  width: 60px;
}
@media (min-width: 767.1px) {
  .cat-hero__icon {
    width: 70px;
  }
}
.cat-hero__body {
  flex: 1;
}
.cat-hero__title {
  font-size: clamp(22px, 22px + (30 - 22) * (100vw - 320px) / 960, 30px);
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}
.cat-hero__desc {
  line-height: 1.8;
}
.cat-hero--career {
  background-color: #eff6ff;
}
.cat-hero--career .cat-hero__icon {
  color: #1e3a8a;
}
.cat-hero--career .cat-hero__title {
  color: #1e3a8a;
}
.cat-hero--sidejob {
  background-color: #fff7ed;
}
.cat-hero--sidejob .cat-hero__icon {
  color: #c2410c;
}
.cat-hero--sidejob .cat-hero__title {
  color: #c2410c;
}
.cat-hero--sidejob .cat-hero__count span {
  color: #c2410c;
}
.cat-hero--money {
  background-color: #f0fdf4;
}
.cat-hero--money .cat-hero__icon {
  color: #16a34a;
}
.cat-hero--money .cat-hero__title {
  color: #16a34a;
}
.cat-hero--money .cat-hero__count span {
  color: #16a34a;
}
.cat-hero--gadget {
  background-color: #f5f3ff;
}
.cat-hero--gadget .cat-hero__icon {
  color: #7c3aed;
}
.cat-hero--gadget .cat-hero__title {
  color: #7c3aed;
}
.cat-hero--gadget .cat-hero__count span {
  color: #7c3aed;
}

.cat-layout__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .cat-layout__inner {
    grid-template-columns: 1fr 280px;
    gap: 48px;
    align-items: start;
  }
}

.cat-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 30px;
}
@media (min-width: 767.1px) {
  .cat-tags {
    margin-bottom: 50px;
    gap: 10px;
  }
}
.cat-tags__label {
  font-size: clamp(14px, 14px + (16 - 14) * (100vw - 320px) / 960, 16px);
  font-weight: 700;
  white-space: nowrap;
}
.cat-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cat-tags__tag {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid #1e3a8a;
  border-radius: 100px;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 320px) / 960, 12px);
  color: #1e3a8a;
  transition: background-color 0.15s, color 0.15s, border-color 0.15s;
}
@media (min-width: 767.1px) {
  .cat-tags__tag {
    padding: 5px 12px;
  }
}
.cat-tags__tag:hover {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
@media (min-width: 767.1px) {
  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.cat-grid__item--featured {
  grid-column: span 2;
}
@media (min-width: 767.1px) {
  .cat-grid__item--featured {
    grid-column: span 3;
  }
}

.cat-card {
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}
.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
}
.cat-card:hover img {
  transform: scale(1.04);
}
.cat-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.cat-card__img {
  position: relative;
  aspect-ratio: 1000/671;
  overflow: hidden;
}
.cat-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.cat-card__cat {
  position: absolute;
  bottom: 8px;
  left: 8px;
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
.cat-card__cat--career {
  background-color: #1e3a8a;
}
.cat-card__cat--sidejob {
  background-color: #c2410c;
}
.cat-card__cat--money {
  background-color: #16a34a;
}
.cat-card__cat--gadget {
  background-color: #7c3aed;
}
.cat-card__badge {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-block;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: clamp(9px, 9px + (10 - 9) * (100vw - 320px) / 960, 10px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.cat-card__badge--hub {
  background-color: rgba(0, 0, 0, 0.55);
  color: #fbbf24;
}
.cat-card__body {
  padding: 12px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.cat-card__title {
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  line-height: 1.55;
  color: #111827;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__excerpt {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cat-card__date {
  display: block;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 320px) / 960, 12px);
  color: #6b7280;
  margin-top: auto;
  letter-spacing: 0.04em;
}
@media (min-width: 767.1px) {
  .cat-card--featured .cat-card__link {
    flex-direction: row;
  }
}
.cat-card--featured .cat-card__img {
  aspect-ratio: 16/9;
}
@media (min-width: 767.1px) {
  .cat-card--featured .cat-card__img {
    width: 55%;
    aspect-ratio: auto;
    min-height: 240px;
  }
}
@media (min-width: 767.1px) {
  .cat-card--featured .cat-card__body {
    padding: 24px 28px;
    justify-content: center;
  }
}
.cat-card--featured .cat-card__title {
  font-size: clamp(15px, 15px + (20 - 15) * (100vw - 320px) / 960, 20px);
  -webkit-line-clamp: 4;
}
@media (min-width: 767.1px) {
  .cat-card--featured .cat-card__title {
    -webkit-line-clamp: 3;
  }
}
.cat-card--featured .cat-card__excerpt {
  -webkit-line-clamp: 3;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: clamp(13px, 13px + (14 - 13) * (100vw - 320px) / 960, 14px);
  font-weight: 600;
  color: #111827;
  text-decoration: none;
  border: 1px solid #e5e7eb;
  transition: background-color 0.18s, color 0.18s, border-color 0.18s;
}
.pagination__num:hover {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}
.pagination__num.is-active {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
  pointer-events: none;
}
.pagination__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  color: #111827;
  text-decoration: none;
  transition: background-color 0.18s, color 0.18s;
}
.pagination__btn svg {
  width: 16px;
  height: 16px;
}
.pagination__btn:hover {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}
.pagination__btn.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}

.cat-sidebar {
  display: none;
}
@media (min-width: 1024px) {
  .cat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 88px;
  }
}

.cat-sidebar-cta {
  background-color: #fff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 16px;
  text-align: center;
}
.cat-sidebar-cta__lead {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #1e3a8a;
  margin: 0 0 10px;
  font-weight: 600;
}
.cat-sidebar-cta__btn {
  display: block;
  padding: 10px 12px;
  background-color: #1e3a8a;
  color: #fff;
  border-radius: 10px;
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  transition: opacity 0.3s;
}
.cat-sidebar-cta__btn:hover {
  opacity: 0.6;
}

.cat-sidebar-nav {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
}
.cat-sidebar-nav__title {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.cat-sidebar-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cat-sidebar-nav__link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: clamp(12px, 12px + (13 - 12) * (100vw - 320px) / 960, 13px);
  font-weight: 500;
  color: #111827;
  text-decoration: none;
  transition: background-color 0.15s;
}
.cat-sidebar-nav__link:hover {
  background-color: #f8fafc;
}
.cat-sidebar-nav__link.is-active {
  background-color: #eff6ff;
  color: #1e3a8a;
  font-weight: 700;
}
.cat-sidebar-nav__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.cat-sidebar-nav__dot--career {
  background-color: #1e3a8a;
}
.cat-sidebar-nav__dot--sidejob {
  background-color: #c2410c;
}
.cat-sidebar-nav__dot--money {
  background-color: #16a34a;
}
.cat-sidebar-nav__dot--gadget {
  background-color: #7c3aed;
}
.cat-sidebar-nav__count {
  margin-left: auto;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 320px) / 960, 12px);
}

.cat-sidebar-popular {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
}
.cat-sidebar-popular__title {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.cat-sidebar-popular__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  counter-reset: popular-counter;
}
.cat-sidebar-popular__item {
  display: flex;
  gap: 10px;
  text-decoration: none;
  align-items: flex-start;
  transition: opacity 0.15s;
  position: relative;
}
.cat-sidebar-popular__item:hover {
  opacity: 0.75;
}
.cat-sidebar-popular__item img {
  flex-shrink: 0;
  width: 90px;
  aspect-ratio: 16/12;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cat-sidebar-popular__rank {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  background-color: #1e3a8a;
  color: #fff;
  font-size: clamp(10px, 10px + (11 - 10) * (100vw - 320px) / 960, 11px);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  position: absolute;
  top: -5px;
  left: -5px;
}
.cat-sidebar-popular__text {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  color: #111827;
}

.cat-sidebar-tags {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px 18px;
}
.cat-sidebar-tags__title {
  font-size: clamp(12px, 12px + (14 - 12) * (100vw - 320px) / 960, 14px);
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}
.cat-sidebar-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.cat-sidebar-tags__tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1.5px solid rgba(30, 58, 138, 0.35);
  border-radius: 100px;
  font-size: clamp(10px, 10px + (12 - 10) * (100vw - 320px) / 960, 12px);
  color: #1e3a8a;
  text-decoration: none;
  transition: background-color 0.15s, color 0.15s;
}
.cat-sidebar-tags__tag:hover {
  background-color: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}

.header__nav-link.is-active {
  color: #1e3a8a;
  font-weight: 700;
  position: relative;
}
.header__nav-link.is-active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1e3a8a;
  border-radius: 1px;
}

/* ==========================================================================
   Utility
   ========================================================================== */
.container {
  max-width: 1300px;
  margin-inline: auto;
  padding-inline: 5vw;
}
@media (min-width: 767.1px) {
  .container {
    padding-inline: 5vw;
  }
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mt-sm {
  margin-top: 12px !important;
}

.u-mt-md {
  margin-top: 20px !important;
}

.u-mt-lg {
  margin-top: 32px !important;
}

.u-mb-sm {
  margin-bottom: 12px !important;
}

.u-mb-md {
  margin-bottom: 20px !important;
}

.u-mb-lg {
  margin-bottom: 32px !important;
}

.u-pt-sm {
  padding-top: 12px !important;
}

.u-pt-md {
  padding-top: 20px !important;
}

.u-pt-lg {
  padding-top: 32px !important;
}

.u-pb-sm {
  padding-bottom: 12px !important;
}

.u-pb-md {
  padding-bottom: 20px !important;
}

.u-pb-lg {
  padding-bottom: 32px !important;
}

.u-txt-center {
  text-align: center !important;
}

.u-txt-right {
  text-align: right !important;
}

.u-txt-left {
  text-align: left !important;
}

.u-flex {
  display: flex !important;
}

.u-inline {
  display: inline !important;
}

.u-inlineblk {
  display: inline-block !important;
}

.u-block {
  display: block !important;
}

.u-flex-center {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.u-flex-between {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.u-w100 {
  width: 100% !important;
}

.u-w50 {
  width: 50% !important;
}

.u-hidden {
  display: none !important;
}

@media (min-width: 1024px) {
  .u-hidden-lg {
    display: none !important;
  }
}
@media (min-width: 767.1px) {
  .u-hidden-md {
    display: none !important;
  }
}
.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
  }
}/*# sourceMappingURL=common.css.map */