/* ===========================
   リセット・基本設定
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.8;
  padding-top: 70px;
}

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

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

ul {
  list-style: none;
}

/* ===========================
   共通
=========================== */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.section__title {
  font-size: 2rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 16px;
}

.section__title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #F5A623;
  border-radius: 2px;
  margin: 12px auto 0;
}

.section__desc {
  text-align: center;
  color: #666;
  margin-bottom: 48px;
}

/* ===========================
   ボタン
=========================== */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
}

.btn--primary {
  background: #F5A623;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(245,166,35,0.4);
}

.btn--primary:hover {
  background: #e09510;
  transform: translateY(-2px);
}

.btn--outline {
  border-color: #F5A623;
  color: #F5A623;
  background: transparent;
}

.btn--outline:hover {
  background: #F5A623;
  color: #fff;
}

.btn--white {
  background: #ffffff;
  color: #F5A623;
  font-weight: 700;
}

.btn--white:hover {
  background: #fff8ee;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.88rem;
}

/* ===========================
   ヘッダー
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 100;
  height: 70px;
}

.header__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__logo img {
  height: 50px;
  width: auto;
}

.header__nav {
  display: flex;
  gap: 24px;
  margin-left: auto;
}

.header__nav a {
  font-size: 0.95rem;
  color: #333;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: #F5A623;
}

/* ログインボタン（LP用） */
.header__login {
  margin-right: 8px;
  flex-shrink: 0;
}

.header__login .btn--outline {
  font-size: 0.88rem;
  padding: 8px 20px;
}

/* ハンバーガーメニュー内ログインリンク（スマホのみ表示） */
.header__nav-login {
  display: none;
}

/* ハンバーガーボタン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================
   ヒーロー
=========================== */
.hero {
  display: flex;
  min-height: 600px;
  overflow: hidden;
}

/* 左：テキストエリア */
.hero__left {
  width: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFF8E7 0%, #FFF3CD 60%, #F0FFF4 100%);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero__inner {
  max-width: 520px;
}

.hero__sub {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  font-weight: 700;
  background: #2D7A6A;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.hero__title {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 24px;
  color: #333;
}

.hero__title span {
  color: #F5A623;
}

.hero__desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 36px;
  line-height: 2;
}

.hero__note {
  font-size: 0.78rem;
  color: #999;
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 右：写真エリア */
.hero__right {
  width: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hero__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ===========================
   レスポンシブ（ヒーロー）
=========================== */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2rem;
  }

  .hero__left {
    padding: 48px 36px 48px 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    min-height: auto;
  }

  .hero__left {
    width: 100%;
    padding: 40px 14px;
    text-align: center;
  }

  .hero__sub {
    font-size: 0.78rem;
    white-space: normal;
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;
  }

  .hero__inner {
    max-width: 100%;
  }

  .hero__sub {
    font-size: 0.78rem;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .hero__right {
    width: 100%;
    height: 260px;
  }

  .hero__btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__btns .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* アウトラインボタン（背景が明るいため通常カラーに戻す） */
.hero .btn--outline {
  border-color: #F5A623;
  color: #F5A623;
}

.hero .btn--outline:hover {
  background: #F5A623;
  color: #fff;
}

/* ===========================
   こんな悩みありませんか？
=========================== */
.worries {
  padding: 80px 0;
  background: #fff;
}

.worries__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.worries__card {
  background: #FFF0F0;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #FFD0D0;
  transition: transform 0.3s;
}

.worries__card:hover {
  transform: translateY(-4px);
}

.worries__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
  color: #E05C5C;
}

.worries__card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #444;
}

.worries__message {
  text-align: center;
  margin-top: 48px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2D7A6A;
}

/* ===========================
   コンセプト
=========================== */
.concept {
  padding: 80px 0;
  background: #F0FFF8;
}

.concept__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.concept__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(45,122,106,0.08);
  border-top: 4px solid #2D7A6A;
  transition: transform 0.3s;
}

.concept__card:hover {
  transform: translateY(-4px);
}

.concept__icon {
  font-size: 2.4rem;
  color: #2D7A6A;
  margin-bottom: 16px;
}

.concept__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.concept__card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.9;
}

/* ===========================
   学べるスキル
=========================== */
.courses {
  padding: 80px 0;
  background: #F9FAFB;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.course__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.course__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.course__card--coming {
  opacity: 0.7;
  background: #f5f5f5;
}

.course__badge {
  display: inline-block;
  background: #F5A623;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.course__badge--soon {
  background: #2D7A6A;
}

.course__icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #F5A623;
}

.course__card--coming .course__icon {
  color: #2D7A6A;
}

.course__card h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 12px;
  color: #333;
}

.course__card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.course__card ul li {
  font-size: 0.9rem;
  color: #444;
  padding: 4px 0;
}

.course__card ul li i {
  color: #2D7A6A;
  margin-right: 6px;
}

/* ===========================
   選ばれる理由
=========================== */
.reasons {
  padding: 80px 0;
  background: #fff;
}

.reasons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.reason__card {
  padding: 36px 28px;
  border-radius: 20px;
  border: 3px solid #FFE0A0;
  transition: border-color 0.3s;
}

.reason__card:hover {
  border-color: #F5A623;
}

.reason__num {
  font-size: 3rem;
  font-weight: 900;
  color: #FFE0A0;
  line-height: 1;
  margin-bottom: 12px;
}

.reason__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #333;
}

.reason__card p {
  font-size: 0.95rem;
  color: #666;
}

/* ===========================
   料金
=========================== */
.pricing {
  padding: 80px 0;
  background: #F9FAFB;
}

.pricing__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
  align-items: start;
}

.pricing__card {
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(245,166,35,0.15);
  border: 3px solid #F5A623;
}

.pricing__card--pc {
  border-color: #2D7A6A;
  box-shadow: 0 8px 40px rgba(45,122,106,0.15);
}

.pricing__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5A623;
  color: #fff;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing__badge--pc {
  background: #2D7A6A;
}

.pricing__tag {
  background: #fff;
  color: #2D7A6A;
  font-size: 0.75rem;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
}

.pricing__price {
  margin-bottom: 16px;
}

