@charset "UTF-8";
/* ===============================================
# pxをremに変換
$px 文字サイズ
$basepx 基準となるピクセル数
=============================================== */
/* ===============================================
# line-heightを計算する
$pixels 文字サイズ
$height figma上のline-height
=============================================== */
/* ===============================================
# 固定値（px）をvwに変換する
$width デバイスサイズ
$px サイズ
=============================================== */
:root {
  --color-primary: #07941D;
  --color-secondly: #0F4D11;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #111111;
  --color-green-black: #0A1B0D;
  --color-line: #ECF0EC;
  --color-yellow: #FFED2A;
  --color-yellow-dark: #D2C53A;
  --color-yellow-light: #FFFAB9;
  --color-yellow-cleam: #FFF6C0;
  --color-blue: #2568CC;
  --color-cream-light: #FFFFF4;
  --color-cream: #FAFAEF;
  --color-gray-light: #F2F2F2;
  --color-gray: #D7D7D7;
  --color-gray-soft: #E1E1E1;
  --color-gray-medium: #D9D9D9;
  --color-gray-dark: #797979;
  --color-green-light: #C3E8C7;
  --color-green-soft: #E1F0E4;
  --color-green-muted: #BACCBA;
  --color-green-border: #BCCDC3;
  --color-green-lightest: #D8F1DA;
  --color-green-mist: #F5FAF6;
  --color-green-dark: #046313;
  --color-green-deep: #0F561A;
  --color-green-deepest: #021516;
  --color-green-pale: #EBF6ED;
  --color-green-strong: #118942;
  --color-red: #FF3300;
  --color-red-dark: #B80606;
  --color-red-require: #DE1111;
  --color-brown: #893900;
  --font-roboto-condensed: "Roboto Condensed", sans-serif;
  --font-noto-sans-jp: "Noto Sans JP", sans-serif;
}

html {
  font-size: 16px;
  font-family: var(--font-noto-serif-jp);
  font-weight: 400;
  color: var(--color-text);
}

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

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

button:hover {
  opacity: 0.8;
}

.header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: 1200px;
  width: 100%;
  z-index: 101;
  height: 6.25rem;
  background-color: var(--color-white);
  margin-top: 1.3125rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .header {
    max-width: 95%;
    height: 5rem;
  }
}
@media screen and (max-width: 750px) {
  .header {
    max-width: 100%;
    margin-top: 0;
    left: 0;
    transform: unset;
    border-radius: 0;
    height: 3.125rem;
  }
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0 1.25rem 2.0625rem;
  height: inherit;
  z-index: 102;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    padding: 0.9375rem 0 0.9375rem 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .header__inner {
    padding: 0.625rem 0 0.625rem 0.625rem;
    box-shadow: 0px 0px 20px rgba(44, 103, 5, 0.2);
  }
}

.header__title {
  display: flex;
  align-items: center;
  height: inherit;
  gap: 3.25rem;
}
@media screen and (max-width: 1200px) {
  .header__title {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .header__title {
    gap: 1.875rem;
  }
}

.header__service-logo {
  width: 11rem;
  aspect-ratio: 176/60;
}
@media screen and (max-width: 1024px) {
  .header__service-logo {
    width: 132px;
  }
}
@media screen and (max-width: 750px) {
  .header__service-logo {
    width: 120px;
  }
}

.header__other-logo-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.375rem;
  height: inherit;
}
@media screen and (max-width: 1200px) {
  .header__other-logo-list {
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 750px) {
  .header__other-logo-list {
    gap: 0.8125rem;
  }
}

.header__other-logo-list::before {
  position: absolute;
  content: "";
  background-color: var(--color-gray-medium);
  height: 3.3125rem;
  width: 1px;
  left: -1.625rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .header__other-logo-list::before {
    left: -1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .header__other-logo-list::before {
    height: 1.875rem;
    left: -0.8125rem;
  }
}

.header__tokyo-logo {
  width: 6.8125rem;
  aspect-ratio: 109/28;
}
@media screen and (max-width: 1200px) {
  .header__tokyo-logo {
    width: clamp(3.75rem, -0.432rem + 8.91vw, 6.25rem);
  }
}
@media screen and (max-width: 750px) {
  .header__tokyo-logo {
    width: 3.8125rem;
  }
}

.header__shigotozaidan-logo {
  width: 10.1875rem;
  aspect-ratio: 163/34;
}
@media screen and (max-width: 1200px) {
  .header__shigotozaidan-logo {
    width: clamp(6.25rem, -0.336rem + 14.03vw, 10.188rem);
  }
}
@media screen and (max-width: 750px) {
  .header__shigotozaidan-logo {
    width: 5.75rem;
  }
}

.header__menu,
.header__nav {
  height: inherit;
}

.header__menu {
  display: flex;
}

.header__items {
  display: flex;
  align-items: center;
  height: inherit;
  gap: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .header__items {
    gap: 0.625rem;
  }
}

.header__link {
  color: var(--color-text);
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 1200px) {
  .header__link {
    font-size: clamp(0.75rem, 0.436rem + 0.67vw, 0.938rem);
  }
}
@media screen and (max-width: 750px) {
  .header__link {
    display: none;
  }
}

/* 企業採用 */
.header__link--recruit::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/office-icon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .header__link--recruit::before {
    width: clamp(1.125rem, 0.498rem + 1.34vw, 1.5rem);
    height: clamp(1.125rem, 0.498rem + 1.34vw, 1.5rem);
  }
}

/* ログイン */
.header__link--login::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url("../images/user-icon.svg") no-repeat center/contain;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .header__link--login::before {
    width: clamp(1.125rem, 0.498rem + 1.34vw, 1.5rem);
    height: clamp(1.125rem, 0.498rem + 1.34vw, 1.5rem);
  }
}

.header__hamburger-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.25rem;
  aspect-ratio: 1/1;
  border-radius: 0.625rem;
  background-color: var(--color-primary);
  margin-left: 3.125rem;
}
@media screen and (max-width: 1200px) {
  .header__hamburger-wrap {
    width: 5rem;
  }
}
@media screen and (max-width: 1024px) {
  .header__hamburger-wrap {
    margin-left: 0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .header__hamburger-wrap {
    width: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.header__hamburger-lines {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.8125rem;
  height: 1.1875rem;
}
@media screen and (max-width: 750px) {
  .header__hamburger-lines {
    width: 1.25rem;
    height: 1.0625rem;
  }
}

.header__hamburger-lines span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--color-white);
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .header__hamburger-lines span {
    height: 2px;
  }
}

.header__hamburger.is-active .header__hamburger-lines span:first-child {
  transform: translateY(9px) rotate(45deg);
}

.header__hamburger.is-active .header__hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active .header__hamburger-lines span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.action__menu {
  display: none;
}
@media screen and (max-width: 750px) {
  .action__menu {
    position: absolute;
    content: "";
    left: 0;
    top: 50px;
    display: block;
    background: linear-gradient(180deg, #FAFFF8 0%, #EEFFE4 100%);
    height: 2.5625rem;
    width: 100%;
  }
}

.action__menu-items {
  display: flex;
  align-items: center;
}

.action__menu-item {
  padding: 0.71875rem 0;
  width: 50%;
}

/* 縦線 */
.action__menu-item:first-child {
  border-right: 1px solid #D2E8C5;
}

.action__menu-link {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 375px) {
  .action__menu-link {
    font-size: clamp(0.625rem, -0.102rem + 3.64vw, 0.75rem);
  }
}

.action__menu-link::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.action__menu-link--recruit::before {
  background: url("../images/office-icon.svg") no-repeat center/contain;
}

.action__menu-link--login::before {
  background: url("../images/user-icon.svg") no-repeat center/contain;
}

.drawer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  max-height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(17, 27, 18, 0.95);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  transition: transform 0.3s ease;
  padding: 11.25rem 0.9375rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (max-width: 750px) {
  .drawer {
    height: 100vh;
    padding: 0.9375rem 0.9375rem 3.75rem;
    background: linear-gradient(269.9deg, #D4EED8 0.06%, #EDFDE3 99.89%);
    -webkit-backdrop-filter: blur(0);
            backdrop-filter: blur(0);
  }
}

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

.drawer__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 200;
}
@media screen and (max-width: 750px) {
  .drawer__close {
    right: 2.1875rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.drawer__close.header__hamburger {
  width: 1.5rem;
  height: 1.5rem;
}

@media screen and (max-width: 750px) {
  .drawer__close.header__hamburger .header__hamburger-lines span {
    background-color: var(--color-text);
  }
}

@media screen and (max-width: 750px) {
  .drawer__inner {
    background-color: var(--color-white);
    padding: 3.125rem 0.4375rem 1.5625rem;
    border-radius: 1.25rem;
  }
}

@media screen and (max-width: 750px) {
  .drawer__nav {
    background-color: var(--color-white);
    padding: 0 1.4375rem;
    border-radius: 1.25rem;
  }
}

.drawer__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 1.25rem;
  max-width: 50rem;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .drawer__items {
    grid-template-columns: 1fr;
  }
}

.drawer__item {
  border-bottom: 1px solid var(--color-white);
}
@media screen and (max-width: 750px) {
  .drawer__item {
    border-bottom: 1px solid rgba(166, 166, 166, 0.3);
  }
}

.drawer__link {
  position: relative;
  display: block;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-white);
  text-decoration: none;
  padding: 1.5625rem 1.875rem;
}
@media screen and (max-width: 750px) {
  .drawer__link {
    font-size: 1rem;
    color: var(--color-text);
    padding: 0.9375rem 0.625rem;
  }
}
@media screen and (max-width: 375px) {
  .drawer__link {
    font-size: clamp(0.875rem, 0.148rem + 3.64vw, 1rem);
  }
}

.drawer__link::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-circle-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 1.625rem;
  aspect-ratio: 1/1;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .drawer__link::after {
    width: 1.25rem;
    background-image: url(../images/arrow-circle-right-green.svg);
  }
}

.drawer__item a:hover {
  opacity: 0.7;
}

.drawer__actions {
  display: none;
}
@media screen and (max-width: 750px) {
  .drawer__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    height: inherit;
    gap: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.drawer__action-item {
  position: relative;
  padding: 0.71875rem 0;
}

.drawer__action-item:first-child {
  width: 57%;
}

.drawer__action-item:last-child {
  width: 43%;
}

/* 縦線 */
.drawer__action-item:first-child::after {
  content: "";
  position: absolute;
  right: -1.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 21px;
  background: rgba(166, 166, 166, 0.3);
}

.drawer__action-link {
  color: var(--color-text);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 375px) {
  .drawer__action-link {
    font-size: clamp(0.625rem, -0.102rem + 3.64vw, 0.75rem);
  }
}

.drawer__action-link::before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.drawer__action-link--recruit::before {
  background: url("../images/office-icon.svg") no-repeat center/contain;
}

.drawer__action-link--login::before {
  background: url("../images/user-icon.svg") no-repeat center/contain;
}

.drawer__cta {
  display: none;
}
@media screen and (max-width: 750px) {
  .drawer__cta {
    margin-top: 1.875rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.625rem;
  }
}

.drawer__cta-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  flex: 1;
  background: var(--color-white);
  padding: 0.375rem 0.5625rem;
  border-radius: 0.5625rem;
  max-width: 22.8125rem;
  width: 100%;
}

.drawer__cta-tel-icon {
  width: 1.5625rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 1/1;
}

@media screen and (max-width: 750px) {
  .drawer__cta-tel-number {
    font-family: var(--font-roboto-condensed);
    font-size: clamp(1.313rem, 1.124rem + 0.8vw, 1.5rem);
    font-weight: bold;
    line-height: 1;
    color: var(--color-primary);
  }
}
@media screen and (max-width: 375px) {
  .drawer__cta-tel-number {
    font-size: clamp(1rem, -0.818rem + 9.09vw, 1.313rem);
  }
}

@media screen and (max-width: 750px) {
  .drawer__cta-tel-time {
    font-size: 0.5rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-left: 0.3125rem;
  }
}
@media screen and (max-width: 375px) {
  .drawer__cta-tel-time {
    font-size: clamp(0.375rem, -0.352rem + 3.64vw, 0.5rem);
  }
}

@media screen and (max-width: 750px) {
  .drawer__cta-contact {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.875rem 1.25rem;
    color: var(--color-white);
    text-decoration: none;
    position: relative;
    max-width: 22.8125rem;
    margin-inline: auto;
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .drawer__cta-contact-small {
    display: block;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1;
  }
}
@media screen and (max-width: 375px) {
  .drawer__cta-contact-small {
    font-size: clamp(0.5rem, -0.227rem + 3.64vw, 0.625rem);
  }
}

@media screen and (max-width: 750px) {
  .drawer__cta-contact-main {
    font-size: 1.375rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    line-height: 1;
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 375px) {
  .drawer__cta-contact-main {
    font-size: clamp(1rem, -1.182rem + 10.91vw, 1.375rem);
  }
}

@media screen and (max-width: 750px) {
  body.is-drawer-active {
    overflow: hidden;
  }
}

/* パンくず */
.breadcrumb {
  padding: 1.25rem 1.25rem 0;
}

.breadcrumb__inner {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.breadcrumb__content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.625rem;
  color: #2E2E2E;
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .breadcrumb__content {
    font-size: 3.4666666667vw;
  }
}

.breadcrumb__link {
  color: var(--color-primary);
  text-decoration: underline;
}

.breadcrumb__arrow {
  background-image: url(../images/arrow-breadcrumb.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.875rem;
  height: 0.875rem;
}

.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 0.5625rem 2.875rem 0.5625rem 2.5rem;
  cursor: pointer;
}

.c-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-circle-right-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 1.25rem;
  aspect-ratio: 1/1;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .c-button::after {
    width: 1rem;
  }
}

.c-search-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background: linear-gradient(90deg, #006FA7 0%, #009196 100%);
  box-shadow: 0px 10px 20px -10px rgba(15, 59, 86, 0.5);
  border-radius: 62.4375rem;
  padding: 0.875rem 1.875rem 0.875rem 2.875rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-search-button {
    font-size: 3.4666666667vw;
  }
}
.c-search-button:hover {
  opacity: 0.7;
}

.c-search-button::before {
  position: absolute;
  content: "";
  background-image: url(../images/search-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.375rem;
  aspect-ratio: 1/1;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}

.c-green-gr-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background: linear-gradient(87.6deg, #07941D 5.03%, #10710C 94.76%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 1rem 2.625rem 1rem 1.875rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .c-green-gr-button {
    font-size: 3.4666666667vw;
  }
}
.c-green-gr-button:hover {
  opacity: 0.7;
}

.c-green-gr-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-circle-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 1.25rem;
  aspect-ratio: 1/1;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .c-green-gr-button::after {
    width: 1rem;
  }
}

.c-orange-gr-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #FF7F00 1.69%, #DD4B0D 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  color: var(--color-white);
  cursor: pointer;
}

.c-orange-gr-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-circle-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 2.375rem;
  aspect-ratio: 1/1;
  right: 0.8125rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .c-orange-gr-button::after {
    width: clamp(0.938rem, -1.641rem + 5.49vw, 1.875rem);
  }
}
@media screen and (max-width: 750px) {
  .c-orange-gr-button::after {
    width: 1.5rem;
  }
}

.c-modal-close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: none;
  cursor: pointer;
  background-color: var(--color-white);
  box-shadow: 0px 5px 10px rgba(14, 72, 72, 0.1);
  border-radius: 1.5rem;
  padding: 0.6875rem 1rem;
  flex-shrink: 0;
}

.c-modal-close-button__icon {
  background-image: url(../images/close-icon-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.5rem;
}

.c-modal-close-button__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .c-modal-close-button__text {
    font-size: 3.4666666667vw;
  }
}

.c-down-arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 0.625rem;
  padding: 1.25rem;
  transition: background-color 0.3s ease-in;
}
@media screen and (max-width: 750px) {
  .c-down-arrow-button {
    justify-content: flex-start;
  }
}

.c-down-arrow-button__icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.c-down-arrow-button__icon::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -40%);
  width: 0;
  height: 0;
  border-left: 0.375rem solid transparent;
  border-right: 0.375rem solid transparent;
  border-top: 0.5rem solid var(--color-white);
}

.c-down-arrow-button__text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .c-down-arrow-button__text {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1024px) {
  .c-down-arrow-button__text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .c-down-arrow-button__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .c-down-arrow-button__text {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .c-down-arrow-button__text {
    font-size: 4vw;
  }
}

.c-down-arrow-button:hover {
  opacity: 1;
  background-color: #DEEFE1;
}

.footer {
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-soft);
}

.footer__inner {
  max-width: 77.5rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 3.75rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .footer__inner {
    flex-direction: column;
    padding: 2.5rem 0.625rem;
    gap: 3.125rem;
  }
}

.footer__left {
  width: 52%;
}
@media screen and (max-width: 750px) {
  .footer__left {
    width: 100%;
  }
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 3.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1200px) {
  .footer__brand {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .footer__brand {
    gap: 1.875rem;
  }
}

.footer__logo {
  width: 11rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 176/60;
}
@media screen and (max-width: 750px) {
  .footer__logo {
    width: 8.75rem;
  }
}

.footer__tokyo {
  position: relative;
  width: 6.8125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 109/28;
}
@media screen and (max-width: 750px) {
  .footer__tokyo {
    width: 5rem;
  }
}

.footer__shigotozaidan {
  width: 10.1875rem;
  aspect-ratio: 163/34;
}
@media screen and (max-width: 750px) {
  .footer__shigotozaidan {
    width: 6.875rem;
  }
}

.footer__other-logo-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9375rem;
}

