@charset "UTF-8";
/* Variables */
/* Mixins */
/* Reset CSS */
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
ol,
li,
form,
label,
input,
button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}

body {
  line-height: 1;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
    sans-serif;
  color: #333;
  background-color: #f2f5f5;
}

input,
button,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* Variables */
/* Mixins */
/* Base styles */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
}

body {
  font-size: 1.6rem;
  min-height: 100vh;
  background-color: #f2f5f5;
  color: #2b2d42;
  line-height: 1.6;
}

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

::-moz-placeholder {
  color: #8d99ae;
  opacity: 0.7;
}

::placeholder {
  color: #8d99ae;
  opacity: 0.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  margin-top: 0;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Variables */
/* Mixins */
/* Container Layout */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin: 32px auto 120px auto;
  padding: 0 2rem;
}

.l-login-container {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  padding: 8rem 8rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.l-login-container.--width-680 {
  max-width: 680px;
}

/* Variables */
/* Mixins */
/* Grid Layout */
.l-grid {
  display: grid;
  grid-gap: 2rem;
  width: 100%;
}
.l-grid--2col {
  grid-template-columns: 1fr;
}
.l-grid--3col {
  grid-template-columns: 1fr;
}
.l-grid--sidebar {
  grid-template-columns: 1fr;
}
.l-grid--gap-sm {
  grid-gap: 1rem;
}
.l-grid--gap-md {
  grid-gap: 2rem;
}
.l-grid--gap-lg {
  grid-gap: 3rem;
}

/* Variables */
/* Mixins */
/* Login Layout */
body {
  min-height: 100vh;
}

.l-login-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 680px;
  margin: 0;
  z-index: 10;
}

.l-heder {
  width: 100%;
  background-color: #fff;
  padding: 12px 50px;
  border-radius: 0 0 50px 50px;
}

.l-heder__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.l-heder__logo {
  width: 200px;
  display: block;
  flex-shrink: 0;
}

.l-heder__content {
  width: 100%;
}

.l-heder__top {
  display: flex;
  gap: 20px;
  width: 100%;
  justify-content: flex-end;
}

.l-heder__person {
  display: flex;
  gap: 6px;
  align-items: center;
}

.l-heder__logout {
  display: flex;
  gap: 6px;
  align-items: center;
}
.l-heder__logout:hover {
  text-decoration: underline;
}

.l-heder__bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  border-top: solid 1px #ccc;
}

.l-heder__bottom.sp_menu {
  display: none;
}

.l-heder__link.-active {
  color: #63da46;
  text-decoration: underline;
}
.l-heder__link:hover {
  text-decoration: underline;
}

