@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: white !important;
  color: #2b2d42;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

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;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-1p-medium {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.m-plus-1p-bold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.m-plus-1p-extrabold {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.m-plus-1p-black {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* 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;
}
.l-login-container.--width-680 {
  max-width: 680px;
}

.l-dashboard-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.l-verify-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.l-inner {
  max-width: 108rem;
  margin: 0 2rem;
  color: #1e288a;
}

.l-staff-wrapper {
  margin: 4rem 0;
}

.l-info-container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.l-detail-inner,
.l-movie-inner {
  max-width: 108rem;
  margin: 0 2rem;
  color: #1e288a;
}

/* 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 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10rem auto;
  z-index: 10;
  color: #1e288a;
}

.login-wrapper2 {
  background-image: url("/assets/img/submit-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px; /* ボタンが画像に埋もれないように余白を調整 */
  text-align: center; /* ボタンを中央に配置したい場合 */
  padding: 1.5rem;
}
.login-wrapper2 .c-button {
  background: none;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.l-wrapper {
  width: 100%;
  max-width: 1080px;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 10rem auto;
  z-index: 10;
}

.l-verity-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 700px);
  margin: 10rem auto;
  z-index: 10;
  color: #1e288a;
}

.l-heder {
  width: 100%;
  padding: 12px 50px;
}

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

.l-heder__logo {
  width: 400px;
  display: block;
  flex-shrink: 0;
  margin-top: 20px;
}

.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: start;
  width: 100%;
  justify-content: flex-end;
  margin-top: 12px;
  padding-top: 12px;
  color: #282d9b;
}

.l-heder__link.-active {
  color: #0b57d0;
  text-decoration: underline;
}
.l-heder__link:hover {
  text-decoration: underline;
}

.l-heder__title {
  margin: 2rem auto 4rem;
  text-align: center;
  color: #1e288a;
}

/* --- ヘッダー基本構造 --- */
.l-heder__inner {
  display: flex;
  justify-content: space-between; /* ロゴとメニュー(またはボタン)を両端に */
  padding: 10px 15px; /* 内側の余白 */
  position: relative;
}

/* --- ハンバーガーボタン (モバイルで表示) --- */
.l-heder__hamburger {
  display: block; /* デフォルト(モバイル)で表示 */
  position: relative;
  width: 40px;
  height: 30px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 1001; /* メニュー本体より手前に */
  margin-left: 15px; /* ロゴとの最小限の隙間 */
}

/* ボタンの「三本線」 */
.l-heder__hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #333; /* 線の色 (背景画像に合わせて白 #fff に変更する) */
  transition: transform 0.3s, top 0.3s;
}

/* 背景画像が暗い色なので、線の色を白に変更します */
.l-heder__hamburger span {
  background-color: #1e288a;
}

.l-heder__hamburger span:nth-child(1) {
  top: 0;
}

.l-heder__hamburger span:nth-child(2) {
  top: 13px;
}

.l-heder__hamburger span:nth-child(3) {
  top: 26px;
}

/* --- メニュー開閉 (アクティブ時) --- */
/* 閉じるボタン（×印）への変形 */
.l-heder__hamburger.is-active span:nth-child(1) {
  top: 13px;
  transform: rotate(45deg);
}

.l-heder__hamburger.is-active span:nth-child(2) {
  transform: scaleX(0); /* 真ん中の線を消す */
}

.l-heder__hamburger.is-active span:nth-child(3) {
  top: 13px;
  transform: rotate(-45deg);
}

/* --- メニュー本体 (モバイル時) --- */
.l-heder__content {
  /* デフォルト (モバイル時) は非表示 */
  display: none;
  /* 画面全体に広げるスタイル */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* 画面全体の高さ */
  background-color: rgba(180, 231, 219, 0.98);
  overflow-y: auto; /* メニューが多い場合にスクロール */
  z-index: 1000;
  padding: 80px 20px 40px; /* 上(ボタンを避ける)・横・下の余白 */
  box-sizing: border-box; /* paddingを含めて100% */
  /* 内部のレイアウトを縦並び・中央揃えに */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start; /* 上から順に配置 */
}

/* JSでメニュー表示 (is-active) 時に display: flex にする */
.l-heder__content.is-active {
  display: flex;
}

/* モバイル時のメニュー内部の調整 */
.l-heder__top {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}

/* ログイン/新規登録リンクのスタイル調整 */
.l-heder__top .l-heder__logout {
  font-size: 1.5rem;
  color: #333;
  text-decoration: none;
}

