@charset "UTF-8";
.--color-primary {
  color: #0b8b90;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #2f2c4f;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

ul {
  list-style: none;
}

h2 {
  font-weight: bold;
}

h3 {
  font-weight: 500;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333333;
  background-color: #f4f7f9;
  line-height: 1.6;
  background: #f5f5f5;
}

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

main {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 100px;
  }
}

.sec {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .sec {
    padding: 80px 0;
  }
}

.attention {
  font-size: 15px;
  margin-top: 10px;
  display: block;
}

.attention::before {
  content: "※";
}

.pc {
  display: none;
}

@media screen and (min-width: 750px) {
  .pc {
    display: block;
  }
}
.sp {
  display: block;
}

@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }
}
.create-card__list {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .create-card__list {
    flex-direction: column;
  }
}
.create-card__item {
  width: 50%;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .create-card__item {
    width: 100%;
  }
}
.create-card__body {
  padding: 30px;
}
.create-card__badge {
  position: absolute;
  top: -10px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .create-card__badge {
    position: absolute;
    top: -15px;
    right: -20px;
    width: 100px;
  }
}
.create-card__content {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .create-card__content {
    flex-direction: column;
  }
}
.create-card__content img {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .create-card__content img {
    width: 100%;
  }
}
.create-card__preview {
  width: 220px;
}
@media screen and (max-width: 767px) {
  .create-card__preview {
    width: 100%;
  }
}
.create-card__info {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .create-card__info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.create-card__tags {
  display: flex;
  background-color: #0b8b90;
  width: fit-content;
  border-radius: 5px;
  margin-bottom: 10px;
  order: 2;
}
.create-card__tag {
  padding: 0px 15px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .create-card__tag {
    font-size: 14px;
    line-height: 1;
    padding-block: 5px;
  }
}
.create-card__tag:not(:last-child) {
  border-right: 1px solid #fff;
}
.create-card__title {
  font-size: 32px;
  color: #2f2c4f;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .create-card__title {
    font-size: 20px;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .create-card__description {
    order: 3;
    text-align: center;
    font-size: 14px;
  }
}
.create-card__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #eb6a08;
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  border-radius: 0 0 10px 10px;
}
.create-card__button * {
  color: #fff;
}
.create-card__button-icon {
  display: inline-block;
  width: 30px;
  height: 30px;
}

.article-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.article-card__link:hover {
  opacity: 0.7;
}
.article-card__image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background-color: #d9d9d9;
}
.article-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__decoration {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 40px;
  background: #fff;
  border-top-right-radius: 20px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .article-card__decoration {
    width: 100px;
    height: 30px;
  }
}
.article-card__decoration::before, .article-card__decoration::after {
  content: "";
  position: absolute;
  background: transparent;
  width: 20px;
  aspect-ratio: 1;
  border-bottom-left-radius: 20px;
  box-shadow: -4px 4px 0 4px #fff;
}
@media screen and (max-width: 767px) {
  .article-card__decoration::before, .article-card__decoration::after {
    box-shadow: -5px 5px 0 3px #fff;
  }
}
.article-card__decoration::before {
  left: 0;
  top: -20px;
}
.article-card__decoration::after {
  left: 120px;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .article-card__decoration::after {
    left: 99px;
  }
}
.article-card__category {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 14px;
  padding: 0 8px;
  font-weight: 700;
  background-color: #00767a;
  border-radius: 50px;
  text-decoration: none;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .article-card__category {
    font-size: 12px;
  }
}
.article-card__body {
  padding: 15px 5px;
}
.article-card__title {
  font-size: 18px;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .article-card__title {
    font-size: 14px;
  }
}
.article-card__date {
  display: block;
  font-size: 14px;
  color: #666;
}
@media screen and (max-width: 767px) {
  .article-card__date {
    font-size: 12px;
  }
}

@media (any-hover: hover) {
  .c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }
}
.c-card__header {
  position: relative;
  width: 100%;
}
.c-card__image-wrapper {
  margin: 0;
  aspect-ratio: 16/9;
  background-color: #f5f5f5;
}
.c-card__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-card__category {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #6fa24a;
  border-radius: 4px;
}
.c-card__body {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 20px;
}
.c-card__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
}
.c-card__description {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.c-card__footer {
  margin-top: auto;
}
.c-card__footer .c-button {
  max-width: 100%;
  height: 48px;
}
@media (min-width: 768px) {
  .c-card--horizontal {
    flex-direction: row;
  }
  .c-card--horizontal .c-card__header {
    width: 40%;
  }
  .c-card--horizontal .c-card__image-wrapper {
    height: 100%;
  }
}

.btn {
  max-width: 270px;
  margin: 50px auto 0;
}
.btn a span {
  color: #fff;
}
@media (any-hover: hover) {
  .btn a:hover span {
    color: #eb6a08;
  }
}

.c-button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 320px;
  padding: 5px 25px 5px 25px;
  font-family: sans-serif;
  font-size: clamp(12px, 1.4vw, 16px);
  color: #fff;
  border: 1px solid #eb6a08;
  text-align: center;
  white-space: nowrap;
  background-color: #eb6a08;
  border-radius: 32px;
  transition: background-color 0.2s;
}
.c-button--reverse {
  flex-direction: row-reverse;
  padding: 5px 25px 5px 25px;
}
.c-button__icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1;
  overflow: hidden;
  transition: transform 0.2s;
}
.c-button__icon--left {
  transform: rotate(180deg);
}
.c-button__text {
  flex-shrink: 1;
  width: 100%;
}
@media (any-hover: hover) {
  .c-button:hover {
    background-color: #ffffff;
    border: 1px solid #eb6a08;
    color: #eb6a08;
  }
  .c-button:hover .c-button__icon {
    transform: translateX(4px);
  }
  .c-button:hover .c-button__icon--left {
    transform: translateX(-4px) rotate(180deg);
  }
}
.c-button--submit {
  max-width: fit-content !important;
  margin: 40px auto 0;
  padding: 5px 20px 5px 40px;
}
.c-button--withdrawal {
  border: none;
  background: #eaeaed;
  color: #2f2c4f;
  width: fit-content;
  border-radius: 5px;
  border: 1px solid #eaeaed;
}
.c-button--withdrawal svg {
  width: 25px;
}