.footer__other-logo-list::before {
  position: absolute;
  content: "";
  background-color: var(--color-gray-medium);
  height: 3.3125rem;
  width: 1px;
  left: -1.625rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .footer__other-logo-list::before {
    left: -1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .footer__other-logo-list::before {
    height: 1.875rem;
    left: -0.8125rem;
  }
}

.footer__title,
.footer__address {
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .footer__title,
.footer__address {
    font-size: 3.4666666667vw;
  }
}

.footer__address {
  margin-top: 0.625rem;
}

.footer__note {
  font-size: 0.875rem;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .footer__note {
    font-size: 3.2vw;
  }
}

.footer__right {
  display: grid;
  grid-template-columns: auto auto;
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  row-gap: 1.25rem;
  flex: 1;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    grid-template-columns: 1fr;
  }
}

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

.footer__nav-item:not(:first-child) {
  margin-top: 1rem;
}

.footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.59375rem;
  position: relative;
}
@media screen and (max-width: 750px) {
  .footer__link {
    font-size: 3.2vw;
  }
}

.footer__link::before {
  content: "";
  background-image: url(../images/arrow-circle-right-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  aspect-ratio: 1/1;
  flex-shrink: 0;
}

.footer__link.footer__link--cta {
  background: var(--color-white);
  padding: 0.75rem 1.25rem 0.875rem;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  justify-content: center;
  align-items: center;
  padding-left: 1.5rem;
}
@media screen and (max-width: 750px) {
  .footer__link.footer__link--cta {
    max-width: clamp(12.5rem, 4.128rem + 41.86vw, 23.75rem);
  }
}

.footer__link.footer__link--cta::before {
  background-image: url(../images/office-icon.svg);
  width: 1.5rem;
}

.footer__copyright {
  display: block;
  width: 100%;
  padding: 1.25rem 0.625rem 2.5rem;
  text-align: center;
  background-color: var(--color-green-lightest);
  color: var(--color-secondly);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.page-top {
  display: block;
  position: fixed;
  bottom: -100px;
  right: 40px;
  background-color: rgba(51, 51, 51, 0.5);
  cursor: pointer;
  opacity: 0;
  width: 3.75rem;
  height: 3.75rem;
  z-index: 10;
  transition: 0.3s ease;
}
@media screen and (max-width: 750px) {
  .page-top {
    width: 2.5rem;
    height: 2.5rem;
    right: 5%;
  }
}

.page-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -25%) rotate(-45deg);
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 750px) {
  .page-top::after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.page-top.active {
  bottom: 3.75rem;
  opacity: 1;
}

/* ----------------------------------------------------
固定メニュー
---------------------------------------------------- */
.fixed-menu {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--color-yellow);
  z-index: 998;
  box-shadow: 0px 0px 30px rgba(0, 51, 8, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
}

.fixed-menu.is-show {
  position: -webkit-sticky;
  position: sticky;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-menu__inner {
  max-width: 1200px;
  margin: auto;
  padding: 0.625rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
@media screen and (max-width: 750px) {
  .fixed-menu__inner {
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 375px) {
  .fixed-menu__inner {
    padding: 0.625rem;
  }
}

/* 電話 */
.fixed-menu__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
  flex: 1;
  background-color: var(--color-yellow-light);
  padding: 0.75rem 1.25rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .fixed-menu__tel {
    padding: 0.75rem 0.9375rem;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-menu__tel {
    padding: 0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__tel {
    width: 100%;
    padding: 0.3125rem 0.9375rem;
  }
}

.fixed-menu__tel-icon {
  background-image: url(../images/tel-icon-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.4375rem;
  height: 2.4375rem;
}
@media screen and (max-width: 1024px) {
  .fixed-menu__tel-icon {
    width: clamp(1.5rem, 0.125rem + 2.93vw, 2rem);
    height: clamp(1.5rem, 0.125rem + 2.93vw, 2rem);
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__tel-icon {
    width: clamp(1.5rem, 0.872rem + 2.67vw, 2.125rem);
    height: clamp(1.5rem, 0.872rem + 2.67vw, 2.125rem);
  }
}
@media screen and (max-width: 375px) {
  .fixed-menu__tel-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.fixed-menu__tel-number {
  font-family: var(--font-roboto-condensed);
  font-size: 3.125rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
}
@media screen and (max-width: 1200px) {
  .fixed-menu__tel-number {
    font-size: clamp(1.625rem, -0.361rem + 4.23vw, 2.813rem);
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__tel-number {
    font-size: 5.3333333333vw;
  }
}

.fixed-menu__tel-time {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin-left: 0.9375rem;
}
@media screen and (max-width: 1200px) {
  .fixed-menu__tel-time {
    font-size: clamp(0.5rem, 0.291rem + 0.45vw, 0.625rem);
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__tel-time {
    font-size: 1.6vw;
  }
}

/* CTA */
.fixed-menu__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.9375rem 1.25rem;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  width: 42.5%;
  border: 3px solid var(--color-white);
  box-shadow: 0px 10px 30px rgba(0, 78, 12, 0.2);
}
@media screen and (max-width: 1024px) {
  .fixed-menu__cta {
    padding: 0.9375rem 0.75rem;
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__cta {
    width: 100%;
    padding: 0.75rem 0.625rem;
  }
}

.fixed-menu__cta-balloon {
  position: absolute;
  content: "";
  width: 75%;
  background-color: var(--color-white);
  padding: 0.5rem;
  left: 50%;
  top: -2.5rem;
  transform: translateX(-50%);
  display: inline-block;
  border-radius: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-text);
}
@media screen and (max-width: 1200px) {
  .fixed-menu__cta-balloon {
    font-size: clamp(0.5rem, 0.291rem + 0.45vw, 0.625rem);
    top: -1.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .fixed-menu__cta-balloon {
    width: 85%;
    padding: 0.4375rem 0.4375rem;
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__cta-balloon {
    top: -73%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(0.438rem, -0.167rem + 3.02vw, 1.25rem);
  }
}

/* ▼ 吹き出し三角 */
.fixed-menu__cta-balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.5rem;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0.5rem solid transparent;
  border-right: 0.5rem solid transparent;
  border-top: 0.5rem solid var(--color-white);
}

.fixed-menu__cta-balloon span {
  color: var(--color-red);
}

.fixed-menu__cta-small {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .fixed-menu__cta-small {
    font-size: clamp(0.625rem, 0.416rem + 0.45vw, 0.75rem);
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__cta-small {
    font-size: 2.9333333333vw;
  }
}

.fixed-menu__cta-main {
  font-size: 1.875rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 0.625rem;
}
@media screen and (max-width: 1200px) {
  .fixed-menu__cta-main {
    font-size: clamp(1.25rem, 0.205rem + 2.23vw, 1.875rem);
  }
}
@media screen and (max-width: 750px) {
  .fixed-menu__cta-main {
    font-size: 5.6vw;
  }
}

.pagination__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: var(--color-white);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  border-radius: 62.4375rem;
  font-weight: 400;
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  transition: all 0.3s;
}
@media screen and (max-width: 750px) {
  .pagination__link {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 375px) {
  .pagination__link {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.pagination__link:hover {
  background: var(--color-primary);
  color: var(--color-white);
  opacity: 1;
}

.pagination__link--current {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
}

.pagination__icon {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
}
@media screen and (max-width: 375px) {
  .pagination__icon {
    width: 0.625rem;
    height: 0.625rem;
  }
}

.pagination__icon::before,
.pagination__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 0.625rem;
  height: 0.125rem;
  background: var(--color-primary);
  border-radius: 0.625rem;
}
@media screen and (max-width: 375px) {
  .pagination__icon::before,
.pagination__icon::after {
    width: 0.5rem;
  }
}

.pagination__link:hover .pagination__icon::before,
.pagination__link:hover .pagination__icon::after {
  background: var(--color-white);
}

/* < */
.pagination__icon--prev::before {
  top: 0.25rem;
  transform: translateX(-50%) rotate(135deg);
}
@media screen and (max-width: 375px) {
  .pagination__icon--prev::before {
    top: 0.125rem;
  }
}

.pagination__icon--prev::after {
  bottom: 0.25rem;
  transform: translateX(-50%) rotate(-135deg);
}
@media screen and (max-width: 375px) {
  .pagination__icon--prev::after {
    bottom: 0.125rem;
  }
}

/* > */
.pagination__icon--next::before {
  top: 0.25rem;
  transform: translateX(-50%) rotate(45deg);
}
@media screen and (max-width: 375px) {
  .pagination__icon--next::before {
    top: 0.125rem;
  }
}

.pagination__icon--next::after {
  bottom: 0.25rem;
  transform: translateX(-50%) rotate(-45deg);
}
@media screen and (max-width: 375px) {
  .pagination__icon--next::after {
    bottom: 0.125rem;
  }
}

.job-search {
  background-color: var(--color-green-pale);
  padding: 3.125rem 3.125rem 4.375rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-search {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

/* アコーディオン */
.job-search__accordion + .job-search__accordion {
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-search__accordion + .job-search__accordion {
    margin-top: 0.625rem;
  }
}

.job-search__toggle {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, #008982 0%, #00A143 100%);
  box-shadow: 0px 5px 26px -10px rgba(15, 59, 86, 0.2);
  border: none;
  border-radius: 5.625rem;
  padding: 0.625rem 2.125rem;
  color: var(--color-white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .job-search__toggle {
    font-size: 4vw;
  }
}

.job-search__toggle::before,
.job-search__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  width: 21px;
  height: 3px;
  background-color: var(--color-white);
  transition: transform 0.3s;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px) {
  .job-search__toggle::before,
.job-search__toggle::after {
    width: clamp(0.938rem, 0.24rem + 3.49vw, 1.875rem);
  }
}

.job-search__toggle::before {
  transform: translateY(-50%) rotate(90deg);
}

.job-search__toggle.is-open::before,
.job-search__toggle.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

/* 中身 */
.job-search__content {
  background: var(--color-white);
  padding: 1.875rem;
  border-radius: 0.3125rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-search__content {
    padding: 1.25rem 0.625rem;
  }
}

.job-search__scroll {
  overflow-y: auto;
  padding-right: 1.875rem;
}
@media screen and (max-width: 750px) {
  .job-search__scroll {
    padding-right: 0.9375rem;
  }
}

.job-search__scroll.job-search__scroll--category {
  height: 25rem;
}
@media screen and (max-width: 750px) {
  .job-search__scroll.job-search__scroll--category {
    height: 15.625rem;
  }
}

.job-search__scroll.job-search__scroll--area {
  height: 36.25rem;
}
@media screen and (max-width: 750px) {
  .job-search__scroll.job-search__scroll--area {
    height: 21.875rem;
  }
}

.job-search__scroll::-webkit-scrollbar {
  width: 8px;
}

.job-search__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.job-search__scroll::-webkit-scrollbar-thumb {
  background: var(--color-green-deep);
  border-radius: 0.25rem;
}

.job-search__scroll::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-deep);
}

/* グループ */
.job-search__group-title {
  background-color: #F5FAF6;
  font-weight: bold;
  border-bottom: 2px solid #D1E0D4;
  padding: 0.625rem;
  color: var(--color-text);
  font-size: 0.875rem;
}
@media screen and (max-width: 750px) {
  .job-search__group-title {
    font-size: 3.2vw;
  }
}

.job-search__group-title span {
  position: relative;
  padding-left: 1.75rem;
}

.job-search__group-title span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #B4B4B4;
  border-radius: 0.25rem;
  background-color: var(--color-white);
}

.job-search__group-title span::after {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 50%;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
}

.job-search__group-title input:checked + span::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.job-search__group-title input:checked + span::after {
  opacity: 1;
}

/* checkbox */
.job-search__checkbox-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 0.625rem;
  padding: 0.9375rem 1.25rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-search__checkbox-list {
    padding: 0.625rem 0.625rem 0.9375rem;
    row-gap: 0.9375rem;
  }
}

/* label共通 */
.job-search__checkbox,
.job-search__group-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  color: var(--color-text);
  font-size: 0.875rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .job-search__checkbox,
.job-search__group-title {
    font-size: 3.2vw;
  }
}

.job-search__group-title {
  width: 100%;
  padding: 0.625rem;
}

.job-search__group-title::before {
  left: 0.625rem;
}

/* 枠 */
.job-search__checkbox span {
  position: relative;
  padding-left: 1.5625rem;
}

/* checkbox box */
.job-search__checkbox span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #B4B4B4;
  border-radius: 0.25rem;
  background: var(--color-white);
  transition: 0.2s;
}

/* check mark */
.job-search__checkbox span::after {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 50%;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
}

/* checked */
.job-search__checkbox input:checked + span::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.job-search__checkbox input:checked + span::after {
  opacity: 1;
}

/* 条件 */
.job-search__other {
  margin-top: 1.25rem;
  padding: 1.875rem;
  background-color: var(--color-white);
  border-top-left-radius: 0.3125rem;
  border-top-right-radius: 0.3125rem;
}
@media screen and (max-width: 750px) {
  .job-search__other {
    padding: 1.25rem 0.9375rem;
  }
}

.job-search__conditions-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .job-search__conditions-title {
    font-size: 3.4666666667vw;
  }
}

.job-search__conditions-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 0.625rem;
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-search__conditions-list {
    row-gap: 0.9375rem;
  }
}

/* input */
.job-search__keyword {
  margin-top: 1.25rem;
}

.job-search__input {
  width: 100%;
  height: 2.75rem;
  border: 1px solid #B4B4B4;
  border-radius: 0.25rem;
  margin-top: 0.625rem;
  padding: 0.5rem;
}

.job-search__input::-moz-placeholder {
  color: #D0D0D0;
}

.job-search__input::placeholder {
  color: #D0D0D0;
}

.job-search__growth {
  padding: 1.25rem;
  background: #D1EDD7;
  border-bottom-left-radius: 0.3125rem;
  border-bottom-right-radius: 0.3125rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.job-search__growth-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-search__growth-label {
    flex-direction: column;
    gap: 0.3125rem;
  }
}

.job-search__growth-check {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
}

/* ビルアイコン */
.job-search__growth-icon img {
  width: 1.0625rem;
  display: block;
}

/* テキスト */
.job-search__growth-text {
  font-size: 0.875rem;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .job-search__growth-text {
    font-size: 3.2vw;
  }
}

/* 成長産業とはリンク */
.job-search__growth-link {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--color-blue);
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .job-search__growth-link {
    font-size: 2.9333333333vw;
  }
}

/* ? アイコン */
.job-search__growth-link img {
  width: 0.875rem;
  display: block;
}

/* ボタン */
.job-search__submit {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-search__submit {
    margin-top: 1.25rem;
    flex-direction: column;
    align-items: center;
  }
}

.job-search__submit button {
  max-width: 20rem;
  width: 100%;
}

.job-search__button {
  max-width: 20rem;
  width: 100%;
}

.job-card {
  border: 2px solid var(--color-green-strong);
  border-radius: 0.625rem;
  overflow: hidden;
  background: var(--color-white);
}

/* 上のカテゴリ */
.job-card__category {
  color: var(--color-white);
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1.25rem 1rem 1.25rem 1rem;
  border-radius: 0;
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%);
  background-size: cover;
  background-position: center;
  min-height: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .job-card__category {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .job-card__category {
    min-height: 4.6875rem;
  }
}
.job-card__category.job-card__category--office {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-office.webp);
}
.job-card__category.job-card__category--customer-service {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-customer-service.webp);
}
.job-card__category.job-card__category--business {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-business.webp);
}
.job-card__category.job-card__category--it-engineer {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-it-engineer.webp);
}
.job-card__category.job-card__category--creative {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-creative.webp);
}
.job-card__category.job-card__category--retail {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-retail.webp);
}
.job-card__category.job-card__category--medical-welfare {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-medical-welfare.webp);
}
.job-card__category.job-card__category--architecture {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-architecture.webp);
}
.job-card__category.job-card__category--technical-engineer {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-technical-engineer.webp);
}
.job-card__category.job-card__category--manufacturing-logistics {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-manufacturing-logistics.webp);
}
.job-card__category.job-card__category--sales {
  background-image: linear-gradient(180deg, rgba(0, 102, 16, 0.8) 0%, rgba(0, 109, 78, 0.8) 100%), url(../images/job/bg-job-sales.webp);
}

/* 本文 */
.job-card__body {
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-card__body {
    padding: 0.5rem 0.9375rem;
  }
}

/* No */
.job-card__number {
  text-align: center;
  font-size: 0.75rem;
  color: var(--color-green-deepest);
  line-height: 1.4;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-card__number {
    font-size: 2.9333333333vw;
  }
}

/* タイトル */
.job-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-green-deep);
}
@media screen and (max-width: 750px) {
  .job-card__title {
    font-size: 3.4666666667vw;
  }
}

/* タグ */
.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 1.25rem;
}

.job-card__tag {
  border: 1.2px solid var(--color-green-deep);
  border-radius: 62.4375rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-green-deep);
}
@media screen and (max-width: 750px) {
  .job-card__tag {
    font-size: 3.0666666667vw;
  }
}