.l-heder__person {
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* ログイン後メニューのリンク */
.l-heder__bottom .l-heder__link {
  text-decoration: none;
  text-align: center;
}

/* --- 背景スクロール固定 --- */
/* メニュー表示中、bodyのスクロールを止める */
body.is-menu-active {
  overflow: hidden;
}

/* --- デスクトップ時のスタイル (768px以上) --- */
.p-footer-container {
  color: #1e288a;
}

.c-background {
  /* position: absolute; */
  bottom: 0;
  width: 100%;
  margin: 0rem auto 0;
  padding: 4rem;
}

.copyright {
  margin: 2rem auto 0;
  max-width: 1080px;
  text-align: center;
}

.c-group {
  display: flex;
  flex: 1fr;
  max-width: 1080px;
  margin: 0 auto;
}

.c-bt-menu {
  display: flex;
}

.c-bt-menu li {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.c-bt-menu li span {
  font-size: 1rem;
}

.l-footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 5px 20px;
  width: 100%;
  justify-content: center;
}

.l-footer__link.-active {
  color: #0b57d0;
  text-decoration: underline;
}
.l-footer__link:hover {
  text-decoration: underline;
}

.l-footer__bottom > a p {
  line-height: 1.3;
  text-align: center;
  position: relative;
}
.l-footer__bottom > a em {
  display: block;
  font-weight: 800;
}

.l-footer__bottom > a span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* Variables */
/* Mixins */
.c-button_login2 {
  background-image: url("/badminton/fanclub/assets/img/submit-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px; /* ボタンが画像に埋もれないように余白を調整 */
  text-align: center; /* ボタンを中央に配置したい場合 */
  padding: 1.5rem;
  margin-top: 4rem;
}
.c-button_login2 .c-button {
  background: none;
  color: white;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.c-button_verify {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 4rem auto;
}
.c-button_verify button {
  background: none;
}

.c-button_verify a p {
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.c-button_verify button {
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
  font-size: 2rem;
}

.c-button_verify.c-bg_or .bg-img {
  background-image: url("/badminton/fanclub/assets/img/verify_resend.png");
  box-shadow: 8px 8px 0 #007de3;
  color: #fff;
  border-radius: 8px;
  width: 234px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
}

.c-button_verify.c-bg_or .bg-img:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-mail {
  border: 2px solid;
  padding: 1rem 2rem;
  display: inline-block;
  margin: 2rem auto;
}

.c-notice {
  color: red;
  display: block;
  font-size: 1.7rem !important;
}

.c-mes-repost {
  margin-bottom: 20px;
  margin-top: 20px;
  display: inline-block;
  font-weight: bold;
}

.c-button_verify.c-bg_or a {
  background-image: url("/badminton/fanclub/assets/img/verify.png");
  box-shadow: 8px 8px 0 #007de3;
  color: #fff;
  border-radius: 8px;
}

.c-button_verify.c-bg_or a:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-button_verify.c-large a {
  width: 191px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-button_login {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 4rem auto;
}
.c-button_login button {
  background: none;
}

.c-button_login a p {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.c-button_login.c-bg_or a {
  background-image: url("/badminton/fanclub/assets/img/pink_btn.png");
  box-shadow: 8px 8px 0 #007de3;
  color: #fff;
  border-radius: 8px;
}

.c-button_login.c-bg_or a:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-button_login.c-large a {
  width: 149px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-button_more {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 4rem auto;
}

.c-button_more a p {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.c-button_more.c-bg_or a {
  background-image: url("/badminton/fanclub/assets/img/pink_btn.png");
  box-shadow: 8px 8px 0 #00e3cc;
  color: #fff;
  border-radius: 8px;
}

.c-button_more.c-bg_or a:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-button_more.c-large a {
  width: 149px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn_cmn {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 4rem auto;
}

.c-btn_cmn a p {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.c-btn_cmn.c-bg_or a {
  background: url("/badminton/fanclub/assets/img/index/btnbg02.png") center center/cover no-repeat;
  box-shadow: 8px 8px 0 #00e3cc;
  color: #fff;
  border-radius: 8px;
}

.c-btn_cmn.c-bg_or a:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-btn_cmn.c-large a {
  width: 318px;
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-info-button {
  background: #baede2;
}

.c-button {
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
}

.c-info-button {
  display: inline-block;
  padding: 0.7rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  letter-spacing: 0.5px;
  background: #bee8df;
}
.c-info-button:hover {
  background: #a3dfd4;
}

/* 基本ボタン */
.c-button_submit {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 1rem auto;
}

/* テキスト */
.c-button_submit button p {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* オレンジ背景ボタン */
.c-button_submit.c-bg_or button {
  background-image: url("/badminton/fanclub/assets/img/pink_btn.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 8px 8px 0 #00e3cc;
  color: #fff;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

/* hover */
.c-button_submit.c-bg_or button:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

/* サイズ調整 */
.c-button_submit.c-large button {
  width: 149px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-button_payment-su {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  margin: 4rem auto;
}
.c-button_payment-su button {
  background: none;
}

.c-button_payment-su a p {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

.c-button_payment-su.c-bg_or a {
  background-image: url("/badminton/fanclub/assets/img/sucsess_btn.png");
  box-shadow: 8px 8px 0 #007de3;
  color: #fff;
  border-radius: 8px;
}

.c-button_payment-su.c-bg_or a:hover {
  box-shadow: unset;
  transform: translate(8px, 8px);
  transition: 0.3s ease;
}

.c-button_payment-su.c-large a {
  width: 249px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 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__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: #1e288a;
}
.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;
}

.c-plan-image-s {
  width: 40px;
}
.c-plan-image-s img {
  vertical-align: middle;
}

.c-snswrap {
  padding: 0;
  display: flex;
  width: auto;
  gap: 1.5rem;
  height: auto;
}

.c-snswrap a {
  font-size: 2rem;
}

.l-heder__bottom > a p {
  line-height: 1.3;
  text-align: center;
  position: relative;
}

.l-heder__bottom > a em {
  display: block;
  font-weight: 800;
  font-size: 1.5rem;
}

.l-heder__bottom > a span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* 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: #1e288a;
}

.l-footer__logo {
  width: 400px;
}

.c-footer-logo {
  margin: 1rem auto;
  max-width: 1080px;
  text-align: left;
}

.c-heder__logo {
  display: none;
}

/* Variables */
/* Card Component */
.c-card {
  background-color: #f0f4f7;
  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;
}

.c-cards {
  margin: 1rem auto;
}

.c-card-staff {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  margin: 0 auto;
  justify-content: flex-start;
  padding: 2rem;
}

.c-card-staff_items {
  width: calc((100% - 12rem) / 4);
  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-staff_items p {
  padding: 1rem;
  border-bottom: 1px solid #1e288a;
  margin: 10px;
}
.c-card-staff_items p:last-of-type {
  border-bottom: none;
}
.c-card-staff_items:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}
.c-card-staff_items__header {
  padding: 2rem;
  border-bottom: 1px solid #edf2f4;
}
.c-card-staff_items__body {
  padding: 2rem;
}
.c-card-staff_items__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(30, 40, 138, 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(30, 40, 138, 0.02);
}
.c-table--striped tr:nth-child(even) {
  background-color: rgba(30, 40, 138, 0.01);
}
.c-table--bordered th,
.c-table--bordered td {
  border: 1px solid #edf2f4;
}

.c-plan_table-wrapper {
  width: 100%;
}

.c-plan_table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Segoe UI", sans-serif;
  background-color: #f9fbff;
  box-shadow: 0 0 10px rgba(0, 0, 50, 0.1);
}

.c-plan_table th,
.c-plan_table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

.c-plan_table td {
  position: relative;
}

/* アイコンを右寄せに */
.c-plan_table .plan-icon {
  float: right;
}

.c-plan_table th {
  background-color: #e0f0ff;
  font-weight: bold;
  color: #004080;
}

.c-plan_table tr:hover {
  background-color: #eef7ff;
}

.c-plan_table a {
  color: #0077cc;
  text-decoration: none;
  font-weight: bold;
}

.c-plan_table a:hover {
  text-decoration: underline;
}

/* スマホ用スタイル */
/* 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: #1e288a;
}
.c-tab__item--active {
  color: #1e288a;
  font-weight: 600;
}
.c-tab__item--active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1e288a;
  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(30, 40, 138, 0.1);
  color: #1e288a;
}
.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: #359EFF;
  z-index: 1;
  border-radius: 1px;
  left: 3rem;
}
.c-progress__line::before, .c-progress__line::after {
  content: "";
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  background-color: #359EFF;
  border-radius: 50%;
  top: -0.4rem;
}
.c-progress__line::before {
  left: 0;
}
.c-progress__line::after {
  right: 0;
}
.c-progress__line {
  /* ステップ1用のスタイル（線全体をグレーに） */
}
.c-progress__line--step1 {
  background-color: #CCCCCC;
}
.c-progress__line--step1::before {
  background-color: #359EFF; /* 基本情報の点は青いまま */
}
.c-progress__line--step1::after {
  background-color: #CCCCCC;
}
.c-progress__line--step2 {
  background-color: #359EFF !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: #359EFF;
  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: #359EFF;
  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 {
  /* 非アクティブなステップのスタイル */
}
.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;
}

.c-op-item {
  padding: 5px;
}

.hero {
  margin-top: 20px; /* ヘッダーとの間隔を調整 */
}

.hero {
  padding-top: 366x; /* ヘッダーの高さに合わせて調整 */
}

.c-content {
  min-height: calc(100vh - 500px);
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-bottom-content {
  min-height: 280px;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ページネーションコンテナの基本スタイル */
.c-pagination-wrap {
  text-align: center;
  margin-top: 6rem;
}
.c-pagination-wrap {
  /* ページネーションリストの基本スタイル */
}
.c-pagination-wrap .c-pagination {
  display: flex;
  justify-content: center;
  gap: 10px; /* 項目間の隙間 */
  list-style: none;
  padding: 0;
}
.c-pagination-wrap .c-pagination li {
  /* ページリンク（前へ/次へ/数字）の共通スタイル */
}
.c-pagination-wrap .c-pagination li .c-pagination-link {
  display: block;
  padding: 5px 10px;
  border: 1px solid #1e288a;
  text-decoration: none;
  color: #1e288a;
  transition: background-color 0.2s;
}
.c-pagination-wrap .c-pagination li {
  /* アクティブなページリンク（現在のページ）のスタイル */
}
.c-pagination-wrap .c-pagination li .c-pagination-link.-active {
  font-weight: bold;
  background-color: #1e288a;
  color: white;
  border-color: #aaa;
}
.c-pagination-wrap .c-pagination li {
  /* ホバー時のスタイル */
}
.c-pagination-wrap .c-pagination li .c-pagination-link:hover:not(.-active) {
  background-color: #f5f5f5;
}

.p-movie_pagenav {
  text-align: center;
  margin-top: 6rem;
}

.c-movie_back {
  display: inline-block;
  padding: 10px 20px;
  background: #1e288a;
  color: #fff;
  border-radius: 8px;
  margin-right: 10px;
  text-decoration: none;
}

.c-movie_next {
  display: inline-block;
  padding: 10px 20px;
  background: #1e288a;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
}

/* Variables */
/* Mixins */
/* Login Project */
.p-login__logo {
  z-index: 20;
  margin: 0 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;
}
.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: #1e288a;
}
.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: #1e288a;
  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);
  }
}

.p-login_con {
  margin-top: 6rem;
}

.c-messe {
  font-size: 1.3rem;
  color: #ff006e;
  margin-top: 1rem;
}

/* 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: #1e288a;
  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__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 {
  /* フリガナ入力欄用のスタイル */
}
.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;
}
.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: #359EFF;
  font-weight: bold;
  text-align: center;
}

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

.p-task__items-label {
  font-size: 18px;
  color: #359EFF;
  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;
}

.p-inner {
  display: flex;
  gap: 4rem;
  max-width: 880px;
  margin: 0 auto;
  color: #1e288a;
}
.p-banner {
  margin: 10rem auto 2rem;
}

.p-banner_body {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6rem;
  gap: 4rem;
}

.p-banner_box {
  margin-bottom: 2rem;
}

.c-banner_item {
  width: 400px;
  height: 150px;
}
.c-banner_item p {
  padding: 2rem;
}

.p-inner_left,
.p-inner_right {
  flex: 1;
}

.p-inner_right {
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  margin: auto;
}

.p-section_con {
  margin: 0;
  position: relative;
}

.p-dash_con {
  margin: 0;
  position: relative;
  padding-bottom: 4rem;
}
.p-dash_con img {
  max-width: 100%;
  height: auto;
}

.p-deco_contact01 {
  width: 16.3020833333vw;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -20%);
  z-index: -1;
}

.p-deco_contact02 {
  width: 16.3020833333vw;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(-50%, 0%);
  z-index: -1;
}

.p-ttl_con {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 1rem;
  text-align: center;
  color: #1e288a;
}

.p-txt01 {
  margin-bottom: 2.5rem;
  color: #1e288a;
}

.p-lisence {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-deco_card01 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(100%, -90%);
}
.p-deco_card02 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-100%, -50%);
  z-index: -2;
}
.c-ttl_h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.p-deco_card03 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(100%, -150%);
  z-index: -2;
}
.p-deco_card04 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  z-index: -2;
}
.p-card-d_body {
  display: flex;
  gap: 20px;
  margin-top: 2rem;
}

.p-dash_news {
  margin: 6rem auto 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.p-news-inner {
  margin: 10rem auto;
  display: block;
  min-width: 800px;
  color: #1e288a;
}

.c-news-ttl {
  display: flex;
  justify-content: center;
}

.c-news-subttl {
  margin-top: 0.5rem;
}

@keyframes newsBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.c-news-new {
  background: #ff4e4e;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  padding: 0.1rem 0.5rem;
  margin-left: 0.6rem;
  border-radius: 4px;
  display: inline-block;
  animation: newsBounce 0.6s ease-in-out infinite;
}

.c-news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.line {
  width: 100%;
  height: 100%;
}
.line a.p-download-btn:hover {
  opacity: 0.7;
}

.p-line-body {
  position: relative;
  margin: 5rem auto 1rem;
  max-width: 700px;
}

.c-line-img {
  width: 100%;
}

.p-line-sub {
  max-width: 700px;
  margin: auto;
}

.p-deco_card05 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  right: 0%;
}
.p-deco_card06 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  left: 0%;
  z-index: -2;
}
.p-verify-container {
  margin: 4rem 2rem;
}
.p-verify-container .p-inner {
  margin-bottom: 1rem;
}

.c-cards h1 {
  margin-bottom: 2rem;
}
.c-cards p {
  font-size: 2rem;
}

.p-back-image_left {
  position: absolute;
  top: 200px;
  left: 0px;
  z-index: -1;
}

.p-back-image_right {
  position: absolute;
  bottom: 400px;
  right: 0px;
  z-index: -1;
}

.plan-image {
  display: block;
}
.plan-image .c-lisence_img {
  max-width: 400px;
  margin-top: 10px;
}

.c-line {
  width: 100vw;
}

.p-info-pad {
  padding: 0 2rem;
  margin: 4rem 2rem;
}

.p-info-container {
  margin: 0 auto;
}

.p-filter {
  margin: 2rem auto;
}

.news-item {
  border-bottom: 1px solid #282d9b;
  padding: 1rem 0;
  color: #282d9b;
}
.news-item h2 {
  font-size: 2rem;
  font-weight: normal;
}
.news-item h2 .c-point {
  margin: 0 1rem;
}
.news-item time {
  font-size: 1.2rem;
}

.content {
  margin: 2rem 0 4rem;
}
.p-news-body .wp-block-image {
  flex: 1;
  margin: 0;
}
.p-news-body .news-paragraph {
  flex: 2;
  line-height: 2;
}
.p-news-body .wp-block-embed {
  margin: 0;
}

.p-info-back {
  display: flex;
  justify-content: center;
  margin-top: 10rem;
}

.p-info-article {
  color: #282d9b;
}
.p-info-article h1 {
  font-size: 2.5rem;
  font-weight: normal;
  text-align: left;
}
.p-info-article .content {
  font-size: 1.6rem;
}

.c-info-item {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #282d9b;
}
.c-info-item time {
  font-size: 1.2rem;
}
.c-info-item h3 {
  font-size: 2rem;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.p-deco_news01 {
  width: auto;
  aspect-ratio: 313/392;
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(100%, -90%);
}
.p-deco_news01 span img {
  width: 30%;
  animation: float 4s ease-in-out infinite;
}
.p-news_ttl {
  margin: 2rem 0;
}

.p-latest-news {
  margin: 6rem 0;
  padding: 2rem 4rem;
  background: rgb(239, 251, 255);
  border-radius: 20px;
  width: 100%;
}

.c-latest-title {
  text-align: center;
}

.c-latest-list {
  display: flex;
  gap: 2rem;
  margin-top: 4rem;
}

.c-latest-list li {
  list-style: none;
  width: 25%; /* 4枚並び想定 */
}

.latest-title {
  margin: 1rem;
}

.featured-image img.news-eyecatch {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.carousel .slides {
  display: flex;
  transition: transform 0.4s ease;
}

.carousel .slide {
  min-width: 100%;
}

.carousel img {
  width: 100%;
  border-radius: 10px;
}

.carousel button.prev,
.carousel button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 5px;
}

.carousel button.prev {
  left: 10px;
}

.carousel button.next {
  right: 10px;
}

/* 最新記事サムネイルの枠 */
.latest-thumb {
  width: 100%;
  aspect-ratio: 2/1.2; /* 正方形 */
  overflow: hidden;
  border-radius: 8px;
}

/* 枠に合わせて画像をトリミング */
.latest-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* ← これが最重要！ */
  -o-object-position: center;
     object-position: center;
  display: block;
}
.p-legal-notice h2 {
  display: inline-block;
  margin-top: 1rem;
  border-bottom: 1px solid;
  padding-bottom: 0.7rem;
}
.p-legal-notice dl {
  margin: 4rem 0;
}
.p-legal-notice dl dt {
  margin-bottom: 1rem;
}
.p-legal-notice dl dd {
  margin-left: 1rem;
  margin-bottom: 3rem;
}

.p-legal_ttl {
  margin: 2rem 0;
}
.editor-only {
  opacity: 0;
}

.editor-styles-wrapper .editor-only {
  display: block;
  background-color: #f5f5f5;
  color: #999;
  font-style: italic;
  padding: 1em;
}

.u-pd-10 {
  padding: 10px;
}

.p-movie-container {
  margin: 0 auto;
}

.movie-card {
  border-radius: 12px;
  background: #f0f4f9;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.movie-card:hover {
  transform: scale(1.02);
}
.movie-card iframe {
  height: 200px;
  width: 333px;
  vertical-align: middle;
}
.movie-card h3 {
  color: #fff;
  margin: 8px 0;
}

.movie-info {
  text-align: center;
  color: #fff;
  background: #1b246e;
}

.c-movie-ttl {
  font-size: 12px;
  margin: 0;
  padding: 0.8rem 0;
  font-weight: 400;
}

.p-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
  margin: 4ch auto;
}