.c-btn-next {
  appearance: none;
  background-color: #eb6a08;
  color: #fff;
  border: none;
  border-radius: 50px;
  width: 140px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: background-color 0.2s;
}
.c-btn-next:hover {
  background-color: #eb6a08;
}

.c-btn-back {
  appearance: none;
  background-color: #fff;
  color: #2f2c4f;
  border: 2px solid #2f2c4f;
  border-radius: 50px;
  width: 140px;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
}
.c-btn-back:hover {
  background-color: #2f2c4f;
  color: #fff;
}

.c-btn-upload {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

.c-btn-address {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  width: 120px;
  height: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-btn-address {
    width: 100px;
    font-size: 12px;
  }
}

.c-btn-add {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 80px;
  border-radius: 4px;
  width: fit-content;
  height: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .c-btn-add {
    width: 100%;
    padding: 10px 20px;
  }
}
.c-btn-add::before {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18%;
  font-size: 18px;
  line-height: 1;
  font-weight: 100;
}

.c-btn-add-project {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 80px;
  border-radius: 4px;
  width: fit-content;
  height: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .c-btn-add-project {
    width: 100%;
    padding: 10px 20px;
  }
}
.c-btn-add-project::before {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18%;
  font-size: 18px;
  line-height: 1;
  font-weight: 100;
}

.c-btn-add-workplace {
  background-color: #2F2C4F;
  color: #fff;
  padding: 10px 80px;
  border-radius: 4px;
  width: fit-content;
  height: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .c-btn-add-workplace {
    width: 100%;
    padding: 10px 20px;
  }
}
.c-btn-add-workplace::before {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 18%;
  font-size: 18px;
  line-height: 1;
  font-weight: 100;
}

.js-workplace-block {
  border-left: 3px solid #0b8b90;
  padding-left: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .js-workplace-block {
    padding-left: 12px;
  }
}

/* タグ入力UI */
.js-tag-input-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.js-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  width: 100%;
}
.c-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: #e8f5f5;
  border: 1px solid #0b8b90;
  color: #0b8b90;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 13px;
  max-width: 100%;
  word-break: break-all;
}
.c-tag__remove {
  background: none;
  border: none;
  color: #0b8b90;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  padding: 0 2px;
  flex-shrink: 0;
}
.c-tag__remove:hover {
  color: #c0392b;
}

.c-btn-remove {
  background-color: #c0392b;
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  width: fit-content;
  height: 50px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.c-btn-remove:hover {
  background-color: #a93226;
}
@media (max-width: 768px) {
  .c-btn-remove {
    width: 100%;
    padding: 10px 20px;
  }
}

.p-form__field--remove {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
}

.c-btn-registration,
.c-btn-back {
  appearance: none;
  background-color: #eb6a08;
  color: #fff;
  border: none;
  border-radius: 50px;
  width: fit-content;
  padding: 10px 20px 10px 40px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  transition: background-color 0.2s;
}

.c-btn-sns {
  position: relative;
}
.c-btn-sns::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5%;
  width: 20px;
  height: 20px;
}
.c-btn-sns--google::before {
  background: url(../img/common/google-icon.svg) center left/contain no-repeat;
}
.c-btn-sns--github::before {
  background: url(../img/common/git-icon.svg) center left/contain no-repeat;
}
.c-btn-sns--apple::before {
  background: url(../img/common/apple-icon.svg) center left/contain no-repeat;
}

.c-btn-edit {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  width: 160px;
  text-align: center;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-btn-edit {
    width: fit-content;
  }
}

.c-btn-password {
  background-color: #0b8b90;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  width: 180px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-btn-password {
    width: fit-content;
    font-size: 12px;
    padding: 10px 10px;
  }
}

.c-btn-icon {
  width: 45px;
  aspect-ratio: 1;
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #eaeaed;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-btn-icon svg {
  width: 18px;
  height: 18px;
}

.c-heading {
  font-weight: bold;
  line-height: 1.5;
}
.c-heading--lg {
  font-size: 2rem;
  border-bottom: 2px solid var(--color-primary);
}
.c-heading--md {
  font-size: 1.5rem;
}

.swiper {
  margin-top: 0 !important;
}

.swiper-button-prev {
  left: -100px !important;
}
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 0px !important;
  }
}

.swiper-button-next {
  right: -100px !important;
}
@media (max-width: 768px) {
  .swiper-button-next {
    right: 0px !important;
  }
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  display: none;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  display: none;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next,
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  width: 50px !important;
  aspect-ratio: 1;
}
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next,
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    width: 35px !important;
    top: 35%;
  }
}
.swiper-button-prev img,
.swiper-rtl .swiper-button-next img,
.swiper-button-next img,
.swiper-rtl .swiper-button-prev img {
  width: 50px;
  height: 50px;
}
@media (max-width: 768px) {
  .swiper-button-prev img,
  .swiper-rtl .swiper-button-next img,
  .swiper-button-next img,
  .swiper-rtl .swiper-button-prev img {
    width: 35px !important;
    height: 35px;
  }
}

.c-sidebar-heading {
  font-size: 20px;
  font-weight: bold;
  margin-block: 40px 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.c-sidebar-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 3px;
  background-color: #0b8b90;
  border-radius: 2px;
}
.c-sidebar-heading::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 40px;
  right: 0;
  height: 3px;
  background-color: #eee;
  border-radius: 2px;
}

.c-sidebar-list__item:not(:last-child) {
  margin-bottom: 20px;
}