/* Variables */
/* Mixins */
/* Button Component */
.c-button {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
}
.c-button--primary {
  background-color: #3bc230;
  color: #ffffff;
}
.c-button--primary:hover {
  /* background-color: rgb(7, 102.6751269036, 255); */
  background-color: rgb(30, 130, 30);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.c-button--secondary {
  background-color: #8338ec;
  color: #ffffff;
}
.c-button--secondary:hover {
  background-color: rgb(103.9174311927, 21.004587156, 219.995412844);
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.c-button--outline {
  background-color: transparent;
  border: 1px solid #3a86ff;
  color: #3a86ff;
}
.c-button--outline:hover {
  background-color: rgba(58, 134, 255, 0.05);
  transform: translateY(-2px);
}
.c-button--block {
  display: block;
  width: 100%;
}
.c-button--disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.c-button--disabled:hover {
  opacity: 0.6;
  transform: none;
  box-shadow: none;
}

/* Variables */
/* Mixins */
/* Form Components */
.c-form__group {
  margin-bottom: 2rem;
}
.c-form__label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: #2b2d42;
}
.c-form__label span.required {
  color: #ff0000;
}
.c-form__input {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #f7f7f7;
  transition: all 0.3s ease;
}
.c-form__input:focus {
  outline: none;
  border-color: #3a86ff;
}
.c-form__input--error {
  border-color: #ff006e;
}
.c-form__input[id^="years"],
.c-form__input[id^="job-type"],
.c-form__input[id^="salary"],
.c-form__input[id^="employment-status"],
.c-form__input[id^="desired-job"],
.c-form__input[id^="gender"],
.c-form__input[id^="area"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 3rem;
}
.c-form__error {
  display: block;
  margin-top: 0.5rem;
  color: #ff006e;
  font-size: 1.2rem;
}
.c-form__helper {
  display: block;
  margin-top: 0.5rem;
  color: #8d99ae;
  font-size: 1.2rem;
}
.c-form__checkbox {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
}
.c-form__checkbox input[type="checkbox"] {
  margin-right: 0.5rem;
}
.c-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.c-form__radio {
  display: flex;
  align-items: center;
}
.c-form__radio input[type="radio"] {
  margin-right: 0.5rem;
}
.c-form__inline-group {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
.c-form__inline-group .c-form__input-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.c-form__inline-group .c-form__input-wrap .c-form__label {
  width: 100%;
}
.c-form__inline-group .c-form__input {
  width: 100%;
}
.c-form__inline-group .c-form__input-suffix {
  margin-left: 0.5rem;
  white-space: nowrap;
  color: #2b2d42;
  font-size: 1.4rem;
}
.c-form__input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.c-form__input-wrap .c-form__input-suffix {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  white-space: nowrap;
  color: #2b2d42;
  font-size: 1.4rem;
}

/* Variables */
/* Heading Components */
.c-heading {
  margin-bottom: 2rem;
}
.c-heading--page {
  font-size: 2.4rem;
  font-weight: 600;
  text-align: center;
  color: #2b2d42;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 1rem;
}
.c-heading--section {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2b2d42;
  letter-spacing: 0.3px;
}
.c-heading--subsection {
  font-size: 1.6rem;
  font-weight: 600;
  color: #2b2d42;
  letter-spacing: 0.2px;
}

/* Variables */
/* Logo Component */
.c-logo {
  display: block;
  text-align: center;
  margin-bottom: 2rem;
}
.c-logo img {
  max-height: 50px;
}
.c-logo__text {
  font-size: 2.4rem;
  font-weight: bold;
  color: #3a86ff;
}

/* Variables */
/* Card Component */
.c-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.c-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.c-card__header {
  padding: 2rem;
  border-bottom: 1px solid #edf2f4;
}
.c-card__body {
  padding: 2rem;
}
.c-card__footer {
  padding: 2rem;
  border-top: 1px solid #edf2f4;
}

/* Variables */
/* Table Component */
.c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.c-table__head {
  background-color: rgba(58, 134, 255, 0.03);
}
.c-table__th {
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #2b2d42;
  border-bottom: 2px solid #edf2f4;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.c-table__td {
  padding: 1.5rem;
  border-bottom: 1px solid #edf2f4;
  vertical-align: middle;
}
.c-table__row {
  transition: background-color 0.2s ease;
}
.c-table__row:hover {
  background-color: rgba(58, 134, 255, 0.02);
}
.c-table--striped tr:nth-child(even) {
  background-color: rgba(58, 134, 255, 0.01);
}
.c-table--bordered th,
.c-table--bordered td {
  border: 1px solid #edf2f4;
}

/* Variables */
/* Tab Component */
.c-tab {
  display: flex;
  border-bottom: 1px solid #edf2f4;
  margin-bottom: 2rem;
}
.c-tab__item {
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: #8d99ae;
  position: relative;
  transition: all 0.3s ease;
}
.c-tab__item:hover {
  color: #3a86ff;
}
.c-tab__item--active {
  color: #3a86ff;
  font-weight: 600;
}
.c-tab__item--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #3a86ff;
  transition: width 0.3s ease;
}
.c-tab__content {
  display: none;
  padding: 2rem 0;
}
.c-tab__content--active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Variables */
/* Badge Component */
.c-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}
.c-badge--primary {
  background-color: rgba(58, 134, 255, 0.1);
  color: #3a86ff;
}
.c-badge--secondary {
  background-color: rgba(131, 56, 236, 0.1);
  color: #8338ec;
}
.c-badge--success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.c-badge--danger {
  background-color: rgba(255, 0, 110, 0.1);
  color: #ff006e;
}
.c-badge--warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: rgb(185.5, 139.125, 0);
}
.c-badge--info {
  background-color: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}
.c-badge--light {
  background-color: rgba(248, 249, 250, 0.7);
  color: #8193a5;
}
.c-badge--dark {
  background-color: rgba(52, 58, 64, 0.1);
  color: #343a40;
}