/* 情報 */
.job-card__info {
  margin-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.job-card__row {
  display: flex;
  align-items: stretch;
}

.job-card__row:not(:first-child) {
  margin-top: 0.125rem;
}

/* ラベル */
.job-card__label {
  width: 4.375rem;
  background: var(--color-green-pale);
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .job-card__label {
    width: 25%;
  }
}

/* 値 */
.job-card__value {
  color: var(--color-green-deepest);
  padding: 0.3125rem 0.5rem;
}

.job-card__label,
.job-card__value {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .job-card__label,
.job-card__value {
    font-size: 3.2vw;
  }
}

/* フッター */
.job-card__footer {
  border-top: 1px solid var(--color-line);
  padding-top: 0.625rem;
  display: flex;
  justify-content: flex-end;
}

/* ボタン */
.job-card__button {
  width: 4rem;
  height: 2rem;
  background-color: var(--color-primary);
  border-radius: 5.625rem;
  position: relative;
}

/* 矢印 */
.job-card__button::after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  width: 0.5625rem;
  height: 0.5625rem;
  transform: translate(-50%, -50%);
}

.ai-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
}

.ai-modal.is-open {
  display: flex;
}

.ai-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.ai-modal__container {
  position: relative;
  max-width: 67.5rem;
  width: 100%;
  max-height: 90vh;
  background: var(--color-white);
  padding: 3.125rem 1.875rem;
  border-radius: 1.875rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 750px) {
  .ai-modal__container {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.ai-modal__container::-webkit-scrollbar {
  width: 8px;
}

.ai-modal__container::-webkit-scrollbar-track {
  background: transparent;
}

.ai-modal__container::-webkit-scrollbar-thumb {
  background: var(--color-green-deep);
  border-radius: 0.25rem;
}

.ai-modal__container::-webkit-scrollbar-thumb:hover {
  background: var(--color-green-deep);
}

.ai-step {
  display: none;
}

.ai-step.is-active {
  display: block;
}

.ai-start {
  text-align: center;
}

.ai-start__lead {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1.25rem 1.875rem;
  border-radius: 5.625rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .ai-start__lead {
    font-size: 5.3333333333vw;
  }
}

.ai-start__text {
  margin-top: 1.875rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .ai-start__text {
    font-size: 4vw;
  }
}

/* field */
.ai-field {
  margin-bottom: 20px;
}

.ai-field label {
  display: block;
  margin-bottom: 8px;
}

/* nav */
.ai-diagnosis__footer {
  position: relative;
  display: grid;
  grid-template-columns: 6.875rem 1fr 6.875rem;
  align-items: flex-end;
  padding-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__footer {
    grid-template-columns: 1fr;
    align-items: center;
    padding-top: 1.875rem;
  }
}

.ai-nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .ai-nav {
    justify-content: space-between;
    gap: 0.625rem;
  }
}

/* button */
.ai-modal__back {
  max-width: 7.375rem;
  width: 100%;
  border-radius: 62.4375rem;
  background-color: #5D5D5D;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .ai-modal__back {
    max-width: 25%;
    padding: 0.625rem 0.625rem;
  }
}
@media screen and (max-width: 375px) {
  .ai-modal__back {
    max-width: 5rem;
  }
}