.c-sidebar-listcat__item:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.c-sidebar-listcat__item a {
  position: relative;
  width: 100%;
  display: block;
}
.c-sidebar-listcat__item a::before {
  content: "";
  background-image: url(../img/common/arrow02.svg);
  width: 11px;
  height: 11px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

.c-media-card {
  display: flex;
  align-items: center;
  width: 100%;
}
.c-media-card__img-wrapper {
  margin: 0;
  width: 30%;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.c-media-card__img-wrapper img {
  width: 100%;
  height: 100%;
}
.c-media-card__rank {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ffffff;
  color: #0b8b90;
  border-radius: 0 0px 10px 0;
  padding: 10px 17px;
  font-size: 12px;
}
.c-media-card__content {
  width: 80%;
  flex-grow: 1;
  padding: 0 0 0 20px;
}
.c-media-card_title {
  font-size: 14px;
}

.c-sec-header {
  text-align: left;
}
.c-sec-header__title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block; /* タイトルの長さに合わせる場合 */
  width: 100%;
}
.c-sec-header__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px; /* ★濃い線の長さ(60px) + 隙間(20px) = 80px */
  right: 0;
  height: 4px;
  background-color: #eee; /* 薄いグレー */
  border-radius: 2px;
}
.c-sec-header__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px; /* 濃い線の長さ */
  height: 4px;
  background-color: #2a7f7f; /* 濃い緑 */
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .c-sec-header__title {
    font-size: 24px;
  }
}
.c-sec-header__title--resume, .c-sec-header__title--skillsheet {
  text-align: center;
  color: #0b8b90;
}
@media screen and (max-width: 767px) {
  .c-sec-header__title--resume, .c-sec-header__title--skillsheet {
    margin-bottom: 20px;
  }
}
.c-sec-header__title--resume::before, .c-sec-header__title--skillsheet::before {
  display: none;
}
.c-sec-header__title--resume::after, .c-sec-header__title--skillsheet::after {
  display: none;
}
.c-sec-header__title--register, .c-sec-header__title--login {
  text-align: center;
  font-size: 32px;
  margin-bottom: 60px;
}
.c-sec-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-sec-header__desc {
  margin-top: 30px;
  margin-bottom: 40px;
}

.c-page-header__title {
  font-size: 34px;
  color: #0b8b90;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .c-page-header__title {
    font-size: 24px;
  }
}

.c-breadcrumb {
  margin-bottom: 80px;
  padding: 10px 0;
  font-size: 14px;
  border-top: 1px solid #eaeaed;
  border-bottom: 1px solid #eaeaed;
  background: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    margin-bottom: 60px;
  }
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.c-breadcrumb__item {
  display: flex;
  align-items: center;
}
.c-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 10px;
  color: #999;
}
.c-breadcrumb__link {
  color: #2f2c4f;
  text-decoration: none;
}
.c-breadcrumb__link:hover {
  text-decoration: underline;
}

.c-pagination {
  margin-top: 60px;
}
.c-pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
}
.c-pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ededef;
  color: #2f2c4f;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
  border-radius: 5px;
  overflow: hidden;
}
.c-pagination .page-numbers:hover:not(.current) {
  background: #eb6a08;
  color: #fff;
}
.c-pagination .page-numbers.current {
  background: #eb6a08;
  color: #fff;
  cursor: default;
}
.c-pagination .page-numbers.prev::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}
.c-pagination .page-numbers.next::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}
.c-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  width: auto;
  padding: 0 5px;
}

.c-label {
  display: inline-block;
  margin-left: 10px;
  padding: 8px 10px;
  background: #0b8b90;
  color: #ffffff;
  font-size: 12px;
  border-radius: 50px;
  line-height: 1;
}

.c-step-flow {
  margin: 0px auto;
  padding: 20px 0;
  overflow-x: auto;
}
.c-step-flow__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
  min-width: 600px;
  position: relative;
  z-index: 1;
}
.c-step-flow__item {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.c-step-flow__item + .c-step-flow__item::before {
  content: "";
  position: absolute;
  top: 25px;
  left: -50%;
  width: 100%;
  height: 2px;
  background-color: #e5e7eb;
  z-index: 1;
}
.c-step-flow__item--current .c-step-flow__number {
  background-color: #0b8b90;
  color: #fff;
}
.c-step-flow__item--current .c-step-flow__label {
  color: #333;
  font-weight: bold;
}
@media (max-width: 768px) {
  .c-step-flow__item--current .c-step-flow__label {
    font-size: 12px;
  }
}
.c-step-flow__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #e5e7eb;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  z-index: 2;
}
.c-step-flow__label {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-step-flow__label {
    font-size: 12px;
  }
}

#skillsheet .c-step-flow {
  width: fit-content;
}

.c-radio {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-radio input {
  width: 15px !important;
  height: 15px !important;
}

.c-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-checkbox input {
  width: 15px !important;
  height: 15px !important;
}

.c-input-text {
  width: 100%;
  max-width: 400px;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
}
.c-input-password-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
}
.c-input-password-wrap .c-input-text {
  max-width: 100%;
  padding-right: 46px;
}
.c-input-password-toggle {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  line-height: 1;
}
.c-input-password-toggle:hover {
  color: #555;
}
.c-eye-icon--hide {
  display: none;
}
.c-input-password-toggle.is-visible .c-eye-icon--show {
  display: none;
}
.c-input-password-toggle.is-visible .c-eye-icon--hide {
  display: block;
}
.c-input-text::placeholder {
  color: #ccc;
}

.c-input-radio {
  display: inline-flex;
  align-items: center;
  margin-right: 20px;
  cursor: pointer;
  font-size: 16px;
}
.c-input-radio input[type=radio] {
  margin-right: 8px;
  width: 20px;
  height: 20px;
  accent-color: #4d8d91;
}

.c-select-wrapper {
  position: relative;
  max-width: 300px;
}
.c-select-wrapper::after {
  content: "▼";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 12px;
  color: #666;
}

.c-select {
  width: 100%;
  appearance: none;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
}