.p-plan_ttl {
  margin-bottom: 2rem;
}

.sp {
  display: none;
}

.pc {
  display: contents;
}

.c-plan_name {
  display: none;
}

.js-plan-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.4rem 3rem;
  background: var(--color__blue);
  /* 既存青 */
  color: #1e288a;
  border-radius: 50px;
  font-size: 2.6rem;
  font-weight: bold;
  border: 3px solid #1e288a;
  transition: all 0.25s ease;
  position: relative;
  margin: 0 auto 2rem;
}

/* ホバーアクション */
.js-plan-toggle:hover {
  background: #1e288a;
  color: #ffffff;
  /* ← これを追加 */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* ＋／− アイコンも白のまま */
.js-plan-toggle:hover::after {
  color: #ffffff;
}

/* + アイコン */
.js-plan-toggle::after {
  content: "＋";
  font-size: 2.8rem;
  font-weight: bold;
  transition: transform 0.25s ease;
}

/* 開いた時（矢印/＋を回転） */
.plan-content.is-open + .js-plan-toggle::after,
.js-plan-toggle.is-open::after {
  content: "－";
  transform: rotate(180deg);
}

.sec__plan .attention {
  margin-top: 2rem;
  font-weight: bold;
  line-height: 1.7;
  position: relative;
  text-align: left;
}

.sec__plan2 {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10rem auto 0;
  z-index: 10;
}

.sec__plan2 .plan-inner {
  position: relative;
}

.plan-inner {
  width: 112rem;
  padding: 0 2rem;
  margin: auto;
}

.sec__plan2 .plan__ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
}

