@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

caption,
th {
  text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
  font-style: normal;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

sup {
  vertical-align: text-top;
}

a:not([class]) {
  transition: 0.3s;
  color: inherit;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  vertical-align: top;
}

input,
button,
textarea,
select {
  font: inherit;
}

span {
  color: inherit;
  font-size: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
}

:focus:not(:focus-visible) {
  outline: 0; /* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1170px) {
  html {
    font-size: 1.3675213675vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  background: #fdf9f0;
  color: #1c3d2f;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }
}

.js-body.is-active {
  overflow: hidden;
}

.js-fadeUp {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
  transform: translate(0, 80px);
}

.js-fadeUp.is-scrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.js-fadeIn {
  opacity: 0;
  transition-duration: 1.4s;
  transition-property: opacity, transform;
}

.js-fadeIn.is-scrollIn {
  opacity: 1;
}

.l-inner {
  width: 100%;
  max-width: 73.125rem;
  margin-inline: auto;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 100%;
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}

.c-arrow {
  position: relative;
}

.c-arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.375rem;
  transform: translateY(-50%);
  width: 1.625rem;
  height: 1.3125rem;
  background: #1c3d2f;
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-button a.c-arrow:hover::before {
    background: #fff;
  }
}

.c-out-link {
  position: relative;
}

.c-out-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.625rem;
  transform: translateY(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: #1c3d2f;
  -webkit-mask-image: url(../images/icon_out_link.svg);
          mask-image: url(../images/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-button a.c-out-link:hover::before {
    background: #fff;
  }
}

.p-about__example {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about__example {
    flex-direction: column;
    gap: 0.25rem;
  }
}

.p-about__example-title {
  font-size: 0.875rem;
}

.p-about__example-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.3125rem;
}

.p-about__example-item {
  padding-inline: 0.875rem;
  background: #fef1ca;
  border-radius: 100vh;
  font-size: 0.875rem;
}

.p-about__subtitle {
  margin-top: 4rem;
  font-size: 1.5rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-about__subtitle {
    margin-top: 3rem;
    font-size: 1.125rem;
  }
}

.p-about__list {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .p-about__list {
    flex-direction: column;
  }
}

.p-about__item {
  width: calc((100% - 2rem) / 3);
  padding-block: 1.5rem;
  padding-inline: 1rem;
  background: #fff;
  border: 0.125rem solid #1c3d2f;
  border-radius: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-about__item {
    width: 100%;
    padding-block: 1rem;
    border-radius: 0.5rem;
  }
}

.p-about__item-number {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-about__item-number {
    font-size: 1.375rem;
  }
}

.p-about__item-text {
  margin-top: 0.4375rem;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-button {
  text-align: center;
}

.p-button a {
  position: relative;
  display: inline-block;
  padding-block: 0.75rem;
  padding-left: 2.5rem;
  padding-right: 5rem;
  border-radius: 100vh;
  background: #f7d204;
  text-align: center;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-button a {
    width: 100%;
    padding-inline: 0;
  }
}

@media (min-width: 768px) {
  .p-button a:hover {
    background: #1c3d2f;
    color: #fff;
  }
}

.p-button__text {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.125rem;
}

.p-button__text-sm {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .p-button__text-sm {
    font-size: 0.75rem;
  }
}

.p-button__text-lg {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2083333333;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .p-button__text-lg {
    font-size: 1.125rem;
  }
}

.p-company__body {
  margin-top: 2rem;
}
@media screen and (max-width: 375px) {
  .p-company__body {
    margin-top: 2.5rem;
  }
}

.p-company__table-th,
.p-company__table-td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-company__table-th,
  .p-company__table-td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
}

.p-company__table-tr:first-child {
  border-top: 0.125rem solid #000;
}

.p-company__table-tr:last-child {
  border-bottom: 0.125rem solid #000;
}

.p-company__table-tr:not(:first-child) {
  border-top: 0.0625rem solid #000;
}

@media screen and (max-width: 375px) {
  .p-company__table-tr {
    display: flex;
    flex-direction: column;
  }
}

.p-company__table-th {
  width: 12.25rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  text-align: center;
  background: #eeeff2;
}
@media screen and (max-width: 375px) {
  .p-company__table-th {
    width: 100%;
  }
}

.p-company__table-th__txt {
  display: inline-block;
  width: 5.875rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}

.p-company__table-td {
  font-size: 1rem;
  line-height: 2.9565217391;
  letter-spacing: 0.04em;
  padding-left: 2.5rem;
}
@media screen and (max-width: 375px) {
  .p-company__table-td {
    padding: 1rem 0 1rem;
    padding-left: 0;
    line-height: 1.9;
    text-align: center;
  }
}

.p-company__table--position {
  display: inline-block;
  width: 5.25rem;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.p-company__table--name {
  display: inline-block;
  margin-left: 1em;
}
@media screen and (max-width: 375px) {
  .p-company__table--name {
    width: 5.5625rem;
    text-align: left;
  }
}

.p-contact-form {
  padding: 2rem;
  border: 1px solid #1c3d2f;
}

.p-contact-form__inner {
  max-width: 800px;
  margin-inline: auto;
}

.p-contact-form__dl {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.p-contact-form__dl--textarea {
  align-items: flex-start;
}

.p-contact-form__dl:not(:first-child) {
  margin-top: 2.5rem;
}

.p-contact-form__dt {
  flex-shrink: 0;
  width: 12.5rem;
  font-weight: bold;
}

.p-contact-form__dt--radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-contact-form__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-contact-form__dd {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
}

.p-contact-form__dt--required {
  color: #f15700;
}

.p-contact-form__text,
.p-contact-form__mail,
textarea {
  width: 100%;
  height: auto;
  padding: 0.5rem;
  font-size: 16px;
  line-height: 1.5;
  background: #f4f4f4;
  border: 1px solid #f4f4f4;
  outline: none;
}

.p-contact-form__text:focus,
.p-contact-form__mail:focus,
textarea:focus {
  border: 1px solid #1c3d2f;
}

.p-contact-form__text::-moz-placeholder, .p-contact-form__mail::-moz-placeholder, textarea::-moz-placeholder {
  color: #9f9f9f;
}

.p-contact-form__text::placeholder,
.p-contact-form__mail::placeholder,
textarea::placeholder {
  color: #9f9f9f;
}

textarea {
  height: 17.5rem;
  resize: vertical;
}

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

.p-contact-form__checkbox-txt {
  display: inline-block;
  padding-left: 1.375rem;
  font-size: 1rem;
  position: relative;
}

.p-contact-form__checkbox-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.9375rem;
  height: 0.9375rem;
  border: 1px solid #1c3d2f;
}

.p-contact-form__checkbox-txt::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(45deg);
  left: 0.25rem;
  width: 0.5rem;
  height: 0.75rem;
  border-right: 2px solid #1c3d2f;
  border-bottom: 2px solid #1c3d2f;
  opacity: 0;
}

input[type=checkbox]:checked + .p-contact-form__checkbox-txt::after {
  opacity: 1;
}

@media (any-hover: hover) {
  .p-contact-form__checkbox-txt:hover {
    cursor: pointer;
  }
}
.radio-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.p-contact-form__radio-txt {
  position: relative;
  display: inline-block;
  padding-left: 1.5rem;
}

.p-contact-form__radio-txt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid #1c3d2f;
  border-radius: 50%;
}

.p-contact-form__radio-txt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.175rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #1c3d2f;
  opacity: 0;
}

.p-contact-form__radio:checked + .p-contact-form__radio-txt::after {
  opacity: 1;
}

.p-contact-form__radio-txt:hover {
  cursor: pointer;
}

.p-contact-form__select-wrapper {
  width: 10rem;
  position: relative;
}

.p-contact-form__select-wrapper:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.75rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.4375rem solid transparent;
  border-left: 0.4375rem solid transparent;
  border-top: 0.625rem solid #1c3d2f;
  border-bottom: 0;
  pointer-events: none;
}

.p-contact-form__select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  padding: 0.375rem 0.625rem;
  outline: none;
  font-size: 0.8125rem;
}

.p-contact-form__select:hover {
  cursor: pointer;
}

.p-contact-form__privacy {
  margin-top: 4rem;
}

.p-contact-form__privacy-txt {
  text-align: center;
  line-height: 1.8;
}

.p-contact-form__privacy-txt:not(:first-child) {
  margin-top: 2rem;
}

.p-contact-form__privacy-link {
  border-bottom: 1px solid #1155f3;
  color: #1155f3;
}

.p-contact-form__submit-wrapper {
  margin-top: 4rem;
}

.p-contact-form__submit {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

.p-contact-form__submit::-webkit-search-decoration {
  display: none;
}

.p-contact-form__submit-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
}

.p-contact-form__submit-item {
  position: relative;
}

.p-contact-form__submit-item::after {
  content: "";
  position: absolute;
  width: 10px;
  height: auto;
  aspect-ratio: 1;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 20px;
  transition: all 0.3s ease;
  pointer-events: none;
}

@media (any-hover: hover) {
  .p-contact-form__submit-item:hover .p-contact-form__submit {
    background: #000;
    color: #fff;
  }
  .p-contact-form__submit-item:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
.p-contact-form__submit {
  width: 11.25rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  font-size: 1rem;
  border: 1px solid #1c3d2f;
}

.p-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: ease-in-out, 0.3s;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .p-cta {
    bottom: 0.875rem;
    width: 100%;
    max-width: 20.9375rem;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    height: auto;
  }
}

.p-cta.is-visible {
  opacity: 1;
  visibility: visible;
}

.p-cta a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  background: #f7d204;
  border-radius: 1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-cta a {
    width: 100%;
    height: auto;
    border-radius: 100vh;
    padding: 0.75rem;
  }
}

.p-cta a::before {
  content: "";
  position: absolute;
  top: 1.1875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: #1c3d2f;
  -webkit-mask-image: url(../images/icon_out_link.svg);
          mask-image: url(../images/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}
@media screen and (max-width: 768px) {
  .p-cta a::before {
    top: 50%;
    left: auto;
    right: 2.625rem;
    transform: translateY(-50%) translateX(0);
  }
}

@media (min-width: 768px) {
  .p-cta a:hover {
    background: #1c3d2f;
    color: #fff;
  }
  .p-cta a:hover::before {
    background: #fff;
  }
}

.p-cta__text-sm {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}
@media screen and (max-width: 768px) {
  .p-cta__text-sm {
    font-size: 0.75rem;
  }
}

.p-cta__text-lg {
  display: inline-block;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-cta__text-lg {
    font-size: 1rem;
  }
}

.p-footer {
  background: url(../images/footer_bg.webp) center/cover no-repeat;
}

.p-footer__inner {
  padding-block: 5rem;
  padding-inline: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    padding-top: 4rem;
    padding-bottom: 5.5rem;
  }
}

.p-footer__title {
  width: 100%;
  max-width: 11rem;
  margin-inline: auto;
  padding-block: 0.9375rem;
  background: #fdf9f0;
  border-radius: 0.5rem;
  color: #1c3d2f;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: normal;
  text-align: center;
}

.p-footer__name {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__name {
    margin-top: 1.75rem;
  }
}

.p-footer__name-main {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .p-footer__name-main {
    font-size: 1.125rem;
  }
}

.p-footer__name-sub {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 768px) {
  .p-footer__name-sub {
    font-size: 1.125rem;
  }
}

.p-footer__meta {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__meta {
    margin-top: 1.75rem;
  }
}

.p-footer__text {
  line-height: 2;
  letter-spacing: -0.02em;
  transition: ease-in-out, 0.3s;
}

.p-footer__text + .p-footer__text {
  margin-top: 0.5rem;
}

.p-footer__text a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-footer__text a:hover {
    color: #f15700;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__text-address {
    line-height: 1.6;
  }
}

.p-footer__copyright-wrapper {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright-wrapper {
    margin-top: 1.75rem;
  }
}

.p-footer__copyright {
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: -0.02em;
}

.p-hamburger {
  display: none;
  width: 1.875rem;
  height: 1.375rem;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .p-hamburger {
    display: block;
  }
}

.p-hamburger__bar {
  position: absolute;
  left: 50%;
  width: 100%;
  height: 0.125rem;
  background: black;
  border-radius: 2px;
  transition: 0.3s;
}

.p-hamburger__bar:first-child {
  top: 0;
  transform: translate(-50%, 0);
}

.p-hamburger__bar:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-hamburger__bar:last-child {
  top: 100%;
  transform: translate(-50%, -100%);
}

.js-hamburger.is-active .p-hamburger__bar:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
}

.js-hamburger.is-active .p-hamburger__bar:nth-child(2) {
  opacity: 0;
}

.js-hamburger.is-active .p-hamburger__bar:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4.375rem;
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    padding: 0 1rem;
  }
}

.p-header__logo {
  color: #1c3d2f;
  font-size: 1.25rem;
  font-weight: bold;
}

.p-header__nav {
  position: static;
  display: flex;
  background: transparent;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 9999;
    display: block;
    transform: translateX(100%);
    pointer-events: none;
    transition: 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .js-navigation.is-open {
    pointer-events: inherit;
    transform: translateX(0);
  }
}

.p-header__nav-list {
  display: flex;
  gap: 0 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-header__nav-list {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }
}

.p-header__nav-item {
  color: #1c3d2f;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-header__nav-item {
    font-weight: bold;
  }
}

.p-header__nav-link {
  display: inline-block;
  width: 100%;
}

@media (min-width: 1280px) {
  .p-mv {
    background: url(../images/bg.webp) center/cover repeat;
  }
}

.p-mv__inner {
  position: relative;
  max-width: 80rem;
  margin-inline: auto;
  aspect-ratio: 1280/896;
}

.p-mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv__button {
  content: "";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
}
@media (max-width: 1280px) {
  .p-mv__button {
    bottom: 1.875vw;
    right: 1.875vw;
  }
}

.p-mv__button a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: column;
  width: 9rem;
  height: 9rem;
  padding: 1rem;
  background: #f7d204;
  border-radius: 1rem;
  text-align: center;
}
@media (max-width: 1280px) {
  .p-mv__button a {
    width: 11.25vw;
    height: 11.25vw;
    padding: 1.25vw;
  }
}

.p-mv__button a::before {
  content: "";
  position: absolute;
  top: 1.1875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.125rem;
  height: 1.125rem;
  background: #1c3d2f;
  -webkit-mask-image: url(../images/icon_out_link.svg);
          mask-image: url(../images/icon_out_link.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  transition: ease-in-out, 0.3s;
}
@media (max-width: 1280px) {
  .p-mv__button a::before {
    top: 1.484375vw;
    width: 1.40625vw;
    height: 1.40625vw;
  }
}

@media (min-width: 768px) {
  .p-mv__button a:hover {
    background: #1c3d2f;
    color: #fff;
  }
  .p-mv__button a:hover::before {
    background: #fff;
  }
}

.p-mv__button-text__sm {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2142857143;
}
@media (max-width: 1280px) {
  .p-mv__button-text__sm {
    font-size: 1.09375vw;
  }
}

.p-mv__button-text__lg {
  display: inline-block;
  margin-top: 0.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .p-mv__button-text__lg {
    margin-top: 0.15625vw;
    font-size: 1.5625vw;
  }
}

.p-qualification-flow__note {
  position: relative;
  margin-top: 2rem;
  padding-block: 1rem;
  padding-inline: 2.5rem;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__note {
    margin-top: 1.5rem;
    padding: 1rem;
  }
}

.p-qualification-flow__note::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5rem;
  height: 100%;
  background: #ff0000;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__note::before {
    width: 0.25rem;
  }
}

.p-qualification-flow__note-title {
  color: #ff0000;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__note-title {
    font-size: 1.125rem;
  }
}

.p-qualification-flow__note-text {
  color: #ff0000;
}

.p-qualification-flow__route {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route {
    margin-top: 3rem;
  }
}

.p-qualification-flow__route-inner {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-inner {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
  }
}

.p-qualification-flow__route-inner > img {
  width: 100%;
  max-width: 20rem;
  height: auto;
  aspect-ratio: 320/658;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-qualification-flow__route-no {
  background: #b2ab99;
  border-radius: 1rem;
  padding-block: 1.5rem;
  padding-inline: 1rem;
}

.p-qualification-flow__route-no__text {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-no__text {
    font-size: 1.375rem;
    text-align: center;
  }
}

.p-qualification-flow__route-no__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-no__list {
    flex-direction: column;
  }
}

.p-qualification-flow__route-no__item {
  width: calc((100% - 1rem) / 3);
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-no__item {
    width: 100%;
  }
}

.p-qualification-flow__route-no__item img {
  width: 100%;
  max-width: 15rem;
  height: auto;
  aspect-ratio: 240/309;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-no__item img {
    max-width: 100%;
  }
}

.p-qualification-flow__route-intro {
  margin-top: 2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-intro {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}

.p-qualification-flow__route-text {
  font-size: 0.875rem;
  text-align: center;
}

.p-qualification-flow__route-button {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-button {
    margin-top: 0.5rem;
  }
}

.p-qualification-flow__route-button .p-button__text-sm {
  font-size: 0.75rem;
  line-height: 1.1666666667;
}

.p-qualification-flow__route-button .p-button__text-lg {
  font-size: 1rem;
  line-height: 1.1875;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-button .p-button__text-lg {
    font-size: 0.875rem;
  }
}

.p-qualification-flow__route-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-qualification-flow__route-note {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

.p-section:nth-child(odd) {
  background: #fef1ca;
}

.p-section__inner {
  padding-block: 7.5rem;
}
@media screen and (max-width: 768px) {
  .p-section__inner {
    padding-block: 6.25rem;
  }
}

.p-section__title {
  position: relative;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-section__title {
    font-size: 1.5rem;
    line-height: 1.6;
  }
}

.p-section__title::before {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #fff;
}

.p-section__body {
  margin-top: 4.4375rem;
}
@media screen and (max-width: 768px) {
  .p-section__body {
    margin-top: 3rem;
  }
}

.p-section__description a {
  display: inline;
  color: #f15700;
  text-decoration: underline;
  word-break: break-all;
}

@media (min-width: 768px) {
  .p-section__description a:hover {
    color: #f7d204;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.swiper-container {
  position: relative;
  max-width: 56.25rem;
  margin-inline: auto;
}

.swiper {
  position: relative;
}

.swiper-wrapper {
  position: relative;
}

.swiper-slide {
  width: 100%;
  max-width: 18.75rem;
  aspect-ratio: 100/100;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullet {
  opacity: 1;
  background: gray;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: red;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
  left: 50% !important;
  transform: translateX(-50%);
}

.swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-prev::after {
  content: "";
}

.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
}
.swiper-button-next::after {
  content: "";
}

.p-training-overview__subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-training-overview__subtitle {
    font-size: 1.125rem;
  }
}

.p-training-overview__list {
  display: flex;
  justify-content: center;
  gap: 6.375rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-training-overview__list {
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
  }
}

.p-training-overview__item {
  position: relative;
  width: calc((100% - 6.5rem) / 2);
  background: #fff;
  border-radius: 1rem;
  padding: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-overview__item {
    width: 100%;
    border-radius: 0.5rem;
    padding: 1rem;
  }
}

.p-training-overview__item:not(:first-child)::before {
  content: "+";
  position: absolute;
  top: 49%;
  left: -4.1875rem;
  transform: translateY(-50%);
  font-size: 3.4375rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-training-overview__item:not(:first-child)::before {
    top: -4.875rem;
    left: 50%;
    transform: translateY(0) translateX(-50%);
    font-size: 2.75rem;
  }
}

.p-training-overview__item-header {
  text-align: center;
}

.p-training-overview__item-category {
  display: inline-block;
  width: 100%;
  background: #fef1ca;
  font-weight: 700;
}

.p-training-overview__item-title {
  margin-top: 1rem;
  font-size: 1.5rem;
  line-height: 1.2083333333;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-training-overview__item-title {
    font-size: 1.125rem;
  }
}

.p-training-overview__item-meta {
  font-weight: 700;
}

.p-training-overview__item-middle {
  margin-top: 0.625rem;
  padding-inline: 1rem;
  padding-block: 0.5rem;
  border: 1px solid #fef1ca;
  text-align: center;
}

.p-training-overview__item-subtitle {
  color: #f15700;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-training-overview__item-subtitle {
    line-height: 1.4;
  }
}

.p-training-overview__item-subtitle__sm {
  color: #f15700;
  font-size: 0.875rem;
  font-weight: 700;
}

.p-training-overview__item-time {
  font-weight: 700;
}

.p-training-overview__item:last-child .p-training-overview__item-time {
  max-width: 20.625rem;
  margin-inline: auto;
  text-align: left;
}

.p-training-overview__item-time__sm {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-training-overview__item-note {
  color: #ff0000;
  font-size: 0.75rem;
  text-align: left;
}

.p-training-overview__item-body {
  margin-top: 0.625rem;
}

.p-training-overview__item-text {
  max-width: 26.6875rem;
  margin-inline: auto;
}

.p-training-overview__text {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-training-overview__text {
    margin-top: 3rem;
  }
}

.p-training-overview__note {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .p-training-overview__note {
    font-size: 0.75rem;
  }
}

.p-training-requirements .p-section__title {
  font-size: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements .p-section__title {
    font-size: 1.5rem;
  }
}

.p-training-requirements__note {
  max-width: 45.875rem;
  padding-block: 0.875rem;
  padding-inline: 2.375rem;
  margin-inline: auto;
  border: 0.125rem solid #ff0000;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__note {
    padding: 1rem;
  }
}

.p-training-requirements__note-title {
  color: #ff0000;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
}

.p-training-requirements__note-text {
  color: #ff0000;
}

.p-training-requirements__block {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__block {
    margin-top: 3rem;
  }
}

.p-training-requirements__block + .p-training-requirements__block {
  margin-top: 5.75rem;
  margin-top: 4.875rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__block + .p-training-requirements__block {
    margin-top: 4rem;
  }
}

.p-training-requirements__block-body {
  max-width: 65rem;
  margin-top: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__block-body {
    margin-top: 1.5rem;
  }
}

.p-training-requirements__subtitle {
  background: #f15700;
  border-radius: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__subtitle {
    font-size: 1.125rem;
  }
}

.p-training-requirements__time {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__time {
    font-size: 1.125rem;
    line-height: 1.6;
  }
}

.p-training-requirements__time-day {
  font-size: 1rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__time-day {
    font-size: 0.875rem;
  }
}

.p-training-requirements__text {
  text-align: center;
}

.p-training-requirements__list {
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list {
    margin-top: 1.5rem;
  }
}

.p-training-requirements__list-period .p-training-requirements__item:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list-period .p-training-requirements__item:not(:first-child) {
    margin-top: 0.75rem;
  }
}

.p-training-requirements__list-period .p-training-requirements__item.p-training-requirements__item-access {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list-period .p-training-requirements__item.p-training-requirements__item-access {
    margin-top: 1.5rem;
  }
}

.p-training-requirements__item-title {
  color: #f15700;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__item-title {
    line-height: 1.4;
  }
}

.p-training-requirements__item-text {
  font-weight: 700;
}

.p-training-requirements__item-text__md {
  font-size: 0.875rem;
}

.p-training-requirements__item-text__sm {
  font-size: 0.75rem;
  font-weight: 700;
}

.p-training-requirements__item-text__md a {
  display: inline;
  color: #f15700;
  text-decoration: underline;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-training-requirements__item-text__md a:hover {
    color: #f7d204;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.p-training-requirements__item-access__box {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__item-access__box {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-training-requirements__item-access__box .p-training-requirements__item-text__md {
  margin-top: 0.25rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__item-access__box .p-training-requirements__item-text__md {
    font-size: 0.75rem;
  }
}

.p-training-requirements__item-access__map {
  flex: 1;
}

.p-training-requirements__item-access__map iframe {
  display: block;
  width: 100%;
  max-width: 31.25rem;
  height: auto;
  aspect-ratio: 500/300;
}

.p-training-requirements__item-access__map img {
  width: 100%;
  max-width: 31.25rem;
  height: auto;
  aspect-ratio: 500/300;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training-requirements__item-access__info {
  margin-top: 0.25rem;
}

.p-training-requirements__item-access__info a {
  font-size: 0.875rem;
  color: #f15700;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__item-access__info a {
    font-size: 0.75rem;
  }
}

@media (min-width: 768px) {
  .p-training-requirements__item-access__info a:hover {
    color: #f7d204;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.p-training-requirements__list-application {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list-application {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-training-requirements__list-application .p-training-requirements__item:first-child {
  flex-shrink: 0;
  width: 27.75rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list-application .p-training-requirements__item:first-child {
    width: 100%;
  }
}

.p-training-requirements__list-price {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__list-price {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-training-requirements__list-price .p-training-requirements__item {
  flex: 1;
}

.p-training-requirements__price {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__price {
    font-size: 1.25rem;
    font-size: 1.125rem;
  }
}

.p-training-requirements__price-sm {
  font-size: 1rem;
  font-weight: 500;
}

.p-training-requirements__item-title__sm {
  font-size: 0.875rem;
}

.p-training-requirements__list-price .p-training-requirements__item-text,
.p-training-requirements__list-price .p-training-requirements__item-text__sm {
  color: #1c3d2f;
}

.p-training-requirements__button {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__button {
    margin-top: 3rem;
  }
}

.p-training-requirements__button a {
  padding-left: 5.125rem;
  padding-right: 7.625rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__button a {
    padding-inline: 0;
  }
}

.p-training-requirements__button a.c-out-link::before {
  right: 5.25rem;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__button a.c-out-link::before {
    right: 2.625rem;
  }
}

.p-training-requirements__block-button {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .p-training-requirements__block-button {
    margin-top: 2rem;
  }
}

.p-training-requirements__block-button .p-button__text-sm {
  font-size: 0.75rem;
  line-height: 1.1666666667;
}

.p-training-requirements__block-button .p-button__text-lg {
  font-size: 1rem;
  line-height: 1.1875;
}
.p-training-structure__img {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-training-structure__img {
    margin-top: 3rem;
  }
}

.p-training-structure__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training-structure__explanation {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-training-structure__explanation {
    margin-top: 1rem;
    font-size: 0.75rem;
  }
}

.p-worker-flow__first {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__first {
    margin-top: 3rem;
  }
}

.p-worker-flow__item + .p-worker-flow__item {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item + .p-worker-flow__item {
    margin-top: 3rem;
  }
}

.p-worker-flow__item-header {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-header {
    gap: 1.25rem;
  }
}

.p-worker-flow__item-body {
  margin-left: 9.0625rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-body {
    margin-left: 0;
  }
}

.p-worker-flow__item-number {
  position: relative;
  flex-shrink: 0;
  padding-left: 2.75rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.175;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-number {
    padding-left: 1.875rem;
    font-size: 1.625rem;
  }
}

.p-worker-flow__item-number::before {
  content: "";
  position: absolute;
  top: 0.4375rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: #f15700;
  border-radius: 100vh;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-number::before {
    top: 0.3125rem;
    width: 1.375rem;
    height: 1.375rem;
  }
}

.p-worker-flow__item-step {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  text-transform: uppercase;
}

.p-worker-flow__item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-title {
    font-size: 1.375rem;
  }
}

.p-worker-flow__item-text {
  margin-top: 1rem;
}

.p-worker-flow__item-text a {
  display: inline;
  color: #f15700;
  text-decoration: underline;
  word-break: break-all;
  transition: ease-in-out, 0.3s;
}

@media (min-width: 768px) {
  .p-worker-flow__item-text a:hover {
    color: #f7d204;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.p-worker-flow__item-button.p-button {
  margin-top: 1rem;
  text-align: right;
}

.p-worker-flow__item:nth-of-type(2) .p-worker-flow__item-button a {
  padding-block: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item:nth-of-type(2) .p-worker-flow__item-button a {
    padding-block: 1rem;
    padding-right: 1.125rem;
  }
}

@media screen and (max-width: 768px) {
  .p-worker-flow__item:nth-of-type(2) .p-worker-flow__item-button a::before {
    right: 1.875rem;
  }
}

.p-worker-flow__item-note {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.p-worker-flow__item-button .p-button__text-sm {
  font-size: 0.75rem;
}

.p-worker-flow__item-button .p-button__text-lg {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__item-button .p-button__text-lg {
    font-size: 0.875rem;
  }
}

.p-worker-flow__second {
  position: relative;
  margin-top: 6rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__second {
    margin-top: 5rem;
  }
}

.p-worker-flow__second::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background: #1c3d2f;
}

.p-worker-flow__note {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__note {
    font-size: 1rem;
  }
}

.p-worker-flow__note a {
  display: inline;
  color: #f15700;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .p-worker-flow__note a:hover {
    color: #f7d204;
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.p-worker-flow__second .p-worker-flow__list {
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__second .p-worker-flow__list {
    margin-top: 3rem;
  }
}
.p-worker-flow__second .p-worker-flow__item-header {
  color: #b2ab99;
}
.p-worker-flow__second .p-worker-flow__item-header .p-worker-flow__item-number::before {
  background: #b2ab99;
}

.p-worker-flow__success {
  margin-top: 4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__success {
    margin-top: 3rem;
  }
}

.p-worker-flow__success-en {
  color: #b2ab99;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.1875;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__success-en {
    font-size: 0.875rem;
  }
}

.p-worker-flow__success-ja {
  margin-top: -0.375rem;
  color: #b2ab99;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .p-worker-flow__success-ja {
    font-size: 1.375rem;
  }
}

.u-bg-yellow {
  background: #fef1ca;
}

.u-font-bold {
  font-weight: 700;
}

.u-font-num {
  font-family: "Roboto", sans-serif;
}

.u-font-red {
  color: #ff0000;
}

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

@media screen and (max-width: 768px) {
  .u-md-none {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