.c-button--primary {
  background-color: #eb6a08;
  color: #fff;
  padding: 15px 60px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.c-modal.is-open {
  opacity: 1;
  visibility: visible;
}
.c-modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.c-modal__content {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  height: 85dvh;
  max-height: 540px;
  padding: 40px 80px;
  border-radius: 12px;
  z-index: 10;
  overflow: auto;
}

.c-modal__content.p-format-modal {
  height: auto;
  max-height: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 60px;
}
.p-format-modal__title {
  font-size: 20px;
  font-weight: bold;
  color: #2F2C4F;
  margin-bottom: 40px;
  text-align: center;
}
.p-format-modal__options {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.p-format-modal__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 160px;
  height: 140px;
  background: #fff;
  border: 2px solid #2F2C4F;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.p-format-modal__option:hover {
  background: #2F2C4F;
  color: #fff;
}
.p-format-modal__option-label {
  font-size: 22px;
  font-weight: bold;
  color: inherit;
}
.p-format-modal__option-desc {
  font-size: 12px;
  color: inherit;
  opacity: 0.75;
}

.p-auth-modal {
  text-align: center;
}
.p-auth-modal__title {
  font-size: 22px;
  margin-bottom: 10px;
}
.p-auth-modal__separator {
  margin: 20px 0;
  position: relative;
}

.c-login {
  max-width: 500px;
  margin: 0 auto;
}

.l-footer {
  background-color: #0b8b90;
  padding: 50px 0;
  border-radius: 30px 30px 0 0;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    width: 90%;
    margin: 0 auto;
  }
}
.l-footer__img {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__img {
    gap: 15px;
  }
}
.l-footer__img * {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .l-footer__img img {
    width: 150px;
  }
}
.l-footer__img p {
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__img p {
    font-size: 10px;
  }
}
.l-footer__content {
  max-width: 1240px;
  margin: 0 auto;
}
.l-footer__subcontent {
  border-top: 1px solid rgba(234, 234, 237, 0.337254902);
  margin-top: 60px;
  padding-top: 60px;
}
.l-footer__subcontent * {
  color: #ffffff;
  opacity: 0.8;
}
.l-footer__subcontent-flex {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer__subcontent-flex {
    flex-direction: column;
    gap: 20px;
  }
}
.l-footer__nav-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-list {
    gap: 10px;
  }
}
.l-footer__nav-item {
  background-color: #ffffff;
  border-radius: 10px;
}
.l-footer__nav-item a {
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s;
  color: #2f2c4f;
  display: block;
  padding: 25px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a {
    display: flex;
    height: 100%;
    align-items: center;
    padding: 25px 10px;
  }
}
.l-footer__nav-item a span {
  width: fit-content;
  margin: 0 auto;
  display: block;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a span {
    font-size: 12px;
  }
}
.l-footer__nav-item a span::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #eb6a08;
  position: absolute;
  top: 50%;
  left: -20px;
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer__nav-item a span::before {
    display: none;
  }
}
.l-footer__nav-item a:hover {
  opacity: 0.7;
}
.l-footer__subnav-list {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 768px) {
  .l-footer__subnav-list {
    flex-wrap: wrap;
    row-gap: 15px;
  }
}

.l-header {
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .l-header {
    position: fixed;
    background-color: #fff;
    z-index: 999;
    width: 100%;
    top: 0;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
}
.l-header__logo {
  display: flex;
}
.l-header__logo h1 {
  margin-left: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #2f2c4f;
}
.l-header__nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-header__nav-item a {
  text-decoration: none;
  color: #2f2c4f;
  transition: opacity 0.3s;
  font-weight: 500;
}
.l-header__nav-item a:hover {
  opacity: 0.7;
}
.l-header__nav-item:nth-child(-n+3) {
  margin-right: 20px;
}
.l-header__nav-item:nth-child(n+4) {
  width: 150px;
}
.l-header__nav-item:last-child a {
  border: 2px solid #2f2c4f;
  background-color: #2f2c4f;
  color: #fff;
}
.l-header__nav-link--btn {
  border: 2px solid #9795a7;
  color: #2f2c4f;
  padding: 10px 20px;
  border-radius: 10px;
  transition: opacity 0.3s;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
  font-size: clamp(12px, 1.2vw, 14px);
}
.l-header__nav-link--btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 991px) {
  .l-header__logo {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 5px;
    z-index: 999;
  }
  .l-header__logo img {
    width: 120px;
  }
  .l-header__logo h1 {
    margin-left: 0;
    font-size: 10px;
  }
  .l-header__hamburger {
    display: block;
    position: relative;
    z-index: 100;
    width: 30px;
    height: 24px;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }
  .l-header__hamburger-wrap {
    background-color: #2f2c4f;
    padding: 15px;
    border-radius: 10px;
    z-index: 999;
    position: relative;
  }
  .l-header__hamburger span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
  }
  .l-header__hamburger span:nth-child(1) {
    top: 0;
  }
  .l-header__hamburger span:nth-child(2) {
    top: 11px;
  }
  .l-header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .l-header__hamburger.is-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .l-header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .l-header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
  .l-header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 90;
    padding: 80px 25px 40px;
    transition: right 0.4s ease;
    overflow-y: auto;
  }
  .l-header__nav.is-active {
    right: 0;
  }
  .l-header__nav-list {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }
  .l-header__nav-list--flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-block: 20px 30px;
  }
  .l-header__nav-item {
    width: 100% !important;
    margin-right: 0 !important;
  }
  .l-header__nav-item:nth-child(n+2) {
    width: 100% !important;
  }
  .l-header__nav-item.arrow {
    position: relative;
    border-bottom: 1px solid #eaeaed;
  }
  .l-header__nav-item.arrow::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/common/arrow03.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 99;
  }
  .l-header__nav-item a {
    display: flex;
    text-align: center;
    padding: 15px;
    font-size: 16px;
  }
  .l-header__nav-item--resume {
    border: 1px solid #2f2c4f;
    border-radius: 10px;
    display: block;
    padding: 25px;
  }
  .l-header__nav-item--resume span {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
  }
  .l-header__nav-item--resume .flex {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }
  .l-header__nav-item--resume .flex a {
    background-color: #0b8b90;
    display: block;
    width: 48%;
    border-radius: 10px;
    padding: 30px 10px;
    color: #fff;
  }
}
@media screen and (min-width: 992px) {
  .l-header__hamburger-wrap {
    display: none;
  }
}
/* Layout layer */
.l-entry-container {
  display: flex;
  justify-content: end;
  align-items: flex-start;
  width: 95% !important;
  margin-left: auto !important;
  margin-right: 0 !important;
  gap: 90px;
}
.l-entry-container__main {
  width: 100%;
  max-width: 1140px;
  margin-top: 80px;
  margin-bottom: 80px;
}
.l-entry-container__main img {
  width: 100%;
  margin-bottom: 30px;
}
.l-entry-container__main h2 {
  font-size: 24px;
  font-weight: 600;
  margin-block: 40px 20px;
  background-color: #0b8b90;
  border-radius: 10px;
  color: #ffffff;
  padding: 5px 20px;
}
.l-entry-container__main h3 {
  font-size: 20px;
  font-weight: 600;
  margin-block: 40px 20px;
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  width: 100%;
}
.l-entry-container__main h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 4px;
  background-color: #0b8b90;
  border-radius: 2px;
}
.l-entry-container__main h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 0;
  height: 4px;
  background-color: #eee;
  border-radius: 2px;
}
.l-entry-container__main h4 {
  margin-block: 40px 20px;
  font-size: 18px;
  font-weight: 600;
}
.l-entry-container__main p {
  margin-bottom: 30px;
}
.l-entry-container__main ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}
.l-entry-container__main ol {
  list-style: decimal;
  margin-left: 15px;
  margin-bottom: 30px;
}
.l-entry-container__main ol li::marker {
  color: #0b8b90;
  font-weight: bold;
}
.l-entry-container__main a {
  color: #0b8b90;
  text-decoration: underline;
  margin-bottom: 30px;
  display: block;
  width: fit-content;
}
.l-entry-container__side {
  width: 400px;
  height: -webkit-fill-available;
  top: 0px;
  background-color: #fff;
  padding: 30px;
}