.sec__plan2 .plantable table {
  position: relative;
  width: 100%;
  background: rgb(222, 251, 247);
  border-width: 1px;
  border-style: solid;
  border-color: rgb(204, 204, 204);
  -o-border-image: initial;
     border-image: initial;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.sec__plan2 .plantable table thead th:first-child {
  background: #8a8a88;
  color: white;
}

.sec__plan2 .plantable table thead .bg-general-k,
.bg-general {
  background: rgb(175, 220, 229);
}

.sec__plan2 .plantable table thead th,
.sec__plan2 .plantable table thead td {
  line-height: 1.6;
}

.sec__plan2 .plantable table th,
.sec__plan2 .plantable table td {
  padding: 1rem;
  border: 1px solid #ccc;
  vertical-align: middle;
}

.sec__plan2 .plantable table tbody tr td:first-child {
  padding-left: 3rem;
  text-align: left;
}

.sec__plan2 .plantable table th,
.sec__plan2 .plantable table td {
  padding: 1rem;
  border: 1px solid #ccc;
  vertical-align: middle;
}

.sec__plan2 .plantable table td span.taxin {
  font-size: 1.2rem;
  font-weight: 400;
}

.sec__plan2 .yearprice {
  display: flex;
  justify-content: space-between;
  color: black;
  font-size: 1.2rem;
}

.sec__plan2 .plantable table thead .bg-premium-k,
.bg-premium {
  background-image: linear-gradient(90deg, #8a8a88, #c4c4c3 25%, #8a8a88 50%, #c4c4c3 75%, #8a8a88);
}

.sec__plan2 .plantable table thead .bg-club {
  background-image: linear-gradient(90deg, #caa540, #e4d29f 25%, #caa540 50%, #e4d29f 75%, #caa540);
}

.sec__plan2 .plantable table thead .bg-royal {
  color: #fff;
  background: url(/badminton/fanclub/assets/img/plan/bg_table1.jpg) no-repeat;
  background-size: 100% 100%;
}

.sec__plan2 .yearprice.yearprice__single {
  justify-content: center;
}

.sec__plan2 .plantable table tbody tr td {
  text-align: center;
  font-weight: bold;
  color: #323333;
}

.c-table__logo {
  width: 27.6rem;
}

.sec__plan2 .plantable table tbody tr .bg__thick {
  background: rgb(190, 248, 240);
}

.plan-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}

.js-plan-toggle {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.js-plan-toggle:hover {
  opacity: 0.8;
}
/* ▼各列の背景色を縦方向に適用 */
.sec__plan2 .plantable table tbody td:nth-child(2) {
  background: #a19a95;
}

/* ロイヤル */
.sec__plan2 .plantable table tbody td:nth-child(3) {
  background: #f5de9f;
}

/* クラブ */
.sec__plan2 .plantable table tbody td:nth-child(4) {
  background: #eeeeee;
}

/* プレミアム */
.sec__plan2 .plantable table tbody td:nth-child(5) {
  background: #eeeeee;
}

/* プレミアム高校生 */
.sec__plan2 .plantable table tbody td:nth-child(6) {
  background: #ddf4ff;
}

/* 一般 */
.sec__plan2 .plantable table tbody td:nth-child(7) {
  background: #ddf4ff;
}

/* 一般高校生 */
/* 1列目（項目名）は白と薄グレー交互 */
.sec__plan2 .plantable table tbody tr:nth-child(odd) td:first-child {
  background: #ffffff;
}

.sec__plan2 .plantable table tbody tr:nth-child(even) td:first-child {
  background: #f6f6f6;
}

/* 中央寄せ維持 */
table td,
table th {
  text-align: center;
}

/* 項目セルの見やすさUP */
tbody td:first-child {
  text-align: left !important;
  padding-left: 12px;
  font-weight: 500;
}

.c-mini-dec {
  display: inline-block;
  font-size: 1.2rem;
  padding: 1rem;
}

/* ツールチップアイコン */
.tooltip-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  background-color: #0073aa;
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: bold;
  cursor: help;
  margin-left: 5px;
  position: relative;
  vertical-align: middle;
}

.tooltip-icon:hover {
  background-color: #005a87;
}

/* ツールチップポップアップ */
.tooltip-icon::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 8px;
  padding: 8px 12px;
  background-color: #333;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
  max-width: 300px;
  white-space: normal;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  width: 200px;
}

/* ツールチップの矢印 */
.tooltip-icon::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2px;
  border: 6px solid transparent;
  border-top-color: #333;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1001;
}