/* Variables */
/* Mixins */
/* Progress Bar Component */
.c-progress {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 3rem auto;
  padding: 0 1rem;
  max-width: 23.4rem;
  /* 非アクティブなステップのスタイル */
}
.c-progress__line {
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 100%;
  max-width: 16.4rem;
  height: 2px;
  background-color: #63da46;
  z-index: 1;
  border-radius: 1px;
  left: 3rem;
  /* ステップ1用のスタイル（線全体をグレーに） */
}
.c-progress__line::before,
.c-progress__line::after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #63da46;
  border-radius: 50%;
  top: -0.4rem;
}
.c-progress__line::before {
  left: 0;
}
.c-progress__line::after {
  right: 0;
}
.c-progress__line--step1 {
  background-color: #cccccc;
}
.c-progress__line--step1::before {
  background-color: #63da46; /* 基本情報の点は青いまま */
}
.c-progress__line--step1::after {
  background-color: #cccccc;
}
.c-progress__line--step2 {
  background-color: #63da46 !important;
  z-index: 1;
  width: 36% !important;
}
.c-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.c-progress__point {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: #63da46;
  margin-bottom: 0.8rem;
  position: relative;
  top: 0.05rem;
}
.c-progress__spacer {
  width: 0.9rem;
  height: 0.9rem;
  margin-bottom: 0.8rem;
  visibility: hidden;
  position: relative;
  top: 0.05rem;
}
.c-progress__label {
  font-size: 1.2rem;
  color: #63da46;
  text-align: center;
}
.c-progress__step--active .c-progress__point {
  width: 1.6rem;
  height: 1.6rem;
}
.c-progress__step--active .c-progress__label {
  /* font-weight: bold; */
}
.c-progress__step--completed .c-progress__point {
  background-color: rgb(2, 133.5099009901, 255);
}
.c-progress__step--inactive .c-progress__point {
  background-color: #cccccc;
}
.c-progress__step--inactive .c-progress__label {
  color: #999999;
}

/* Variables */
/* Mixins */
/* Add Item Link Component */
.c-add-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0.8rem 0;
  margin: 1rem 0;
  border: none;
  border-bottom: 1px dashed #e0e0e0;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #2b2d42;
}
.c-add-item__text {
  font-size: 1.4rem;
}
.c-add-item__icon {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1;
}
.c-add-item:hover {
  opacity: 0.8;
}
.c-add-item:focus {
  outline: none;
}

/* Variables */
/* Mixins */
/* Login Project */
.p-login__logo {
  z-index: 20;
  margin: 100px auto 2rem;
  width: 100%;
  max-width: 680px;
  text-align: center;
}
.p-login__logo img {
  max-height: 60px;
}
.p-login__title {
  margin-bottom: 3rem;
}
.p-login__form {
  margin-bottom: 2rem;
}
.p-login__form .c-form__label {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}
.p-login__submit {
  margin-top: 3rem;
}
.p-login__submit .c-button--primary {
  max-width: 32.5rem;
  margin: 0 auto;
  border-radius: 2.5rem;
  padding: 1.2rem 2rem;
}
.p-login__options {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  margin-bottom: 2rem;
}
.p-login__remember {
  font-size: 1.4rem;
}
.p-login__forgot {
  font-size: 1.4rem;
  color: #63da46;
}
.p-login__forgot:hover {
  text-decoration: underline;
}
.p-login__divider {
  position: relative;
  text-align: center;
  margin: 2rem 0;
}
.p-login__divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #edf2f4;
}
.p-login__divider span {
  position: relative;
  display: inline-block;
  padding: 0 1rem;
  background-color: #ffffff;
  color: #8d99ae;
  font-size: 1.4rem;
}
.p-login__signup {
  text-align: center;
  margin-top: 2rem;
  font-size: 1.4rem;
}
.p-login__signup a {
  color: #3bc230;
  font-weight: bold;
}
.p-login__signup a:hover {
  text-decoration: underline;
}