.pricing__campaign {
  text-align: center;
  background: linear-gradient(90deg, #F5A623, #f7bc5a);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 14px 36px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(245,166,35,0.35);
}

.pricing__original {
  font-size: 1.1rem;
  color: #aaa;
  text-decoration: line-through !important;
  margin-right: 8px;
  font-weight: 400;
  display: inline-block;
}

.auth__plan-original {
  color: #aaa;
  font-size: 0.9em;
  margin-right: 4px;
}

.pricing__amount {
  font-size: 3rem;
  font-weight: 900;
  color: #F5A623;
}

.pricing__card--pc .pricing__amount {
  color: #2D7A6A;
}

.pricing__unit {
  font-size: 1rem;
  color: #666;
}

.pricing__pc-note {
  font-size: 0.85rem;
  color: #2D7A6A;
  margin-bottom: 20px;
}

.pricing__pc-note i {
  margin-right: 4px;
}

.pricing__list {
  text-align: left;
  margin-bottom: 36px;
}

.pricing__list li {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #444;
}

.pricing__list li i {
  color: #2D7A6A;
  margin-right: 8px;
}

.pricing__area-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: #888;
}

.pricing__area-note i {
  margin-right: 4px;
  color: #F5A623;
}

/* ===========================
   よくある質問
=========================== */
.faq {
  padding: 80px 0;
  background: #fff;
}

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
}

.faq__item {
  margin-bottom: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}

.faq__q {
  width: 100%;
  background: #FFF8E7;
  padding: 18px 24px;
  font-weight: 700;
  color: #333;
  font-size: 0.95rem;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Noto Sans JP', sans-serif;
  transition: background 0.2s;
}

.faq__q::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.85rem;
  color: #F5A623;
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq__item.is-open .faq__q::after {
  transform: rotate(180deg);
}

.faq__q:hover {
  background: #FFF0CC;
}

.faq__a {
  padding: 0 24px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.is-open .faq__a {
  max-height: 300px;
  padding: 18px 24px;
}

/* ===========================
   CTA
=========================== */
.cta {
  background: linear-gradient(135deg, #F5A623, #FFD700);
  padding: 80px 24px;
  text-align: center;
  color: #fff;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.cta p {
  margin-bottom: 32px;
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ===========================
   フッター
=========================== */
.footer {
  background: #333;
  color: #ccc;
  padding: 48px 24px 24px;
  text-align: center;
}

.footer__logo {
  height: 60px;
  margin-bottom: 24px;
  opacity: 0.9;
}

.footer__nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer__nav a {
  font-size: 0.85rem;
  color: #aaa;
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: #F5A623;
}

.footer__copy {
  font-size: 0.8rem;
  color: #777;
}

/* ===========================
   レスポンシブ（タブレット）
=========================== */
@media (max-width: 1024px) {
  .header__nav {
    gap: 16px;
  }

  .hero__title {
    font-size: 2.4rem;
  }

  .section__title {
    font-size: 1.8rem;
  }
}

/* ===========================
   レスポンシブ（スマホ）
=========================== */
@media (max-width: 768px) {

  /* ヘッダー */
  .header__nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    gap: 0;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 99;
  }

  .header__nav.is-open {
    display: flex;
  }

  .header__nav a {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
  }

  .header__cta {
    display: none;
  }

  /* スマホでログインボタンを隠してメニュー内に表示 */
  .header__login {
    display: none;
  }

  .header__nav-login {
    display: block !important;
    text-align: center;
    margin-top: 8px;
    padding: 14px 0 4px !important;
    border-bottom: none !important;
    color: #F5A623 !important;
    font-weight: 700;
  }

  .hamburger {
    display: flex;
  }

  /* ヒーロー */

  .hero__sub {
    font-size: 0.82rem;
    padding: 6px 16px;
    white-space: nowrap;
  }

  .hero__title {
    font-size: 1.75rem;
    line-height: 1.55;
  }

  .hero__desc {
    font-size: 0.92rem;
    line-height: 1.8;
    text-align: left;
  }

  .hero__desc br {
    display: none;
  }

  .hero__btns {
    flex-direction: column;
    align-items: center;
  }

  .hero__btns .btn {
    width: 100%;
    max-width: 300px;
  }

  /* 共通 */
  .section__title {
    font-size: 1.6rem;
  }

  .worries__message {
    font-size: 1rem;
  }

  /* グリッド：1カラムに */
  .worries__grid,
  .concept__grid,
  .courses__grid,
  .reasons__grid,
  .pricing__cards {
    grid-template-columns: 1fr;
  }

  /* 料金カード */
  .pricing__card {
    padding: 36px 24px;
  }

  .pricing__amount {
    font-size: 2.4rem;
  }

  /* CTA */
  .cta h2 {
    font-size: 1.5rem;
  }

  /* フッター */
  .footer__nav {
    flex-direction: column;
    gap: 12px;
  }

  /* ボタン */
  .btn--lg {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* ===========================
   仕事紹介
=========================== */
.jobs {
  padding: 80px 0;
  background: #fff;
}

.jobs__types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.jobs__type {
  border-radius: 20px;
  padding: 36px 32px;
  border: 3px solid #FFE0A0;
  transition: border-color 0.3s;
}

.jobs__type:hover {
  border-color: #F5A623;
}

.jobs__type-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.jobs__type-icon {
  width: 52px;
  height: 52px;
  background: #FFF8E7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #F5A623;
  flex-shrink: 0;
}

.jobs__type-icon--green {
  background: #F0FFF8;
  color: #2D7A6A;
}

.jobs__type-header h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}

.jobs__type-note {
  font-size: 0.82rem;
  color: #2D7A6A;
  background: #F0FFF8;
  padding: 6px 12px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.jobs__type-note i {
  margin-right: 4px;
}

.jobs__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.jobs__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.jobs__list li > i {
  color: #2D7A6A;
  margin-top: 4px;
  flex-shrink: 0;
}

.jobs__list li div {
  display: flex;
  flex-direction: column;
}

.jobs__list li strong {
  font-size: 0.95rem;
  color: #333;
}

.jobs__list li span {
  font-size: 0.82rem;
  color: #888;
}

/* 仕事のつながり方 */
.jobs__flow {
  background: #F9FAFB;
  border-radius: 24px;
  padding: 48px 40px;
}

.jobs__flow-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
  color: #333;
}

.jobs__flow-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
}

.jobs__flow-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.jobs__flow-icon {
  font-size: 2rem;
  color: #F5A623;
  margin-bottom: 12px;
}

.jobs__flow-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #333;
}

.jobs__flow-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
}

.jobs__flow-sep {
  font-size: 1.5rem;
  color: #FFE0A0;
  text-align: center;
}

.jobs__flow-note {
  text-align: center;
  font-size: 0.95rem;
  font-weight: 700;
  color: #F5A623;
  background: #FFF8E7;
  padding: 14px 24px;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
}

