/* 共通スタイル - 全ページで使用 */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Unbounded:wght@200;300;400;500;600;700;800;900&display=swap");

/* ベースリセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  background-color: #ebe6e1;
  color: #000;
}

/* WordPressのデフォルトスタイルをリセット */
.wp-site-blocks {
  padding: 0 !important;
}

#main {
  margin: 0 !important;
  padding: 0 !important;
}

/* 共通ヘッダー */
.common-header {
  background: transparent;
  padding: 26px 0 16px;
  border-bottom: none;
}

.common-header.not-index {
  border-bottom: 1px solid #000;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex: 1;
}

.header-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.header-logo {
  text-decoration: none;
  display: block;
}

.logo-image {
  height: 60px;
  width: auto;
  filter: brightness(0.3);
  transition: filter 0.3s ease;
}

.header-logo:hover .logo-image {
  filter: brightness(1);
}

.header-link {
  padding-bottom: 5px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  line-height: 1.26;
  border-bottom: 1px dashed #000;
  transition: color 0.3s ease;
}

.header-link:hover {
  color: var(--season-color);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.weather-info {
  width: 170px;
  background: #fff;
  color: #000;
  padding: 8px 24px;
  border-radius: 20px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
}

.weather-text {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.snowflake {
  color: #000;
  font-size: 12px;
}

.temperature {
  font-weight: 500;
}

.search-icon {
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: #fff;
  transition: color 0.3s ease;
}

.search-icon:hover {
  color: #ff6400;
}

.search-icon svg {
  width: 100%;
  height: 100%;
  transition: stroke 0.3s ease;
}

.search-icon svg circle,
.search-icon svg path,
.search-icon svg line {
  transition: stroke 0.3s ease;
}

.search-icon:hover svg circle,
.search-icon:hover svg path,
.search-icon:hover svg line {
  stroke: var(--season-color);
}

/* メインナビゲーション */
.main-navigation {
  background: transparent;
  padding: 20px 0 0;
  border-top: none;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.nav-btn {
  background: var(--season-color);
  color: #000;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn:hover {
  transform: translateY(-2px);
}

/* 共通レイアウト */
.two-column-content {
  display: grid;
  grid-template-columns: 759px 320px;
  gap: 20px;
  align-items: start;
  margin: 0 90px;
}

.two-column-content.tight {
  grid-template-columns: 686px 320px;
  gap: 58px;
  align-items: start;
  margin: 0 90px;
}

.column-main {
  width: 759px;
}
.column-main.tight {
  width: 686px;
}

.column-side {
  width: 320px;
}

.border-box {
  background: white;
  border: 2px solid #000;
  border-radius: 15px;
}

/* 共通フォームスタイル */
.form-group {
  margin-bottom: 25px;
}

.form-label {
  display: block;
  font-size: 12px;
  color: #000;
  margin-bottom: 8px;
  text-align: center;
}

.input-container,
.upload-container,
.textarea-container {
  position: relative;
}

.input-accent,
.upload-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: var(--season-color);
  z-index: 2;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 15px 10px 25px;
  border: 1px solid #000;
  font-size: 14px;
  background: white;
  font-family: inherit;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.upload-container {
  border: 1px solid #000;
  padding: 10px 15px 10px 25px;
  background: white;
  cursor: pointer;
}

.form-file {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.upload-placeholder {
  font-size: 14px;
  color: #666;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkbox-label {
  font-size: 16px;
  color: #000;
}

.submit-btn {
  background: var(--season-color);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  border-radius: 4px;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: var(--season-color);
}

/* 共通ボタンスタイル */
.more-btn-container {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.more-btn {
  position: relative;
  width: 200px;
  height: 45px;
  padding-left: 70px;
  background: #000;
  font-family: "Unbounded", sans-serif;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.more-btn:hover {
  opacity: 0.7;
}

.more-btn-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* パンくずリスト */
.breadcrumbs {
  padding: 30px 90px;
  font-weight: 500;
}

.breadcrumbs * {
  margin-right: 4px;
}

.breadcrumbs a {
  text-decoration: none;
  color: #000;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--season-color);
}

/* 共通カードスタイル */
.card {
  background: white;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* 共通タグスタイル */
.tag {
  background: #ff6400;
  color: white;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
  display: inline-block;
  margin-right: 8px;
  margin-bottom: 8px;
}

/* レスポンシブデザイン */
@media (max-width: 1024px) {
  .header-left {
    gap: 20px;
  }

  .header-link {
    font-size: 14px;
  }
}

@media (max-width: 1024px) {
  .header-container {
    flex-direction: column;
    gap: 20px;
  }

  .header-center {
    position: static;
    transform: none;
    order: 1;
  }

  .header-left {
    order: 2;
    justify-content: center;
  }

  .header-right {
    order: 3;
    justify-content: center;
  }

  .nav-container {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .header-left {
    flex-direction: column;
    gap: 10px;
  }

  .header-right {
    flex-direction: column;
    gap: 10px;
  }

  .weather-info {
    padding: 6px 12px;
    font-size: 12px;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .nav-btn {
    width: 100%;
    text-align: center;
  }
}

/* 記事一覧ページ共通スタイル */
.niseko-archive {
  padding: 0;
}

.archive-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

/* 記事一覧 */
.articles-list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 46px;
}

/* ページネーション */
.pagination {
  margin-top: 63px;
  text-align: center;
}

.screen-reader-text {
  display: none;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.pagination .page-numbers {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--season-color);
}

.pagination .page-numbers.dots {
  background: transparent;
  color: #666;
  cursor: default;
}

.pagination .page-numbers.dots:hover {
  background: transparent;
}

/* トップページへボタン */
.top-btn-container {
  margin-top: 55px;
  display: flex;
  justify-content: center;
}

.top-btn {
  position: relative;
  width: 190px;
  height: 40px;
  background: var(--season-color);
  font-family: "Unbounded", sans-serif;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.039em;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.top-btn:hover {
  opacity: 0.7;
}

.top-btn-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}

/* 記事なし */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #666;
  font-size: 18px;
}

/* サイドバー */
.archive-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 320px;
  margin-top: 245px;
}

/* 記事一覧ページのレスポンシブデザイン */
@media (max-width: 1024px) {
  .archive-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 20px;
  }

  .archive-main {
    width: 100%;
  }

  .archive-sidebar {
    width: 100%;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .archive-content {
    margin: 0;
  }

  .archive-main {
    width: 100%;
  }

  .archive-header,
  .articles-list {
    padding: 20px;
  }

  .archive-article .article-title {
    width: 100%;
    height: auto;
  }

  .archive-article .article-image {
    width: 100%;
    height: 200px;
  }

  .archive-article .author-bio {
    width: 100%;
    height: auto;
  }
}

/* 著者一覧ページ共通スタイル */
.niseko-member {
  background-color: #ebe6e1;
  min-height: 100vh;
  padding: 0;
}

.member-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
}

.member-grid {
  margin: 20px auto 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

/* メインコンテンツ */
.member-main {
  background: white;
  border: 1px solid #000;
  width: 759px;
  min-height: 100vh;
}

/* セクションヘッダー */
.member-section .section-header,
.radio-section .section-header {
  padding: 40px 40px 20px;
  text-align: center;
}

/* セクション共通スタイル */
.section-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-header::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 6px;
  background-image: var(--title-line-url);
  background-repeat: repeat-x;
  background-size: auto 10px;
}

.section-title {
  position: relative;
  padding: 0 20px;
  width: fit-content;
  background: var(--bg-color);
  font-family: "Unbounded", sans-serif;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: #000;
}

.section-title.bg-white {
  background: white;
}

.section-title.full-width {
  width: 100%;
}

.tight .section-header {
  margin: 0 13px;
}

.section-title.ja-only {
  font-family: inherit;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
}

.section-subtitle {
  margin-top: 20px;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

/* RADIO NISEKO セクション */
.radio-section {
  border-top: 1px solid #000;
}

.radio-members-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  padding: 0 40px 40px;
}

.radio-member-card {
  background: white;
  border: 1px solid #000;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.radio-member-card:hover {
  transform: translateY(-5px);
}

.radio-logo {
  background: #f0f0f0;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #000;
}

.radio-text {
  font-size: 16px;
  font-weight: 700;
  color: #ff6400;
  display: block;
  margin-bottom: 5px;
}

.radio-frequency {
  font-size: 14px;
  color: #000;
}

.radio-member-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.radio-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-member-avatar {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid white;
}

.radio-member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.radio-member-info {
  padding: 20px;
}

.radio-member-name {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.radio-member-description {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
}

.radio-member-btn {
  background: #ff6400;
  color: white;
  border: none;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
  margin-bottom: 15px;
}

.radio-member-btn:hover {
  background: #e55a00;
}

.radio-member-articles {
  border-top: 1px solid #eee;
  padding-top: 15px;
}

/* サイドバー */
.member-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 320px;
  margin-top: 245px;
}

/* 著者一覧ページのレスポンシブデザイン */
@media (max-width: 1024px) {
  .member-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 0 20px;
  }

  .member-main {
    width: 100%;
  }

  .member-sidebar {
    width: 100%;
    margin-top: 0;
  }

  .members-grid,
  .radio-members-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .member-content {
    margin: 0;
  }

  .member-main {
    width: 100%;
  }

  .member-section .section-header,
  .radio-section .section-header,
  .recruitment-section {
    padding: 20px;
  }

  .members-grid,
  .radio-members-grid {
    padding: 0 20px 20px;
  }

  .recruitment-card {
    flex-direction: column;
    text-align: center;
  }

  .recruitment-image {
    width: 100%;
    height: 150px;
  }
}

/* 投稿記事カード */
.article-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 320px;
  background: white;
  border-top: 2px solid #000;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.article-card:hover {
  opacity: 0.8;
}

.article-card-content {
  flex: 1;
  position: relative;
  padding: 43px 20px 10px;
}

.article-card-cat {
  position: absolute;
  top: -2px;
  left: 0;
  padding: 4px 12px;
  background: var(--season-color);
  font-size: 14px;
  font-weight: 500;
}

.article-card-title {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  line-height: 1.33;
  letter-spacing: 0.03em;
}

.article-card-tags {
  margin-top: 4px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.article-card-tag {
  color: #000;
  font-size: 12px;
  line-height: 1.67;
  letter-spacing: 0.039em;
}

.article-card-imageBox {
  position: relative;
  width: 100%;
  height: 213px;
  overflow: hidden;
}

.article-card-imageBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/213;
  object-fit: cover;
}

.article-card-date {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 4px 12px;
  background: var(--season-color);
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.article-card-writer {
  min-height: 126px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}

.article-card-writer-title-imgBox {
  position: absolute;
  top: -8px;
  left: 20px;
}

.article-card-writer-title-imgBox img {
  width: 58px;
  height: auto;
}

.article-card-writer-avatar {
  position: relative;
  padding-left: 16px;
}

.article-card-writer-avatar-imgBox {
  margin-top: 10px;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  border: 1px solid #000;
  overflow: hidden;
}

.article-card-writer-avatar-imgBox img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.article-card-writer-content {
  position: relative;
  padding: 20px 20px 30px 0;
}

.article-card-writer-name {
  font-weight: 500;
  line-height: 1.25;
}

.article-card-writer-excerpt {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.04em;
}

.article-card-arrowBox::before {
  content: "";
  position: absolute;
  border: 17px solid var(--season-color);
  border-top-color: transparent;
  border-left-color: transparent;
  height: 0;
  width: 0;
  bottom: 0;
  right: 0;
  z-index: 0;
}

.article-card-arrow {
  position: absolute;
  bottom: 10px;
  right: 7px;
  transition: all 0.3s ease;
}

.article-card:hover .article-card-arrow {
  transform: translateX(4px);
}

/* INFORMATION カード */
.info-card {
  position: relative;
  background: white;
  border-radius: 160px 160px 0 0;
  width: 320px;
  height: 408px;
  text-align: center;
  position: relative;
  display: block;
  border-bottom: 2px solid #000;
}

.info-card-number {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4px;
  border-bottom: 1px dashed #000;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  line-height: 1.18;
  letter-spacing: 0.05em;
}

.info-card-cat {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--season-color);
  width: 83px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  border-radius: 50%;
  white-space: nowrap;
}

.info-card-image {
  margin: 10px 10px 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
}

.info-card-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.info-card-content {
  position: relative;
  margin-top: -32px;
  width: 100%;
  padding: 12px 18px 0;
  background: white;
}

.info-card-date {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.info-card-title {
  margin-top: 8px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.info-card-btnBox {
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.info-card-btn {
  position: relative;
  width: 120px;
  height: 30px;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 22px;
  font-family: "Unbounded", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.info-card-btn:hover {
  opacity: 0.8;
}

.info-card-btn-arrow {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}

/* THE SAIKO MAKERS カード */
.maker-card {
  position: relative;
  width: 320px;
  height: 452px;
  background: white;
  padding: 0 18px;
  overflow-y: visible;
}

.maker-card::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 0;
  height: calc(100% - 22px);
  border-left: 1px dashed #000;
}

.archive-content .maker-card::before {
  content: none;
}

.maker-card:first-of-type::before {
  content: none;
}

.maker-card-date {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  color: white;
}

.maker-card-title {
  margin-top: 35px;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.03em;
  overflow: hidden;
}

.maker-card-imageBox {
  margin-top: 20px;
  width: 100%;
  height: 190px;
  padding: 4px;
  border: 1px solid #000;
  aspect-ratio: 278/182;
  overflow: hidden;
}

.maker-card-imageBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 278/182;
  object-fit: cover;
}

.maker-card-writerBox {
  margin-top: 24px;
  width: 100%;
}

.maker-card-writer-title {
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
  line-height: 2.16;
  letter-spacing: 0.08em;
  text-align: center;
}

.maker-card-writer {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.03em;
  text-align: center;
}

.maker-card-btnBox {
  margin-top: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.maker-card-btn {
  position: relative;
  width: 175px;
  height: 40px;
  padding-left: 44px;
  background: var(--season-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 24px;
  transition: opacity 0.3s ease;
}

.maker-card-btn:hover {
  opacity: 0.8;
}

.maker-card-btn-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.maker-card-corner {
  position: absolute;
  width: 22px;
  height: 22px;
  background: #ebe6e1;
  border-radius: 50%;
  z-index: 1;
}
.maker-card-corner--leftTop {
  top: -11px;
  left: -11px;
}
.maker-card-corner--rightTop {
  top: -11px;
  right: -11px;
}
.maker-card-corner--leftBottom {
  bottom: -11px;
  left: -11px;
}
.maker-card-corner--rightBottom {
  bottom: -11px;
  right: -11px;
}

/* メンバーカード */
.member-card {
  width: 320px;
  background: white;
  border-top: 2px solid #000;
  overflow: hidden;
  transition: all 0.3s ease;
}

.member-card-imgBox {
  position: relative;
  width: 100%;
  height: 200px;
  aspect-ratio: 320/200;
}

.member-card-imgBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 320/200;
  object-fit: cover;
}

.member-card-avatarBox {
  position: absolute;
  bottom: -39px;
  right: 18px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid #000;
  overflow: hidden;
  z-index: 1;
}

.member-card-avatarBox img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.member-card-content {
  padding: 20px 20px 18px;
}

.member-card-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.member-card-description {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
}

.member-card-btn {
  margin-top: 10px;
  position: relative;
  width: 100%;
  height: 30px;
  background: var(--season-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.member-card-btn:hover {
  opacity: 0.7;
}

.member-card-btn-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  height: 9px;
  width: auto;
  transform: translateY(-50%);
}

.member-card-articles {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.member-card-article {
  position: relative;
  width: 100%;
  min-height: 65px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.57;
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s ease;
}

.member-card-article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000;
}

.member-card-article:hover {
  opacity: 0.7;
}

.member-card-article-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 18px;
  height: 18px;
}

.member-card-article-arrow svg path {
  fill: var(--season-color);
}

.member-recruitment-card {
  margin-top: 60px;
  width: 100%;
  background: white;
  border: 1px solid #000;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
}

.member-recruitment-image {
  width: 320px;
  aspect-ratio: 320 / 243;
  overflow: hidden;
}

.member-recruitment-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 320 / 243;
  object-fit: cover;
}

.member-recruitment-content {
  flex: 1;
  padding-top: 20px;
}

/*--------------------------------
  サイドバー関連
--------------------------------*/

/* 投稿フォーム */
.post-common-form {
  height: 630px;
  background: white;
  border: 2px solid #000;
  border-radius: 15px;
}

.form-subtitle {
  padding: 16px 0;
  font-weight: 500;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.form-title {
  padding: 8px 0;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.04em;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
}

.submission-form {
  padding: 16px 30px 0;
}

.form-group {
  margin: 0;
}

.form-group + .form-group {
  margin-top: 5px;
}

.form-label {
  display: block;
  font-size: 12px;
  color: #000;
  margin-bottom: 3px;
  text-align: center;
  line-height: 1.33;
}

.input-container,
.upload-container,
.textarea-container {
  position: relative;
}

.input-accent,
.upload-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 6px;
  height: 100%;
  background: #ff6400;
  z-index: 2;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 6px 16px;
  border: 1px solid #000;
  font-size: 12px;
  line-height: 1;
  background: white;
  font-family: inherit;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.upload-container {
  border: 1px solid #000;
  padding: 10px 15px 10px 25px;
  background: white;
  cursor: pointer;
}

.form-file {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.upload-placeholder {
  font-size: 14px;
  color: #666;
}

.agreement-text {
  font-size: 12px;
  text-align: center;
  line-height: 1.33;
  margin-top: 22px;
}

.checkbox-container {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.checkbox-label {
  font-size: 16px;
  color: #000;
}

.submit-btn {
  margin: 16px auto 0;
  background: #ff6400;
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: block;
  border-radius: 4px;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #e55a00;
}

/* サイドバー（メイン部分） */
.sidebar-main {
  margin-top: 22px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
  border: 2px solid #000;
  border-radius: 15px;
}

/* 共通 - サイドバー（メイン部分） */
.sidebar-main-title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.08em;
  text-align: center;
}

.sidebar-main-subtitle {
  margin-top: 3px;
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.sidebar-main-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-main-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sidebar-main-item:hover {
  opacity: 0.7;
}

.sidebar-main-item-content {
  flex: 1;
}

.sidebar-main-item-cat {
  width: fit-content;
  background: var(--season-color);
  padding: 4px 8px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.039em;
  white-space: nowrap;
}

.sidebar-main-item-title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.04em;
}

.sidebar-main-item-imgBox {
  width: 110px;
  height: 110px;
  aspect-ratio: 1/1;
  overflow: hidden;
}

.sidebar-main-item-imgBox img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* THE SAIKO MAKERS */
.sidebar-makers {
}

.sidebar-makers-subtitle {
  margin-top: 12px;
  padding: 6px 0;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
}

.sidebar-makers-item {
  position: relative;
}

.sidebar-makers-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--season-color);
}

.sidebar-makers-item-content {
  position: relative;
  padding: 20px 0 0 22px;
  max-height: 110px;
  overflow: hidden;
}

/* CATEGORY */
.sidebar-category {
  margin-top: 24px;
  padding: 0 10px;
}

.sidebar-category-title {
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.26;
  letter-spacing: 0.13em;
  text-align: center;
}

.sidebar-category-nav-container {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.sidebar-category-nav {
  background: var(--season-color);
  color: #000;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.039em;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.sidebar-category-links {
  margin-top: 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-category-link {
  position: relative;
  width: 100%;
  height: 35px;
  background: white;
  border-radius: 20px;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.039em;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sidebar-category-link:hover {
  opacity: 0.7;
}

.sidebar-category-link-arrow {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
}

/* RADIO FM 76.2 */
.sidebar-radio {
  margin-top: 28px;
  padding: 18px 40px 25px;
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
}

.sidebar-radio-description {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.sidebar-radio-bannerBox {
  margin-top: 12px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sidebar-radio-banner {
  width: 228px;
  transition: opacity 0.3s ease;
}

.sidebar-radio-banner:hover {
  opacity: 0.7;
}

.sidebar-radio-banner img {
  width: 100%;
  height: auto;
}

/*--------------------------------
  共通フッター関連
--------------------------------*/

/* COLUMN セクション */
.column-section {
  padding: 80px 0 50px;
}

.category-filters {
  margin: 36px auto 0;
  padding: 0 20px;
}

.main-categories {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.category-btn {
  background: var(--season-color);
  border: none;
  padding: 8px 24px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 24px;
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
  opacity: 0.7;
}

.sub-categories {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 100%;
}

.sub-category-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 1200px; /* 10個のボタンが入る幅を制限 */
}

.sub-category-btn {
  background: white;
  color: #000;
  border: 1px solid #000;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.sub-category-btn:hover {
  opacity: 0.7;
}

/* LINKS セクション */
.links-section {
  padding: 0 0 60px;
}

.links-banner-grid {
  max-width: 1280px;
  width: fit-content;
  margin: 40px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.links-banner-item {
  background: #f0f0f0;
  border: 1px solid #ccc;
  width: 358px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #666;
}

/* MEMBERSHIP セクション */
.membership-section {
  position: relative;
  background: white;
  padding: 131px 0 148px;
}

.membership-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ebe6e1 transparent transparent transparent;
  border-width: 75px 50vw 0px 50vw;
}

.membership-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ebe6e1 transparent;
  border-width: 0px 50vw 75px 50vw;
}

.membership-container {
  max-width: 1280px;
  margin: 36px auto 0;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 45px;
}

.membership-left {
  width: 471px;
  min-height: 475px;
}

.membership-title {
  padding: 12px 0;
  border-top: 1px dashed #000;
  border-bottom: 1px dashed #000;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
}

.membership-members-grid {
  margin: 20px auto 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.membership-member-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.membership-member-avatar {
  display: block;
  width: 114px;
  height: 114px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  overflow: hidden;
}

.membership-member-position {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.04em;
}

.membership-member-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.and-more-btn-container {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}

.and-more-btn {
  position: relative;
  width: 200px;
  height: 45px;
  background: #000;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.and-more-btn:hover {
  opacity: 0.7;
}

.and-more-btn-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.membership-right {
  width: 320px;
}

/* メンバー募集セクション */
.recruitment-section {
  padding: 20px 0 33px;
  border-top: 1px solid #000;
}

.recruitment-card {
  background: white;
  border: 1px solid #ccc;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-radius: 8px;
}

.membership-recruitment-content {
  padding: 20px 0 33px;
  width: 100%;
  border: 2px solid #000;
  border-radius: 15px;
}

.membership-recruitment-subtitle {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  letter-spacing: 0.04em;
  text-align: center;
}

.membership-recruitment-title {
  position: relative;
  padding: 0 20px;
  width: 100%;
  height: 40px;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-align: center;
  vertical-align: bottom;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.membership-recruitment-title-deco {
  position: absolute;
  top: 0;
  left: 20px;
  width: calc(100% - 40px);
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.membership-recruitment-imageBox {
  margin-top: 16px;
  width: 100%;
  aspect-ratio: 320 / 205;
  overflow: hidden;
}

.membership-recruitment-imageBox img {
  width: 100%;
  height: 205px;
  aspect-ratio: 320 / 205;
  object-fit: cover;
}

.membership-recruitment-text {
  margin-top: 14px;
  text-align: center;
  font-weight: 500;
  line-height: 1.375;
  letter-spacing: 0.04em;
}

.membership-recruitment-description {
  font-size: 16px;
  color: #000;
  margin-bottom: 20px;
}

.membership-recruitment-btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 14px;
}

.membership-recruitment-btn {
  position: relative;
  width: 200px;
  height: 45px;
  background: var(--season-color);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.membership-recruitment-btn:hover {
  opacity: 0.7;
}

.membership-recruitment-btn-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* フッター */
.main-footer {
  padding: 0;
}

.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px 40px;
  text-align: center;
}

.footer-title {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}

.footer-btn-allArticles-container {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.footer-btn-allArticles {
  position: relative;
  width: 200px;
  height: 45px;
  background: white;
  border: 1px solid #000;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  border-radius: 24px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-btn-allArticles:hover {
  opacity: 0.7;
}

.footer-btn-allArticles-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

footer .nav-container {
  margin-top: 46px;
}

.footer-links {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-link {
  color: #000;
  text-decoration: none;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0.039em;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--season-color);
}

.footer-bottom {
  background: #000;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}