/* マウスオーバー時に表示 */
.tooltip-icon:hover::before,
.tooltip-icon:hover::after {
  opacity: 1;
  visibility: visible;
}

.p-staff_ttl {
  margin: 2rem;
}

/* ===========================
   お問い合わせフォームデザイン
=========================== */
.p-contact-container {
  margin: 6rem 2rem;
}

.p-contact_ttl {
  margin: 2rem auto;
  max-width: 640px;
}

.contact-form {
  max-width: 640px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* ===== タイトル ===== */
.contact-form .form-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: #1a237e;
  margin-bottom: 30px;
}

/* ===== ラベル＋入力欄 横並び ===== */
.contact-form .form-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  align-items: start;
}

.contact-form .form-group label {
  flex: 0 0 180px; /* ラベル幅 */
  font-weight: 600;
  color: #1a237e;
  margin: 1rem 0 0;
  white-space: nowrap; /* 改行防止 */
}

.contact-form .required {
  background: #ffb3b3;
  color: #fff;
  font-size: 0.95rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.contact-form .optional {
  background: #ddd;
  color: #333;
  font-size: 0.95rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
}

.input-wrap .c-error {
  color: red;
  font-size: 1.3rem;
  margin-top: 5px;
}

/* ===== 入力欄 ===== */
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  flex: 1;
  width: auto;
  min-width: 450px;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  align-items: start;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3f51b5;
  box-shadow: 0 0 4px rgba(63, 81, 181, 0.25);
}