.jobs__flow-note i {
  margin-right: 6px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .jobs__flow {
    padding: 32px 20px;
  }

  .jobs__flow-grid {
    grid-template-columns: 1fr;
  }

  .jobs__flow-sep {
    transform: rotate(90deg);
  }
}

/* ===========================
   スクロールアニメーション
=========================== */
.scroll-animate {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.scroll-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* セクションタイトルは少し大きく動かす */
.section__title.scroll-animate {
  transform: translateY(20px);
}

/* CTAセクションは白文字のため透明度のみ */
.cta .scroll-animate {
  transform: translateY(20px);
}

.pricing__mac-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #888;
}

.pricing__mac-note i {
  margin-right: 4px;
}

/* ===========================
   法的ページ（特商法・プライバシーポリシー）
=========================== */
.legal {
  padding: 120px 24px 80px;
  min-height: 80vh;
}

.legal__container {
  max-width: 800px;
  margin: 0 auto;
}

.legal__title {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 3px solid #F5A623;
  color: #333;
}

.legal__intro {
  color: #555;
  line-height: 1.9;
  margin-bottom: 40px;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  font-size: 0.95rem;
}

.legal__table th,
.legal__table td {
  padding: 16px 20px;
  border: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.legal__table th {
  background: #FFF8E7;
  font-weight: 700;
  color: #444;
  width: 35%;
  white-space: nowrap;
}

.legal__table td {
  color: #555;
}

.legal__section {
  margin-bottom: 36px;
}

.legal__section h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 4px solid #F5A623;
}

.legal__section p {
  color: #555;
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal__section ul {
  padding-left: 20px;
}

.legal__section ul li {
  list-style: disc;
  color: #555;
  line-height: 1.9;
  font-size: 0.95rem;
}

.legal__note {
  font-size: 0.85rem;
  color: #999;
  margin-bottom: 40px;
}

.legal__back {
  text-align: center;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .legal__table th {
    white-space: normal;
    width: 40%;
  }

  .legal__table th,
  .legal__table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }
}

/* ===========================
   認証ページ（登録・ログイン）
=========================== */
.auth {
  padding: 110px 24px 80px;
  min-height: 100vh;
  background: #F9FAFB;
}

.auth__container {
  max-width: 640px;
  margin: 0 auto;
}

/* ステップ */
.auth__steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.auth__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.auth__step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e0e0e0;
  color: #999;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth__step.is-active .auth__step-num {
  background: #F5A623;
  color: #fff;
}

.auth__step-label {
  font-size: 0.78rem;
  color: #999;
  font-weight: 700;
}

.auth__step.is-active .auth__step-label {
  color: #F5A623;
}

.auth__step-line {
  width: 60px;
  height: 2px;
  background: #e0e0e0;
  margin-bottom: 20px;
}

/* タイトル */
.auth__title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 8px;
  color: #333;
}

.auth__desc {
  text-align: center;
  color: #666;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

/* フォーム */
.auth__form {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.auth__field {
  margin-bottom: 24px;
}

.auth__label {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #333;
  margin-bottom: 8px;
}

.auth__required {
  background: #F5A623;
  color: #fff;
  font-size: 0.72rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  font-weight: 700;
}

.auth__input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333;
  transition: border-color 0.2s;
  outline: none;
}

.auth__input:focus {
  border-color: #F5A623;
}

.auth__input-wrap {
  position: relative;
}

.auth__input-wrap .auth__input {
  padding-right: 48px;
}

.auth__toggle-pass {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
}

.auth__hint {
  font-size: 0.8rem;
  color: #999;
  margin-top: 6px;
}

.auth__error {
  color: #E05C5C;
  font-size: 0.88rem;
  margin-bottom: 16px;
  text-align: center;
  min-height: 20px;
}

/* プラン選択 */
.auth__plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth__plan {
  cursor: pointer;
}

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

.auth__plan-card {
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.auth__plan-card.is-selected {
  border-color: #F5A623;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}

.auth__plan-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.auth__plan-tag {
  background: #2D7A6A;
  color: #fff;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 50px;
}

.auth__plan-price {
  font-size: 1.2rem;
  font-weight: 900;
  color: #F5A623;
  margin-bottom: 12px;
}

.auth__plan-price span {
  font-size: 0.78rem;
  color: #999;
  font-weight: 400;
}

.auth__plan-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth__plan-list li {
  font-size: 0.8rem;
  color: #555;
}

.auth__plan-list li i {
  color: #2D7A6A;
  margin-right: 4px;
}

/* 規約同意 */
.auth__checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.7;
}

.auth__checkbox input {
  margin-top: 4px;
  accent-color: #F5A623;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.auth__checkbox a {
  color: #F5A623;
  text-decoration: underline;
}

/* 送信ボタン */
.auth__submit {
  width: 100%;
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ログインリンク */
.auth__login {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: #666;
}

.auth__login a {
  color: #F5A623;
  font-weight: 700;
  text-decoration: underline;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .auth__form {
    padding: 28px 20px;
  }

  .auth__plans {
    grid-template-columns: 1fr;
  }

  .auth__step-line {
    width: 32px;
  }
}

/* ===========================
   マイページ
=========================== */
.mypage {
  padding: 48px 24px 80px;
  min-height: 80vh;
  background: #F9FAFB;
}

.mypage__welcome {
  margin-bottom: 40px;
}

.mypage__welcome h1 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
}

.mypage__welcome h1 span {
  color: #F5A623;
}

.mypage__plan {
  display: inline-block;
  background: #2D7A6A;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
}

.mypage__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.mypage__card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border: 2px solid transparent;
  transition: all 0.3s;
  color: #333;
}

.mypage__card:hover {
  border-color: #F5A623;
  transform: translateY(-4px);
}

.mypage__card-icon {
  font-size: 2.4rem;
  color: #F5A623;
  margin-bottom: 16px;
}

.mypage__card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.mypage__card p {
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 768px) {
  .mypage__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mypage__welcome h1 {
    font-size: 1.4rem;
  }
}

/* ===========================
   マイページ：学習進捗
=========================== */
.mypage__progress {
  margin-bottom: 40px;
}

.mypage__section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mypage__section-title i {
  color: #2a9d8f;
}

.mypage__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.mypage__stat-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.mypage__stat-icon {
  width: 42px;
  height: 42px;
  background: #e8f5f3;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #2a9d8f;
}

.mypage__stat-body {
  flex: 1;
  min-width: 0;
}

.mypage__stat-value {
  font-size: 1.6rem;
  font-weight: 900;
  color: #222;
  line-height: 1.2;
}

.mypage__stat-unit {
  font-size: 0.9rem;
  font-weight: 400;
  color: #888;
}

.mypage__stat-label {
  font-size: 0.8rem;
  color: #888;
  margin-top: 2px;
  margin-bottom: 8px;
}

.mypage__stat-bar {
  height: 6px;
  background: #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
}

.mypage__stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #2a9d8f, #4ecdc4);
  border-radius: 999px;
  transition: width 0.8s ease;
}