.l-inner {
  max-width: 1340px;
  margin: 0 auto;
  width: 90%;
}
.l-inner--wide {
  max-width: 100%;
  width: 100%;
}

.fv img {
  border-radius: 20px;
}

.create {
  padding-top: 20px;
}
.create__inner {
  padding: 50px;
  background-color: #ffffff;
  border-radius: 25px;
}
@media screen and (max-width: 767px) {
  .create__inner {
    padding: 25px;
  }
}
.create__banner {
  margin: 60px auto 0;
  max-width: 940px;
}
.create__banner img {
  width: 100%;
}

.info {
  background-color: #ffffff;
  padding: 120px 0;
  border-radius: 20px;
}
.info .l-inner {
  position: relative;
}
@media (max-width: 768px) {
  .info {
    padding: 60px 0;
  }
}
.info .btn {
  position: absolute;
  top: 10px;
  right: 0;
  margin-top: 0;
}
@media (max-width: 768px) {
  .info .btn {
    position: unset;
  }
  .info .btn a {
    width: fit-content;
    margin: 0 auto;
    padding: 10px 20px;
  }
}
.info .c-sec-header {
  position: relative;
}

.p-info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .p-info-list {
    grid-template-columns: 1fr;
  }
}
.p-info-list__outer {
  position: relative;
}

.page {
  background: #ffffff;
}
.page .sec {
  padding-top: 0;
}
.page .p-archive-list__wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .page .p-archive-list__wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
.page .bg-gray {
  background-color: #f5f4f2;
}

.p-company-policy {
  background: #ffffff;
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-company-policy {
    padding: 40px 20px;
  }
}
.p-company-policy__subtitle {
  display: block;
  color: #9795a7;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-company-policy__subtitle {
    font-size: 18px;
  }
}
.p-company-policy__title {
  color: #0b8b90;
  font-size: 32px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-company-policy__title {
    font-size: 24px;
  }
}
.p-company-policy__text {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-company-policy__text {
    font-size: 14px;
  }
}
.p-company-policy__text p {
  margin-bottom: 1em;
}

.p-company-profile {
  background: #ffffff;
  border-radius: 20px;
  padding: 50px 100px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  .p-company-profile {
    padding: 40px 30px;
  }
}
.p-company-profile__title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #eef2f2;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company-profile__title {
    font-size: 24px;
  }
}
.p-company-profile__title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: #008080;
}
.p-company-profile__row {
  display: flex;
  padding: 30px 0;
}
.p-company-profile__row:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}
@media (max-width: 768px) {
  .p-company-profile__row {
    flex-direction: column;
  }
}
.p-company-profile__label {
  width: 200px;
  font-weight: bold;
  flex-shrink: 0;
}
.p-company-profile__data {
  flex-grow: 1;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-company-profile__data {
    font-size: 14px;
  }
}
.p-company-profile__data p {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-company-profile__data p {
    font-size: 14px;
  }
}

.p-policy-content__lead {
  margin-bottom: 40px;
  font-size: 14px;
}
.p-policy-content__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-policy-content__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
.p-policy-content__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 60px;
  right: 0;
  height: 3px;
  background-color: #eee;
  border-radius: 2px;
}
.p-policy-content__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #2a7f7f;
  border-radius: 2px;
}

.p-policy-item {
  margin-bottom: 40px;
}
.p-policy-item__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .p-policy-item__title {
    font-size: 18px;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
}
.p-policy-item__text {
  font-size: 15px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .p-policy-item__text {
    font-size: 14px;
  }
}

.p-policy-list {
  padding-left: 1.5em;
  margin-top: 10px;
}
.p-policy-list__item {
  font-size: 15px;
  margin-bottom: 8px;
  list-style-type: decimal;
}

.p-policy-item__list {
  padding-left: 1.5em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.p-policy-item__list li {
  font-size: 15px;
  margin-bottom: 8px;
}
ol.p-policy-item__list {
  list-style-type: decimal;
}
ul.p-policy-item__list {
  list-style-type: disc;
}
@media screen and (max-width: 767px) {
  .p-policy-item__list li {
    font-size: 14px;
  }
}

.p-policy-item__desc {
  margin-bottom: 16px;
}

.p-policy-item__list--contact {
  list-style: none;
  padding-left: 0;
}
.p-policy-item__list--contact li {
  margin-bottom: 6px;
}

.p-policy-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 15px;
}
.p-policy-table th,
.p-policy-table td {
  padding: 14px 20px;
  border: 1px solid #e0e0e0;
  vertical-align: top;
  line-height: 1.7;
}
.p-policy-table th {
  background: #f7f4f0;
  font-weight: bold;
  width: 30%;
  white-space: nowrap;
}
.p-policy-table td {
  background: #fff;
}
@media screen and (max-width: 767px) {
  .p-policy-table,
  .p-policy-table tbody,
  .p-policy-table tr,
  .p-policy-table th,
  .p-policy-table td {
    display: block;
    width: 100%;
  }
  .p-policy-table th {
    white-space: normal;
    border-bottom: none;
  }
  .p-policy-table td {
    border-top: none;
    padding-top: 8px;
    margin-bottom: 4px;
  }
  .p-policy-table,
  .p-policy-table td {
    font-size: 14px;
  }
}

