@charset "UTF-8";
/** フォントサイズ変数（bodyの18pxを基準としたrem値） */
/** ブレークポイント */
/** トランジション・アニメーション */
/** mixinの定義 */
/** PC/SP表示切り替え用mixin */
/* ----------------------------------------
 * 共通アニメーション定義
 * ---------------------------------------- */
@keyframes skeleton_loading {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes btn_animation {
  0% {
    transform: translate(6px, 0px);
  }
  5% {
    transform: translate(-6px, 0px);
  }
  10% {
    transform: translate(6px, 0px);
  }
  15% {
    transform: translate(-6px, 0px);
  }
  20% {
    transform: translate(6px, 0px);
  }
  25% {
    transform: translate(-6px, 0px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}
@keyframes spin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}
/* assets/styles/reset.scss */
/* reset.scss */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

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

button {
  background-color: transparent;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
button:hover, button:focus {
  outline: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
}

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

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

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
input:focus,
button:focus,
textarea:focus,
select:focus {
  outline: none;
}

fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

legend {
  display: none;
}

a {
  text-decoration: none;
  color: initial;
  transition: color 0.3s ease;
  display: inline-block;
}
@media (max-width: 768px) {
  a:hover, a:focus {
    text-decoration: none;
  }
}

a:not(.btn):hover, a:not(.btn):active {
  color: #e73273;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
/* assets/styles/main.scss */
/* ========================================
 * main.scss - サイト全体の共通スタイル定義
 * ======================================== */
/** ベース要素（body, フォント, 色など） */
body {
  font-family: "Yu Gothic UI", "Yu Gothic", "游ゴシック", "游ゴシック体", "YuGothic", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN", "Noto Sans JP", "Noto Sans CJK JP", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  background: #ffffff;
  color: #231815;
  letter-spacing: 0.1rem;
  text-rendering: optimizeLegibility;
}

[v-cloak] {
  display: none;
}

/** button コンポーネントスタイル */
.btn {
  padding: 0.6rem 1.6rem;
  border: none;
  border-radius: 1px;
  font-size: 1rem;
  letter-spacing: 0.4rem;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn__round {
  border-radius: 4rem;
}
.btn__large {
  padding: 0.8rem 1.8rem;
  font-size: 1.167rem;
}
.btn__primary {
  background-color: #e73273;
}
.btn__primary:hover {
  background-color: #000000;
}
.btn__success {
  background-color: #2e7d32;
}
.btn__success:hover {
  background-color: #e73273;
}
.btn__default {
  background-color: #000000;
}
.btn__default:hover {
  background-color: #e73273;
}
.btn__error {
  background-color: #c62828;
}
.btn__error:hover {
  background-color: #000000;
}
.btn__info {
  background: #29abe2;
}
.btn__info:hover {
  background-color: #000000;
}
.btn__secondary-2 {
  background-color: #61c1be;
  color: #ffffff;
}
.btn__secondary-2:hover {
  background-color: #000000;
}
.btn__secondary-3 {
  background-color: #29abe2;
  color: #ffffff;
}
.btn__secondary-3:hover {
  background-color: #000000;
}
.btn:disabled {
  background-color: #666666;
  color: #dee2e6;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn:disabled:hover {
  background-color: #666666;
}
.btn:aria-busy {
  position: relative;
}
.btn:aria-busy ::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.btn__clear {
  background: #29abe2;
}
.btn__clear:hover {
  background-color: #000000;
}

.header {
  max-width: 1530px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 1rem 0;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.header__nav-wrap .header__menu-button {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 2rem;
  height: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}
@media (max-width: 768px) {
  .header__nav-wrap .header__menu-button {
    display: flex;
  }
}
.header__nav-wrap .header__menu-button span {
  width: 100%;
  height: 3px;
  background-color: #231815;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__nav-wrap .header__menu-button span:nth-child(1) {
  transform: translateY(0);
}
.header__nav-wrap .header__menu-button span:nth-child(2) {
  opacity: 1;
}
.header__nav-wrap .header__menu-button span:nth-child(3) {
  transform: translateY(0);
}
.header__nav-wrap .header__menu-button.is-open span:nth-child(1) {
  transform: rotate(45deg) translateY(1rem);
}
.header__nav-wrap .header__menu-button.is-open span:nth-child(2) {
  opacity: 0;
}
.header__nav-wrap .header__menu-button.is-open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-1rem);
}
.header__nav-wrap .header__menu-button:hover span {
  background-color: #e73273;
}
.header__nav {
  padding: 2rem 0;
}
.header__nav ul {
  text-align: right;
}
.header__nav ul li {
  display: inline-block;
  font-size: 0.889rem;
}
.header__nav ul li + li {
  margin-left: 0.8rem;
}
.header__nav ul li.logout button {
  color: #ef845c;
}
.header__nav ul li.logout button:hover {
  color: #666666;
}
.header__nav ul li.auth-nav-item, .header__nav ul li.guest-nav-item {
  display: none;
}
.header__nav ul li.auth-nav-item.is-visible, .header__nav ul li.guest-nav-item.is-visible {
  display: inline-block;
}
@media (max-width: 768px) {
  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 999;
    padding: 4rem 1rem 1rem;
    transition: right 0.3s ease;
  }
  .header__nav.is-open {
    right: 0;
  }
  .header__nav ul {
    text-align: left;
  }
  .header__nav ul li {
    display: block;
    border-bottom: 1px solid #dee2e6;
  }
  .header__nav ul li + li {
    margin-left: 0;
    margin-top: 0;
  }
  .header__nav ul li a {
    display: block;
    padding: 1rem 0;
    font-weight: bold;
  }
  .header__nav ul li.logout {
    text-align: right;
    margin-left: auto;
    margin-top: 1rem;
    border-bottom: none;
  }
  .header__nav ul li.auth-nav-item, .header__nav ul li.guest-nav-item {
    display: none;
  }
  .header__nav ul li.auth-nav-item.is-visible, .header__nav ul li.guest-nav-item.is-visible {
    display: block;
  }
}
.header__title {
  padding: 0 3rem;
  text-align: left;
  max-width: 860px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header__title {
    padding: 0;
    flex: 1;
    max-width: calc(100% - 5rem);
    margin-left: 0;
  }
}
.header__subtitle {
  color: #e73273;
  font-size: 1.167rem;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.2rem;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 768px) {
  .header__subtitle {
    font-size: 0.889rem;
  }
}
.header__logo {
  margin-bottom: 2rem;
}
.header__logo a {
  display: block;
  line-height: 1;
}
@media (max-width: 768px) {
  .header__logo {
    margin-bottom: 0.5rem;
  }
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 997;
}
@media (min-width: calc(768px + 1px)) {
  .header__overlay {
    display: none;
  }
}

.city {
  max-width: 1530px;
  margin: 0 auto;
}
.city__inner {
  position: relative;
  max-width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 1024px) {
  .city__inner {
    padding: 0 2rem;
  }
}
.city__toggle {
  display: none;
}
@media (max-width: 1024px) {
  .city__toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0.5rem;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
  }
  .city__toggle:hover {
    background-color: #ebf0f3;
  }
}
.city__nav {
  width: 100%;
}
.city__list {
  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.city__item {
  width: calc(5.5555555556% - 0.1rem);
  text-align: center;
}
.city__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: #231815;
  border-radius: 2px;
  transition: all 0.3s ease;
  font-size: 0.889rem;
  min-height: 110px;
}
@media (max-width: 1024px) {
  .city__link {
    min-height: 100px;
    border-radius: 0;
    background-color: #ffffff;
  }
}
.city__link.is-active {
  color: #e73273;
}
.city__link:hover {
  background-color: #ebf0f3;
}
.city__icon {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin: 0.5rem;
}
@media (max-width: 1024px) {
  .city__icon {
    margin: 0;
  }
}
.city__text {
  text-align: center;
  line-height: 1.2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.889rem;
  letter-spacing: -0.05rem;
}
@media (max-width: 1024px) {
  .city__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 995;
  }
  .city__dropdown.is-open {
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #dee2e6;
    border-top: 0;
    border-radius: 2px;
  }
  .city__dropdown .city__list {
    flex-direction: column;
    gap: 0;
  }
  .city__dropdown .city__item {
    width: 100%;
    border-bottom: 1px solid #dee2e6;
  }
  .city__dropdown .city__item:last-child {
    border-bottom: none;
  }
  .city__dropdown .city__link {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0.4rem;
    min-height: auto;
  }
  .city__dropdown .city__link:hover {
    background-color: #ebf0f3;
    transform: none;
  }
  .city__dropdown .city__icon {
    width: 46px;
    height: 46px;
    margin-right: 1rem;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .city__dropdown .city__text {
    display: block;
    text-align: left;
    flex: 1;
    font-size: 0.889rem;
    letter-spacing: 0;
  }
  .city__toggle-text {
    color: #231815;
  }
  .city__toggle-icon {
    transition: transform 0.3s ease;
  }
  .city__toggle-icon.is-open {
    transform: rotate(180deg);
  }
}
.city .city__toggle {
  display: none;
}
@media (max-width: 1024px) {
  .city .city__toggle {
    display: block;
  }
}

.sns {
  position: fixed;
  right: 0.2rem;
  top: 52%;
  z-index: 996;
}
@media (max-width: 768px) {
  .sns {
    top: 30%;
  }
}
.sns__item {
  max-width: 56px;
  background-color: #ffffff;
  border-radius: 0.1rem;
}
.sns__item + li {
  margin-top: 0.5rem;
}

.sponsor {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .sponsor {
    padding: 2rem;
  }
}
.sponsor__inner {
  max-width: 1530px;
  margin: 0 auto;
}
.sponsor__title {
  margin: 0 auto 2rem;
  max-width: 260px;
}
@media (max-width: 768px) {
  .sponsor__title {
    margin-bottom: 1rem;
    max-width: 130px;
  }
}
.sponsor__list {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.sponsor__list img {
  display: block;
  max-width: 230px;
  object-fit: contain;
  height: auto;
}
@media (max-width: 768px) {
  .sponsor__list {
    gap: 0.5rem;
  }
  .sponsor__list img {
    max-width: 115px;
  }
}

.footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem;
  }
}
.footer__inner {
  max-width: 1530px;
  margin: 0 auto;
}
.footer__logo {
  text-align: left;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.footer__logo .subtitle {
  font-size: 1.167rem;
  margin-bottom: 0.5rem;
  display: block;
  letter-spacing: 0.2rem;
  text-align: left;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer__logo .subtitle {
    font-size: 0.889rem;
  }
}
@media (max-width: 768px) {
  .footer__logo {
    padding: 0 1rem;
    max-width: 400px;
  }
}
.footer__sns {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__sns li {
  margin: 0 0.5rem;
  width: 60px;
}
.footer__nav li {
  display: inline-block;
  border-left: 1px solid #ffffff;
}
.footer__nav li:last-child {
  border-right: 1px solid #ffffff;
}
.footer__nav li a {
  color: #ffffff;
  padding: 0.2rem 1rem;
}
.footer__nav li a:hover {
  color: #e73273;
}
@media (max-width: 768px) {
  .footer__nav li {
    display: block;
    border-left: 0;
  }
  .footer__nav li:last-child {
    border-right: 0;
  }
  .footer__nav li + li {
    margin-left: 0;
  }
  .footer__nav li a {
    display: block;
    padding: 0.7rem;
  }
  .footer__nav li + li a {
    border-top: 1px dotted rgba(255, 255, 255, 0.1);
  }
}
.footer__admin {
  margin-top: 2rem;
  font-size: 0.889rem;
}
.footer__admin .admin {
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .footer__admin .admin {
    padding-left: 0;
    padding-top: 0.5rem;
    display: block;
  }
}
.footer__copyright {
  margin-top: 2rem;
  font-size: 0.722rem;
}

.errorPage {
  max-width: 1530px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .errorPage {
    padding: 2rem;
  }
}
.errorPage__title {
  margin-bottom: 1rem;
  text-align: center;
}
.errorPage__subtitle {
  margin-bottom: 2rem;
  text-align: center;
}
.errorPage__description {
  text-align: center;
}
.errorPage__code {
  text-align: center;
  word-wrap: break-word;
}
.errorPage .btn__wrap {
  margin-top: 4rem;
  text-align: center;
}

.section-full {
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .section-full {
    padding: 2rem;
  }
}

.section-background-gray {
  background-color: #ebf0f3;
}
.section-background-gray .inner {
  max-width: 1530px;
  margin: 0 auto;
}

.inner {
  max-width: 1530px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
@media (max-width: 768px) {
  .inner {
    padding: 2rem;
  }
}
.inner {
  margin-bottom: 4rem;
}
.inner .page-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 0.4rem;
  text-align: center;
}
@media (max-width: 768px) {
  .inner .page-title {
    font-size: 1.167rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.15rem;
  }
}
.inner .page-title.line {
  display: flex;
  align-items: center;
}
.inner .page-title.line:before, .inner .page-title.line:after {
  content: " ";
  height: 1px;
  flex-grow: 1;
  background-color: #666666;
}
.inner .page-title.line:before {
  margin-right: 1rem;
}
.inner .page-title.line:after {
  margin-left: 1rem;
}
.inner .section-title {
  text-align: left;
  font-size: 1.167rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: 0.4rem;
}
.inner .section-title.act {
  color: #61c1be;
}
.inner .action-buttons {
  text-align: center;
  padding-top: 3rem;
}
.inner .action-buttons .btn + .btn {
  margin-left: 1rem;
}
@media (max-width: 768px) {
  .inner .action-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 2rem;
  }
  .inner .action-buttons .btn + .btn {
    margin-left: 0;
    margin-top: 1rem;
  }
}
@media (max-width: 768px) {
  .inner {
    margin-bottom: 2rem;
  }
}

.svg-icon {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
}
.svg-icon--clickable {
  cursor: pointer;
  transition: transform 0.2s ease;
}
.svg-icon--clickable:hover {
  transform: scale(1.05);
}
.svg-icon--missing {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  background: #f5f3f2;
  border: 1px dashed #dee2e6;
  font-size: 0.556rem;
  color: #666666;
  text-align: center;
}

.no-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #61c1be 25%, #ebf0f3 37%, #61c1be 63%), #ffffff;
  background-size: 40px 40px;
  border-radius: 2px;
  animation: skeleton_loading 1.4s ease infinite;
  display: block;
}

.no-results {
  text-align: center;
  font-size: 1.167rem;
  color: #666666;
  margin: 4rem 0;
}

.sp-show {
  display: none;
}
@media (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

.pagination {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.pagination__button {
  padding: 8px 16px;
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
}
.pagination__button:hover:not(:disabled) {
  background: #e73273;
}
.pagination__button:disabled {
  background: #666666;
  cursor: not-allowed;
}
.pagination__info {
  font-size: 1rem;
}

.recruit {
  /* レスポンシブグリッド表示 */
}
.recruit__list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  gap: 2.5rem;
}
@media (max-width: 768px) {
  .recruit__list {
    gap: 1rem;
  }
}
.recruit__card {
  width: calc(25% - 1.9rem);
  /* デスクトップ: 4つ表示 (1025px以上) */
  padding: 0.5rem;
  box-shadow: 5px 5px 1px #c9caca;
  /* タブレット以下: 1つ表示 (768px以下) */
}
@media (max-width: 768px) {
  .recruit__card {
    width: calc(100% - 0.5rem) !important;
  }
}
.recruit__card > a {
  display: block;
  height: 100%;
}
.recruit__card__body {
  position: relative;
}
.recruit__card__link:hover .read_more {
  color: #e73273 !important;
}
.recruit__card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  aspect-ratio: 3/1.6;
  background-color: #ebf0f3;
}
.recruit__card__image img {
  width: 100%;
  object-fit: cover;
}
.recruit__card__placeholder {
  width: 100%;
  height: 100%;
  background-color: #ebf0f3;
  display: block;
}
.recruit__card__user-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -20px;
  left: -20px;
  box-shadow: 1px 1px 3px 1px rgba(0, 0, 0, 0.2);
}
.recruit__card__user-icon img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.recruit__card__user-icon .no-icon {
  background: linear-gradient(0deg, #f5f3f2 49%, #dee2e6 48%, #dee2e6 52%, #dee2e6 52%);
  background-size: 2px 100%;
  /* 線の太さを調整 */
  object-fit: cover;
  width: 100%;
  height: 100%;
  text-align: center;
  transform: rotate(135deg);
}
@media (max-width: 768px) {
  .recruit__card__user-icon {
    height: 60px;
    width: 60px;
    top: -10px;
    left: -10px;
  }
}
.recruit__card .card {
  padding: 0.5rem;
  text-align: left;
}
.recruit__card .card__city {
  text-align: center;
  font-weight: 600;
  color: #666666;
  font-size: 0.722rem;
  background-color: #ebf0f3;
  display: inline-block;
  margin-bottom: 0.5rem;
  min-width: 80px;
  padding: 0.2rem;
  vertical-align: bottom;
}
.recruit__card .card__desc {
  font-weight: normal;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-all;
  height: 3.7rem;
  font-size: 0.889rem;
}
@media (max-width: 768px) {
  .recruit__card .card__desc {
    font-size: 0.889rem;
    height: 2.8rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
.recruit__card .card__footer {
  border-top: 1px solid #231815;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.recruit__card .card__footer .one_day {
  font-size: 0.889rem;
  font-weight: 600;
  color: #e73273;
}
.recruit__card .card__footer .read_more {
  margin-left: auto;
  font-size: 0.556rem;
  text-decoration: none;
  color: initial;
  align-self: center;
  display: inline-block;
}
.recruit__card .card__footer .read_more:hover {
  color: #231815;
}

.message {
  padding: 1rem;
  border-radius: 2px;
  margin: 1rem 0;
}
.message p {
  margin: 0;
}
.message.success {
  color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.1);
  border: 1px solid #2e7d32;
}
.message.error {
  color: #c62828;
  background-color: rgba(198, 40, 40, 0.1);
  border: 1px solid #c62828;
}
.message.warning {
  color: #ffa000;
  background-color: rgba(255, 160, 0, 0.1);
  border: 1px solid #ffa000;
}
.message.info {
  color: #29abe2;
  background-color: rgba(41, 171, 226, 0.1);
  border: 1px solid #29abe2;
}

.link {
  color: #29abe2;
  text-decoration: none;
}
.link:hover {
  color: #e73273;
}

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

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.3s;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-to,
.fade-leave-from {
  opacity: 1;
}

.interview__head {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .interview__head {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
}
.interview__title {
  max-width: 500px;
  padding-right: 2rem;
  border-right: 2px solid #000000;
  margin-right: 1rem;
}
@media (max-width: 768px) {
  .interview__title {
    max-width: 400px;
    padding-right: 0;
    border-right: 0;
    margin-right: 0;
  }
}
.interview__title img {
  width: 100%;
  height: 3rem;
  /* SVGのサイズを明示的に指定 */
  display: block;
}
.interview__desc {
  font-size: 1.167rem;
}
.interview__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media (max-width: 768px) {
  .interview__list {
    margin: 1rem;
    flex-direction: column;
    gap: 2rem;
  }
}
.interview__card {
  width: calc(33.333% - 1.5rem);
  max-width: 350px;
  background-color: #ffffff;
  position: relative;
  padding: 40px 40px 40px 3rem;
}
.interview__card::before {
  content: " ";
  position: absolute;
  top: -1.5rem;
  left: 1rem;
  width: 60.2px;
  height: 60px;
  background-image: url("/img/iw_dg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 1rem;
  z-index: 1;
}
.interview__card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 40px 0 0;
  border-color: #666666 #ebf0f3 transparent transparent;
  z-index: 2;
}
@media (max-width: 768px) {
  .interview__card {
    width: 100%;
    max-width: none;
  }
}
.interview__subtitle {
  margin-bottom: 0.5rem;
  color: #61c1be;
  font-weight: 600;
  font-size: 0.889rem;
}
.interview__message {
  margin-bottom: 0.5rem;
  color: #666666;
  font-size: 0.889rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}
.interview__name {
  font-weight: 600;
  font-size: 0.778rem;
}
.interview__work {
  font-size: 0.778rem;
}
.interview__link {
  margin-top: 0.5rem;
  padding: 0.5rem 0 0;
  display: inline-block;
  position: relative;
  font-size: 0.722rem;
  font-style: italic;
}
.interview__link::after {
  content: "";
  position: relative;
  display: inline-block;
  width: 2.8rem;
  height: 1px;
  background-color: #666666;
  margin-bottom: 0.2rem;
  margin-left: 0.5rem;
}
.interview__link::before {
  content: "";
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  width: 1.3rem;
  height: 1px;
  background-color: #666666;
  transform: rotate(30deg);
  transform-origin: calc(100% - 2px) 50%;
  z-index: 1;
}
.interview__link:hover::after {
  background-color: #e73273;
}
.interview__link:hover::before {
  background-color: #e73273;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(2px);
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  min-width: 200px;
}

.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #dee2e6;
  border-top: 3px solid #e73273;
  border-radius: 50%;
  animation: spinner-rotate 1s linear infinite;
  overflow: hidden;
}

.loading-message {
  margin: 0;
  font-size: 1rem;
  color: #ffffff;
  text-align: center;
  font-weight: 500;
}

/* アニメーション */
@keyframes spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* トランジション */
.loading-enter-active,
.loading-leave-active {
  transition: opacity 0.2s ease;
}

.loading-enter-from,
.loading-leave-to {
  opacity: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .loading-container {
    padding: 1.5rem;
    min-width: 160px;
  }
  .spinner {
    width: 32px;
    height: 32px;
    border-width: 2px;
  }
  .loading-message {
    font-size: 0.9rem;
  }
}
/*
 * マイページ
 */
.mypage__layout {
  max-width: 768px;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  margin-top: 1.5rem;
  margin-bottom: 4rem;
}
@media (max-width: 768px) {
  .grid-container {
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-container .grid-item {
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #c9caca;
}
.grid-container .grid-item .card-title {
  font-size: 1rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.5rem;
  color: #666666;
}
.grid-container .grid-item .card-description {
  font-size: 0.889rem;
  margin-bottom: 0.5rem;
}
.grid-container .grid-item .card-link {
  cursor: pointer;
  display: block;
  margin: 0 auto 0 0;
  text-align: right;
  font-size: 0.889rem;
  color: #666666;
}
.grid-container .grid-item .card-link:hover {
  color: #e73273;
}

.static-item {
  border-bottom: 1px solid #dee2e6;
}

.static-text {
  padding: 0.5rem;
  color: #666666;
  opacity: 0.6;
  word-break: break-all;
}

/*
 * プライバシーポリシー
 */
.privacy.inner {
  max-width: 1530px;
  margin: 0 auto;
}
.privacy .privacy__content {
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  word-break: break-word;
  margin-bottom: 4rem;
}
.privacy .privacy__content h2.section-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 3rem 0 2rem 0;
  border-left: 4px solid #61c1be;
  padding-left: 0.7em;
}
.privacy .privacy__content h3 {
  color: #666666;
  font-size: 1.1rem;
  font-weight: bold;
  margin: 2rem 0 1rem 0;
  border-bottom: 0.2rem solid #dee2e6;
  padding-bottom: 0.5rem;
}
.privacy .privacy__content p {
  margin: 0 0 1.2em 0;
}
.privacy .privacy__content ul:not(.noStyle) {
  margin: 0 0 1.5em 1.5em;
  padding: 0;
  list-style: disc inside;
}
.privacy .privacy__content li {
  margin-bottom: 0.5em;
}
.privacy .privacy__content a {
  color: #e73273;
  text-decoration: underline;
  word-break: break-all;
}
.privacy .privacy__content a:hover {
  text-decoration: none;
  color: #666666;
}
@media (max-width: 600px) {
  .privacy .privacy__content {
    font-size: 0.95rem;
  }
  .privacy .privacy__content h2.section-title {
    font-size: 1.1rem;
    padding-left: 0.5em;
  }
  .privacy .privacy__content h3 {
    font-size: 1rem;
  }
}

/*
 * ツナギビト一覧
 */
.organizer__contents {
  padding: 2rem 0;
}

.organizer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.organizer-cards .organizer-card .active {
  display: block;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.organizer-cards .organizer-card .active::after {
  content: "";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background-image: url("/img/tb_dg.svg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  pointer-events: none;
  width: 6rem;
  height: 6rem;
}
.organizer-cards .organizer-card .active:hover {
  opacity: 0.8;
}
.organizer-cards .organizer-card__image {
  width: 100%;
  margin-bottom: 1rem;
  aspect-ratio: 3/2;
}
.organizer-cards .organizer-card__no-image {
  background-color: #ebf0f3;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.167rem;
  color: #666666;
}
.organizer-cards .organizer-card__info {
  display: flex;
  align-items: center;
}
.organizer-cards .organizer-card__city {
  letter-spacing: 0.2rem;
  min-width: 80px;
  text-align: center;
}
@media (max-width: 768px) {
  .organizer-cards .organizer-card__city {
    font-size: 0.889rem;
    min-width: 48px;
    letter-spacing: 0.05rem;
  }
}
.organizer-cards .organizer-card__content {
  margin-left: 0.8rem;
  padding-left: 0.8rem;
  border-left: 1px solid #000000;
}
.organizer-cards .organizer-card__name {
  font-weight: 500;
  font-size: 0.778rem;
}
.organizer-cards .organizer-card__vision {
  font-size: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
.organizer-cards .organizer-card__links li {
  display: inline-block;
  word-break: break-word;
  overflow-wrap: break-word;
  word-break: break-all;
  hyphens: auto;
  font-size: 0.722rem;
}
.organizer-cards .organizer-card__links li + li {
  margin-left: 0.5rem;
}
@media (max-width: 768px) {
  .organizer-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* assets/styles/form.scss */
/** form.scss - Formの共通スタイル定義 */
select {
  padding: 10px;
  border-radius: 2px;
  border: 1px solid #dee2e6;
}

.form .form-title {
  text-align: center;
  font-size: 1.167rem;
  font-weight: bold;
  margin-bottom: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid #29abe2;
}
.form .form-group {
  margin: 1rem 0 1.5rem;
}
.form .form-group label {
  font-size: 0.889rem;
  display: block;
  margin-bottom: 0.5rem;
}
.form .form-group input,
.form .form-group select,
.form .form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #dee2e6;
  border-radius: 2px;
}
.form .form-group input:focus,
.form .form-group select:focus,
.form .form-group textarea:focus {
  border-color: #e73273;
}
.form .form-group input:not([type=checkbox]):not([type=radio]):read-only,
.form .form-group textarea:read-only {
  background-color: #ebf0f3;
  border-color: #dee2e6;
  cursor: not-allowed;
}
.form .form-group input[type=file] {
  padding: 0;
  font-size: 0.889rem;
}
.form .form-group input[type=file]::file-selector-button {
  margin: 0;
  padding: 0.8rem;
  vertical-align: bottom;
  background-color: #000000;
  color: #ffffff;
  border: 0;
  font-size: 0.889rem;
  letter-spacing: 0.1rem;
  border-radius: 2px 0 0 2px;
}
.form .form-group .checkbox-group {
  display: inline-block;
}
.form .form-group .checkbox-group.no-border {
  text-align: center;
  border: none;
  padding-left: 0;
}
.form .form-group .checkbox-group input {
  width: auto !important;
}
.form .form-group .checkbox-group label {
  display: inline-block !important;
}
.form .form-group .checkbox-group label + label {
  margin-left: 1rem;
}
.form .form-group__date {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.form .form-group__date input {
  vertical-align: middle;
  flex: 1;
  max-width: 400px;
}
.form .form-group__date span {
  vertical-align: bottom;
  line-height: 1;
}
.form .form-group__radio {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #000000;
  display: inline-block;
}
.form .form-group__radio.no-border {
  text-align: center;
  border: none !important;
  padding-left: 0;
}
.form .form-group__radio input {
  width: auto !important;
}
.form .form-group__radio label {
  display: inline-block !important;
}
.form .form-group__radio:first-child {
  margin-left: 0;
}
.form .form-group__radio:last-child {
  padding-right: 1rem;
  border-right: 1px solid #000000;
}
@media (max-width: 768px) {
  .form .form-group__radio + label {
    margin-left: 1rem;
  }
}
.form .form-group.middle {
  max-width: 600px;
}
.form .form-group.small {
  max-width: 400px;
}
.form .terms {
  font-size: 1rem;
}
.form .required {
  color: #c62828;
  font-weight: 600;
}
.form .form-hint {
  font-size: 0.778rem;
  color: #666666;
  margin-top: 0.4rem;
}
.form .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.form .form-check input {
  margin-right: 1rem;
}
.form .form-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 2rem;
  gap: 1rem;
}
@media (max-width: 768px) {
  .form .form-actions {
    flex-direction: column;
  }
}

.form-info {
  margin: 2rem 0;
}

/*
 * ログインページ
*/
.login__content .login-columns {
  width: 100%;
  display: flex;
}
.login__content .login-columns .login-column {
  margin: 2rem;
  padding: 6rem 5rem;
  flex-basis: 50%;
  background-color: #ebf0f3;
}
@media (max-width: 1024px) {
  .login__content .login-columns {
    flex-direction: column;
  }
  .login__content .login-columns .login-column {
    margin: 0.5rem 0;
    padding: 1.2rem 0.8rem;
    flex-basis: 100%;
  }
}
.login__content .login-title {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .login__content .login-title {
    margin-bottom: 1.5rem;
    font-size: 1.167rem;
  }
}
@media (max-width: 768px) {
  .login__content .form-actions {
    margin-top: 0;
  }
}

.login-links {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (max-width: 768px) {
  .login-links {
    margin-top: 2rem;
  }
}
.login-links .login-note {
  color: #c62828;
  margin-bottom: 1rem;
  text-align: center;
}
@media (max-width: 768px) {
  .login-links .login-note {
    margin-bottom: 0.5rem;
    font-size: 1rem;
  }
}
.login-links a {
  border: 1px solid #000000;
  color: #000000;
  border-radius: 2px;
  padding: 0.8rem 1.2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .login-links a {
    padding: 0.5rem 0.8rem;
    font-size: 1rem;
  }
}
.login-links a:hover {
  color: #e73273;
}

/** パスワードリセットページ */
/** register - 仮会員登録ページ */
.register {
  max-width: 768px;
  padding: 3rem 2rem;
}

.complete .complete-container {
  padding: 3rem 0;
  margin: 3rem 0;
}
.complete .complete-container .icon {
  text-align: center;
  vertical-align: middle;
  line-height: 5rem;
  font-size: 2rem;
  width: 6rem;
  height: 6rem;
  margin: 0 auto 3rem;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.complete .complete-container .section-title {
  text-align: center;
}
.complete .complete-container.success {
  color: #2e7d32;
  background-color: rgba(46, 125, 50, 0.1);
}
.complete .complete-container.success .icon {
  background-color: #2e7d32;
}
.complete .complete-container.error {
  color: #c62828;
  background-color: rgba(198, 40, 40, 0.1);
}
.complete .complete-container.error .icon {
  background-color: #c62828;
}
.complete .message {
  text-align: center;
}

.verify-loading {
  padding: 3rem 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.167rem;
  letter-spacing: 0.2rem;
  color: #ef845c;
  background-color: rgba(255, 160, 0, 0.1);
  border-radius: 2px;
  margin: 4rem 0;
}

.search__kw_title {
  text-align: center;
  font-size: 1.167rem;
  margin-bottom: 1.5rem;
}
.search .theme-select-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .search .theme-select-list {
    flex-wrap: wrap;
  }
}
.search .theme-select-item {
  border-left: 1px solid #000000;
}
.search .theme-select-item:last-child {
  border-right: 1px solid #000000;
}
@media (max-width: 768px) {
  .search .theme-select-item {
    border-left: 0;
    margin: 0;
  }
  .search .theme-select-item:last-child {
    border-right: 0;
  }
  .search .theme-select-item + .theme-select-item::before {
    content: " / ";
  }
}
.search .theme-select-item label {
  display: inline-block;
  padding: 0.5em 1.2em;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .search .theme-select-item label {
    font-size: 1rem;
    padding: 0.2em 0.3em;
  }
}
.search .theme-select-item label.selected {
  color: #e73273;
}

.participants-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .participants-grid {
    grid-template-columns: 1fr;
  }
}

.participants-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.schedule-container .schedule-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: end;
}
.schedule-container .schedule-item .schedule-time {
  flex: 0 0 150px;
}
.schedule-container .schedule-item .schedule-content {
  flex: 1;
}