@media (max-width: 768px) {
  .mypage__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .mypage__stats {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   視聴済みバッジ
=========================== */
.watch__completed-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #e8f5f3;
  color: #2a9d8f;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 12px;
}

.watch__completed-badge i {
  font-size: 1rem;
}

/* ===========================
   決済ページ（payment）
=========================== */
.payment__plan-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f8f9fa;
  border: 2px solid #2D7A6A;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
}

.payment__plan-icon {
  font-size: 2rem;
  color: #2D7A6A;
  flex-shrink: 0;
}

.payment__plan-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: #333;
}

.payment__plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F5A623;
  margin-top: 4px;
}

.payment__security {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #e8f5e9;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 28px;
  font-size: 0.85rem;
  color: #444;
}

.payment__security i {
  color: #2D7A6A;
  margin-top: 3px;
  flex-shrink: 0;
}

.payment__card-element {
  border: 1.5px solid #ddd;
  border-radius: 8px;
  padding: 14px 16px;
  background: #fff;
  transition: border-color 0.2s;
}

.payment__card-element:focus-within {
  border-color: #2D7A6A;
  box-shadow: 0 0 0 3px rgba(45, 122, 106, 0.15);
}

.payment__note {
  text-align: center;
  font-size: 0.82rem;
  color: #888;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ステップ：完了状態 */
.auth__step.is-done .auth__step-num {
  background: #2D7A6A;
  color: #fff;
}

.auth__step-line.is-done {
  background: #2D7A6A;
}

@media (max-width: 768px) {
  .payment__plan-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
/* ===========================
   講座一覧（courses）
=========================== */
.courses {
  padding: 40px 0 80px;
  min-height: 100vh;
  background: #F9FAFB;
}

.courses__header {
  margin-bottom: 32px;
}

.courses__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.courses__title i {
  color: #F5A623;
}

.courses__desc {
  color: #666;
  font-size: 0.95rem;
}

.courses__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.courses__tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.courses__tab:hover {
  border-color: #F5A623;
  color: #F5A623;
}

.courses__tab.is-active {
  background: #F5A623;
  border-color: #F5A623;
  color: #fff;
}

.courses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.courses__loading,
.courses__error,
.courses__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 60px 0;
  color: #888;
  font-size: 1rem;
}

.courses__loading i,
.courses__error i,
.courses__empty i {
  font-size: 2rem;
  color: #ccc;
}

.courses__error {
  color: #e57373;
}

.courses__error i {
  color: #e57373;
}

/* コースカード */
.course-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  color: inherit;
  text-decoration: none;
}

.course-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.course-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8e8e8;
  overflow: hidden;
}

.course-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.course-card__thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2D7A6A, #1a5c50);
  font-size: 2.5rem;
  color: rgba(255,255,255,0.5);
}

.course-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s;
}

.course-card:hover .course-card__play {
  opacity: 1;
}

.course-card__play i {
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.course-card__body {
  padding: 16px;
}

.course-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: #FFF3CD;
  color: #b97a00;
  margin-bottom: 8px;
}

.course-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  line-height: 1.5;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.course-card__desc {
  font-size: 0.82rem;
  color: #888;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 960px) {
  .courses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .courses__grid {
    grid-template-columns: 1fr;
  }

  .courses__tabs {
    gap: 8px;
  }

  .courses__tab {
    padding: 7px 14px;
    font-size: 0.85rem;
  }
}

/* ===========================
   動画視聴（course-watch）
=========================== */
.watch {
  padding: 32px 0 80px;
  min-height: 100vh;
  background: #111;
}

.watch__container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.watch__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 20px;
  transition: color 0.2s;
}

.watch__back:hover {
  color: #fff;
}

.watch__player-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}

.watch__player-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.watch__info {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 24px 28px;
}

.watch__category {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  background: #F5A623;
  color: #fff;
  margin-bottom: 12px;
}

.watch__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.5;
  margin-bottom: 12px;
}

.watch__desc {
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.9;
}

.watch__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 0;
  color: #888;
}

.watch__loading i {
  font-size: 2rem;
}

.watch__error {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 80px 0;
  color: #aaa;
  text-align: center;
}

.watch__error i {
  font-size: 3rem;
  color: #666;
}

@media (max-width: 600px) {
  .watch__info {
    padding: 18px 16px;
  }

  .watch__title {
    font-size: 1.1rem;
  }
}

/* ===========================
   モーダル（共通）
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px 16px;
  overflow-y: auto;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 36px 32px;
  width: 100%;
  max-width: 480px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #aaa;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.modal__close:hover {
  background: #f5f5f5;
  color: #333;
}

.modal__icon {
  font-size: 2.4rem;
  color: #F5A623;
  text-align: center;
  margin-bottom: 12px;
}

.modal__title {
  font-size: 1.2rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 20px;
  padding-right: 24px;
  line-height: 1.5;
}

.modal__body {
  margin-bottom: 24px;
}

.modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.modal__actions .btn {
  min-width: 120px;
}

/* auth__eye（パスワード表示ボタン） */
.auth__eye {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #aaa;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}

.auth__eye:hover {
  color: #555;
}

/* auth__textarea */
.auth__textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.8;
}

@media (max-width: 480px) {
  .modal {
    padding: 28px 20px;
  }

  .modal__actions {
    flex-direction: column;
  }

  .modal__actions .btn {
    width: 100%;
  }
}

/* ===========================
   仕事紹介（jobs-member）
=========================== */
.jobs-page {
  padding: 48px 0 80px;
  min-height: 100vh;
  background: #f8f9fb;
}

.jobs-page__header {
  margin-bottom: 32px;
}

.jobs-page__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 8px;
}

.jobs-page__title i {
  color: #F5A623;
}

.jobs-page__desc {
  color: #666;
  font-size: 0.95rem;
}

.jobs-page__filters {
  margin-bottom: 28px;
}