/* Project layer (デザインの装飾) */
.p-entry {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.p-entry__title {
  font-size: 24px;
  background: transparent !important;
  color: #2f2c4f !important;
  margin: 10px 0 40px !important;
  padding: 0 !important;
}
.p-entry__thumbnail {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.p-entry__thumbnail img {
  margin-bottom: 0;
}

.p-form .l-inner {
  display: flex;
  gap: 120px;
}
@media (max-width: 768px) {
  .p-form .l-inner {
    flex-direction: column;
    row-gap: 60px;
  }
}
.p-form .c-textarea {
  width: 100%;
  height: 80px;
  resize: vertical; /* 縦だけ変更可能 */
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.p-form .c-textarea--motivation, .p-form .c-textarea--other {
  height: 200px;
}
.p-form__label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.p-form__label-row .p-form__label {
  margin-bottom: 0;
}
.c-btn-ai {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
  border: none;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.c-btn-ai:hover {
  opacity: 0.85;
}
.c-btn-ai:disabled,
.c-btn-ai.is-loading {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-btn-ai.is-loading::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: ai-spin 0.6s linear infinite;
  margin-left: 4px;
}
@keyframes ai-spin {
  to { transform: rotate(360deg); }
}
.c-btn-ai__message {
  font-size: 12px;
  margin-top: 6px;
  min-height: 18px;
}
.c-btn-ai__message--success {
  color: #16a34a;
}
.c-btn-ai__message--error {
  color: #c0392b;
}
.p-form__section {
  width: 50%;
}
@media (max-width: 768px) {
  .p-form__section {
    width: 100%;
  }
}
.p-form__resumeimg {
  width: 50%;
}
.p-form__skillsheetimg {
  width: 50%;
}
@media (max-width: 768px) {
  .p-form__resumeimg {
    width: 100%;
  }
  .p-form__skillsheetimg {
    width: 100%;
  }
}
.p-form__resumeimg img,
.p-form__skillsheetimg img {
  display: none;
}
.js-preview-content {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  line-height: 1.5;
  color: #333;
}
/* ダウンロード確認ページ：全幅プレビューコンテナ */
.p-form--download-preview .l-inner--preview {
  display: block;
  max-width: 100%;
}
.p-resume-full-preview {
  width: 100%;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.p-form__field {
  margin-bottom: 32px;
}
.p-form__field--flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.p-form__field--flex span {
  margin-bottom: 0 !important;
}
.p-form__label {
  display: block;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .p-form__label {
    font-size: 16px;
  }
}
.p-form__label small {
  font-size: 14px;
  color: #9795a7;
  font-weight: 400;
}
.p-form__label--head {
  margin-bottom: 25px !important;
}
.p-form span.p-form__label {
  display: block;
  margin-bottom: 10px;
}
.p-form__input-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.p-form__input-sub {
  margin-top: 30px;
  margin-left: 20px;
}
@media (max-width: 768px) {
  .p-form__input-sub {
    margin-left: 0;
  }
}
.p-form__input-unit {
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-form__input-unit:not(:first-child) .c-input {
  width: 80px;
  height: 50px;
}
@media (max-width: 768px) {
  .p-form__input-unit:not(:first-child) .c-input {
    width: 50px;
  }
}
.p-form__input-unit .c-input {
  width: 140px;
  height: 50px;
}
@media (max-width: 768px) {
  .p-form__input-unit .c-input {
    width: 80px;
  }
}
@media (max-width: 768px) {
  .p-form__upload span {
    display: block;
    margin-top: 10px;
  }
}
.p-form__input-address {
  flex-wrap: wrap;
}
.p-form__input-address:not(:first-child) .c-input {
  width: 80px;
  height: 50px;
}
.p-form__input-address .c-input {
  width: 140px;
  height: 50px;
}
@media (max-width: 768px) {
  .p-form__input-address span {
    display: block;
    width: 100%;
  }
}
.p-form__input-address, .p-form__input-prefectures, .p-form__input-zip, .p-form__input-zip02 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .p-form__input-address, .p-form__input-prefectures, .p-form__input-zip, .p-form__input-zip02 {
    flex-wrap: wrap;
  }
}
.p-form__input-address .c-select, .p-form__input-prefectures .c-select, .p-form__input-zip .c-select, .p-form__input-zip02 .c-select {
  width: 240px;
  height: 50px;
  border-radius: 5px;
}
.p-form__input-address input, .p-form__input-prefectures input, .p-form__input-zip input, .p-form__input-zip02 input {
  width: 70% !important;
}
@media (max-width: 768px) {
  .p-form__input-address input, .p-form__input-prefectures input, .p-form__input-zip input, .p-form__input-zip02 input {
    width: 100% !important;
  }
}
.p-form__input-address .c-select-wrapper, .p-form__input-prefectures .c-select-wrapper, .p-form__input-zip .c-select-wrapper, .p-form__input-zip02 .c-select-wrapper {
  width: fit-content;
  height: 50px;
}
.p-form__input-address span, .p-form__input-prefectures span, .p-form__input-zip span, .p-form__input-zip02 span {
  display: block;
  width: 100%;
}
.p-form__input-address input {
  width: 120px !important;
}
@media (max-width: 768px) {
  .p-form__input-address input {
    width: 70px !important;
  }
}
.p-form__unit-text {
  font-size: 14px;
}
.p-form__upload button {
  width: 200px;
  height: 50px;
  border-radius: 5px;
  border: 1px solid #0b8b90;
  font-size: 16px;
  background-color: #0b8b90;
  color: #ffffff;
  margin-right: 10px;
}
.p-form__radio-group {
  display: flex;
  gap: 20px;
}
.p-form input {
  width: 100%;
  height: 50px;
  display: block;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  line-height: 1;
}
.p-form__actions {
  width: fit-content;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-form__actions svg {
  width: 25px;
}
.p-form__sub-label {
  width: 30%;
}
.p-form hr {
  margin-top: 60px;
  margin-bottom: 60px;
  border: none;
  height: 2px; /* 太さ */
  background: #eaeaed; /* 色 */
}
.p-form__download {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 0px auto 120px;
}
.p-form__download .c-btn-next {
  width: 340px;
}
.p-form__download svg {
  width: 25px;
}
/* 戻るボタン：グレー系に上書き */
.p-form__download .c-btn-back {
  background-color: #888;
  width: 220px;
  text-decoration: none;
}
.p-form__download .c-btn-back:hover {
  background-color: #666;
}
/* ステップリンク（ダウンロード確認ページ） */
.c-step-flow__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  position: relative;
  z-index: 3;
}
.c-step-flow__link:hover .c-step-flow__number {
  background-color: #0a7478;
  opacity: 0.8;
}
.c-step-flow__link:hover .c-step-flow__label {
  opacity: 0.7;
}
.p-form--fix h2 {
  text-align: center;
  margin-bottom: 40px;
}
.p-form--fix p {
  margin-bottom: 60px;
  line-height: 2em;
}
.p-form--fix .p-form__section {
  text-align: center;
  width: 100%;
}
.p-form--register .p-register__form {
  margin-top: 40px;
  width: 100% !important;
}
.p-form--register .p-form__field {
  width: 100%;
  text-align: left;
}
.p-form--register .p-form__field--flex input {
  width: 50% !important;
}
.p-form--register .c-radio input {
  width: 15px !important;
  height: 15px !important;
}
.p-form--register .pp {
  margin-top: 60px;
}
.p-form--register .pp p {
  text-align: center;
}
.p-form--register .pp p a {
  color: #0b8b90;
  text-decoration: underline;
}
.p-form--register .c-checkbox {
  width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
}
.p-form--register .c-checkbox input {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50px;
}
.p-form__checkbox-group {
  display: flex;
  gap: 10px 30px;
  width: 100%;
  flex-wrap: wrap;
}
.p-form__description {
  margin-bottom: 20px;
  line-height: 2em;
  opacity: 0.5;
}
.p-form__range-inputs {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 768px) {
  .p-form__range-inputs {
    flex-wrap: wrap;
  }
}
.p-form__range-inputs .c-input--date {
  width: 100px;
}
@media (max-width: 768px) {
  .p-form__range-inputs .c-input--date {
    width: 40%;
  }
}
.p-form__range-inputs .c-input--date-short {
  width: 60px !important;
}
@media (max-width: 768px) {
  .p-form__range-inputs .c-input--date-short {
    width: 30%;
  }
}

/* 退会確認ダイアログ */
.p-withdrawal-dialog {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.p-withdrawal-dialog.is-open {
  display: flex;
}
.p-withdrawal-dialog__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.p-withdrawal-dialog__box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px 32px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  text-align: center;
}
.p-withdrawal-dialog__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #333;
}
.p-withdrawal-dialog__body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}
.p-withdrawal-dialog__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.p-withdrawal-dialog__actions .c-button {
  min-width: 140px;
}
.c-button--ghost {
  background: #fff;
  color: #333;
  border: 1.5px solid #ccc;
}
.c-button--ghost:hover {
  background: #f5f5f5;
}
.c-button--danger {
  background: #d32f2f;
  color: #fff;
  border: 1.5px solid #d32f2f;
}
.c-button--danger:hover {
  background: #b71c1c;
  border-color: #b71c1c;
}
@media screen and (max-width: 767px) {
  .p-withdrawal-dialog__actions {
    flex-direction: column;
  }
  .p-withdrawal-dialog__actions .c-button {
    width: 100%;
  }
}

/* 作成選択モーダル */
.p-create-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.p-create-modal.is-open {
  display: flex;
}
.p-create-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.p-create-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 40px 32px 32px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.p-create-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}
.p-create-modal__title {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
  color: #333;
}
.p-create-modal__options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-create-modal__option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border: 1.5px solid #e5e5e5;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  transition: border-color 0.2s, background 0.2s;
}
.p-create-modal__option:hover {
  border-color: #EB6A08;
  background: #FFF3EA;
}
.p-create-modal__option-label {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
}
.p-create-modal__option-arrow {
  font-size: 20px;
  color: #EB6A08;
  line-height: 1;
}
/* ボタンリセット（作成するボタン） */
button.l-header__nav-link--btn {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.p-auth-modal__error {
  background-color: #fff3f3;
  border: 1px solid #f5a5a5;
  border-radius: 4px;
  color: #c0392b;
  font-size: 13px;
  margin-bottom: 16px;
  padding: 10px 14px;
}
.p-auth-modal__sns {
  display: flex;
  row-gap: 10px;
  flex-direction: column;
}
.p-auth-modal__sns button {
  border: none !important;
  height: 40px;
  border-radius: 5px;
}
.p-auth-modal__separator {
  width: 100%;
  font-size: 20px;
  margin: 40px auto;
  position: relative;
  align-items: center; /* 横線を上下中央 */
  display: flex; /* 文字と横線を横並び */
  justify-content: center; /* 文字を中央寄せ */
}
.p-auth-modal__separator::before, .p-auth-modal__separator::after {
  background-color: #eaeaed; /* 横線の色 */
  content: "";
  height: 2px; /* 横線の高さ */
  width: 100%; /* 横線の長さ */
}
.p-auth-modal__separator::before {
  margin-right: 15px; /* 文字との余白 */
}
.p-auth-modal__separator::after {
  margin-left: 15px; /* 文字との余白 */
}
.p-auth-modal__notice {
  text-align: center;
  padding: 32px 24px;
}
.p-auth-modal__notice-title {
  font-size: 18px;
  font-weight: bold;
  color: #d32f2f;
  margin-bottom: 16px;
}
.p-auth-modal__notice-body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}
.p-setup-banner {
  background: #fff8e1;
  border-left: 4px solid #eb6a08;
  border-radius: 4px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.p-setup-banner__title {
  font-size: 16px;
  font-weight: bold;
  color: #eb6a08;
  margin-bottom: 8px;
}
.p-setup-banner__body {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}
.p-auth-modal__signup {
  text-align: center;
  margin-top: 40px;
}
.p-auth-modal__signup-title {
  font-size: 22px;
  margin-bottom: 10px;
}
.p-auth-modal__text {
  margin-bottom: 30px;
}
.p-auth-modal__content-signup {
  display: none;
}

/* is-signupクラスがついた時：ログインを隠して登録を表示 */
#js-modal-auth-container.is-signup .p-auth-modal__content-login {
  display: none;
}

#js-modal-auth-container.is-signup .p-auth-modal__content-signup {
  display: block;
}