.ai-modal__back-icon {
  background-image: url(../images/back-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.125rem;
  height: 1.125rem;
}
@media screen and (max-width: 750px) {
  .ai-modal__back-icon {
    width: 0.9375rem;
    height: 0.9375rem;
  }
}
@media screen and (max-width: 375px) {
  .ai-modal__back-icon {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.ai-modal__back-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .ai-modal__back-text {
    font-size: 4vw;
  }
}

.ai-modal__button {
  position: relative;
  background: linear-gradient(90deg, #FF7F00 1.69%, #DD4B0D 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1rem 1.25rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .ai-modal__button {
    padding: 0.75rem 0.625rem;
    gap: 0.5rem;
    width: 100%;
  }
}
.ai-modal__button.ai-modal__button--start {
  max-width: 22.25rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .ai-modal__button.ai-modal__button--start {
    max-width: 90%;
  }
}
.ai-modal__button.ai-modal__button--step1 {
  max-width: 16.625rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .ai-modal__button.ai-modal__button--step1 {
    max-width: none;
  }
}

.ai-modal__button-icon {
  background-image: url(../images/arrow-circle-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (max-width: 750px) {
  .ai-modal__button-icon {
    width: 4.8vw;
    height: 4.8vw;
  }
}
@media screen and (max-width: 375px) {
  .ai-modal__button-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.ai-modal__button-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .ai-modal__button-text {
    font-size: 5.3333333333vw;
  }
}
@media screen and (max-width: 375px) {
  .ai-modal__button-text {
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 375px) and (max-width: 750px) {
  .ai-modal__button-text {
    font-size: 4.2666666667vw;
  }
}

@media screen and (max-width: 750px) {
  .ai-modal__close {
    position: relative;
    left: unset;
    bottom: unset;
    margin: 0.9375rem auto 0;
    order: 3;
  }
}

.ai-diagnosis__header {
  padding-bottom: 2.5rem;
}

.ai-diagnosis__title {
  position: relative;
  width: 100%;
  background: var(--color-white);
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 1.875rem;
  padding: 1.25rem;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__title {
    font-size: 5.3333333333vw;
  }
}

/* 吹き出し三角 */
.ai-diagnosis__title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.5rem;
  transform: translateX(-50%);
  border-left: 1.75rem solid transparent;
  border-right: 1.75rem solid transparent;
  border-top: 1.875rem solid var(--color-white);
}

.ai-diagnosis__content {
  background-color: #F5FAF6;
  padding: 2.5rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__content {
    padding: 1.875rem 0.9375rem;
  }
}

.ai-diagnosis__field {
  padding-top: 1.25rem;
  border-top: 1px dotted #D1E0D4;
}

.ai-diagnosis__field:not(:first-child) {
  margin-top: 1.875rem;
}

.ai-diagnosis__field-title {
  color: var(--color-green-deep);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__field-title {
    font-size: 4vw;
  }
}

.ai-select {
  position: relative;
  width: 100%;
}
.ai-select.ai-select--medium {
  max-width: 15rem;
}
.ai-select.ai-select--small {
  max-width: 6.25rem;
}

.ai-select__input {
  width: 100%;
  padding: 0.75rem 2.1875rem 0.75rem 1.25rem;
  border: none;
  border-radius: 1.5625rem;
  background-color: var(--color-white);
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .ai-select__input {
    font-size: 3.4666666667vw;
  }
}
.ai-select__input.ai-select__input--medium {
  max-width: 15rem;
}
.ai-select__input.ai-select__input--small {
  max-width: 6.25rem;
}

.ai-select__input {
  color: var(--color-text);
}

.ai-select__input.is-placeholder {
  color: #D0D0D0;
}

.ai-select__input:focus {
  color: var(--color-text);
}

/* 矢印 */
.ai-select::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../images/arrow-down-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateY(-50%);
  pointer-events: none;
}

.ai-radio-wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.875rem;
       column-gap: 1.875rem;
  row-gap: 0.625rem;
}

.ai-radio {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}
@media screen and (max-width: 750px) {
  .ai-radio {
    font-size: 3.4666666667vw;
  }
}

.ai-radio input {
  position: absolute;
  opacity: 0;
}

.ai-radio span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.ai-radio span::before {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 1px solid #ECF0EC;
  background: var(--color-white);
  box-sizing: border-box;
  flex-shrink: 0;
}

/* チェック */
.ai-radio input:checked + span::before {
  border-color: var(--color-primary);
  background: var(--color-primary);
}

.ai-radio input:checked + span::after {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  background: var(--color-white);
}

.ai-modal__pager {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  flex-shrink: 0;
  text-align: right;
}
@media screen and (max-width: 750px) {
  .ai-modal__pager {
    font-size: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .ai-modal__pager {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.ai-modal__pager span.current {
  font-size: 1.5rem;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .ai-modal__pager span.current {
    font-size: 4.5333333333vw;
  }
}

.ai-diagnosis__field-box {
  background-color: var(--color-green-pale);
  padding: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__field-box {
    padding: 1.25rem 0.625rem;
  }
}

.ai-diagnosis__field-box + .ai-diagnosis__field-box {
  margin-top: 0.625rem;
}

.ai-diagnosis__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__row {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.ai-diagnosis__field-box-title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  padding: 0.15625rem 0 0.46875rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__field-box-title {
    font-size: 3.4666666667vw;
  }
}

.ai-diagnosis__textarea-group {
  margin-top: 0.625rem;
}

.ai-diagnosis__textarea {
  width: 100%;
  background: var(--color-white);
  border-radius: 0.625rem;
  border: none;
  padding: 0.25rem 0.5rem 0.625rem;
  font-size: 1rem;
  line-height: 1.6;
  resize: vertical;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__textarea {
    font-size: 3.4666666667vw;
  }
}

.ai-diagnosis__textarea::-moz-placeholder {
  color: #D0D0D0;
}

.ai-diagnosis__textarea::placeholder {
  color: #D0D0D0;
}

/* 枠 */
.ai-checkbox span {
  position: relative;
  padding-left: 1.5625rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .ai-checkbox span {
    font-size: 3.4666666667vw;
  }
}

/* checkbox box */
.ai-checkbox span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #ECF0EC;
  border-radius: 0.25rem;
  background: var(--color-white);
  transition: 0.2s;
}

/* check mark */
.ai-checkbox span::after {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 50%;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
}

/* checked */
.ai-checkbox input:checked + span::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.ai-checkbox input:checked + span::after {
  opacity: 1;
}

.ai-diagnosis__qualification {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.625rem;
}

.ai-diagnosis__input-text {
  background-color: var(--color-white);
  border-radius: 1.5625rem;
  padding: 0.75rem 1.25rem;
  font-size: 1rem;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__input-text {
    font-size: 3.4666666667vw;
  }
}

.ai-diagnosis__input-text::-moz-placeholder {
  color: #D0D0D0;
}

.ai-diagnosis__input-text::placeholder {
  color: #D0D0D0;
}

.ai-diagnosis__qualification input {
  max-width: 31.25rem;
  width: 100%;
}

.ai-diagnosis__qualification-button-wrap {
  margin-top: 0.625rem;
  display: flex;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__qualification-button-wrap {
    margin-top: 0.9375rem;
  }
}

.ai-diagnosis__qualification-add {
  background: var(--color-primary);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 0.375rem 1.875rem 0.375rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__qualification-add {
    width: 100%;
    padding: 0.75rem 1.875rem 0.75rem 0.625rem;
  }
}

.ai-diagnosis__qualification-add-icon {
  background-image: url(../images/add-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1rem;
  height: 1rem;
}

.ai-diagnosis__qualification-add-text {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__qualification-add-text {
    font-size: 3.4666666667vw;
  }
}

.ai-diagnosis__qualification-delete {
  background-color: var(--color-red-dark);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 0.4375rem 1.25rem 0.4375rem 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__qualification-delete {
    gap: 0.3125rem;
    padding: 0.375rem 0.625rem 0.375rem 0.5rem;
  }
}

.ai-diagnosis__qualification-delete.is-hidden {
  visibility: hidden;
}

.ai-diagnosis__qualification-delete-icon {
  background-image: url(../images/delete-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.125rem;
  height: 1.125rem;
}

.ai-diagnosis__qualification-delete-text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .ai-diagnosis__qualification-delete-text {
    font-size: 3.4666666667vw;
  }
}

.entry-about-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
  padding: 1.25rem;
  align-items: center;
  justify-content: center;
}

.entry-about-modal.is-open {
  display: flex;
}

.entry-about-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.entry-about-modal__container {
  position: relative;
  max-width: 43.75rem;
  width: 100%;
  max-height: 90vh;
  background: var(--color-white);
  padding: 3.125rem 1.875rem;
  border-radius: 1.875rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 750px) {
  .entry-about-modal__container {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.entry-about-modal__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: reM(10);
}

.entry-about-modal__title-icon {
  background-image: url(../images/question-icon-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2rem;
  height: 2rem;
}

.entry-about-modal__title-text {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .entry-about-modal__title-text {
    font-size: 5.3333333333vw;
  }
}

.entry-about-modal__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text);
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .entry-about-modal__text {
    font-size: 3.4666666667vw;
  }
}
.entry-about-modal__text .highlight {
  color: var(--color-primary);
}

.entry-about-modal__footer {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .entry-about-modal__footer {
    padding-top: 1.875rem;
  }
}

.thanks__content {
  text-align: center;
}

.thanks__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .thanks__title {
    font-size: 5.3333333333vw;
  }
}

.thanks__text {
  margin-top: 1.25rem;
  font-size: 1.25rem;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .thanks__text {
    font-size: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .thanks__text {
    margin-top: 0.9375rem;
  }
}

.thanks__button {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #07941D 0%, #01664E 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 0.875rem 1.875rem;
  max-width: 12.75rem;
  width: 100%;
  margin-inline: auto;
  color: var(--color-white);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .thanks__button {
    font-size: 4.5333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .thanks__button {
    padding: 0.75rem 1.25rem;
    max-width: 55%;
    margin-top: 1.5625rem;
  }
}

.cta {
  background: #067A17;
  padding: 3.125rem 1.25rem 5rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.cta__title {
  font-size: 2rem;
  margin-top: 0.5rem;
}

.cta__text {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .cta__text {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .cta__text {
    margin-top: 1.25rem;
  }
}

.cta__box {
  max-width: 65.625rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 2rem;
  padding: 5rem 1.25rem 3.75rem;
  background-color: var(--color-white);
  border-radius: 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .cta__box {
    gap: clamp(1.25rem, -2.189rem + 7.33vw, 2.5rem);
  }
}
@media screen and (max-width: 750px) {
  .cta__box {
    flex-direction: column-reverse;
    gap: 1.875rem;
    margin-top: 1.25rem;
    padding: 5rem 0.9375rem 1.875rem;
    align-items: center;
  }
}

/* 電話 */
.cta__tel {
  text-align: left;
}

.cta__tel-number {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.3125rem;
}
@media screen and (max-width: 750px) {
  .cta__tel-number {
    align-items: center;
  }
}

.cta__tel-number-icon {
  background-image: url(../images/cta-tel-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 375px) {
  .cta__tel-number-icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.cta__tel-number-text {
  font-size: 2.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .cta__tel-number-text {
    font-size: 6.9333333333vw;
  }
}
@media screen and (max-width: 1024px) {
  .cta__tel-number-text {
    font-size: clamp(2.125rem, 1.093rem + 2.2vw, 2.5rem);
  }
}
@media screen and (max-width: 750px) {
  .cta__tel-number-text {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .cta__tel-number-text {
    font-size: 6.9333333333vw;
  }
}

.cta__tel-time {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #777777;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta__tel-time {
    font-size: 3.2vw;
  }
}

/* メール */
.cta__mail {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 22.5rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .cta__mail {
    max-width: 20.625rem;
  }
}
@media screen and (max-width: 750px) {
  .cta__mail {
    max-width: 90%;
  }
}

/* ボタン */
.cta__button {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem 0.9375rem;
  text-decoration: none;
  background: linear-gradient(180deg, #00964B 0%, #008D86 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
}
@media screen and (max-width: 750px) {
  .cta__button {
    padding: 1rem 0.75rem;
  }
}

.cta__button-balloon {
  position: absolute;
  content: "";
  top: 0;
  left: 48%;
  transform: translate(-50%, -80%);
  font-size: 0.875rem;
  font-weight: 700;
  background-color: var(--color-yellow-cleam);
  color: var(--color-brown);
  padding: 0.875rem 1.5625rem;
  border-radius: 6.1875rem;
  width: 57%;
}
@media screen and (max-width: 750px) {
  .cta__button-balloon {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 1024px) {
  .cta__button-balloon {
    width: 65%;
  }
}
@media screen and (max-width: 750px) {
  .cta__button-balloon {
    width: 75%;
  }
}

.cta__button-balloon::after {
  content: "";
  position: absolute;
  left: 2.5rem;
  bottom: -0.625rem;
  border-left: 0.75rem solid var(--color-yellow-cleam);
  border-bottom: 0.6875rem solid transparent;
}
@media screen and (max-width: 750px) {
  .cta__button-balloon::after {
    left: 30%;
  }
}

.cta__button-icon {
  background-image: url(../images/mail-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.625rem;
  height: 1.625rem;
}

.cta__button-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
}
@media screen and (max-width: 750px) {
  .cta__button-text {
    font-size: 4vw;
  }
}

/* ----------------------------------------------------
メインビュー
---------------------------------------------------- */
.top-mv {
  position: relative;
}
@media screen and (max-width: 750px) {
  .top-mv {
    margin-top: 5.6875rem;
  }
}

.top-mv__img {
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.top-mv__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  z-index: 5;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .top-mv__content {
    top: 35%;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__content {
    top: 22%;
    width: 100%;
  }
}

.top-mv__title {
  font-size: 4.554375rem;
  color: var(--color-green-black);
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .top-mv__title {
    font-size: 5vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__title {
    font-size: 4.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title {
    line-height: 1.2;
    font-size: 9.8666666667vw;
  }
}

.top-mv__title-sub {
  position: relative;
  font-size: 1.75rem;
  color: var(--color-black);
  line-height: 1.3;
  display: inline-block;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 1440px) {
  .top-mv__title-sub {
    font-size: 1.9444444444vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__title-sub {
    font-size: 1.5vw;
    padding-bottom: 0.25rem;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__title-sub {
    font-size: 4.2666666667vw;
  }
}

.top-mv__title-sub::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 20px;
  background: url("../images/top-mv-arrow01.svg") no-repeat center;
  background-size: 100% auto;
}
@media screen and (max-width: 750px) {
  .top-mv__title-sub::after {
    bottom: -15px;
  }
}

.top-mv__headline {
  display: block;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__headline {
    margin-top: 0.625rem;
  }
}

.top-mv__kagi-left {
  margin-right: -0.25em;
}

.top-mv__kagi-right {
  margin-left: -0.25em;
}

@media screen and (max-width: 750px) {
  .top-mv__kagi-left,
.top-mv__kagi-right {
    display: none;
  }
}

.top-mv__arrow {
  position: absolute;
  left: 0;
  bottom: -30px;
  width: 100%;
  height: 20px;
  z-index: -1;
}

.top-mv__arrow path {
  vector-effect: non-scaling-stroke;
}

.top-mv__highlight {
  position: relative;
  display: inline-block;
  z-index: 1;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .top-mv__highlight {
    text-align: left;
  }
}

.top-mv__marker {
  position: absolute;
  left: 80px;
  bottom: -10px;
  width: 90%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .top-mv__marker {
    left: 60px;
  }
}
@media screen and (max-width: 1024px) {
  .top-mv__marker {
    left: clamp(1.5rem, -2.626rem + 8.79vw, 3rem);
  }
}
@media screen and (max-width: 750px) {
  .top-mv__marker {
    width: 105%;
    left: -0.625rem;
    bottom: 55%;
  }
}

.top-mv__medium {
  font-size: 3.795rem;
  margin-left: -1.875rem;
}
@media screen and (max-width: 1440px) {
  .top-mv__medium {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__medium {
    margin-left: -0.9375rem;
    font-size: 3.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__medium {
    font-size: 8vw;
    position: absolute;
    content: "";
    right: 22%;
    bottom: calc(25% + (100vw - 375px) * 0.008);
  }
}
@media screen and (max-width: 375px) {
  .top-mv__medium {
    bottom: 24%;
  }
}

@media screen and (max-width: 750px) {
  .top-mv__highlight-offset {
    margin-left: 15%;
  }
}

.top-mv__last {
  display: block;
}
@media screen and (max-width: 750px) {
  .top-mv__last {
    margin-top: -0.625rem;
  }
}

.top-mv__last span {
  display: inline-block;
  transform: rotate(12deg);
  font-size: 5.600625rem;
  margin-left: -1.25rem;
}
@media screen and (max-width: 1440px) {
  .top-mv__last span {
    font-size: 6.1805555556vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__last span {
    margin-left: -0.9375rem;
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-mv__last span {
    margin-left: -0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .top-mv__last span {
    font-size: 12.2666666667vw;
  }
}

.top-mv__features {
  position: absolute;
  content: "";
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media screen and (max-width: 750px) {
  .top-mv__features {
    width: 100%;
    bottom: 0;
    transform: translate(-50%, -45%);
  }
}

.top-mv__features-img {
  width: 772px;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 772/239;
}

/* ----------------------------------------------------
概要
---------------------------------------------------- */
.intro {
  position: relative;
  padding: 12.5rem 0 5rem;
}
@media screen and (max-width: 1024px) {
  .intro {
    padding: clamp(7.5rem, -6.255rem + 29.3vw, 12.5rem) 0 5rem;
  }
}
@media screen and (max-width: 750px) {
  .intro {
    padding: 5rem 0 2.5rem;
  }
}

.intro::before {
  position: absolute;
  content: "";
  background-image: url(../images/top/bg-top-intro.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  aspect-ratio: 1440/382;
  width: 100%;
  height: 23.875rem;
  left: 0;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  .intro::before {
    height: clamp(15.625rem, -3.288rem + 40.29vw, 22.5rem);
  }
}
@media screen and (max-width: 750px) {
  .intro::before {
    height: 12.5rem;
  }
}

.intro__inner {
  position: relative;
  max-width: 80rem;
  width: 100%;
  margin-inline: auto;
  padding: 0 1.25rem;
  z-index: 1;
}

.intro__box {
  background-color: var(--color-white);
  border-top: 5px solid var(--color-primary);
  padding: 3.75rem 4.375rem;
}
@media screen and (max-width: 1024px) {
  .intro__box {
    padding: 3.125rem clamp(1.875rem, -5.002rem + 14.65vw, 4.375rem);
  }
}
@media screen and (max-width: 750px) {
  .intro__box {
    padding: 2.5rem 1.25rem;
  }
}

.intro__content {
  margin-top: 1.875rem;
  display: flex;
  gap: 1.875rem;
  align-items: center;
  background-color: var(--color-cream-light);
  padding: 1.875rem;
}
@media screen and (max-width: 750px) {
  .intro__content {
    flex-direction: column;
    padding: 1.25rem;
  }
}

.intro__text {
  width: 48%;
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 750px) {
  .intro__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .intro__text {
    width: 100%;
  }
}

.intro__text p + p {
  margin-top: 0.625rem;
}

.intro__highlight {
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}
@media screen and (max-width: 750px) {
  .intro__highlight {
    font-size: 4vw;
  }
}

.intro__movie {
  width: 45%;
}
@media screen and (max-width: 750px) {
  .intro__movie {
    width: 100%;
  }
}

.intro__movie iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.intro__worries {
  margin-top: 1.625rem;
  text-align: center;
  position: relative;
}

.intro__worries-title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .intro__worries-title {
    font-size: 5.3333333333vw;
  }
}

.intro__worries-sub {
  display: block;
  font-size: 1.125rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .intro__worries-sub {
    font-size: 3.7333333333vw;
  }
}

.intro__worries-list {
  position: relative;
  margin-top: 1.625rem;
  max-width: 50rem;
  margin-inline: auto;
}

.intro__worries-list::before {
  content: "";
  position: absolute;
  background: url("../images/top/nayami-deco01.svg") no-repeat center/contain;
  width: 5.3125rem;
  aspect-ratio: 85/76;
  left: -3.75rem;
  top: -0.75rem;
}
@media screen and (max-width: 1200px) {
  .intro__worries-list::before {
    left: 0;
    top: -2.875rem;
    width: 7.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .intro__worries-list::before {
    width: 3.125rem;
    left: 0;
    top: -2rem;
  }
}

.intro__worries-list::after {
  content: "";
  position: absolute;
  background: url("../images/top/nayami-deco02.svg") no-repeat center/contain;
  width: 5.375rem;
  aspect-ratio: 86/96;
  right: -3.25rem;
  top: -1rem;
}
@media screen and (max-width: 1200px) {
  .intro__worries-list::after {
    right: 0.625rem;
    top: -3.5rem;
    width: 7.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .intro__worries-list::after {
    width: 3.125rem;
    right: 0;
    top: -2rem;
  }
}

.intro__worries-item {
  background: var(--color-gray-light);
  border-radius: 0.75rem;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-secondly);
}
@media screen and (max-width: 750px) {
  .intro__worries-item {
    font-size: 4vw;
  }
}

.intro__worries-item + .intro__worries-item {
  margin-top: 0.625rem;
}

/* ----------------------------------------------------
特徴
---------------------------------------------------- */
.top-features {
  position: relative;
  background: linear-gradient(269.9deg, #D4EED8 0.06%, #EDFDE3 99.89%);
  padding: 12.3125rem 1.25rem 7.375rem;
}
@media screen and (max-width: 750px) {
  .top-features {
    padding: clamp(8.75rem, 5.494rem + 16.28vw, 13.125rem) 0.9375rem 3.75rem;
  }
}

.top-features::before {
  content: "";
  width: 100%;
  height: 5rem;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  top: -1px;
  -webkit-clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
          clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
}
@media screen and (max-width: 1024px) {
  .top-features::before {
    height: clamp(2.5rem, -2.658rem + 10.99vw, 4.375rem);
  }
}
@media screen and (max-width: 750px) {
  .top-features::before {
    height: 1.3125rem;
  }
}

.top-features__inner {
  position: relative;
  background-color: var(--color-green-light);
  max-width: 82.5rem;
  width: 100%;
  margin-inline: auto;
  padding: 11.75rem 3.75rem 7.375rem;
  border-radius: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .top-features__inner {
    padding: 10rem 1.5625rem 6.25rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__inner {
    background-color: transparent;
    padding: clamp(3.75rem, 1.89rem + 9.3vw, 6.25rem) 0.25rem clamp(2.5rem, 0.64rem + 9.3vw, 5rem);
  }
}

.top-features__heading {
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -70%);
  width: 100%;
}

.top-features__lead {
  font-size: 1.75rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--color-secondly);
}
@media screen and (max-width: 1200px) {
  .top-features__lead {
    font-size: 2.3333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__lead {
    font-size: 4.2666666667vw;
  }
}

.top-features__heading-title {
  margin-top: 0.875rem;
}

.top-features__heading-title span {
  display: inline-block;
  background: var(--color-white);
  font-size: 3.125rem;
  font-weight: 900;
  color: var(--color-secondly);
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1200px) {
  .top-features__heading-title span {
    font-size: 4.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__heading-title span {
    font-size: 6.4vw;
    padding: 0.4375rem 0.875rem;
  }
}

.top-features__feature {
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .top-features__feature {
    flex-direction: column;
    align-items: center;
  }
}

.top-features__feature:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 750px) {
  .top-features__feature:nth-child(even) {
    flex-direction: column-reverse;
  }
}

.top-features__image {
  display: block;
  width: 29.625rem;
  flex-shrink: 0;
  filter: drop-shadow(0px 4px 30px rgba(9, 47, 1, 0.2));
}
@media screen and (max-width: 1200px) {
  .top-features__image {
    width: clamp(20rem, 6.41rem + 28.95vw, 28.125rem);
  }
}
@media screen and (max-width: 750px) {
  .top-features__image {
    display: none;
  }
}

.top-features__image-sp {
  display: none;
}
@media screen and (max-width: 750px) {
  .top-features__image-sp {
    display: block;
    width: 100%;
    filter: drop-shadow(0px 4px 30px rgba(9, 47, 1, 0.2));
    margin-top: clamp(6.875rem, 1.759rem + 25.58vw, 13.75rem);
  }
}

.top-features__bubble {
  position: absolute;
  top: -5.875rem;
  left: 15rem;
  background: var(--color-yellow);
  border-radius: 5.625rem;
  padding: 1.1875rem 1.5rem;
  font-size: 1.375rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--color-green-dark);
  width: 100%;
  box-shadow: 0px 10px 20px rgba(12, 105, 29, 0.1);
}
@media screen and (max-width: 1200px) {
  .top-features__bubble {
    font-size: 1.8333333333vw;
    top: -5rem;
    left: clamp(5rem, -11.726rem + 35.63vw, 15rem);
  }
}
@media screen and (max-width: 750px) {
  .top-features__bubble {
    font-size: 4vw;
    left: 50%;
    top: 0;
    transform: translate(-50%, -95%);
    padding: 0.875rem clamp(0.625rem, 0.248rem + 1.6vw, 1rem);
    box-shadow: 0px 5.52921px 11.0584px rgba(12, 105, 29, 0.1);
  }
}
@media screen and (max-width: 375px) {
  .top-features__bubble {
    padding: 0.75rem 0.625rem;
  }
}

/* 吹き出しの三角 */
.top-features__bubble::after {
  content: "";
  position: absolute;
  left: 5.625rem;
  bottom: -1rem;
  border-left: 1.875rem solid var(--color-yellow);
  border-bottom: 1.125rem solid transparent;
}
@media screen and (max-width: 750px) {
  .top-features__bubble::after {
    left: 60%;
  }
}

.top-features__image img {
  width: 100%;
  display: block;
}

.top-features__content {
  flex: 1;
  background-color: var(--color-white);
  padding: 2.5rem 5rem;
  border-top-right-radius: 3.125rem;
  border-bottom-right-radius: 3.125rem;
  margin-top: 4.0625rem;
}
@media screen and (max-width: 1440px) {
  .top-features__content {
    padding: 2.5rem;
  }
}
@media screen and (max-width: 1200px) {
  .top-features__content {
    padding: 1.875rem 1.25rem;
    margin-top: clamp(1.875rem, -1.261rem + 6.68vw, 3.75rem);
  }
}
@media screen and (max-width: 750px) {
  .top-features__content {
    border-radius: 1.875rem;
    padding: clamp(2.625rem, 0.672rem + 9.77vw, 5.25rem) 1.25rem clamp(5.625rem, 1.439rem + 20.93vw, 11.25rem);
  }
}

.top-features__content-title {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 1200px) {
  .top-features__content-title {
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__content-title {
    text-align: center;
    font-size: 5.3333333333vw;
  }
}

.top-features__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 1200px) {
  .top-features__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-features__text {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__text {
    margin-top: 1rem;
    font-size: 4vw;
  }
}
.top-features__text.top-features__text--sm {
  font-size: 0.75rem;
}
@media screen and (max-width: 1200px) {
  .top-features__text.top-features__text--sm {
    margin-top: 0.625rem;
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-features__text.top-features__text--sm {
    font-size: 0.5625rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__text.top-features__text--sm {
    font-size: 3.2vw;
  }
}
.top-features__text .highlight {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 1200px) {
  .top-features__text .highlight {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) {
  .top-features__text .highlight {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__text .highlight {
    font-size: 4vw;
  }
}

.top-features__text + .top-features__text {
  margin-top: 1rem;
}
@media screen and (max-width: 1200px) {
  .top-features__text + .top-features__text {
    margin-top: 0.625rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__text + .top-features__text {
    margin-top: 1rem;
  }
}

.top-features__comment {
  position: absolute;
  right: 11.125rem;
  bottom: 1.75rem;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1.25rem 1.875rem;
  border-radius: 1.25rem;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.6;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .top-features__comment {
    font-size: 1.6666666667vw;
  }
}
@media screen and (max-width: 1200px) {
  .top-features__comment {
    bottom: 1rem;
    right: clamp(7.125rem, 2.943rem + 8.91vw, 9.625rem);
    padding: 0.75rem 1.125rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__comment {
    max-width: 65vw;
    right: unset;
    left: clamp(0.5rem, -2.477rem + 14.88vw, 4.5rem);
    bottom: -2.5rem;
    font-size: 3.4666666667vw;
    padding: 0.59375rem 0.6875rem;
  }
}
@media screen and (max-width: 375px) {
  .top-features__comment {
    max-width: 60vw;
  }
}

.top-features__comment::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: 1.625rem;
  border-left: 2rem solid var(--color-primary);
  border-top: 1.8125rem solid transparent;
}
@media screen and (max-width: 1200px) {
  .top-features__comment::after {
    right: -1rem;
    border-left: 1.375rem solid var(--color-primary);
    border-top: 1.25rem solid transparent;
  }
}
@media screen and (max-width: 750px) {
  .top-features__comment::after {
    bottom: 46%;
    border-left: 1.125rem solid transparent;
    border-right: 1.125rem solid transparent;
    border-top: 1.125rem solid var(--color-primary);
  }
}

.top-features__person {
  position: absolute;
  right: 1.5rem;
  bottom: 0;
  width: 9.625rem;
}
@media screen and (max-width: 1440px) {
  .top-features__person {
    width: 10.6944444444vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__person {
    width: 18.1333333333vw;
    bottom: -2.5rem;
    right: 0.5rem;
  }
}

.top-features__deco {
  position: absolute;
  right: 1rem;
  top: 1.5rem;
  width: 17rem;
}
@media screen and (max-width: 1200px) {
  .top-features__deco {
    top: -1rem;
    width: 22.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__deco {
    top: 0.25rem;
    width: 40.8vw;
  }
}

.top-features__list .top-features__feature:nth-child(2) {
  margin-top: 3.75rem;
}
.top-features__list .top-features__feature:nth-child(2) .top-features__bubble {
  left: auto;
  right: 23rem;
  top: -0.75rem;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__bubble {
    right: clamp(12.5rem, -5.062rem + 37.42vw, 23rem);
    top: -1.375rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__bubble {
    left: 50%;
    top: 0;
    transform: translate(-50%, -100%);
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__bubble::after {
  left: auto;
  right: 7.625rem;
  border-left: none;
  border-right: 1.875rem solid var(--color-yellow);
  border-bottom: 1.125rem solid transparent;
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__bubble::after {
    right: unset;
    left: 60%;
    border-right: unset;
    border-left: 1.875rem solid var(--color-yellow);
    border-bottom: 1.125rem solid transparent;
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__content {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-top-left-radius: 3.125rem;
  border-bottom-left-radius: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__content {
    border-radius: 1.875rem;
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__comment {
  right: auto;
  left: 12.5rem;
  bottom: 4rem;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__comment {
    left: clamp(7.5rem, 2.064rem + 11.58vw, 10.75rem);
    bottom: 2rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__comment {
    right: unset;
    left: clamp(0.5rem, -2.477rem + 14.88vw, 4.5rem);
    bottom: -2.5rem;
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__comment::after {
  right: auto;
  bottom: 4rem;
  left: -2rem;
  border-left: none;
  border-right: 2rem solid var(--color-primary);
  border-top: 1.8125rem solid transparent;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__comment::after {
    bottom: 45%;
    left: -1rem;
    border-right: 1.375rem solid var(--color-primary);
    border-top: 1.25rem solid transparent;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__comment::after {
    bottom: 55%;
    left: unset;
    right: -1rem;
    border-left: 1.125rem solid transparent;
    border-right: 1.125rem solid transparent;
    border-top: 1.125rem solid var(--color-primary);
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__person {
  position: absolute;
  left: 1.5rem;
  width: 9.4375rem;
}
@media screen and (max-width: 1440px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__person {
    width: 10.4861111111vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__person {
    width: 18.1333333333vw;
    bottom: -2.5rem;
    right: 0.5rem;
    left: unset;
  }
}
.top-features__list .top-features__feature:nth-child(2) .top-features__deco {
  position: absolute;
  left: 2rem;
  top: 0;
  width: 10.625rem;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__deco {
    top: -1rem;
    width: 14.1666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(2) .top-features__deco {
    left: unset;
    right: 0.625rem;
    top: 0.25rem;
    width: 25.3333333333vw;
  }
}

.top-features__list .top-features__feature:nth-child(3) {
  margin-top: 6.25rem;
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(3) {
    margin-top: 3.125rem;
  }
}
.top-features__list .top-features__feature:nth-child(3) .top-features__bubble::after {
  left: 8.625rem;
}
.top-features__list .top-features__feature:nth-child(3) .top-features__comment {
  right: 13.0625rem;
  bottom: 1.75rem;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__comment {
    bottom: 1rem;
    right: clamp(7.125rem, 2.943rem + 8.91vw, 9.625rem);
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__comment {
    right: unset;
    left: clamp(1.875rem, -6.032rem + 39.53vw, 12.5rem);
    bottom: -0.5rem;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__comment::after {
    bottom: 52%;
  }
}
.top-features__list .top-features__feature:nth-child(3) .top-features__person {
  width: 10.8125rem;
  bottom: -0.75rem;
}
@media screen and (max-width: 1440px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__person {
    width: 12.0138888889vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__person {
    width: 21.0666666667vw;
    bottom: -0.5rem;
    right: 0.5rem;
  }
}
.top-features__list .top-features__feature:nth-child(3) .top-features__deco {
  right: 0.5rem;
  top: 2rem;
  width: 10.5625rem;
}
@media screen and (max-width: 1200px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__deco {
    top: clamp(0.5rem, -2.009rem + 5.35vw, 2rem);
    width: 14.0833333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__list .top-features__feature:nth-child(3) .top-features__deco {
    width: 25.3333333333vw;
  }
}

.top-features__arrow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 40%);
  width: 17.125rem;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .top-features__arrow {
    width: 22.8333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__arrow {
    width: 24vw;
    transform: translate(-50%, 0);
    bottom: -2.75rem;
  }
}

.top-features__result {
  position: relative;
  margin-top: 2rem;
  max-width: 59.375rem;
  width: 100%;
  margin-inline: auto;
  background: linear-gradient(95.23deg, #FFFAC5 2.86%, #FFF584 97.83%);
  border: 10px solid var(--color-yellow);
  box-shadow: 0px 20px 0px var(--color-yellow-dark);
  border-radius: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-features__result {
    border: 3.5px solid var(--color-yellow);
    box-shadow: 0px 7.5px 0px var(--color-yellow-dark);
  }
}

.top-features__result-inner {
  padding: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-features__result-inner {
    padding: 1.875rem;
  }
}

.top-features__result-deco01 {
  position: absolute;
  width: 6.125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 98/172;
  left: 9%;
  top: -1.25rem;
}
@media screen and (max-width: 1024px) {
  .top-features__result-deco01 {
    width: 9.5703125vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__result-deco01 {
    width: 9.3333333333vw;
    top: -1.75rem;
    left: 6%;
  }
}
@media screen and (max-width: 375px) {
  .top-features__result-deco01 {
    top: -1rem;
  }
}

.top-features__result-deco02 {
  position: absolute;
  width: 7.3125rem;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 117/183;
  right: 8%;
  top: -1.625rem;
}
@media screen and (max-width: 1024px) {
  .top-features__result-deco02 {
    width: 11.42578125vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__result-deco02 {
    width: 11.2vw;
    top: -2.5rem;
    right: 5%;
  }
}
@media screen and (max-width: 375px) {
  .top-features__result-deco02 {
    top: -1.5rem;
  }
}

.top-features__result-title {
  width: 89%;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .top-features__result-title {
    width: 100%;
  }
}

.top-features__result-text {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .top-features__result-text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-features__result-text {
    text-align: left;
  }
}

/* ----------------------------------------------------
参加の流れ
---------------------------------------------------- */
.top-flow {
  background-color: var(--color-cream-light);
  padding: 6.25rem 1.25rem 0;
}
@media screen and (max-width: 750px) {
  .top-flow {
    padding: 2.5rem 1.25rem 0;
  }
}

.top-flow__inner {
  position: relative;
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 750px) {
  .top-flow__inner {
    padding-bottom: clamp(8.75rem, 2.5rem + 26.67vw, 15rem);
  }
}
@media screen and (max-width: 375px) {
  .top-flow__inner {
    padding-bottom: 7.5rem;
  }
}

.top-flow__deco01 {
  position: absolute;
  width: 19.125rem;
  left: 0.9375rem;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .top-flow__deco01 {
    left: 0;
    width: 20.5vw;
  }
}
@media screen and (max-width: 750px) {
  .top-flow__deco01 {
    width: 26.6666666667vw;
  }
}

.top-flow__deco02 {
  position: absolute;
  width: 20.8125rem;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1200px) {
  .top-flow__deco02 {
    width: 21.9166666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-flow__deco02 {
    width: 29.3333333333vw;
  }
}

.top-flow__text {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .top-flow__text {
    font-size: 3.4666666667vw;
  }
}
.top-flow__text .highlight {
  color: var(--color-primary);
}

.top-flow__box {
  margin-top: 3.125rem;
  background-color: var(--color-white);
  max-width: 42.1875rem;
  width: 100%;
  margin-inline: auto;
  padding: 3.125rem 2.5rem;
  box-shadow: 0px 0px 30px rgba(78, 78, 8, 0.1);
  border-radius: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .top-flow__box {
    padding: 3.125rem 2.5rem 6.25rem;
  }
}
@media screen and (max-width: 750px) {
  .top-flow__box {
    padding: 2.5rem 1.25rem;
  }
}

.top-flow__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* 縦線 */
.top-flow__steps::before {
  content: "";
  position: absolute;
  left: 2rem;
  top: 0.3125rem;
  bottom: 0;
  width: 2px;
  height: 95%;
  border-left: 2px dotted var(--color-green-border);
}
@media screen and (max-width: 750px) {
  .top-flow__steps::before {
    left: clamp(1.25rem, 0.622rem + 2.67vw, 1.875rem);
  }
}
@media screen and (max-width: 375px) {
  .top-flow__steps::before {
    left: 1.25rem;
  }
}

/* 各ステップ */
.top-flow__step {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-flow__step {
    gap: 0.625rem;
  }
}

/* 丸 */
.top-flow__num {
  width: 4rem;
  height: 4rem;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.5rem;
  z-index: 2;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .top-flow__num {
    font-size: 4.5333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .top-flow__num {
    width: clamp(2.5rem, 1.243rem + 5.35vw, 3.75rem);
    height: clamp(2.5rem, 1.243rem + 5.35vw, 3.75rem);
  }
}
@media screen and (max-width: 375px) {
  .top-flow__num {
    width: 2.5rem;
    height: 2.5rem;
  }
}

/* テキスト */
.top-flow__content {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .top-flow__content {
    font-size: 3.7333333333vw;
  }
}

/* 注釈 */
.top-flow__note {
  font-size: 0.75rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .top-flow__note {
    font-size: 2.9333333333vw;
  }
}

/* ----------------------------------------------------
特徴
---------------------------------------------------- */
.top-job {
  background: linear-gradient(269.9deg, #D4EED8 0.06%, #EDFDE3 99.89%);
  padding: 5rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-job {
    padding: 2.5rem 0.9375rem;
  }
}

.top-job__inner {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
  background-color: var(--color-white);
  padding: 3.125rem 1.875rem;
}
@media screen and (max-width: 750px) {
  .top-job__inner {
    padding: 2.5rem 0.9375rem;
  }
}

.top-job__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-job__text {
    font-size: 3.4666666667vw;
  }
}
.top-job__text .highlight {
  font-weight: 700;
  color: var(--color-primary);
}

.top-job__search {
  margin-top: 3.125rem;
}
@media screen and (max-width: 750px) {
  .top-job__search {
    margin-top: 1.875rem;
  }
}

/* ----------------------------------------------------
募集概要
---------------------------------------------------- */
.recruit-overview {
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .recruit-overview {
    padding: 3.125rem 0.9375rem;
  }
}

.recruit-overview__inner {
  max-width: 58.125rem;
  width: 100%;
  margin-inline: auto;
  background: #F5FAF6;
  padding: 2.5rem 5rem 5rem;
  border-radius: 3.125rem;
}
@media screen and (max-width: 1024px) {
  .recruit-overview__inner {
    padding: 1.875rem clamp(2.5rem, -4.377rem + 14.65vw, 5rem) 3.75rem;
  }
}
@media screen and (max-width: 750px) {
  .recruit-overview__inner {
    padding: 1.875rem 1.25rem 3.125rem;
  }
}

.recruit-overview__lead {
  margin-top: 0.625rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .recruit-overview__lead {
    font-size: 3.4666666667vw;
  }
}

.recruit-overview__table {
  width: 100%;
  margin-top: 1.875rem;
  border-collapse: collapse;
  border: 1px solid var(--color-green-muted);
}

.recruit-overview__row {
  border-bottom: 1px solid var(--color-green-muted);
}

.recruit-overview__head {
  width: 15rem;
  background: var(--color-green-soft);
  padding: 1.5rem 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text);
  border-right: 1px solid var(--color-green-muted);
  text-align: left;
}
@media screen and (max-width: 750px) {
  .recruit-overview__head {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-overview__head {
    width: 10rem;
  }
}
@media screen and (max-width: 750px) {
  .recruit-overview__head {
    width: 20%;
    padding: 1.25rem 0.75rem;
  }
}

.recruit-overview__data {
  background: var(--color-white);
  padding: 0.9375rem 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .recruit-overview__data {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .recruit-overview__data {
    width: 40%;
    padding: 0.625rem 0.75rem;
  }
}

.recruit-overview__date {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.125rem;
}
@media screen and (max-width: 750px) {
  .recruit-overview__date {
    font-size: 3.7333333333vw;
  }
}

.recruit-overview__note {
  font-size: 0.875rem;
  color: #222222;
}
@media screen and (max-width: 750px) {
  .recruit-overview__note {
    font-size: 3.2vw;
  }
}

.recruit-overview__alert {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
@media screen and (max-width: 750px) {
  .recruit-overview__alert {
    flex-direction: column;
    align-items: flex-start;
  }
}

.recruit-overview__alert-status {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .recruit-overview__alert-status {
    font-size: 4.5333333333vw;
  }
}

.recruit-overview__alert-text {
  color: var(--color-red);
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .recruit-overview__alert-text {
    font-size: 3.2vw;
  }
}

.recruit-overview__button {
  margin-top: 0.3125rem;
  max-width: 15rem;
  padding: 1rem 1.25rem;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .recruit-overview__button {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .recruit-overview__button {
    max-width: none;
  }
}
@media screen and (max-width: 375px) {
  .recruit-overview__button {
    font-size: 0.625rem;
  }
}

.recruit-overview__button::after {
  width: 1.25rem;
}
@media screen and (max-width: 1200px) {
  .recruit-overview__button::after {
    width: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .recruit-overview__button::after {
    width: 0.9375rem;
  }
}

.recruit-overview__list {
  list-style: none;
  padding-left: 0;
  margin-top: 0.375rem;
}

.recruit-overview__item {
  position: relative;
  font-size: 1.125rem;
  font-weight: 700;
  padding-left: 1rem;
}
@media screen and (max-width: 750px) {
  .recruit-overview__item {
    font-size: 3.7333333333vw;
  }
}

.recruit-overview__item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.recruit-overview__category-title {
  color: var(--color-secondly);
  margin-top: 0.625rem;
  font-weight: 700;
}

.recruit-overview__category-text {
  margin-top: 0.3125rem;
  font-weight: 700;
}

/* ----------------------------------------------------
キャリアチェンジ再就職支援事業に事業者登録
---------------------------------------------------- */
.cta-diagnosis {
  padding: 3.75rem 0.9375rem;
  background: linear-gradient(0deg, rgba(28, 110, 37, 0.5), rgba(28, 110, 37, 0.5)), linear-gradient(180deg, rgba(7, 148, 29, 0.8) 0%, rgba(103, 185, 116, 0.8) 100%), url(../images/top/bg-cta-diagnosis.webp);
  background-blend-mode: normal, screen, normal;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

.cta-diagnosis__inner {
  position: relative;
  background-color: var(--color-white);
  border-radius: 1.875rem;
  border: 5px solid var(--color-yellow);
  max-width: 43.75rem;
  width: 100%;
  margin-inline: auto;
  padding: 2.5rem 6.25rem;
}
@media screen and (max-width: 1024px) {
  .cta-diagnosis__inner {
    padding: 2.5rem clamp(2.5rem, -4.377rem + 14.65vw, 5rem);
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__inner {
    padding: 1.875rem 0.9375rem;
    border: 3px solid var(--color-yellow);
  }
}

.cta-diagnosis__badge {
  position: absolute;
  content: "";
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-color: var(--color-yellow);
  padding: 0.875rem 1.75rem;
  color: var(--color-green-dark);
  transform: rotate(16.6deg);
  right: 2.5rem;
  top: -0.75rem;
  border-radius: 3.125rem;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__badge {
    font-size: 3.7333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__badge {
    right: 0.5rem;
    top: -1.75rem;
  }
}

.cta-diagnosis__badge::after {
  content: "";
  position: absolute;
  left: 3rem;
  bottom: -0.5rem;
  border-left: 1rem solid var(--color-yellow);
  border-bottom: 0.75rem solid transparent;
  transform: rotate(16.6deg);
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__badge::after {
    left: 60%;
  }
}

.cta-diagnosis__lead {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__lead {
    font-size: 4vw;
  }
}
.cta-diagnosis__lead .highlight {
  font-size: 1.75rem;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__lead .highlight {
    font-size: 5.0666666667vw;
  }
}

.cta-diagnosis__subtext {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-top: 0.625rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__subtext {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__subtext {
    line-height: 1.4;
  }
}

.cta-diagnosis__button {
  margin-top: 1.25rem;
  color: var(--color-white);
  flex-direction: column;
  padding: 2.0625rem 3.75rem;
  border: 4px solid var(--color-white);
  box-shadow: 0px 10px 30px rgba(0, 78, 12, 0.2);
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__button {
    padding: 1.25rem 2.1875rem;
  }
}

.cta-diagnosis__button-sub-text {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__button-sub-text {
    font-size: 3.2vw;
  }
}

.cta-diagnosis__button-main-text {
  display: block;
  font-size: 2.375rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-top: 0.625rem;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__button-main-text {
    font-size: 6.4vw;
  }
}

.cta-diagnosis__note {
  margin-top: 1.25rem;
  border: 1px solid #88AE8E;
  padding: 0.625rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__note {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__note {
    line-height: 1.4;
  }
}
.cta-diagnosis__note .highlight {
  color: var(--color-red);
}

.cta-diagnosis__contact {
  margin-top: 1.875rem;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__contact {
    margin-top: 0.9375rem;
  }
}

.cta-diagnosis__contact-label,
.cta-diagnosis__time {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__contact-label,
.cta-diagnosis__time {
    font-size: 2.9333333333vw;
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__contact-label,
.cta-diagnosis__time {
    line-height: 1.4;
  }
}

.cta-diagnosis__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.3125rem;
  gap: 0.125rem;
}

.cta-diagnosis__tel-icon {
  background-image: url(../images/tel-icon-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.125rem;
  height: 2.125rem;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__tel-icon {
    width: clamp(1.5rem, 0.872rem + 2.67vw, 2.125rem);
    height: clamp(1.5rem, 0.872rem + 2.67vw, 2.125rem);
  }
}
@media screen and (max-width: 375px) {
  .cta-diagnosis__tel-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.cta-diagnosis__tel-number {
  font-family: var(--font-roboto-condensed);
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__tel-number {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__tel-number {
    font-size: 5.3333333333vw;
  }
}

.cta-diagnosis__time {
  margin-top: 0.3125rem;
}

.cta-diagnosis__faq-button {
  margin-top: 1.875rem;
  max-width: 13.625rem;
  width: 100%;
  font-weight: 700;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .cta-diagnosis__faq-button {
    margin-top: 1.25rem;
  }
}

/* ----------------------------------------------------
成長産業人材雇用支援事業
---------------------------------------------------- */
.top-growth-support {
  position: relative;
}

.top-growth-support__inner {
  display: grid;
  grid-template-columns: 21% 1fr 21%;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .top-growth-support__inner {
    grid-template-columns: 18% 1fr 18%;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__inner {
    display: block;
  }
}

/* 画像ラッパー */
.top-growth-support__images {
  display: contents;
}
@media screen and (max-width: 750px) {
  .top-growth-support__images {
    display: flex;
  }
}

.top-growth-support__image--left {
  grid-column: 1;
  grid-row: 1;
}

.top-growth-support__content {
  grid-column: 2;
}

.top-growth-support__image--right {
  grid-column: 3;
  grid-row: 1;
}

/* 画像 */
@media screen and (max-width: 750px) {
  .top-growth-support__image {
    width: 50%;
    height: 15rem;
  }
}

.top-growth-support__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* コンテンツ */
.top-growth-support__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-cream);
  padding: 5rem 2.5rem 3.125rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .top-growth-support__content {
    padding: 3.75rem 1.875rem 2.5rem;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__content {
    padding: 2.5rem 1.25rem 1.875rem;
  }
}

/* バッジ */
.top-growth-support__badge {
  display: inline-block;
  background: var(--color-yellow);
  color: var(--color-secondly);
  padding: 0.625rem 1.25rem;
  border-radius: 6.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .top-growth-support__badge {
    font-size: 4vw;
  }
}

/* タイトル */
.top-growth-support__title {
  margin-top: 0.625rem;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-secondly);
}
@media screen and (max-width: 750px) {
  .top-growth-support__title {
    font-size: 6.6666666667vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-growth-support__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .top-growth-support__title {
    font-size: 5.6vw;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__title {
    font-size: 2.5rem;
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-growth-support__title {
    font-size: 6.6666666667vw;
  }
}

/* ラベル */
.top-growth-support__label {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 900;
  display: inline-block;
  background-color: var(--color-white);
  padding: 0.3125rem 1.25rem;
  border-radius: 5.625rem;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .top-growth-support__label {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__label {
    margin-top: 0.9375rem;
  }
}

/* テキスト */
.top-growth-support__text {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .top-growth-support__text {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__text {
    margin-top: 0.625rem;
  }
}

/* ボタン */
.top-growth-support__button {
  max-width: 28.5rem;
  width: 100%;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  color: var(--color-white);
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .top-growth-support__button {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1024px) {
  .top-growth-support__button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 750px) {
  .top-growth-support__button {
    font-size: 3.4666666667vw;
  }
}
@media screen and (max-width: 750px) {
  .top-growth-support__button {
    max-width: 100%;
    font-size: 1.25rem;
    margin-top: 1.25rem;
    padding: 0.75rem 1.875rem;
  }
}
@media screen and (max-width: 750px) and (max-width: 750px) {
  .top-growth-support__button {
    font-size: 4vw;
  }
}

.top-growth-support__button::after {
  background-image: url(../images/arrow-circle-right-white2.svg);
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 750px) {
  .top-growth-support__button::after {
    width: 1.25rem;
    height: 1.25rem;
  }
}

/* ----------------------------------------------------
求人情報
---------------------------------------------------- */
.top-job-info {
  background-color: var(--color-cream);
  padding: 2.5rem 1.25rem 4.375rem;
}
@media screen and (max-width: 750px) {
  .top-job-info {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.top-job-info__inner {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
}

.top-job-info__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-secondly);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top-job-info__title {
    font-size: 5.0666666667vw;
  }
}

.top-job-info__cards {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .top-job-info__cards {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
  }
}

.top-job-info__more-button {
  margin-top: 1.875rem;
  max-width: 12.4375rem;
  width: 100%;
  margin-inline: auto;
}

/* ----------------------------------------------------
未経験の業界・業種を動画
---------------------------------------------------- */
.video-industry {
  padding: 0 0 5rem;
  background: var(--color-cream);
}
@media screen and (max-width: 750px) {
  .video-industry {
    padding: 0 0 2.5rem;
  }
}

.video-industry__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-secondly);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .video-industry__title {
    font-size: 5.0666666667vw;
  }
}

.video-industry__slider {
  margin-top: 1.25rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.video-card {
  text-align: center;
}

.video-card__thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.video-card__thumb img {
  width: 100%;
  display: block;
}

.video-card__thumb iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.video-card__thumb:hover {
  filter: none;
}

.video-card__thumb:hover img {
  opacity: 1;
}

.video-card__title {
  margin-top: 10px;
  padding: 0.3125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  background-color: var(--color-white);
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .video-card__title {
    font-size: 3.7333333333vw;
  }
}

.video-industry__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.875rem;
}

.video-industry__pagination {
  text-align: center;
  width: auto !important;
}

.video-industry__pagination .swiper-pagination-bullet {
  width: 0.75rem;
  height: 0.75rem;
  margin: 0 0.5rem !important;
  background: var(--color-gray-medium);
  opacity: 1;
}

.video-industry__pagination .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.video-industry__autoplay-toggle {
  width: 1.625rem;
  height: 1.625rem;
  background: var(--color-primary);
  border-radius: 0.25rem;
  position: relative;
  cursor: pointer;
}

/* 停止アイコン */
.video-industry__autoplay-toggle.is-playing::before,
.video-industry__autoplay-toggle.is-playing::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0.1875rem;
  height: 0.625rem;
  background: var(--color-white);
}

.video-industry__autoplay-toggle.is-playing::before {
  left: 0.5625rem;
}

.video-industry__autoplay-toggle.is-playing::after {
  right: 0.5625rem;
}

/* 再生アイコン */
.video-industry__autoplay-toggle.is-paused::before {
  content: "";
  position: absolute;
  left: 0.5625rem;
  top: 50%;
  transform: translateY(-50%);
  border-left: 0.625rem solid var(--color-white);
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
}

.video-industry__autoplay-toggle.is-paused::after {
  display: none;
}

.video-industry__prev,
.video-industry__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.75rem;
  height: 3.75rem;
  background: linear-gradient(90deg, #006FA7 0%, #009196 100%);
  box-shadow: 0px 10px 20px -10px rgba(15, 59, 86, 0.5);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
@media screen and (max-width: 750px) {
  .video-industry__prev,
.video-industry__next {
    width: clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem);
    height: clamp(1.875rem, 0.48rem + 6.98vw, 3.75rem);
  }
}

.video-industry__prev::before,
.video-industry__next::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  transform: translate(-50%, -50%);
}

.video-industry__prev::before {
  background-image: url(../images/arrow-left-white.svg);
}

.video-industry__next::before {
  background-image: url(../images/arrow-right-white.svg);
}

.video-industry__prev,
.video-industry__next {
  top: calc(50% - 1.625rem);
}

.video-industry__prev {
  left: 31%;
}
@media screen and (max-width: 750px) {
  .video-industry__prev {
    left: 8%;
  }
}

.video-industry__next {
  right: 31%;
}
@media screen and (max-width: 750px) {
  .video-industry__next {
    right: 8%;
  }
}

.video-industry__more-button {
  margin-top: 1.875rem;
  max-width: 12.4375rem;
  width: 100%;
  margin-inline: auto;
}

/* ----------------------------------------------------
お知らせ
---------------------------------------------------- */
.top-news {
  background-color: var(--color-white);
  padding: 7.5rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-news {
    padding: 3.75rem 0.9375rem;
  }
}

.top-news__inner {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.top-news__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .top-news__content {
    flex-direction: column;
    gap: 1.25rem;
  }
}

.top-news__left {
  width: 14.625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .top-news__left {
    width: 100%;
  }
}

.top-news__title-ja {
  font-size: 1.875rem;
}
@media screen and (max-width: 750px) {
  .top-news__title-ja {
    font-size: 5.3333333333vw;
  }
}

.top-news__right {
  flex: 1;
}

.top-news__list {
  display: flex;
  flex-direction: column;
  height: 12.5rem;
  overflow-y: auto;
  padding-right: 1.125rem;
}
@media screen and (max-width: 750px) {
  .top-news__list {
    height: 18.75rem;
  }
}

.top-news__list::-webkit-scrollbar {
  width: 8px;
}

.top-news__list::-webkit-scrollbar-track {
  background: transparent;
}

.top-news__list::-webkit-scrollbar-thumb {
  background: var(--color-gray-dark);
  border-radius: 0.25rem;
}

.top-news__list::-webkit-scrollbar-thumb:hover {
  background: var(--color-gray-dark);
}

.top-news__item {
  padding-bottom: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  border-bottom: 1px solid var(--color-gray);
}
@media screen and (max-width: 750px) {
  .top-news__item {
    gap: 0.625rem;
    flex-direction: column;
  }
}

.top-news__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .top-news__item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.top-news__item-date {
  font-weight: 700;
}

.top-news__item-date,
.top-news__item-link {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .top-news__item-date,
.top-news__item-link {
    font-size: 3.4666666667vw;
  }
}

/* ----------------------------------------------------
東京都が推進する成長産業とは
---------------------------------------------------- */
.about-overview {
  padding: 5rem 1.25rem 8.125rem;
}
@media screen and (max-width: 750px) {
  .about-overview {
    padding: 2.5rem 0.9375rem 4.375rem;
  }
}

.about-overview__content {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
}
@media screen and (max-width: 750px) {
  .about-overview__content {
    flex-direction: column;
    gap: 1.5625rem;
    margin-top: 1.875rem;
  }
}

.about-overview__left {
  width: 45.6%;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .about-overview__left {
    width: 100%;
  }
}

.about-overview__text {
  font-size: 1.125rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-overview__text {
    font-size: 3.7333333333vw;
  }
}
.about-overview__text .highlight {
  color: var(--color-primary);
}

.about-overview__right {
  background-color: var(--color-green-mist);
  border-radius: 1.25rem;
  padding: 1.25rem 1.875rem 1.875rem;
  flex: 1;
}
@media screen and (max-width: 750px) {
  .about-overview__right {
    padding: 0.9375rem 0.9375rem 1.25rem;
  }
}
.about-overview__right .about-overview__text {
  font-size: 1rem;
}
@media screen and (max-width: 750px) {
  .about-overview__right .about-overview__text {
    font-size: 3.4666666667vw;
  }
}

.about-overview__right-title-wrap {
  text-align: center;
}

.about-overview__right-title {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  padding: 0 0.3125rem 0.3125rem 0.3125rem;
  border-bottom: 1px solid var(--color-primary);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .about-overview__right-title {
    font-size: 3.7333333333vw;
  }
}

.about-overview__industry-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .about-overview__industry-list {
    flex-direction: column;
    justify-content: center;
  }
}

.about-overview__industry-item {
  position: relative;
  background-color: var(--color-white);
  padding: 0.9375rem 1.5625rem 0.9375rem 2.5rem;
  border-radius: 62.4375rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-overview__industry-item {
    font-size: 4vw;
  }
}

/* チェックアイコン */
.about-overview__industry-item::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(../images/check-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.9375rem;
  height: 0.9375rem;
}

.about-overview__right .about-overview__text {
  margin-top: 1.25rem;
}

/* ----------------------------------------------------
成長産業で人材が求められる理由
---------------------------------------------------- */
.about-reason {
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 750px) {
  .about-reason {
    padding-bottom: 3.125rem;
  }
}

.about-reason__content {
  display: grid;
  grid-template-columns: 33.3% 1fr;
  grid-template-rows: 100px auto;
  -moz-column-gap: 4.375rem;
       column-gap: 4.375rem;
  align-items: start;
}
@media screen and (max-width: 1200px) {
  .about-reason__content {
    -moz-column-gap: clamp(1.875rem, -2.307rem + 8.91vw, 4.375rem);
         column-gap: clamp(1.875rem, -2.307rem + 8.91vw, 4.375rem);
  }
}
@media screen and (max-width: 1024px) {
  .about-reason__content {
    grid-template-columns: 27% 1fr;
  }
}
@media screen and (max-width: 750px) {
  .about-reason__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 0 0.9375rem;
    gap: 1.25rem;
  }
}

/* 配置指定 */
.about-reason__left {
  grid-column: 1;
  grid-row: 1/3;
}
@media screen and (max-width: 750px) {
  .about-reason__left {
    grid-column: 1;
    grid-row: 2;
  }
}

.about-reason__title-wrap {
  grid-column: 2;
  grid-row: 1;
}
@media screen and (max-width: 750px) {
  .about-reason__title-wrap {
    grid-column: 1;
  }
}

.about-reason__body {
  grid-column: 2;
  grid-row: 2;
  padding-right: 16.3vw;
}
@media screen and (max-width: 1440px) {
  .about-reason__body {
    padding-right: 8.3vw;
  }
}
@media screen and (max-width: 1200px) {
  .about-reason__body {
    padding-right: clamp(2.5rem, -5.863rem + 17.82vw, 7.5rem);
  }
}
@media screen and (max-width: 750px) {
  .about-reason__body {
    grid-column: 1;
    grid-row: 3;
    padding: 0;
  }
}

.about-reason__text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-reason__text {
    font-size: 3.4666666667vw;
  }
}

/* ----------------------------------------------------
成長産業で活躍できる仕事とは
---------------------------------------------------- */
.about-works {
  background-color: var(--color-green-mist);
  padding: 6.25rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .about-works {
    padding: 3.125rem 0.9375rem;
  }
}

.about-works__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .about-works__lead {
    font-size: 3.7333333333vw;
  }
}

.about-works__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 3.125rem;
       column-gap: 3.125rem;
  row-gap: 3.75rem;
  margin-top: 4.625rem;
}
@media screen and (max-width: 1200px) {
  .about-works__cards {
    -moz-column-gap: 1.875rem;
         column-gap: 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .about-works__cards {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
    row-gap: clamp(3.75rem, 1.89rem + 9.3vw, 6.25rem);
  }
}

.about-works__card {
  position: relative;
  background-color: var(--color-white);
  border-radius: 1.25rem;
  padding: 2.625rem 1.875rem 1.875rem;
}
@media screen and (max-width: 750px) {
  .about-works__card {
    padding: clamp(2.5rem, 1.105rem + 6.98vw, 4.375rem) 0.9375rem 1.875rem;
  }
}

.about-works-card__title {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  font-size: 1.25rem;
  transform: translate(-50%, -50%);
  background-color: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  padding: 0.625rem 1.5625rem;
  border-radius: 62.4375rem;
  display: inline-block;
  width: 85%;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .about-works-card__title {
    font-size: 4vw;
  }
}

.about-works-card__text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-works-card__text {
    font-size: 3.4666666667vw;
  }
}

.about-works-card__bottom {
  margin-top: 1.125rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
@media screen and (max-width: 750px) {
  .about-works-card__bottom {
    gap: 0.9375rem;
  }
}

.about-works-card__image {
  width: 42%;
  flex-shrink: 0;
}

.about-works-card__list-wrap {
  flex: 1;
}

.about-works-card__list-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-works-card__list-title {
    font-size: 3.4666666667vw;
  }
}

.about-works-card__list {
  display: flex;
  flex-direction: column;
}

.about-works-card__item {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-left: 1.25rem;
}
@media screen and (max-width: 750px) {
  .about-works-card__item {
    font-size: 3.3333333333vw;
  }
}

/* チェックアイコン */
.about-works-card__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.375rem;
  background-image: url(../images/check-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.8125rem;
  height: 0.8125rem;
}

/* ----------------------------------------------------
成長産業で就業する事のメリット
---------------------------------------------------- */
.about-merit {
  background-color: var(--color-white);
  padding: 6.25rem 1.25rem 8.125rem;
}
@media screen and (max-width: 750px) {
  .about-merit {
    padding: 3.125rem 0.9375rem 4.375rem;
  }
}

.about-merit__lead {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .about-merit__lead {
    font-size: 3.7333333333vw;
  }
}

.about-merit__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 750px) {
  .about-merit__cards {
    grid-template-columns: 1fr;
    margin-top: 3.125rem;
  }
}

.about-merit__card {
  position: relative;
  border: 1px solid #E3EEE8;
  border-radius: 0.75rem;
  padding: 1.875rem;
}
@media screen and (max-width: 750px) {
  .about-merit__card {
    padding: 1.875rem 1.25rem;
  }
}

.about-merit-card__number {
  position: absolute;
  content: "";
  left: 1.25rem;
  top: 0;
  transform: translateY(-52%);
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #E3EEE8;
  color: var(--color-primary);
  border-radius: 6.1875rem;
  font-family: var(--font-roboto-condensed);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .about-merit-card__number {
    font-size: 2.9333333333vw;
  }
}
.about-merit-card__number .text-lg {
  font-size: 1.25rem;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .about-merit-card__number .text-lg {
    font-size: 4vw;
  }
}
@media screen and (max-width: 750px) {
  .about-merit-card__number {
    left: 0.625rem;
  }
}

.about-merit-card__number::after {
  content: "";
  position: absolute;
  left: 1.375rem;
  bottom: -0.625rem;
  border-right: 0.75rem solid #E3EEE8;
  border-bottom: 0.6875rem solid transparent;
}
@media screen and (max-width: 750px) {
  .about-merit-card__number::after {
    left: 30%;
  }
}

.about-merit-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-merit-card__title {
    font-size: 4vw;
  }
}

.about-merit-card__text {
  margin-top: 1.125rem;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-merit-card__text {
    font-size: 3.4666666667vw;
  }
}

/* ----------------------------------------------------
未経験の業界・業種を動画で知ろう
---------------------------------------------------- */
.about-movie {
  background-color: var(--color-white);
  padding: 0 1.25rem 7.5rem;
  scroll-margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .about-movie {
    padding: 0 0.9375rem 3.75rem;
  }
}

.about-movie__inner {
  max-width: 65.625rem;
  width: 100%;
  margin-inline: auto;
}

.about-movie__toc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 3rem;
  gap: 0.75rem;
}
@media screen and (max-width: 750px) {
  .about-movie__toc {
    grid-template-columns: 1fr;
    width: 70%;
    margin-inline: auto;
  }
}

.about-movie__toc-button {
  padding: 0.75rem 1.25rem;
}

.about-movie__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 3rem;
  gap: 3.125rem;
}
@media screen and (max-width: 750px) {
  .about-movie__cards {
    grid-template-columns: 1fr;
    gap: 1.5625rem;
  }
}

.about-movie__card {
  scroll-margin-top: 5rem;
}

.about-movie-card__img {
  width: 100%;
}

.about-movie-card__title {
  margin-top: 0.625rem;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 0.3125rem;
  padding: 0.3125rem 1.25rem;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .about-movie-card__title {
    font-size: 3.7333333333vw;
  }
}

.about-movie-modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
}

.about-movie-modal.is-open {
  display: block;
}

.about-movie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.about-movie-modal__container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.5vw;
  max-width: 900px;
}
@media screen and (max-width: 750px) {
  .about-movie-modal__container {
    width: 90vw;
  }
}

.about-movie-modal__video {
  display: block;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  cursor: pointer;
}

.about-movie-modal__video:hover {
  opacity: 1;
}

.about-movie-modal__video img,
.about-movie-modal__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-movie-modal__close {
  position: absolute;
  top: -3.125rem;
  right: 0rem;
  width: 3.75rem;
  height: 3.75rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* ×アイコン */
.about-movie-modal__close::before,
.about-movie-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.875rem;
  height: 0.1875rem;
  background: var(--color-white);
  border-radius: 0.3125rem;
}

.about-movie-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.about-movie-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ----------------------------------------------------
成長産業の求人情報
---------------------------------------------------- */
.about-recruit {
  background-color: var(--color-cream);
  padding: 4.375rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .about-recruit {
    padding: 2.5rem 0.9375rem;
  }
}

.about-recruit__inner {
  max-width: 68.75rem;
  width: 100%;
  margin-inline: auto;
}

.about-recruit__cards {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .about-recruit__cards {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
    margin-top: 1.875rem;
  }
}

.about-recruit__more-button {
  margin-top: 3rem;
  max-width: 21.875rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .about-recruit__more-button {
    max-width: 80%;
  }
}

.faq {
  padding: 5rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .faq {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

.faq__contact {
  text-align: center;
}

.faq__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .faq__text {
    font-size: 3.7333333333vw;
  }
}

.faq__contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.faq__contact-link-icon {
  background-image: url(../images/mail-icon-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.125rem;
  height: 1.125rem;
}

.faq__contact-link-text {
  color: var(--color-green-deep);
  font-size: 1rem;
  line-height: 1.5;
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .faq__contact-link-text {
    font-size: 3.4666666667vw;
  }
}

.faq__toc {
  margin-top: 2.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 1.875rem;
}
@media screen and (max-width: 750px) {
  .faq__toc {
    grid-template-columns: 1fr;
    align-items: center;
    gap: 0.9375rem;
  }
}
@media screen and (max-width: 375px) {
  .faq__toc {
    margin-top: 1.875rem;
  }
}

.faq__toc-button {
  max-width: 23.75rem;
  padding: 1.25rem;
}
@media screen and (max-width: 750px) {
  .faq__toc-button {
    max-width: 80%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 375px) {
  .faq__toc-button {
    max-width: 85%;
  }
}

.faq__content-wrap {
  margin-top: 3rem;
}

.faq__content {
  background-color: var(--color-green-mist);
  border-radius: 1.25rem;
  padding: 2.5rem 4.6875rem;
  scroll-margin-top: 5rem;
}
@media screen and (max-width: 1024px) {
  .faq__content {
    padding: 2.5rem 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .faq__content {
    padding: 1.875rem 1.25rem;
  }
}

.faq__content + .faq__content {
  margin-top: 5rem;
}
@media screen and (max-width: 750px) {
  .faq__content + .faq__content {
    margin-top: 2.5rem;
  }
}

.faq__title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .faq__title {
    font-size: 5.6vw;
  }
}

.faq__items {
  margin-top: 2.375rem;
}

.faq__item {
  width: 100%;
}

.faq__item:not(:first-child) {
  margin-top: 2.375rem;
}
@media screen and (max-width: 750px) {
  .faq__item:not(:first-child) {
    margin-top: 1.5625rem;
  }
}

.faq-item__title {
  -moz-appearance: none;
       appearance: none; /* ← デフォルトスタイルを無効化 */
  -webkit-appearance: none; /* Safari対応 */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  background-color: var(--color-white);
  cursor: pointer;
  padding: 1.25rem 1.875rem 1.25rem 4.5rem;
  border-top-left-radius: 0.9375rem;
  border-top-right-radius: 0.9375rem;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .faq-item__title {
    align-items: baseline;
    padding: 0.9375rem 1.25rem 0.9375rem 3.75rem;
  }
}

.faq-item__title::before {
  content: "Q";
  background-color: var(--color-primary);
  color: var(--color-white);
  top: 1.375rem;
}
@media screen and (max-width: 750px) {
  .faq-item__title::before {
    top: 1.25rem;
  }
}

.faq-item__title::before,
.faq-item__content::before {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9375rem;
  line-height: 1.2;
  position: absolute;
  left: 1.875rem;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .faq-item__title::before,
.faq-item__content::before {
    left: 0.9375rem;
  }
}

.faq-item__title-text {
  text-align: justify;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .faq-item__title-text {
    font-size: 3.7333333333vw;
  }
}

.faq-item__toggle-icon {
  position: relative;
  display: inline-block;
  width: 1.3125rem;
  height: 1.3125rem;
  margin-left: 1.5625rem;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .faq-item__toggle-icon {
    width: 1rem;
    height: 1rem;
  }
}

/* ＋ を擬似要素2本で作る */
.faq-item__toggle-icon::before,
.faq-item__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background: var(--color-green-deep);
  border-radius: 1px;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.faq-item__toggle-icon::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item__title.is-open .faq-item__toggle-icon::before {
  display: none;
}

.faq-item__title.is-open .faq-item__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-item__content {
  display: none;
  position: relative;
  width: 100%;
  background-color: var(--color-white);
  padding: 1.25rem 1.875rem 1.25rem 4.5rem;
  border-bottom-left-radius: 0.9375rem;
  border-bottom-right-radius: 0.9375rem;
}
.faq-item__content.faq-item__content--single {
  display: block;
}
@media screen and (max-width: 750px) {
  .faq-item__content {
    padding: 0.9375rem 1.25rem 0.9375rem 3.75rem;
  }
}

.faq-item__content::before {
  content: "A";
  color: var(--color-primary);
  top: 1.375rem;
  border: 1px solid var(--color-primary);
}
@media screen and (max-width: 750px) {
  .faq-item__content::before {
    top: 1.25rem;
  }
}

.faq-item__content-text {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .faq-item__content-text {
    font-size: 3.4666666667vw;
  }
}

.seminar {
  padding: 5rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .seminar {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

.seminar__inner {
  background-color: var(--color-green-mist);
  border-radius: 1.25rem;
  padding: 3.75rem 4.375rem;
}
@media screen and (max-width: 1024px) {
  .seminar__inner {
    padding: 3.125rem 1.875rem;
  }
}
@media screen and (max-width: 750px) {
  .seminar__inner {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.seminar__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .seminar__cards {
    gap: 1.25rem;
  }
}
@media screen and (max-width: 750px) {
  .seminar__cards {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
  }
}

.seminar__card {
  background-color: var(--color-white);
  box-shadow: 0px 10px 20px rgba(33, 66, 39, 0.05);
  border-radius: 0.625rem;
  padding: 1.875rem 1.875rem 1.25rem;
}
@media screen and (max-width: 750px) {
  .seminar__card {
    padding: 1.25rem 0.9375rem 0.625rem;
  }
}

.seminar-card__img {
  border-radius: 0.625rem;
  width: 100%;
  aspect-ratio: 45/22;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.seminar-card__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.seminar-card__category-item {
  border: 1px solid var(--color-green-deep);
  border-radius: 62.4375rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-green-deep);
}
@media screen and (max-width: 750px) {
  .seminar-card__category-item {
    font-size: 3.2vw;
  }
}

/* タイトル */
.seminar-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-green-deep);
}
@media screen and (max-width: 750px) {
  .seminar-card__title {
    font-size: 3.4666666667vw;
  }
}

.seminar-card__info {
  margin-top: 0.625rem;
  padding-bottom: 0.625rem;
}

.seminar-card__row {
  display: flex;
  align-items: stretch;
}

.seminar-card__row:not(:first-child) {
  margin-top: 0.125rem;
}

/* ラベル */
.seminar-card__label {
  width: 5.625rem;
  background: var(--color-green-pale);
  padding: 0.3125rem 0.625rem;
  font-weight: 700;
  color: var(--color-green-deep);
  text-align: center;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .seminar-card__label {
    width: 30%;
  }
}

/* 値 */
.seminar-card__value {
  padding: 0.3125rem 0.625rem;
}
.seminar-card__value .strong {
  color: var(--color-primary);
  font-weight: 700;
}

.seminar-card__label,
.seminar-card__value {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .seminar-card__label,
.seminar-card__value {
    font-size: 3.2vw;
  }
}

/* フッター */
.seminar-card__footer {
  border-top: 1px solid var(--color-line);
  padding-top: 0.625rem;
  display: flex;
  justify-content: flex-end;
}

/* ボタン */
.seminar-card__button {
  width: 4rem;
  height: 2rem;
  background-color: var(--color-primary);
  border-radius: 5.625rem;
  position: relative;
}

/* 矢印 */
.seminar-card__button::after {
  content: "";
  position: absolute;
  background-image: url(../images/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  width: 0.5625rem;
  height: 0.5625rem;
  transform: translate(-50%, -50%);
}

.seminar__pagination {
  margin-top: 2.5rem;
}

.seminar-detail {
  padding: 2.3125rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail {
    padding: 1.875rem 0.9375rem 5rem;
  }
}

.seminar-detail__content {
  background-color: var(--color-green-mist);
  border-radius: 1.25rem;
  padding: 3.125rem 3.125rem 5rem;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail__content {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.seminar-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-green-deep);
  padding: 1rem 0;
  border-bottom: 2px solid var(--color-primary);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .seminar-detail__title {
    font-size: 4.5333333333vw;
  }
}

.seminar-detail__img {
  width: 100%;
  margin-top: 1.25rem;
}

.seminar-detail__point {
  position: relative;
  background-color: var(--color-white);
  width: 100%;
  border: 1px solid var(--color-line);
  padding: 1.875rem;
  margin-top: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail__point {
    padding: 1.25rem 0.9375rem;
  }
}

.seminar-detail__point-title {
  position: absolute;
  content: "";
  top: 0;
  left: 1.875rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  padding: 0.3125rem 1.25rem;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .seminar-detail__point-title {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .seminar-detail__point-title {
    left: 0.9375rem;
  }
}

.seminar-detail__point-text {
  padding-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .seminar-detail__point-text {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .seminar-detail__point-text {
    padding-top: 2.5rem;
  }
}

/* 情報 */
.seminar-detail__info {
  margin-top: 1.875rem;
}

.seminar-detail__row {
  display: flex;
  align-items: stretch;
}

.seminar-detail__row:not(:first-child) {
  margin-top: 0.3125rem;
}

/* ラベル */
.seminar-detail__label {
  width: 15rem;
  background: var(--color-green-soft);
  padding: 0.75rem 0.625rem;
  font-weight: 700;
  color: var(--color-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .seminar-detail__label {
    width: 33%;
  }
}

/* 値 */
.seminar-detail__value {
  color: var(--color-text);
  padding: 0.625rem 0.75rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  flex: 1;
}
.seminar-detail__value strong {
  color: var(--color-primary);
  font-weight: 700;
}
.seminar-detail__value a {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  background: linear-gradient(90deg, #006FA7 0%, #009196 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.seminar-detail__label,
.seminar-detail__value {
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .seminar-detail__label,
.seminar-detail__value {
    font-size: 3.4666666667vw;
  }
}

.seminar-detail__instructor {
  margin-top: 2.5rem;
  background-color: var(--color-white);
  padding: 1.875rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail__instructor {
    padding: 1.25rem 0.9375rem;
  }
}

.seminar-detail__instructor-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-green-deep);
  padding-bottom: 0.625rem;
  border-bottom: 2px solid var(--color-primary);
  width: 100%;
}
@media screen and (max-width: 750px) {
  .seminar-detail__instructor-title {
    font-size: 3.7333333333vw;
  }
}

.seminar-detail__instructor-content {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 0 1.875rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail__instructor-content {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
    padding: 0.625rem 0 1.25rem;
  }
}

.seminar-detail__instructor-img {
  width: 10rem;
}

.seminar-detail__instructor-body {
  width: calc(100% - 11.25rem);
}
@media screen and (max-width: 750px) {
  .seminar-detail__instructor-body {
    width: 100%;
  }
}

.seminar-detail__instructor-lead,
.seminar-detail__instructor-text {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (max-width: 750px) {
  .seminar-detail__instructor-lead,
.seminar-detail__instructor-text {
    font-size: 3.2vw;
  }
}
.seminar-detail__instructor-lead strong,
.seminar-detail__instructor-text strong {
  font-weight: 700;
}

.seminar-detail__instructor-text {
  margin-top: 0.625rem;
}

.seminar-detail__button-wrap {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .seminar-detail__button-wrap {
    margin-top: 1.25rem;
  }
}

.seminar-detail__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color-white);
  background: linear-gradient(87.6deg, #07941D 5.03%, #10710C 94.76%);
  box-shadow: 0px 10px 20px -10px rgba(15, 59, 86, 0.5);
  border-radius: 62.4375rem;
  padding: 0.875rem 1.875rem 0.875rem 2.5rem;
  max-width: 20rem;
  width: 100%;
  margin-inline: auto;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 750px) {
  .seminar-detail__button {
    font-size: 3.4666666667vw;
  }
}

.seminar-detail__button::before {
  position: absolute;
  content: "";
  background-image: url(../images/check-circle-white.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.375rem;
  aspect-ratio: 1/1;
  left: 0.9375rem;
  top: 50%;
  transform: translateY(-50%);
}

.seminar-thanks {
  padding: 5rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .seminar-thanks {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

/* ----------------------------------------------------
求人情報検索
---------------------------------------------------- */
.job-search-page {
  padding: 5.625rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .job-search-page {
    padding: 3.125rem 0.9375rem 5rem;
  }
}

.job-search-page__content {
  margin-top: 3rem;
}

.job-search-page__result {
  margin-top: 3rem;
  background-color: var(--color-green-pale);
  padding: 3.125rem 3.125rem 4.375rem;
  border-radius: 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-search-page__result {
    padding: 1.875rem 1.25rem 2.5rem;
  }
}

.job-search-page__result-text {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-text);
  text-align: center;
}
@media screen and (max-width: 750px) {
  .job-search-page__result-text {
    font-size: 3.7333333333vw;
  }
}

.job-search-page__cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5625rem;
}
@media screen and (max-width: 750px) {
  .job-search-page__cards {
    gap: 0.9375rem;
    grid-template-columns: 1fr;
  }
}

.job-search-page__pagination {
  margin-top: 2.5rem;
}

/* ----------------------------------------------------
求人詳細
---------------------------------------------------- */
.job-detail {
  padding: 2.3125rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .job-detail {
    padding: 1.875rem 0.9375rem 5rem;
  }
}

.job-detail__content {
  background-color: #F5FAF6;
  margin-top: 1.3125rem;
  border-radius: 1.25rem;
  padding: 3.125rem;
}
@media screen and (max-width: 750px) {
  .job-detail__content {
    padding: 1.25rem 0.9375rem;
  }
}

.job-detail__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-green-deep);
  padding: 0.875rem 0.625rem 1rem;
  border-bottom: 2px solid var(--color-primary);
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .job-detail__title {
    font-size: 4.5333333333vw;
  }
}

/* タグ */
.job-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin-top: 0.625rem;
}

.job-detail__tag {
  border: 1.5px solid var(--color-green-deep);
  border-radius: 62.4375rem;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  background-color: var(--color-white);
  color: var(--color-green-deep);
}
@media screen and (max-width: 750px) {
  .job-detail__tag {
    font-size: 3.4666666667vw;
  }
}

.job-detail__point {
  position: relative;
  background-color: var(--color-white);
  width: 100%;
  border: 1px solid var(--color-line);
  padding: 1.875rem;
  margin-top: 1.25rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-detail__point {
    padding: 1.25rem 0.9375rem;
  }
}

.job-detail__point-title {
  position: absolute;
  content: "";
  top: 0;
  left: 1.875rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
  padding: 0.3125rem 1.25rem;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .job-detail__point-title {
    font-size: 3.2vw;
  }
}
@media screen and (max-width: 750px) {
  .job-detail__point-title {
    left: 0.9375rem;
  }
}

.job-detail__point-text {
  padding-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .job-detail__point-text {
    font-size: 3.2vw;
  }
}

.job-detail__number {
  margin-top: 1.875rem;
  border-bottom: 1px dotted var(--color-line);
  padding-left: 0.625rem;
  padding-bottom: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .job-detail__number {
    font-size: 3.4666666667vw;
  }
}

/* 情報 */
.job-detail__info {
  margin-top: 0.625rem;
}

.job-detail__row {
  display: flex;
  align-items: stretch;
}

.job-detail__row:not(:first-child) {
  margin-top: 0.3125rem;
}

/* ラベル */
.job-detail__label {
  width: 15rem;
  background: var(--color-green-soft);
  padding: 0.75rem 0.625rem;
  font-weight: 700;
  color: var(--color-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media screen and (max-width: 750px) {
  .job-detail__label {
    width: 30%;
  }
}

/* 値 */
.job-detail__value {
  color: var(--color-text);
  padding: 1.1875rem 0.75rem;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-line);
  flex: 1;
}

.job-detail__label,
.job-detail__value {
  font-size: 1rem;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .job-detail__label,
.job-detail__value {
    font-size: 3.4666666667vw;
  }
}

.job-detail__cta {
  position: relative;
  margin-top: 5rem;
  background-color: var(--color-white);
  border-radius: 1.25rem;
  padding: 3.75rem 2.5rem 2.5rem;
}
@media screen and (max-width: 750px) {
  .job-detail__cta {
    margin-top: 3.75rem;
    padding: 1.875rem 0.9375rem 1.25rem;
  }
}

.job-detail__cta-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .job-detail__cta-content {
    flex-direction: column;
    align-items: center;
    gap: 1.875rem;
  }
}

.job-detail__cta-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63%;
  height: auto;
}

.job-detail__cta-adecco,
.job-detail__cta-entry {
  padding: 1.875rem 1.25rem 1.25rem;
  border-radius: 0.625rem;
  text-align: center;
  width: 48.5%;
}
@media screen and (max-width: 1024px) {
  .job-detail__cta-adecco,
.job-detail__cta-entry {
    width: 100%;
  }
}

.job-detail__cta-adecco {
  background-color: #EEF3EF;
}
.job-detail__cta-adecco .job-detail__cta-button {
  background: linear-gradient(180deg, #4CA9B3 0%, #338B94 100%);
}

.job-detail__cta-entry {
  background-color: var(--color-yellow-cleam);
}
.job-detail__cta-entry .job-detail__cta-title {
  color: var(--color-primary);
}
.job-detail__cta-entry .job-detail__cta-button {
  background: linear-gradient(180deg, #FF7F00 0%, #DD4B0D 100%);
}

.job-detail__cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-text);
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 750px) {
  .job-detail__cta-title {
    font-size: 4.5333333333vw;
  }
}

.job-detail__cta-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .job-detail__cta-text {
    font-size: 3.4666666667vw;
  }
}

.job-detail__cta-button {
  position: relative;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-white);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 62.4375rem;
  padding: 1.5rem 3.125rem 1.5rem 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (max-width: 750px) {
  .job-detail__cta-button {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1024px) {
  .job-detail__cta-button {
    max-width: 28.125rem;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 750px) {
  .job-detail__cta-button {
    padding: 1.125rem 1.25rem;
  }
}

.job-detail__cta-button::after {
  position: absolute;
  content: "";
  background-image: url(../images/arrow-circle-right-white2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  width: 1.75rem;
  aspect-ratio: 1/1;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1200px) {
  .job-detail__cta-button::after {
    width: clamp(0.938rem, -1.641rem + 5.49vw, 1.875rem);
  }
}
@media screen and (max-width: 750px) {
  .job-detail__cta-button::after {
    width: 1.5rem;
    right: 0.625rem;
  }
}

.job-detail__entry-about {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
  width: 100%;
}

.job-detail__entry-about-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
}

.job-detail__entry-about-icon {
  background-image: url(../images/question-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 0.875rem;
  height: 0.875rem;
}

.job-detail__entry-about-text {
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-blue);
  text-decoration: underline;
}
@media screen and (max-width: 750px) {
  .job-detail__entry-about-text {
    font-size: 3.4666666667vw;
  }
}

/* ----------------------------------------------------
お問い合わせ
---------------------------------------------------- */
.contact {
  padding: 5rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .contact {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

.formStep__list {
  display: flex;
  justify-content: center;
  gap: 5rem;
  list-style: none;
  padding: 0;
  position: relative;
}
@media screen and (max-width: 750px) {
  .formStep__list {
    gap: 2.5rem;
    max-width: 20rem;
    width: 100%;
    margin-inline: auto;
  }
}
@media screen and (max-width: 375px) {
  .formStep__list {
    max-width: 17.5rem;
    gap: 1.25rem;
  }
}

.formStep__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22.5rem;
  height: 0.125rem;
  background: #D1E0D4;
  z-index: 0;
}
@media screen and (max-width: 750px) {
  .formStep__list::before {
    width: 100%;
  }
}

.formStep__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border: 2px solid #D1E0D4;
  border-radius: 50%;
  width: 6.25rem;
  aspect-ratio: 1/1;
  z-index: 1;
  box-sizing: border-box;
}
@media screen and (max-width: 750px) {
  .formStep__item {
    width: 5rem;
  }
}

.formStep__item.--current {
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
}

.formStep__num {
  color: var(--color-primary);
  background: var(--color-white);
  padding: 0.125rem 0.5rem;
  border-radius: 3.125rem;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .formStep__num {
    padding: 0 0.375rem;
  }
}
@media screen and (max-width: 375px) {
  .formStep__num {
    font-size: 0.625rem;
  }
}

.formStep__text {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-top: 0.5rem;
}
@media screen and (max-width: 750px) {
  .formStep__text {
    margin-top: 0.3125rem;
  }
}
@media screen and (max-width: 375px) {
  .formStep__text {
    font-size: 0.875rem;
  }
}

.formStep__item.--current .formStep__text {
  color: var(--color-white);
}

.contact__content {
  background-color: #F5FAF6;
  border-radius: 1.25rem;
  padding: 2.5rem 0.9375rem 3.75rem;
  margin-top: 2.5rem;
}
.contact__content.--thanks {
  background-color: var(--color-white);
  padding: 0;
}

.contact__table {
  border-collapse: collapse;
  width: 100%;
  max-width: 53.125rem;
  margin-inline: auto;
}

.contact__table tr + tr th {
  margin-top: 0.9375rem;
}

.contact__table th,
.contact__table td {
  width: 100%;
  display: block;
  text-align: left;
}

.contact__table th {
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
}

.contact__table th span.--required {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-red-require);
  padding: 0.125rem 0.25rem;
  border-radius: 0.1875rem;
  margin-left: 0.4375rem;
}
@media screen and (max-width: 750px) {
  .contact__table th span.--required {
    font-size: 3.0666666667vw;
  }
}

.confirm__table td {
  width: 100%;
  background-color: var(--color-white);
  border-radius: 0.5rem;
  padding: 0.625rem 0.9375rem;
}

/* フォーム */
.contact__form input::-moz-placeholder {
  color: #D0D0D0;
}
.contact__form input::placeholder {
  color: #D0D0D0;
}

.contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=date],
.contact__form textarea {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: var(--color-white);
  border: none;
  border-radius: 0.3125rem;
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.8125rem 1.25rem;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .contact__form input[type=text],
.contact__form input[type=email],
.contact__form input[type=date],
.contact__form textarea {
    font-size: 3.4666666667vw;
  }
}

.contact__form input[type=text]:focus,
.contact__form input[type=email]:focus,
.contact__form input[type=date]:focus,
.contact__form textarea:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.contact__form textarea {
  height: 9rem;
  resize: none;
}

.contact__form textarea:focus {
  border: none;
  box-shadow: none;
  outline: none;
}

.contact__note {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .contact__note {
    font-size: 2.9333333333vw;
  }
}

.form__button-wrap {
  margin-top: 2.5rem;
}

.form__button-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  max-width: 17.1875rem;
  width: 100%;
  margin-inline: auto;
  padding: 1rem 1.5625rem 1rem 2.5rem;
  border-radius: 62.4375rem;
  background: linear-gradient(#07941D 0%, #10710C 100%);
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  color: var(--color-white);
  border: none;
  cursor: pointer;
}

.form__button-submit {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: transparent;
  background-image: url("../images/arrow-circle-right-white2.svg"), linear-gradient(#07941D 0%, #10710C 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: right 23px center, center;
  background-size: 20px auto, cover;
  color: var(--color-white);
  border: none;
  border-radius: 62.4375rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  margin-inline: auto;
  padding: 1rem;
  text-decoration: none;
  transition: all ease 0.3s;
  max-width: 17.1875rem;
  width: 100%;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 750px) {
  .form__button-submit {
    font-size: 3.7333333333vw;
  }
}

.form__button-submit:hover,
.form__button-submit:focus {
  outline: none;
}

.form__button-submit ::-moz-focus-inner {
  border: none;
  padding: 0;
}

.form__button-reset,
.form__button-back {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background-color: #C6C6C6;
  background-image: none;
  color: #fff;
  border: none;
  border-radius: 3.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  margin-inline: auto;
  padding: 11px;
  max-width: 240px;
  width: 100%;
  text-decoration: none;
  transition: all ease 0.3s;
  margin-top: 1.125rem;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
}

.form__button-reset:hover,
.form__button-reset:focus,
.form__button-back:hover,
.form__button-back:focus {
  outline: none;
}

.form__button-reset ::-moz-focus-inner,
.form__button-back ::-moz-focus-inner {
  border: none;
  padding: 0;
}

.form__privacy {
  text-align: center;
}

.form__privacy-text {
  text-align: center;
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .form__privacy-text {
    font-size: 3.2vw;
  }
}

.form__privacy-text {
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  margin-top: 12px;
}

.form__privacy-link {
  display: inline-block;
  text-decoration: underline;
  color: var(--color-green-deep);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  transition: all ease 0.3s;
  text-align: center;
  margin-top: 0.75rem;
}
@media screen and (max-width: 750px) {
  .form__privacy-link {
    font-size: 3.4666666667vw;
  }
}

.form__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4375rem;
  margin-top: 0.5rem;
}

.form__checkbox span {
  position: relative;
  padding-left: 1.5625rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 750px) {
  .form__checkbox span {
    font-size: 3.4666666667vw;
  }
}

.form__checkbox span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  border: 1px solid #ECF0EC;
  border-radius: 0.25rem;
  background: var(--color-white);
  transition: 0.2s;
}

.form__checkbox span::after {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 50%;
  width: 0.375rem;
  height: 0.625rem;
  border-right: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: translateY(-60%) rotate(45deg);
  opacity: 0;
}

.form__checkbox input:checked + span::before {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.form__checkbox input:checked + span::after {
  opacity: 1;
}

.form__error {
  margin-top: 1.875rem;
  background-color: #F5FAF6;
  padding: 1.875rem 1.25rem;
  max-width: 46.875rem;
  width: 100%;
  margin-inline: auto;
  border-radius: 1.25rem;
}

.form__error-items {
  margin-top: 1.25rem;
}

.form__error-items p.error_messe:not(:first-child) {
  margin-top: 0.5rem;
}

.form__error-items p.error_messe {
  color: var(--color-red-require);
}

.form__confirm-text {
  margin-top: 2.5rem;
}

.privacy-policy {
  padding: 5rem 1.25rem 7.5rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy {
    padding: 2.5rem 0.9375rem 5rem;
  }
}

.privacy-policy__content {
  background-color: var(--color-green-mist);
  border-radius: 1.25rem;
  padding: 3.125rem 3.125rem 5rem;
  margin-top: 1.3125rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content {
    padding: 1.875rem 0.9375rem 3.125rem;
  }
}

.privacy-policy__content h2 {
  color: var(--color-primary);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content h2 {
    font-size: 5.6vw;
  }
}

.privacy-policy__content h3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  padding: 0.625rem 0.9375rem;
  background-color: var(--color-white);
  margin-top: 2.5rem;
  border-radius: 0.25rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content h3 {
    font-size: 4.5333333333vw;
  }
}

.privacy-policy__content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content p {
    font-size: 3.4666666667vw;
  }
}
.privacy-policy__content p .highlight {
  font-weight: 700;
}

.privacy-policy__content ul {
  list-style: none;
  padding-left: 0.625rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content ul {
    padding-left: 0.9375rem;
  }
}

.privacy-policy__content ul li {
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  padding-left: 0.9375rem;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content ul li {
    font-size: 3.4666666667vw;
  }
}

.privacy-policy__content ul li::before {
  position: absolute;
  content: "⚫︎";
  color: var(--color-primary);
  font-size: 0.5em;
  left: 0;
  top: 0.5rem;
}

.privacy-policy__content ul li:not(:first-child) {
  margin-top: 0.3125rem;
}

.privacy-policy__content ol {
  counter-reset: number;
  list-style-type: none !important;
  padding-left: 0.625rem;
  margin-top: 0.9375rem;
}

.privacy-policy__content ol li {
  position: relative;
  line-height: 1.6;
  padding-left: 1.875rem;
}

.privacy-policy__content ol li:not(:first-child) {
  margin-top: 0.625rem;
}

.privacy-policy__content ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  font-size: 1rem;
  color: var(--color-primary);
  left: 0;
  top: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  line-height: 25px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .privacy-policy__content ol li:before {
    font-size: 3.4666666667vw;
  }
}

/* ----------------------------------------------------
共通
---------------------------------------------------- */
.c-section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 750px) {
  .c-section-title {
    text-align: center;
  }
}
.c-section-title.c-section-title--left {
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .c-section-title.c-section-title--left {
    align-items: center;
  }
}

.c-section-title__en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  display: inline-block;
  line-height: 1.4;
  color: var(--color-primary);
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  background-color: var(--color-yellow);
  border-radius: 6.25rem;
}
@media screen and (max-width: 750px) {
  .c-section-title__en {
    font-size: 3.4666666667vw;
  }
}

.c-section-title__ja {
  position: relative;
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}
@media screen and (max-width: 750px) {
  .c-section-title__ja {
    font-size: 6.1333333333vw;
  }
}

.c-page-section-title {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .c-page-section-title {
    text-align: center;
  }
}
.c-page-section-title.c-page-section-title--left {
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .c-page-section-title.c-page-section-title--left {
    align-items: center;
  }
}

.c-page-section-title__en {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  color: var(--color-primary);
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .c-page-section-title__en {
    font-size: 3.4666666667vw;
  }
}
.c-page-section-title__en.c-page-section-title__en--white {
  color: var(--color-white);
}

.c-page-section-title__ja {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .c-page-section-title__ja {
    font-size: 5.6vw;
  }
}
.c-page-section-title__ja.c-page-section-title__ja--white {
  color: var(--color-white);
}

.c-back-button {
  display: flex;
  align-items: center;
  gap: 0.59375rem;
}

.c-back-button-icon {
  background-image: url(../images/arrow-left-green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.25rem;
  height: 1.25rem;
}

.c-back-button-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: var(--color-text);
}
@media screen and (max-width: 750px) {
  .c-back-button-text {
    font-size: 3.2vw;
  }
}

.mv {
  background-image: url(../images/bg-mv-default.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 0 1.25rem;
  height: 21.875rem;
}
@media screen and (max-width: 750px) {
  .mv {
    height: clamp(12.5rem, 6.217rem + 26.74vw, 18.75rem);
  }
}
.mv.mv--about {
  background-image: url(../images/about/bg-mv-about.webp);
}
.mv.mv--recruit {
  background-image: url(../images/recruit/bg-mv-recruit.webp);
}
.mv.mv--seminar {
  background-image: url(../images/seminar/bg-mv-seminar.webp);
}

.mv__inner {
  max-width: 75rem;
  width: 100%;
  height: inherit;
  margin-inline: auto;
  display: flex;
  align-items: center;
}

.mv__title {
  color: var(--color-white);
  margin-top: 3.75rem;
}
@media screen and (max-width: 750px) {
  .mv__title {
    margin-top: 1.875rem;
  }
}
.mv__title.mv__title--no-en .mv__title-ja {
  margin-top: 0;
}

.mv__title-en {
  font-family: var(--font-roboto-condensed);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  display: inline-block;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.1875rem;
  text-transform: uppercase;
}
@media screen and (max-width: 750px) {
  .mv__title-en {
    font-size: 3.4666666667vw;
  }
}

.mv__title-sub {
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  display: inline-block;
  border-bottom: 1px solid var(--color-white);
  padding-bottom: 0.25rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 750px) {
  .mv__title-sub {
    font-size: 4vw;
  }
}

.mv__title-ja {
  margin-top: 0.5rem;
  font-size: 2.625rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .mv__title-ja {
    font-size: 6.9333333333vw;
  }
}

.page-header {
  display: grid;
  grid-template-columns: 11.25rem 1fr 11.25rem;
  align-items: flex-end;
}
@media screen and (max-width: 750px) {
  .page-header {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.page-header__back {
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 750px) {
  .page-header__back {
    justify-content: center;
  }
}

.inner {
  max-width: 75rem;
  width: 100%;
  margin-inline: auto;
}

.inner-s {
  max-width: 880px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0.75rem;
}
@media screen and (max-width: 750px) {
  .inner-s {
    padding: 0 1.25rem;
  }
}

.text {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.0555555556;
  text-align: justify;
  letter-spacing: -0.03em;
}

.center {
  text-align: center;
}

@media screen and (max-width: 750px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 750px) {
  .md-show {
    display: block;
  }
}