/* ===== テキストエリアは少し高めに ===== */
.contact-form .form-group textarea {
  flex: 1; /* 横幅を他と同じく広げる */
  height: 160px; /* 高さは任意調整 */
  resize: vertical; /* ユーザーが高さ調整できるように */
  display: block;
  box-sizing: border-box;
}

/* ===== ボタン ===== */
.c-contact_btn {
  background: none;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 0;
}

/* ===== WordPress CF7 の p タグ削除対策 ===== */
.wpcf7 form p {
  display: contents !important;
  margin: 0 !important;
  padding: 0 !important;
}

.hidden-fields-container {
  border: none;
}

/* ===== レスポンシブ対応 ===== */
/* 成功時だけ反映 */
.p-contact_messe.is-success {
  background: gray;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 10px;
  color: white;
  z-index: 10;
}

.c-alert {
  margin: 4rem auto;
  min-width: 400px;
  text-align: center;
}

.c-alert--success {
  border: 2px solid #1e288a;
  padding: 1rem;
}

.c-alert--success {
  border: 2px solid #ff006e;
  padding: 1rem;
}

/* 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-20 {
  margin-top: 20px !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 #359eff !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: #359eff;
  position: relative;
  font-size: 16px !important;
  color: #333 !important;
}

.u-arrow-link::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-top: solid 1px #359eff;
  border-right: solid 1px #359eff;
  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;
}

.u-min-600 {
  min-height: 800px;
}

.sp-only {
  display: none;
}

.u-position-re {
  position: relative;
}

.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: #0099d1;
  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%;
}

/* object > component */
.c-h1 {
  background: #359eff;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  font-size: 2.2rem;
  border-radius: 0.5rem;
}