/* (オプション) 切り替え時にふわっと出したい場合 */
.p-auth-modal__content-login,
.p-auth-modal__content-signup {
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-auth-modal__form {
  margin-top: 40px;
}
.p-auth-modal__form .p-form__section {
  width: 100% !important;
}
.p-auth-modal__form .p-form__label {
  font-size: 14px;
  width: 30%;
}
.p-auth-modal__form .p-form input {
  height: 40px;
}
.p-auth-modal__form .p-form__field {
  margin-bottom: 20px;
}

.p-mypage__wrapper {
  display: flex;
}
@media (max-width: 768px) {
  .p-mypage__wrapper {
    flex-direction: column;
  }
}
.p-mypage aside {
  width: 25%;
  background-color: #fff;
  padding: 20px 60px;
}
@media (max-width: 768px) {
  .p-mypage aside {
    width: 100%;
    padding: 20px 30px;
  }
}
.p-mypage aside h2 {
  font-size: 34px;
  margin-bottom: 40px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-mypage aside h2 {
    margin-bottom: 25px;
  }
}
.p-mypage aside .profile,
.p-mypage aside .download,
.p-mypage aside .apply {
  position: relative;
}
.p-mypage aside .profile::before,
.p-mypage aside .download::before,
.p-mypage aside .apply::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  background-color: #9795a7;
  transition: background-color 0.3s ease;
}
.p-mypage aside .profile::before {
  -webkit-mask-image: url(../img/common/profile-icon.svg);
  mask-image: url(../img/common/profile-icon.svg);
  width: 20px;
  height: 30px;
}
.p-mypage aside .profile.active::before {
  background-color: #0b8b90;
}
.p-mypage aside .download::before {
  -webkit-mask-image: url(../img/common/download-icon.svg);
  mask-image: url(../img/common/download-icon.svg);
  width: 20px;
  height: 20px;
}
.p-mypage aside .download.active::before {
  background-color: #0b8b90;
}
.p-mypage aside .apply::before {
  -webkit-mask-image: url(../img/common/check-icon.svg);
  mask-image: url(../img/common/check-icon.svg);
  width: 20px;
  height: 17px;
}
.p-mypage aside .apply.active::before {
  background-color: #0b8b90;
}
.p-mypage aside a {
  padding-left: 2.4em;
}
.p-mypage .aside__nav-item:not(:last-child) {
  border-bottom: 1px solid #eaeaed;
  margin-bottom: 10px;
}
.p-mypage .aside__nav-item a {
  font-size: 18px;
  font-weight: 500;
  display: block;
  padding-bottom: 10px;
}
.p-mypage .aside__nav-item.active {
  color: #0b8b90;
}
.p-mypage__content {
  background-color: #f5f4f2;
  width: 75%;
  padding: 80px 0 !important;
}
@media (max-width: 768px) {
  .p-mypage__content {
    width: 100%;
  }
}
.p-mypage__content .l-inner {
  background-color: #fff;
  padding: 60px 60px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .p-mypage__content .l-inner {
    padding: 40px 25px;
  }
}
.p-mypage__content .l-inner h2 {
  font-size: 28px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .p-mypage__content .l-inner h2 {
    font-size: 22px;
  }
}
.p-mypage-data {
  margin: 0 auto;
  padding: 20px 0;
}
.p-mypage-data__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}
.p-mypage-account-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-mypage-account-list__item {
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
}
.p-mypage-account-list__label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}
.p-mypage-account-list__value {
  font-size: 18px;
}
.p-mypage-account-list__value--password {
  display: flex;
  align-items: center;
  gap: 20px;
}
.p-mypage-account-list__stars {
  letter-spacing: 2px;
}
.p-mypage-account-form__submit {
  text-align: center;
  margin-top: 50px;
}
.p-mypage-account-form__submit button {
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
}
.p-mypage-account-list__value--radio {
  display: flex;
  padding-top: 8px;
}
.p-mypage-withdrawal-list {
  max-width: 320px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
}
.p-mypage-withdrawal-list__item {
  padding: 25px 0;
}
.p-mypage-withdrawal-list__label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: bold;
}
.p-mypage-withdrawal-list__value {
  font-size: 18px;
}
.p-mypage-withdrawal-list__value input {
  background: #eaeaed;
}
.p-mypage-withdrawal-list__value #password {
  background: #fff;
}
.p-mypage-withdrawal-list__stars {
  letter-spacing: 2px;
}
.p-mypage-withdrawal-form__submit {
  text-align: center;
  margin-top: 50px;
}
.p-mypage-withdrawal-form__submit button {
  width: fit-content;
  margin: 0 auto;
  justify-content: center;
}
.p-mypage-withdrawal-list__value--radio {
  display: flex;
  padding-top: 8px;
}

.p-history {
  padding: 40px 0;
}
.p-history__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-history__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid #f0f0f0;
}
.p-history__item:first-child {
  border-top: 1px solid #f0f0f0;
}
.p-history__content {
  flex: 1;
}
.p-history__date {
  font-size: 14px;
  color: #999;
  margin: 0 0 8px 0;
}
@media (max-width: 768px) {
  .p-history__date {
    font-size: 12px;
  }
}
.p-history__title {
  font-size: 20px;
  color: #333;
  margin: 0;
  font-weight: normal;
}
@media (max-width: 768px) {
  .p-history__title {
    font-size: 16px;
  }
}
.p-history__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}
.p-history__create-links {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.p-history__create-btn {
  max-width: 220px;
  justify-content: center;
  text-decoration: none;
}
@media (max-width: 768px) {
  .p-history__create-btn {
    max-width: 100%;
  }
}

.u-mb-0 {
  margin-bottom: 0;
}