.p-check__label {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.p-check__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.p-check__checkbox {
  margin-right: 2rem;
  margin-bottom: 0.5rem;
}
.p-check__checkbox__label {
  font-size: 1.2rem;
  font-weight: 500;
}

.c-popup {
  background-color: #ffffff;
  max-width: 800px;
  box-sizing: border-box;
  padding: 4rem;
  border-radius: 1rem;
  height: 540px;
  overflow-y: auto;
}
.c-popup__content {
  border: 1px solid #000000;
  padding: 3rem;
}
.c-popup__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.l-loading-container {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 100;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.c-loading__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-loading__spinner {
  width: 100px;
}
.c-loading__text {
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 2rem;
}
.c-loading__icon {
  animation: spin 2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Variables */
/* Mixins */
/* User Profile Project */
.p-user-profile {
  width: 100%;
}
.p-user-profile__header {
  margin-bottom: 3rem;
}
.p-user-profile__title {
  margin-bottom: 1rem;
}
.p-user-profile__description {
  color: #8d99ae;
  margin-bottom: 2rem;
}
.p-user-profile__avatar-container {
  margin-bottom: 2rem;
}
.p-user-profile__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 1.5rem;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.p-user-profile__avatar:hover {
  transform: scale(1.05);
}
.p-user-profile__menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.p-user-profile__menu li {
  padding: 1rem 0;
  border-bottom: 1px solid #edf2f4;
  cursor: pointer;
  transition: all 0.2s ease;
}
.p-user-profile__menu li:hover {
  color: #3a86ff;
  padding-left: 0.5rem;
}
.p-user-profile__menu li:last-child {
  border-bottom: none;
}
.p-user-profile__info {
  margin-bottom: 3rem;
}
.p-user-profile__info-item {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
}
.p-user-profile__info-label {
  width: 150px;
  font-weight: 600;
  color: #2b2d42;
}
.p-user-profile__info-value {
  flex: 1;
}
.p-user-profile__skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}
.p-user-profile__actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.p-user-profile__form {
  width: 100%;
}

/* Variables */
/* Mixins */
/* Register Project */
.p-register {
  width: 100%;
  max-width: 630px;
  margin: 0 auto;
  padding: 8rem 8rem;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 100px;
  /* フリガナ入力欄用のスタイル */
}
.p-register__progress {
  margin: 2rem auto 3rem;
}
.p-register__add-button {
  margin: 2rem 0 3rem;
  text-align: center;
}
.p-register__add-button .c-button {
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
}
.p-register__add-button + .c-form__group {
  margin-top: 2rem;
  margin-bottom: 3rem;
}
.p-register .p-register__add-button ~ .c-form__group {
  margin-bottom: 3rem;
}
.p-register__prefecture-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.p-register__job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.p-register__date-group .c-form__input-wrap {
  flex: 1;
  position: relative;
}
.p-register__date-group .c-form__input-wrap:nth-child(1) {
  flex: 2;
}
.p-register__date-group .c-form__input-wrap:nth-child(2),
.p-register__date-group .c-form__input-wrap:nth-child(3) {
  flex: 1;
}
.p-register__date-group .c-form__input-wrap .c-form__input {
  padding-right: 2.5rem;
}
.p-register__date-group .c-form__input-wrap .c-form__input-suffix {
  right: 0.8rem;
}
.p-register__name-kana-group .c-form__input-wrap {
  min-width: 120px;
}
.p-register__name-kana-group .c-form__input-wrap .c-form__label {
  white-space: nowrap;
  text-align: left;
}
.p-register__name-kana-group .c-form__input-wrap .c-form__input {
  width: 100%;
  min-width: 120px;
}
.p-register__workplace-group {
  margin-bottom: 3rem;
}
.p-register__workplace-parent {
  margin-bottom: 0;
}
.p-register__workplace-children {
  padding-left: 3rem;
  position: relative;
}
.p-register__workplace-children::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 1rem;
  width: 1px;
  background-color: #333;
  height: calc(100% - 2.2rem);
}
.p-register__workplace-children .c-form__group {
  position: relative;
}
.p-register__workplace-children .c-form__group:first-child {
  padding-top: 1.5rem;
}
.p-register__workplace-children .c-form__group::before {
  content: "";
  position: absolute;
  top: 5rem;
  left: -2rem;
  width: 2rem;
  height: 1px;
  background-color: #333;
}
.p-register__workplace-children .c-form__group:first-child::before {
  top: 6.3rem;
}

.p-register.l-login-container {
  max-width: 680px;
}

.p-task {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}

.p-task__profile {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 30%;
  max-width: 240px;
  flex-shrink: 0;
}

.p-task__profile-img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.p-task__profile-name {
  font-size: 20px;
  color: #63da46;
  font-weight: bold;
  text-align: center;
}

.p-task__item-section {
  width: 100%;
}

.p-task__items-label {
  font-size: 18px;
  color: #63da46;
  font-weight: bold;
}

.p-task__items {
  margin-top: 12px;
}

.p-task__item {
  border-radius: 10px;
  background-color: #f7f7f7;
}

.p-task__item + .p-task__item {
  margin-top: 12px;
}

.p-task__item a {
  display: flex;
  gap: 12px;
  padding: 18px 24px;
}

.p-task__item img {
  width: 24px;
  height: 24px;
  display: block;
}

.p-task__item p {
  margin-bottom: 0;
}

/* Utility Classes */
.u-text-center {
  text-align: center !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-max-w-200 {
  max-width: 200px !important;
}

.u-max-w-400 {
  max-width: 400px !important;
}

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

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

.u-side-arrow {
  display: inline-block;
}

.u-font-size-14 {
  font-size: 14px !important;
}

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

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

.u-text-decoration-underline {
  border-bottom: 1px solid #63da46 !important;
  display: block;
}

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

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

.u-font-size-24 {
  font-size: 24px !important;
}

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

.p-login__submit {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-login__submit.--center {
  text-align: center;
}

.u-box-center {
  margin-left: auto;
  margin-right: auto;
}

.u-mt-d-12 {
  margin-top: 12px;
}

.u-mt-d-24 {
  margin-top: 24px;
}

.u-mt-d-32 {
  margin-top: 32px;
}

.u-mt-d-64 {
  margin-top: 64px;
}

.u-flex {
  display: flex;
}
.u-flex.-between {
  justify-content: space-between;
}
.u-flex.-gap20 {
  gap: 20px;
}
.u-flex.-gap12 {
  gap: 12px;
}
.u-flex.-x-end {
  justify-content: flex-end;
}
.u-flex.-x-center {
  justify-content: center;
}
.u-flex.-y-center {
  align-items: center;
}
.u-flex.-wrap {
  flex-wrap: wrap;
}

.u-text-lv1 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: #2b2d42;
  letter-spacing: 0.5px;
  position: relative;
}

.u-arrow-link {
  text-decoration: underline;
  text-decoration-color: #63da46;
  position: relative;
  font-size: 16px !important;
  color: #333 !important;
}

.u-arrow-link::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: solid 1px #3bc230;
  border-right: solid 1px #3bc230;
  transform: translate(0, -50%) rotate(45deg);
  top: 50%;
  right: -10px;
}

.u-sheet {
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
  padding: 24px;
}

.p-company-panel {
  width: 100%;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.16);
}