.c-greyBg {
  background: #f2f5f5;
}

/* ====== page ====== */
.secTalkList {
  min-height: 100vh;
}

.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;
}

.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: #359eff;
  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 #359eff;
  background-color: #fff;
  border-radius: 3px;
  color: #359eff;
  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;
}

@media (max-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 (max-width: 1200px) {
  .l-container {
    width: 80%;
  }
}

@media (max-width: 576px) {
  .l-login-container {
    padding: 8rem 8rem;
  }
  .l-dashboard-container {
    max-width: 680px;
  }
  .l-verify-container {
    max-width: 680px;
  }
  .l-inner {
    width: 100%;
    margin: 0rem 0 0 0;
  }
  .l-info-container {
    max-width: 680px;
  }
  .l-detail-inner,
  .l-movie-inner {
    width: 100%;
    margin: 4rem 0 0 0;
  }
  .l-login-wrapper {
    max-width: 680px;
    margin: 2rem auto;
  }
  .l-wrapper {
    margin: 0;
  }
  .l-verity-wrapper {
    max-width: 680px;
    margin: 2rem auto;
    min-height: calc(100vh - 300px);
  }
  .l-heder {
    padding: 12px;
  }
  .l-heder__inner {
    padding: 12px;
  }
  .l-heder__logo {
    width: 200px;
    margin-top: 0;
  }
  .l-heder__top {
    flex-direction: column-reverse;
    margin-top: 2rem;
  }
  .l-heder__bottom {
    display: block;
  }
  .l-heder__person {
    flex-direction: row;
  }
  .c-background {
    margin: 4rem auto 0;
    padding: 2rem 1rem;
  }
  .c-bt-menu {
    flex-wrap: wrap;
  }
  .l-footer__bottom {
    flex-wrap: wrap;
    justify-content: center;
  }
  .l-footer__bottom > a em {
    font-weight: 600;
    font-size: 1.3rem;
  }
  .c-btn_cmn.c-large a {
    width: 218px;
    height: 62px;
  }
  .c-sp-navbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    padding: 8px 12px;
    border: 1px solid #37439c;
    border-radius: 4px;
    margin-bottom: 1rem;
  }
  .l-heder__bottom > a p {
    text-align: start;
  }
  .l-heder__bottom > a em {
    font-weight: 600;
  }
  .c-text-block {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    margin-bottom: 0;
  }
  .c-triangle-right {
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #37439c; /* 矢印の色 */
  }
  .l-footer__logo {
    width: 200px;
  }
  .c-footer-logo {
    max-width: 300px;
    margin: 0 1rem 1rem;
  }
  .c-heder__logo {
    display: block;
    width: 50%;
    position: absolute;
    left: 2rem;
    top: 2rem;
  }
  .c-card-staff {
    width: calc(100% - 4rem);
    margin: 2rem;
    padding: 0;
    gap: 2rem;
  }
  .c-card-staff_items {
    width: calc((100% - 2rem) / 2);
  }
  .c-plan_table-wrapper {
    width: calc(100% - 4rem);
    margin: auto;
    margin-bottom: 5rem;
  }
  .c-plan_table {
    box-shadow: none;
    background-color: white;
  }
  .c-pagination-wrap {
    margin: 4rem auto;
  }
  .p-inner {
    margin-top: 4rem;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .p-banner {
    margin: 0rem auto 0;
    padding: 4rem 0;
    background: azure;
    color: #1e288a;
  }
  .p-banner_body {
    display: block;
  }
  .c-banner_item {
    width: calc(100% - 2rem);
    height: 120px;
    margin: 0 auto;
  }
  .p-inner_left,
  .p-inner_right {
    width: calc(100% - 8rem);
    margin: 0 4rem;
    text-align: center;
  }
  .p-inner_left h2,
  .p-inner_right h2 {
    margin: 0 0 0 7px;
    text-align: left;
  }
  .p-deco_contact01 {
    display: none;
  }
  .p-deco_contact02 {
    display: none;
  }
  .p-txt01 {
    margin: 2.5rem;
  }
  .p-deco_card01 {
    display: none;
  }
  .p-deco_card02 {
    top: 40%;
    transform: none;
    display: none;
  }
  .p-deco_card02 span img {
    width: 50%;
  }
  .p-deco_card03 {
    display: none;
  }
  .p-deco_card04 {
    top: 40%;
    transform: none;
  }
  .p-deco_card04 span img {
    width: 50%;
    display: none;
  }
  .p-card-d_body {
    display: flex;
    gap: 16px;
    margin: 20px auto 0;
  }
  .p-dash_news {
    width: 90%;
    margin: 4rem auto 0;
  }
  .p-news-inner {
    width: 100%;
    margin: 8rem 0 0;
    display: block;
    min-width: auto;
    color: #1e288a;
    background-image: linear-gradient(210deg, rgba(255, 255, 0, 0), rgb(255, 255, 214));
    padding: 5rem 0;
  }
  .c-news-subttl {
    font-size: 1.6rem;
  }
  .p-line-body {
    max-width: 400px;
  }
  .p-line-sub {
    max-width: 360px;
    margin: 0 auto;
  }
  .p-deco_card05 {
    display: none;
  }
  .p-deco_card06 {
    top: 40%;
    transform: none;
    display: none;
  }
  .p-deco_card06 span img {
    width: 50%;
  }
  .plan-image .c-lisence_img {
    margin: 2rem auto 0;
    width: 100%;
  }
  .p-info-container {
    margin: 0 2rem;
  }
  .p-filter {
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }
  .p-news-body {
    flex-direction: column;
  }
  .p-deco_news01 {
    display: none;
  }
  .p-latest-news {
    padding: 1rem;
    margin: 6rem 1rem 0rem;
    position: unset;
    width: calc(100% - 2rem);
  }
  .c-latest-list {
    flex-wrap: wrap;
  }
  .c-latest-list li {
    width: calc(50% - 1rem);
  }
  .p-legal-notice {
    margin: 4rem 1rem;
  }
  .p-movie-container {
    margin: 0 2rem;
  }
  .movie-card {
    margin: 0 auto;
  }
  .movie-card iframe {
    height: 200px;
    width: 353px;
  }
  .p-plan_ttl h2 {
    font-size: 2rem;
    text-align: center;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .c-plan_name {
    display: inline-block;
    margin-right: 1rem;
  }
  .sec__plan .attention {
    font-size: 1.1rem;
    max-width: 350px;
  }
  .sec__plan2 {
    margin: 4rem auto 0;
  }
  .plan-inner {
    width: 100%;
  }
  .sec__plan2 .plan__ttl {
    font-size: 2rem;
    position: relative;
    line-height: 1.5;
    margin-bottom: 4rem;
  }
  .sec__plan2 .plantable table {
    width: 1080px;
  }
  .p-staff_ttl h2 {
    font-size: 2rem;
  }
  .u-min-600 {
    min-height: 500px;
  }
  .sp-only {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .l-login-container {
    padding: 4rem 3rem;
  }
}

@media (max-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 (min-width: 1200px) {
  /* デスクトップではハンバーガーボタンを非表示 */
  .l-heder__hamburger {
    display: none;
  }
  /* デスクトップではメニューを常に表示 */
  .l-heder__content {
    display: block; /* 元の表示に戻す */
    /* モバイル用の固定表示スタイルをすべてリセット */
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    overflow-y: visible;
    padding: 0;
    flex-direction: column; /* 元の縦積みレイアウトに戻す */
    align-items: stretch; /* 元に戻す */
    justify-content: flex-start; /* 元に戻す */
  }
  /* メニュー内部のレイアウトを元の状態に戻す */
  .l-heder__top {
    flex-direction: row; /* 横並びに戻す */
    align-items: center;
    gap: 15px; /* 隙間を調整 */
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
  }
  .l-heder__top .l-heder__person {
    flex-direction: row;
  }
  /* ログイン後メニューのリンク色 (背景画像があるので白系に) */
  /* bodyのスクロール固定を解除 */
  body.is-menu-active {
    overflow: auto;
  }
}

@media (max-width: 600px) {
  .c-plan_table thead {
    display: none;
  }
  .c-plan_table tr td:first-child {
    background-color: #e0f0ff;
    border-radius: 8px 8px 0 0;
  }
  .c-plan_table,
  .c-plan_table tbody,
  .c-plan_table tr,
  .c-plan_table td {
    display: block;
    width: 100%;
  }
  .c-plan_table tr {
    margin-bottom: 16px;
    background-color: #eef7ff;
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 50, 0.1);
  }
  .c-plan_table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 16px; /* ラベル用の余白を調整 */
  }
  .c-plan_table td::before {
    position: static;
    margin-right: 8px;
    min-width: 100px;
  }
  .c-plan_table .plan-icon {
    margin-left: auto;
  }
  .contact-form {
    padding: 0;
    margin: 0;
  }
  .contact-form .form-group {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-form .form-group label {
    flex: none;
    margin-bottom: 6px;
  }
  .contact-form input[type=submit] {
    width: 100%;
  }
  .contact-form input[type=text],
  .contact-form input[type=email],
  .contact-form textarea {
    min-width: 350px;
  }
}

@media only screen and (max-width: 767px) {
  .sec__plan2 .plantable {
    overflow: scroll;
  }
}