.jobs-page__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.jobs-page__tab {
  padding: 8px 20px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: #fff;
  color: #555;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

.jobs-page__tab:hover {
  border-color: #F5A623;
  color: #F5A623;
}

.jobs-page__tab.is-active {
  background: #F5A623;
  border-color: #F5A623;
  color: #fff;
}

.jobs-page__loading,
.jobs-page__error,
.jobs-page__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 0;
  color: #888;
  text-align: center;
}

.jobs-page__loading i,
.jobs-page__error i,
.jobs-page__empty i {
  font-size: 2.5rem;
  color: #ccc;
}

/* 求人リスト */
.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* 求人カード */
.job-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.job-card__header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.job-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}

.job-card__badge--offer {
  background: #e8f4f2;
  color: #2D7A6A;
}

.job-card__badge--application {
  background: #fff3e0;
  color: #F5A623;
}

.job-card__new {
  background: #e74c3c;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}

.job-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  color: #222;
}

.job-card__summary {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.job-card__meta-item {
  font-size: 0.82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-card__meta-item i {
  color: #F5A623;
}

.job-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.job-card__tag {
  background: #f0f0f0;
  color: #555;
  font-size: 0.78rem;
  padding: 3px 10px;
  border-radius: 50px;
}

.job-card__footer {
  margin-top: auto;
}

.job-card__btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* モーダル：求人詳細 */
.modal__job-type {
  display: inline-block;
  background: #e8f4f2;
  color: #2D7A6A;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}

.modal__job-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.9;
  margin-bottom: 20px;
  white-space: pre-wrap;
}

.modal__job-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #eee;
  padding-top: 16px;
}

.modal__job-detail {
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}

.modal__job-detail-label {
  min-width: 120px;
  color: #888;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal__job-detail-label i {
  color: #F5A623;
  width: 16px;
}

@media (max-width: 760px) {
  .jobs-list {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   コミュニティ（community）
=========================== */
.community {
  padding: 48px 0 80px;
  min-height: 100vh;
  background: #f8f9fb;
}

.community__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.community__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
  margin-bottom: 4px;
}

.community__title i {
  color: #F5A623;
}

.community__desc {
  color: #666;
  font-size: 0.92rem;
}

/* カテゴリータブ */
.community__tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.community__tab {
  padding: 8px 18px;
  border-radius: 50px;
  border: 2px solid #ddd;
  background: #fff;
  color: #555;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.community__tab:hover {
  border-color: #F5A623;
  color: #F5A623;
}

.community__tab.is-active {
  background: #F5A623;
  border-color: #F5A623;
  color: #fff;
}

/* ローディング・空 */
.community__loading,
.community__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 0;
  color: #888;
  text-align: center;
}

.community__loading i,
.community__empty i {
  font-size: 2.5rem;
  color: #ccc;
}

/* 投稿リスト */
.community__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* 投稿カード */
.post-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}

.post-card:hover {
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}

.post-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.post-card__cat {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 11px;
  border-radius: 50px;
  font-size: 0.77rem;
  font-weight: 700;
}

.post-card__cat--capcut {
  background: #e8f4f2;
  color: #2D7A6A;
}

.post-card__cat--photoshop {
  background: #e8eaf6;
  color: #3f51b5;
}

.post-card__cat--job {
  background: #fff3e0;
  color: #F5A623;
}

.post-card__cat--other {
  background: #f3f3f3;
  color: #666;
}

.post-card__delete {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.88rem;
  transition: color 0.2s, background 0.2s;
}

.post-card__delete:hover {
  color: #e74c3c;
  background: #ffeaea;
}

.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
  line-height: 1.5;
  margin-bottom: 8px;
}

.post-card__content {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}

.post-card__footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.post-card__author,
.post-card__date {
  font-size: 0.8rem;
  color: #aaa;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* 投稿モーダル */
.modal--wide {
  width: 100%;
  max-width: 560px;
}

@media (max-width: 600px) {
  .community__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .community__tabs {
    gap: 6px;
  }

  .community__tab {
    padding: 7px 13px;
    font-size: 0.82rem;
  }

  .post-card {
    padding: 18px 16px;
  }
}

/* ===========================
   企業向けLP（corporate）
=========================== */

/* body のパディングは共通 */
.corp-body {
  padding-top: 70px;
}

/* ヒーロー */
.corp-hero {
  background: linear-gradient(135deg, #1a4d42 0%, #2D7A6A 60%, #3a9080 100%);
  color: #fff;
  padding: 100px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.corp-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.corp-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.corp-hero__title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}

.corp-hero__title span {
  color: #F5A623;
}

.corp-hero__desc {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}

.corp-hero__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline-white {
  border: 2px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}

/* 装飾シェイプ */
.corp-hero__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.corp-hero__shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}

.corp-hero__shape--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
}

.corp-hero__shape--2 {
  width: 250px;
  height: 250px;
  bottom: -60px;
  left: -40px;
}

.corp-hero__shape--3 {
  width: 180px;
  height: 180px;
  top: 60%;
  right: 20%;
}

/* お困り */
.corp-worries {
  padding: 80px 0;
  background: #fff;
}

.corp-worries__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.corp-worries__card {
  background: #FFF5F5;
  border: 2px solid #FFD0D0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s;
}

.corp-worries__card:hover {
  transform: translateY(-4px);
}

.corp-worries__card i {
  font-size: 2rem;
  color: #E05C5C;
  display: block;
  margin-bottom: 14px;
}

.corp-worries__card p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.8;
}

.corp-worries__message {
  text-align: center;
  margin-top: 40px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #2D7A6A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* サービス */
.corp-services {
  padding: 80px 0;
  background: #F9FAFB;
}

.corp-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.corp-service-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
}

.corp-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.corp-service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #FFF3CD;
  color: #F5A623;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.corp-service-card__icon--teal {
  background: #E8F5F2;
  color: #2D7A6A;
}

.corp-service-card h3 {
  font-size: 1.1rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 10px;
}

.corp-service-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 16px;
}

.corp-service-card__list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.corp-service-card__list li {
  font-size: 0.82rem;
  color: #555;
  display: flex;
  align-items: center;
  gap: 7px;
}