.p-company-panel__img {
  width: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/9;
  border-radius: 10px 10px 0 0;
}

.p-company-panel__title {
  color: #3bc230;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  padding: 0 20px 0 20px;
}

.p-company-panel__desc {
  font-size: 14px;
  color: #333333;
  margin-top: 12px;
  margin-bottom: 0px;
  padding: 0 20px 0 20px;
}

.p-company-panel__body {
  padding: 32px 20px 24px 20px;
}

.p-company-panel__tags {
  display: flex;
  gap: 12px;
}

.p-company-panel__address {
  font-size: 14px;
  color: #333333;
  margin-bottom: 0px;
  margin-top: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.p-company-panel__salary {
  font-size: 14px;
  color: #333333;
  margin-top: 4px;
  margin-bottom: 0px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.c-tag {
  background-color: #f5f5e1;
  color: #333;
  font-size: 13px;
  padding: 6px 12px;
  line-height: 1;
  border-radius: 3px;
}

.c-snack-bar {
  --border-color: #45d845;
  --bk-color: #b3ffb3;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: var(--bk-color);
  border-radius: 5px;
  padding: 12px 24px;
  font-size: 16px;
  border: solid 1px var(--border-color);
  max-width: 300px;
  display: none;
}
.c-snack-bar.-error {
  --border-color: #d84545;
  --bk-color: #ffb3b3;
}
.c-snack-bar.-success {
  --border-color: #45d845;
  --bk-color: #b3ffb3;
}
.c-snack-bar.-open {
  display: block;
}

.c-textarea {
  padding: 12px 18px;
  border-radius: 3px;
  background-color: #fff;
  font-size: 16px;
  width: 100%;
}

.l-inner {
  max-width: 108rem;
  margin: 0 auto;
}

/* object > component */
.c-h1 {
  background: #63da46;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 2.2rem;
  border-radius: 0.5rem;
}
.c-h1 img {
  width: 32px;
  height: 32px;
}

.c-greyBg {
  background: #f2f5f5;
}

/* ====== page ====== */
.secTalkList {
  min-height: 100vh;
}
.secTalkList .l-inner .c-h1 {
  margin: 0 20px;
}

.inner {
  padding: 8rem 0;
}

.secTalkList__ul {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(3, 25.4rem);
  -moz-column-gap: 2rem;
  column-gap: 2rem;
  margin-top: 3rem;
  row-gap: 2rem;
}

.secTalkList__item {
  background: #ffffff;
  width: 25.4rem;
  height: 26.6rem;
  border-radius: 1rem;
}

.secTalkList__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.secTalkList__img {
  width: 12rem;
}

.secTalkList__p {
  font-size: 2rem;
}

.p-talk__header {
  background-color: #63da46;
  border-radius: 5px 5px 0 0;
  display: flex;
  justify-content: space-between;
  padding: 12px 24px;
}

.p-talk__title {
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 12px;
}

.p-talk__title-text {
  font-size: 22px;
  color: #fff;
}

.p-talk__info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.p-talk__chat-container {
  background-color: #fff;
  overflow-y: scroll;
  height: calc(100vh - 310px);
  padding: 32px;
}

.p-talk__input-area {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-top: 32px;
}

.p-talk__send-btn {
  flex-shrink: 0;
}

.l-theme-layout {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.l-theme-layout__nav {
  position: fixed;
}

.l-theme-layout__content {
  width: 100%;
  padding: 120px 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.c-message {
  width: 70%;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.c-message + .c-message {
  margin-top: 24px;
}
.c-message.-left .c-message__bubble {
  background-color: #f8f8f5;
}
.c-message.-right {
  flex-direction: row-reverse;
  margin-left: auto;
}
.c-message.-right .c-message__bubble {
  background-color: #cdedf8;
}

.c-message__bubble {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 5px;
  position: relative;
}

.c-message__user-info {
  font-size: 12px;
  flex-shrink: 0;
  width: -moz-max-content;
  width: max-content;
}

.c-message__icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  border: solid 2px #333;
}

.c-message__time {
  font-size: 12px;
  color: #8b8b8b;
  text-align: right;
  margin-top: 10px;
}

.c-message__is-read {
  position: absolute;
  font-size: 12px;
  color: #8b8b8b;
  bottom: 0px;
  left: -40px;
}

.c-btn {
  font-size: 18px;
  cursor: pointer;
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
.c-btn.-outline {
  background-color: transparent;
  border-radius: 3px;
  border: solid 1px #fff;
  color: #fff;
  padding: 6px 28px;
}
.c-btn.-mono {
  background-color: #fff;
  border-radius: 3px;
  border: solid 1px #333;
  color: #333;
  padding: 6px 28px;
}
.c-btn.-primary {
  border: solid 1px #63da46;
  background-color: #fff;
  border-radius: 3px;
  color: #63da46;
  padding: 6px 28px;
}
.c-btn.-size-s {
  font-size: 16px;
  padding: 2px 20px;
}
.c-btn:hover.-mono {
  background-color: #333;
  color: #fff;
}

.c-textarea {
  padding: 12px 18px;
  border-radius: 3px;
  background-color: #fff;
  font-size: 16px;
  width: 100%;
  border: none;
}

.profile-layout .all_wrapper {
  width: calc(70% - 20px);
}

@media (min-width: 992px) {
  .l-container {
    width: 90%;
  }
  .l-grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .l-grid--sidebar {
    grid-template-columns: 280px 1fr;
    max-width: 100%;
  }
  .p-register__prefecture-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .l-container {
    width: 80%;
  }
}

@media (min-width: 576px) {
  .l-login-container {
    padding: 8rem 8rem;
  }
  .l-login-wrapper {
    max-width: 680px;
  }
}

@media screen and (max-width: 768px) {
  .l-login-container {
    padding: 4rem 3rem;
    width: calc(100% - 40px);
    margin-bottom: 100px;
  }
  .l-login-wrapper {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin: 0 auto;
  }
  .l-heder {
    border-radius: 0;
    padding: 8px 20px;
  }
  .l-heder__logo {
    width: 100px;
  }
  .l-heder__person {
    flex-direction: column;
  }
  .l-heder__person img {
    width: 40px;
  }
  .l-heder__person span {
    font-size: 10px;
  }
  .l-heder__logout {
    flex-direction: column;
  }
  .l-heder__logout img {
    width: 40px;
  }
  .l-heder__logout span {
    font-size: 10px;
  }
  .l-heder__bottom {
    display: none;
  }
  .l-heder__bottom.sp_menu {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    margin: 10px auto;
    font-size: 12px;
  }
  .l-heder__bottom.sp_menu a {
    padding: 0 10px;
    text-align: center;
  }
  .l-heder__bottom.sp_menu a:first-of-type {
    border-right: solid 1px #ccc;
    border-left: solid 1px #ccc;
  }
  .l-heder__bottom.sp_menu a:not(:first-of-type) {
    border-right: solid 1px #ccc;
  }
  .c-form__label {
    font-size: 12px;
  }
  .p-login__logo {
    margin: 100px auto 60px;
  }
  .p-register {
    padding: 4rem 3rem;
    width: calc(100% - 40px);
  }
  .p-register__workplace-group:not(:first-of-type) {
    border-top: dashed 1px #ccc;
    padding-top: 20px;
  }
  .p-register__title {
    font-size: 20px;
  }
  .p-task {
    flex-direction: column;
  }
  .p-task__profile {
    width: 100%;
    max-width: 220px;
    justify-content: center;
    align-items: center;
    margin: 20px auto 0;
  }
  .p-task__item a {
    align-items: center;
  }
  .u-sheet {
    padding: 20px 10px 40px;
  }
  .p-company-panel__desc {
    margin-bottom: 20px;
  }
  .p-company-panel__body {
    padding: 20px 10px;
    border-top: dashed 1px #2fe333;
  }
  .p-company-panel__address {
    margin-top: 20px;
  }
  .p-company-panel__address img {
    width: 16px;
  }
  .p-company-panel__salary {
    margin-top: 10px;
  }
  .p-company-panel__salary img {
    width: 16px;
  }
  .c-h1 {
    font-size: 18px;
    padding: 15px 10px;
  }
  .c-h1 img {
    width: 20px;
    height: 20px;
  }
  .c-h1 p {
    margin-bottom: 0;
  }
  .secTalkList .l-inner .c-h1 {
    margin: 0;
  }
  .inner {
    padding: 4rem 20px;
  }
  .p-talk__header {
    padding: 10px 14px;
  }
  .p-talk__title-text {
    font-size: 14px;
  }
  .p-talk__chat-container {
    padding: 20px;
  }
  .p-talk__input-area {
    flex-direction: column;
    gap: 16px;
  }
  .l-theme-layout__content {
    padding: 30px 20px;
  }
  .c-message {
    width: 100%;
  }
  .c-message__user-info p {
    text-align: center;
  }
  .profile-layout .preference-card .c-form__label {
    font-size: 12px;
  }
  .profile-layout .preference-card .c-form__input {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .l-grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
  .l-grid--sidebar {
    grid-template-columns: 250px 1fr;
  }
  .c-progress__label {
    font-size: 1.4rem;
  }
  .c-add-item__text {
    font-size: 1.6rem;
  }
  .c-add-item__icon {
    font-size: 1.8rem;
  }
  .p-register__prefecture-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .p-register__job-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-height: 700px) {
  .l-login-wrapper {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    width: 100%;
    margin: 100px auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 1080px) {
  .secTalkList__ul {
    grid-template-columns: repeat(2, calc(50% - 2rem));
  }
  .secTalkList__item {
    margin: 0 auto;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .secTalkList__ul {
    grid-template-columns: repeat(1, 100%);
  }
  .secTalkList__item {
    margin: 0 auto;
  }
}