.corp-service-card__list li i {
  color: #2D7A6A;
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* メリット */
.corp-merits {
  padding: 80px 0;
  background: #fff;
}

.corp-merits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.corp-merit-card {
  background: #F9FAFB;
  border-radius: 20px;
  padding: 36px 28px;
  border-top: 4px solid #F5A623;
  transition: transform 0.3s;
}

.corp-merit-card:hover {
  transform: translateY(-4px);
}

.corp-merit-card__num {
  font-size: 0.78rem;
  font-weight: 900;
  color: #F5A623;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.corp-merit-card__icon {
  font-size: 2.2rem;
  color: #2D7A6A;
  margin-bottom: 16px;
}

.corp-merit-card h3 {
  font-size: 1.05rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 12px;
}

.corp-merit-card p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.9;
}

/* ご依頼の流れ */
.corp-flow {
  padding: 80px 0;
  background: #F0FFF8;
}

.corp-flow__steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 48px;
}

.corp-flow__step {
  background: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(45,122,106,0.08);
}

.corp-flow__step-num {
  font-size: 0.72rem;
  font-weight: 900;
  color: #2D7A6A;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  background: #E8F5F2;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
}

.corp-flow__step-icon {
  font-size: 2rem;
  color: #F5A623;
  margin-bottom: 12px;
}

.corp-flow__step h3 {
  font-size: 0.95rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 10px;
}

.corp-flow__step p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.8;
}

.corp-flow__arrow {
  color: #b0d8d0;
  font-size: 1.4rem;
  text-align: center;
}

/* お問い合わせ */
.corp-contact {
  padding: 80px 0;
  background: #F9FAFB;
}

.corp-contact__wrap {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.corp-contact__form {
  display: flex;
  flex-direction: column;
}

.corp-contact__checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.corp-contact__check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 10px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.88rem;
  color: #555;
  transition: border-color 0.2s, background 0.2s;
}

.corp-contact__check input[type="checkbox"] {
  display: none;
}

.corp-contact__check:has(input:checked) {
  border-color: #2D7A6A;
  background: #E8F5F2;
  color: #2D7A6A;
  font-weight: 700;
}

.corp-contact__check span i {
  margin-right: 5px;
  color: #2D7A6A;
}

/* ===========================
   レスポンシブ（企業LP）
=========================== */
@media (max-width: 1024px) {
  .corp-flow__steps {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 12px;
  }

  .corp-flow__steps > :nth-child(6),
  .corp-flow__steps > :nth-child(7),
  .corp-flow__steps > :nth-child(8) {
    display: none;
  }
}

@media (max-width: 900px) {
  .corp-services__grid,
  .corp-merits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .corp-hero {
    padding: 72px 20px 60px;
  }

  .corp-hero__title {
    font-size: 2rem;
  }

  .corp-hero__desc br {
    display: none;
  }

  .corp-worries__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .corp-services__grid,
  .corp-merits__grid {
    grid-template-columns: 1fr;
  }

  .corp-flow__steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .corp-flow__arrow {
    transform: rotate(90deg);
  }

  .corp-flow__steps > :nth-child(6),
  .corp-flow__steps > :nth-child(7),
  .corp-flow__steps > :nth-child(8) {
    display: block;
  }

  .corp-contact__wrap {
    padding: 32px 20px;
  }

  .corp-contact__checks {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .corp-hero__title {
    font-size: 1.7rem;
  }

  .corp-hero__btns {
    flex-direction: column;
    align-items: center;
  }

  .corp-hero__btns .btn,
  .corp-hero__btns .btn--outline-white {
    width: 100%;
    max-width: 300px;
  }

  .corp-worries__grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   アカウント設定（account）
=========================== */
.account-page {
  padding: 48px 0 80px;
  min-height: 100vh;
  background: #f8f9fb;
}

.account-page__header {
  margin-bottom: 32px;
}

.account-page__title {
  font-size: 1.6rem;
  font-weight: 900;
  color: #333;
}

.account-page__title i {
  color: #F5A623;
}

.account-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

.account-card--plan {
  grid-column: 1 / -1;
}

/* アカウントカード */
.account-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.account-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f5f5f5;
}

.account-card__head i {
  font-size: 1.2rem;
  color: #F5A623;
}

.account-card__title {
  font-size: 1.05rem;
  font-weight: 900;
  color: #333;
}

.account-card__footer {
  margin-top: 20px;
}

.account-card__footer .btn {
  width: 100%;
}

.account-card__success {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #2D7A6A;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 8px;
}

.account-card__success i {
  font-size: 1rem;
}

/* プラン情報 */
.account-plan {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.account-plan__name {
  font-size: 1.1rem;
  font-weight: 900;
  color: #333;
}

.account-plan__price {
  font-size: 0.95rem;
  color: #F5A623;
  font-weight: 700;
}

.account-plan__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #e8f4f2;
  color: #2D7A6A;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

.account-plan__note {
  font-size: 0.85rem;
  color: #888;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.7;
}

.account-plan__note i {
  color: #aaa;
  margin-top: 4px;
  flex-shrink: 0;
}

.account-cancel {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
  text-align: right;
}

/* 解約・削除用の赤ボタン */
.btn--danger {
  background: #fff;
  color: #e53935;
  border: 1.5px solid #e53935;
}
.btn--danger:hover {
  background: #e53935;
  color: #fff;
}

/* ===========================
   管理者ページ
=========================== */
.admin {
  padding: 40px 0 80px;
}

.admin__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #222;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin__title i {
  color: #2a9d8f;
}

.admin__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  border-bottom: 2px solid #e8e8e8;
}

.admin__tab {
  padding: 10px 24px;
  border: none;
  background: none;
  font-size: 0.95rem;
  font-weight: 700;
  color: #888;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}

.admin__tab.is-active {
  color: #2a9d8f;
  border-bottom-color: #2a9d8f;
}

.admin__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.admin__card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin__card h2 i {
  color: #2a9d8f;
}

.admin__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.admin__form-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.admin__form-row label {
  width: 130px;
  flex-shrink: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
}

.admin__form-row select,
.admin__form-row input[type="text"],
.admin__form-row input[type="number"] {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.admin__form-row select:focus,
.admin__form-row input:focus {
  border-color: #2a9d8f;
}

.admin__radio-group {
  display: flex;
  gap: 20px;
}

.admin__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.95rem;
}

.admin__error {
  color: #e53935;
  font-size: 0.88rem;
  min-height: 18px;
}

.admin__success {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2a9d8f;
  font-size: 0.95rem;
  font-weight: 700;
  background: #e8f5f3;
  padding: 10px 16px;
  border-radius: 8px;
}

.admin__recent {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin__recent-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f9f9f9;
  border-radius: 8px;
  font-size: 0.9rem;
}

.admin__recent-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.admin__recent-user {
  font-weight: 700;
  color: #333;
}

.admin__recent-job {
  color: #666;
}

.admin__recent-reward {
  color: #2a9d8f;
  font-weight: 700;
}

.admin__recent-date {
  color: #aaa;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.admin__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.admin__badge--ordered {
  background: #fff3e0;
  color: #f57c00;
}

.admin__badge--done {
  background: #e8f5f3;
  color: #2a9d8f;
}

.admin__loading {
  color: #888;
  font-size: 0.9rem;
}

.admin__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.admin__table th {
  text-align: left;
  padding: 10px 12px;
  background: #f5f5f5;
  color: #555;
  font-weight: 700;
  border-bottom: 1px solid #e8e8e8;
}

.admin__table td {
  padding: 10px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #333;
}

.admin__table tr:last-child td {
  border-bottom: none;
}

/* 制作中バッジ */
.admin__badge--progress {
  background: #e3f2fd;
  color: #1565c0;
}

/* 修正待ちバッジ */
.admin__badge--revision {
  background: #fff8e1;
  color: #f57f17;
}

/* カードヘッダー（タイトル＋フィルター横並び） */
.admin__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.admin__card-header h2 {
  margin: 0;
}

.admin__filter select {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.85rem;
  background: #fff;
  color: #333;
  cursor: pointer;
}

/* 最近の記録：右側アクション（日付＋削除ボタン） */
.admin__recent-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* 削除ボタン */
.admin__delete-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 0.85rem;
  padding: 4px 6px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.admin__delete-btn:hover {
  color: #e53935;
  background: #fdecea;
}

/* 会員行（クリック可能） */
.admin__member-row {
  cursor: pointer;
  transition: background 0.15s;
}

.admin__member-row:hover {
  background: #f5f5f5;
}

/* 展開アイコン */
.admin__expand-icon {
  font-size: 0.7rem;
  color: #aaa;
  margin-left: 4px;
  transition: transform 0.2s;
}

.admin__expand-icon.is-open {
  transform: rotate(180deg);
}

/* 会員詳細（展開エリア） */
.admin__member-detail td {
  background: #fafafa;
  padding: 12px 16px !important;
}

.admin__history-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.admin__history-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.admin__history-job {
  color: #555;
}

.admin__no-history {
  color: #aaa;
  font-size: 0.85rem;
  margin: 0;
}

/* 会員一覧の件数・報酬 */
.admin__count {
  font-size: 0.85rem;
  color: #555;
  font-weight: 700;
}

.admin__count--active {
  color: #1565c0;
}

.admin__reward-total {
  font-size: 0.85rem;
  color: #2a9d8f;
  font-weight: 700;
}

/* ══════════════════════════════════════
   仕事ボード
══════════════════════════════════════ */
.board__scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.board__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  min-width: 680px;
}

.board__table th {
  text-align: left;
  padding: 10px 14px;
  background: #f5f5f5;
  color: #555;
  font-weight: 700;
  border-bottom: 2px solid #e8e8e8;
  white-space: nowrap;
}

.board__table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: middle;
}

/* 行の色分け */
.board__row--unassigned td {
  opacity: 0.45;
}

.board__row--delivered {
  background: #fffbf0;
}

.board__row--complete {
  background: #f0faf8;
}

.board__row--complete td {
  opacity: 0.7;
}

.board__job-title {
  font-weight: 700;
  color: #333;
  max-width: 200px;
}

.board__member {
  color: #444;
  white-space: nowrap;
}

.board__reward {
  font-weight: 700;
  color: #2a9d8f;
  white-space: nowrap;
}

.board__date {
  color: #aaa;
  font-size: 0.82rem;
  white-space: nowrap;
}

.board__unassigned-label {
  color: #bbb;
  font-size: 0.85rem;
}

/* ステータスセレクト */
.board__status-select {
  padding: 5px 8px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.82rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  min-width: 90px;
}

.board__status-select:focus {
  outline: none;
  border-color: #2a9d8f;
}

/* 報酬渡しボタン */
.board__paid-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border: 1px solid #ddd;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #fff;
  color: #999;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.board__paid-btn:hover {
  border-color: #2a9d8f;
  color: #2a9d8f;
}

.board__paid-btn.is-paid {
  background: #e8f5f3;
  color: #2a9d8f;
  border-color: #2a9d8f;
  font-weight: 700;
}

/* 納品済み表示トグル */
.board__toggle-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
  user-select: none;
}

.board__toggle-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
  accent-color: #2a9d8f;
}

@media (max-width: 768px) {
  .admin__form-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin__form-row label {
    width: auto;
  }

  .admin__form-row select,
  .admin__form-row input {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .account-page__grid {
    grid-template-columns: 1fr;
  }

  .account-card--plan {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .account-card {
    padding: 20px 16px;
  }
}

/* ══════════════════════════════════════
   マイページ 仕事セクション共通
══════════════════════════════════════ */
.mypage__section {
  margin-bottom: 40px;
}

/* ══════════════════════════════════════
   現在の仕事カード
══════════════════════════════════════ */
.myjob__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.myjob__card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.myjob__card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.myjob__title {
  font-weight: 700;
  font-size: 1rem;
  color: #222;
}

.myjob__deadline {
  font-size: 0.82rem;
  color: #e57c00;
  margin-left: auto;
}

.myjob__summary {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.myjob__note {
  font-size: 0.85rem;
  color: #555;
  background: #f9f6ff;
  border-left: 3px solid #9c6fe4;
  padding: 8px 12px;
  border-radius: 0 6px 6px 0;
  margin: 0;
}

.myjob__detail-link {
  align-self: flex-start;
  font-size: 0.85rem;
  color: #2a9d8f;
  text-decoration: none;
  font-weight: 700;
  margin-top: 4px;
}

.myjob__detail-link:hover {
  text-decoration: underline;
}

/* バッジ（マイページ用） */
.myjob__badge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.myjob__badge--ordered  { background: #fff3e0; color: #f57c00; }
.myjob__badge--progress { background: #e3f2fd; color: #1565c0; }
.myjob__badge--revision { background: #fff8e1; color: #f57f17; }
.myjob__badge--done     { background: #e8f5f3; color: #2a9d8f; }

/* ══════════════════════════════════════
   過去の納品履歴
══════════════════════════════════════ */
.myjob__history {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.myjob__history-item {
  background: #fafafa;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.myjob__history-main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.myjob__history-title {
  font-weight: 700;
  color: #333;
}

.myjob__history-reward {
  font-weight: 700;
  color: #2a9d8f;
  margin-left: auto;
}

.myjob__history-sub {
  display: flex;
  align-items: center;
  gap: 12px;
}

.myjob__paid {
  font-size: 0.8rem;
  color: #2a9d8f;
  font-weight: 700;
}

.myjob__unpaid {
  font-size: 0.8rem;
  color: #aaa;
}

.myjob__history-date {
  font-size: 0.8rem;
  color: #aaa;
  margin-left: auto;
}

/* ══════════════════════════════════════
   締め切りカレンダー
══════════════════════════════════════ */
.mycal__wrap {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 460px;
}

.mycal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.mycal__month {
  font-weight: 700;
  font-size: 1rem;
  color: #333;
}

.mycal__nav {
  background: none;
  border: 1px solid #ddd;
  border-radius: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  color: #555;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.mycal__nav:hover {
  background: #f0f0f0;
}

.mycal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.mycal__day-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #999;
  padding: 4px 0 8px;
}

.mycal__day-label.is-sun { color: #e53935; }
.mycal__day-label.is-sat { color: #1565c0; }

.mycal__cell {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  position: relative;
  font-size: 0.82rem;
  color: #444;
}

.mycal__cell.is-sun .mycal__date { color: #e53935; }
.mycal__cell.is-sat .mycal__date { color: #1565c0; }

.mycal__cell.is-today .mycal__date {
  background: #2a9d8f;
  color: #fff;
  border-radius: 999px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mycal__cell.has-deadline {
  background: #fff3e0;
}

.mycal__cell.has-deadline-past {
  background: #fdecea;
  opacity: 0.7;
}

.mycal__dot {
  width: 5px;
  height: 5px;
  background: #f57c00;
  border-radius: 999px;
  margin-top: 2px;
}

.has-deadline-past .mycal__dot {
  background: #e53935;
}

/* 凡例 */
.mycal__legend {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mycal__legend-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #999;
  margin-bottom: 4px;
}

.mycal__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}

.mycal__legend-item.is-past {
  opacity: 0.6;
}

.mycal__legend-date {
  font-weight: 700;
  color: #f57c00;
  min-width: 32px;
}

.mycal__legend-item.is-past .mycal__legend-date {
  color: #e53935;
}

.mycal__legend-title-text {
  color: #444;
}

.mycal__legend-overdue {
  font-size: 0.75rem;
  color: #e53935;
  background: #fdecea;
  padding: 2px 7px;
  border-radius: 999px;
  font-weight: 700;
}

@media (max-width: 480px) {
  .mycal__wrap {
    max-width: 100%;
    padding: 14px;
  }
  .mycal__cell {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════════════
   管理画面 必須ラベル・チェックボックス
══════════════════════════════════════ */
.admin__required {
  font-size: 0.72rem;
  color: #e53935;
  background: #fdecea;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.admin__check-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.admin__check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  cursor: pointer;
}

/* ══════════════════════════════════════
   オファーバッジ（管理・会員共通）
══════════════════════════════════════ */
.offer__badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.offer__badge--pending  { background: #fff8e1; color: #f57f17; }
.offer__badge--accepted { background: #e8f5f3; color: #2a9d8f; }
.offer__badge--rejected { background: #f5f5f5; color: #999; }
.offer__badge--type-offer { background: #e8eaf6; color: #3949ab; }
.offer__badge--type-app   { background: #f3e5f5; color: #7b1fa2; }

/* ══════════════════════════════════════
   管理画面 オファーアイテム
══════════════════════════════════════ */
.offer__item {
  background: #fafafa;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer__item-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.offer__job   { font-weight: 700; color: #333; }
.offer__user  { color: #555; }
.offer__date  { color: #aaa; font-size: 0.8rem; margin-left: auto; }

.offer__message {
  font-size: 0.85rem;
  color: #666;
  background: #f0f4ff;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 0;
}

.offer__reply {
  font-size: 0.85rem;
  color: #555;
  background: #f0faf8;
  padding: 8px 12px;
  border-radius: 6px;
  margin: 0;
}

.offer__actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

/* ══════════════════════════════════════
   オファー確認ページ（会員）
══════════════════════════════════════ */
.offer-page {
  padding: 40px 0 80px;
  min-height: 70vh;
}

.offer-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 32px;
  max-width: 640px;
  margin: 24px auto 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.offer-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-card__title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #222;
  margin: 0;
}

.offer-card__meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #666;
}

.offer-card__meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.offer-card__desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  background: #fafafa;
  border-radius: 10px;
  padding: 16px;
}

.offer-card__admin-msg {
  background: #f0f4ff;
  border-left: 3px solid #3949ab;
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
}

.offer-card__admin-msg-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #3949ab;
  margin-bottom: 6px;
}

.offer-card__admin-msg p {
  font-size: 0.9rem;
  color: #444;
  margin: 0;
}

.offer-card__reply-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #555;
  margin-bottom: 8px;
}

.offer-card__textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.offer-card__textarea:focus {
  outline: none;
  border-color: #2a9d8f;
}

.offer-card__btns {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.offer-card__result {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 12px;
  font-size: 0.95rem;
}

.offer-card__result--accepted {
  background: #e8f5f3;
  color: #2a9d8f;
}

.offer-card__result--accepted i { font-size: 1.6rem; margin-top: 2px; }

.offer-card__result--rejected {
  background: #f5f5f5;
  color: #999;
}

.offer-card__result--rejected i { font-size: 1.6rem; margin-top: 2px; }

.offer-card__result-title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 4px;
}

.offer-card__result-desc {
  font-size: 0.88rem;
  margin: 0;
  opacity: 0.85;
}

.offer-card__result-reply {
  font-size: 0.82rem;
  margin: 8px 0 0;
  opacity: 0.7;
}

/* ══════════════════════════════════════
   マイページ オファー通知
══════════════════════════════════════ */
.offer-notice {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offer-notice__header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #f57f17;
  font-size: 0.95rem;
}

.offer-notice__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  text-decoration: none;
  transition: box-shadow 0.15s;
  gap: 12px;
}

.offer-notice__item:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.offer-notice__item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.offer-notice__dot {
  width: 8px;
  height: 8px;
  background: #f57c00;
  border-radius: 999px;
  flex-shrink: 0;
}

.offer-notice__title {
  font-weight: 700;
  color: #333;
  font-size: 0.92rem;
}

.offer-notice__meta {
  font-size: 0.8rem;
  color: #888;
}

.offer-notice__action {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2a9d8f;
  white-space: nowrap;
  flex-shrink: 0;
}
