/* ==========================================================================
   1. BASE & SETTINGS (基本設定)
   ========================================================================== */
:root {
  --gold-main: #a98f56;
  --bg-light: #f9f7f2;
  --font: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

html {
  scrollbar-gutter: stable;
}

body {
  background-color: #fff;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open::after {
  opacity: 1;
  visibility: visible;
}

.content p {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 0;
}

/* ==========================================================================
   2. NAVIGATION & MENU (メニュー・ハンバーガー)
   ========================================================================== */
.sticky-nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 2000;
  height: 0;
  pointer-events: none;
}

/* --- Trigger (Button) --- */
.menu-trigger {
  pointer-events: auto;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 44px;
  height: 44px;
  z-index: 1001;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-trigger.active {
  position: fixed;
  top: 8px;
  right: 8px;
}

.menu-trigger span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.menu-trigger.is-black span {
  background-color: #5b513e;
}

.menu-trigger.is-light span,
.menu-trigger.active span {
  background-color: #fff !important;
}

.menu-trigger.active span {
  mix-blend-mode: normal !important;
  box-shadow: none;
}

.menu-trigger span:nth-child(1) { top: 14px; }
.menu-trigger span:nth-child(2) { top: 21px; }
.menu-trigger span:nth-child(3) { top: 28px; }

.menu-trigger.active span:nth-child(1) { transform: translateY(7px) rotate(-45deg); }
.menu-trigger.active span:nth-child(2) { opacity: 0; }
.menu-trigger.active span:nth-child(3) { transform: translateY(-7px) rotate(45deg); }

/* --- Nav Panel & Overlay --- */
.nav-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100vh;
  background-color: rgba(155, 132, 79, 0.95);
  z-index: 1000;
  transition: right 0.4s ease-in-out;
  overflow-y: auto;
  box-shadow: -1px 0 20px rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.nav-wrapper.active {
  right: 0;
  pointer-events: auto;
}

.nav-inner { padding: 60px 30px; }
.nav-list { list-style: none; padding: 0; margin: 0; }
.nav-list>li { border-bottom: 1px solid rgba(255, 255, 255, 0.3); }

.nav-list a {
  display: block;
  padding: 16px 0;
  color: #fff;
  text-decoration: none;
  font-family: var(--font);
  font-size: 15px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.sub-list { list-style: none; padding-bottom: 15px; }
.sub-list a { padding: 6px 0 6px 10px; font-size: 14px; opacity: 0.8; }

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
  cursor: pointer;
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ==========================================================================
   3. HERO & VIDEO SECTION (メインビジュアル)
   ========================================================================== */
.award-hero {
  display: flex;
  flex-direction: column;
  position: relative;
}

.video-section {
  position: relative;
  height: 65vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  top: -290px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: -1;
}

.inner {
  max-width: 500px;
  margin: 0 auto;
}

.scrolling-image {
  width: 100%;
  height: 30vw;
  min-height: 150px;
  max-height: 400px;
  background-image: url('/doc/special/award/2025/asset/img/mv-course-img.png');
  background-repeat: repeat-x;
  background-size: auto 100%;
  background-position: 0 0;
  animation: bg-scroll-left 40s linear infinite;
}

@keyframes bg-scroll-left {
  from { background-position: 0 0; }
  to { background-position: -4070px 0; }
}

.award-title {
  width: 80%;
  margin: calc(210 / 750 * 100vw) auto calc(130 / 750 * 100vw);
}

.award-intro p {
  font-size: 0.95rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 35px;
  opacity: 0.95;
}

/* ==========================================================================
   4. ABOUT SECTION (アワードについて)
   ========================================================================== */
.hero-about {
  background: #000;
  margin-top: calc(-60 / 750 * 100vw);
  position: relative;
  z-index: -1;
}

.about-inner {
  background: #a98f56;
  background: linear-gradient(0deg, rgba(169, 143, 86, 1) 0%, rgba(169, 143, 86, 100) 51%, rgba(169, 143, 86, 0.71) 74%, rgba(0, 0, 0, 0) 100%);
}

.about-inner-block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}

.about-ttl { margin: 0 calc(100 / 750 * 100vw); }
.about-ttl img { width: 100%; }

.about-text { margin: calc(-60 / 750 * 100vw) calc(40 / 750 * 100vw) 0; }
.about-text p { color: #fff; text-align: justify; margin-bottom: calc(50 / 750 * 100vw); }
.about-text-box {
  border: 1px solid #fff;
  padding: calc(20 / 750 * 100vw);
  font-size: 13px !important;
}

/* ==========================================================================
   5. PRIZE & RANKING (各賞・ランキング)
   ========================================================================== */
.award-contents {
  background: #f7f3e4 url(/doc/special/award/2025/search/asset/img/award-contents-bg-sp.png) no-repeat top center;
  background-size: cover;
  background-attachment: fixed;
  padding-bottom: 30px;
}

.award-heading {
  text-align: center;
  padding: calc(80 / 750 * 100vw) calc(154 / 750 * 100vw) 0;
}

.award-heading img {
  display: block;
  width: calc(442 / 750 * 100vw);
  margin: 0 auto;
}

/* コースリスト（検索結果） */
.course-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: calc(24 / 750 * 100vw);
  padding: 0 calc(24 / 750 * 100vw);
}

/* SP: 2カラム */
.course-list .course-card {
  width: calc(50% - (12 / 750 * 100vw));
  box-sizing: border-box;
  margin-bottom: 0;
  padding: 0;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 calc(4 / 750 * 100vw) calc(16 / 750 * 100vw) rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.course-list a {
  text-decoration: none;
  color: inherit;
}

.course-list .course-card:hover {
  /* box-shadow: none; */
}

.course-info {
  display: flex;
  flex-direction: column;
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* コースビジュアル */
.course-list .course-visual {
  position: relative;
  overflow: hidden;
  padding: calc(20 / 750 * 100vw) calc(20 / 750 * 100vw) 0;
  margin-bottom: calc(8 / 750 * 100vw);
  background: #fff;
}

.course-list .course-visual .image-wrapper {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

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

/* コース情報 */
.course-list .course-info {
  padding: 0 calc(20 / 750 * 100vw) 0;
  margin-bottom: calc(20 / 750 * 100vw);
}

.course-list .course-header {
  margin-bottom: calc(8 / 750 * 100vw);
}

/* 賞バッジ */
.course-list .award-badge {
  display: inline-block;
  font-family: var(--font);
  font-size: calc(22 / 750 * 100vw);
  font-weight: 500;
  padding: calc(3 / 750 * 100vw) calc(4 / 750 * 100vw);
  line-height: 1;
  margin-bottom: calc(8 / 750 * 100vw);
  /* letter-spacing: 0.05em; */
  vertical-align: top;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}

.course-list .award-badge.gold {
  background: #c5a05a;
  color: #fff;
}

.course-list .award-badge.silver {
  background: #b0b0b0;
  color: #fff;
}

.course-list .award-badge.bronze {
  background: #cd7f32;
  color: #fff;
}

.course-list .award-badge.department {
  background: #5b513e;
  color: #fff;
}

.course-list .award-badge.area {
  background: #fff;
  border: 1px solid #5b513e;
  color: #5b513e;
}

/* コース名 */
.course-list .course-name {
  font-size: calc(28 / 750 * 100vw);
  line-height: 1.2;
  margin: 0 0 calc(2 / 750 * 100vw);
  color: #5b513e;
  font-family: var(--font);
}

/* ロケーション */
.course-list .course-location {
  font-size: calc(24 / 750 * 100vw);
  color: #5b513e;
}

/* Pick UP Golfer's Review */
.course-list .pickup-review {
  display: inline-flex;
  width: 100%;
  align-items: center;
  gap: calc(8 / 750 * 100vw);
  font-size: calc(22 / 750 * 100vw);
  color: #c5a05a;
  text-decoration: none;
  font-family: var(--font);
  margin-bottom: calc(6 / 750 * 100vw);
  border-bottom: 1px solid #c5a05a;
}

.course-list .pickup-review .icon {
  background-image: url("/doc/special/award/2025/search/asset/img/icon-review.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: calc(21 / 750 * 100vw);
  height: calc(21 / 750 * 100vw);
}


/* レビューテキスト */
.course-list .review-text {
  font-size: calc(22 / 750 * 100vw);
  line-height: 1.4;
  color: #5b513e;
  margin: 0;
  font-family: var(--font);
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
  text-align: justify;
}

/* 検索結果なしメッセージ */
.course-list .no-results {
  width: 100%;
  text-align: center;
  padding: calc(60 / 750 * 100vw);
  font-family: var(--font);
  font-size: calc(18 / 750 * 100vw);
  color: #5b513e;
  list-style: none;
}

.course-list .error-message {
  width: 100%;
  text-align: center;
  padding: calc(60 / 750 * 100vw);
  font-family: var(--font);
  font-size: calc(18 / 750 * 100vw);
  color: #c5a05a;
  list-style: none;
}

/* ==========================================================================
   8. AWARD SEARCH SECTION (絞り込み検索)
   ========================================================================== */
.award-search-sp {
  padding: calc(60 / 750 * 100vw) 0;
  background: transparent;
}

.award-search-sp .search-button {
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  height: calc(97 / 750 * 100vw);
  margin: 0 auto;
  background: #fff;
  border: none;
  border-radius: 8px;
  color: #c5a05a;
  font-size: calc(37 / 750 * 100vw);
  font-weight: 500;
  letter-spacing: -0.02em;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  position: relative;
}

.award-search-sp .search-button::before {
  content: '';
  position: absolute;
  left: calc(55 / 750 * 100vw);
  width: calc(37 / 750 * 100vw);
  height: calc(35 / 750 * 100vw);
  background-image: url("/doc/special/award/2025/search/asset/img/icon-search.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* オーバーレイ背景 */
.award-search-sp .search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.award-search-sp .search-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* 検索ボックス（オーバーレイで表示） */
.award-search-sp .search-box {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.award-search-sp .search-box.is-active {
  opacity: 1;
  visibility: visible;
}

.award-search-sp .search-box-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 10px 10px 0 0 ;
  padding: 20px 15px 20px;
  box-sizing: border-box;
  background-color: #fff;
}

/* 閉じるボタン */
.award-search-sp .search-close {
  position: absolute;
  top: -50px;
  right: 8px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  padding: 0;
}

.award-search-sp .search-close span {
  display: block;
  position: absolute;
  left: 10px;
  width: 24px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
}

.award-search-sp .search-close span:nth-child(1) {
  top: 14px;
  transform: translateY(7px) rotate(-45deg);
}

.award-search-sp .search-close span:nth-child(2) {
  top: 21px;
  opacity: 0;
}

.award-search-sp .search-close span:nth-child(3) {
  top: 28px;
  transform: translateY(-7px) rotate(45deg);
}

/* 検索ボックス内のセレクトボックス調整 */
.award-search-sp .search-box .region-select-label {
  display: flex;
  align-items: center;
  padding: 10px 5px 10px 10px;
  border-radius: 5px;
  background: #fff;
  margin: 0;
}

.award-search-sp .search-box .region-select-label span {
  width: 100px;
  font-family: var(--font);
  white-space: nowrap;
}

.award-search-sp .search-box .custom-select {
  position: relative;
  width: 100%;
}

.award-search-sp .search-box .custom-select-button {
  font-family: var(--font);
  border: none;
  height: 44px;
  font-size: 16px;
  padding: 0 35px 0 10px;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  background: #fff;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.award-search-sp .search-box .custom-select-button::after {
  content: '';
  position: absolute;
  right: 15px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid #61470F;
  border-bottom: 2px solid #61470F;
  transform: rotate(45deg);
}

.award-search-sp .search-box .custom-select-text {
  color: #61470F;
  display: block;
  font-weight: bold;
}

.award-search-sp .search-box .custom-select-dropdown {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  max-height: 300px;
  overflow-y: auto;
}

.award-search-sp .search-box .custom-select-dropdown.is-open {
  display: block;
}

.award-search-sp .search-box .custom-select-option {
  font-family: var(--font);
  padding: 12px 15px;
  cursor: pointer;
  font-size: 16px;
  color: #61470F;
}

.award-search-sp .search-box .custom-select-option:hover {
  background: #f5f5f5;
}

.award-search-sp .search-box .custom-select-option.is-disabled {
  color: #ccc !important;
  cursor: not-allowed !important;
  opacity: 0.5;
  background: transparent !important;
}

.award-search-sp .search-box .custom-select-option.is-disabled:hover {
  background: transparent !important;
}

.award-search-sp .search-box .sp-btn-container {
  padding: 20px 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.award-search-sp .search-box .award-reset-btn-sp {
  background-color: #fff;
  color: #666;
  border: 1px solid #ddd;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  height: 54px;
  font-family: var(--font);
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: background-color 0.2s, border-color 0.2s;
}

.award-search-sp .search-box .award-reset-btn-sp:hover {
  background-color: #f5f5f5;
  border-color: #ccc;
}

.award-search-sp .search-box .award-search-btn-sp {
  background-color: #c5a05a;
  color: #fff;
  border: none;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(197, 160, 90, 0.3);
  cursor: pointer;
  width: 100%;
  max-width: 400px;
  height: 54px;
  font-family: var(--font);
  font-size: 18px;
  letter-spacing: 0.1em;
  position: relative;
  padding-right: 40px;
}

.award-search-sp .search-box .award-search-btn-sp::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
}

/* --- Mobile Only --- */
@media (max-width: 767px) {
  .pc-btn-container {
    display: none !important;
  }

  .award-search-pc {
    display: none;
  }
}

/* --- PC Only (768px+) --- */
@media (min-width: 768px) {
  .content p { font-size: 16px; }

  /* 検索フォーム PC/SP切り替え */
  .award-search-pc {
    display: block !important;
    padding: 0;
    margin-bottom: 55px;
  }

  .award-search-sp {
    display: none !important;
  }

  .award-heading {
    width: 364px;
    padding: 90px 0 30px;
    margin: 0 auto;
  }

  .award-search-pc .search-box {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100px;
    max-width: 740px;
    margin: 0 auto;
    padding: 0 14px;
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 25px 8.25px rgba(69, 62, 47, 0.06);
    box-sizing: border-box;
  }

  .award-search-pc .region-select-label {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
    border-right: 1px dotted #e8e8e8;
    padding: 0 25px;
  }

  .award-search-pc .region-select-label:last-child {
    border-right: none;
  }

  .award-search-pc .region-select-label span {
    font-family: var(--font);
    color: #a98f56;
    font-weight: 500;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }

  .award-search-pc .custom-select {
    position: relative;
    width: 100%;
    border: 1px solid #e8e8e8;
    max-width: 160px;
    box-sizing: border-box;
  }

  .award-search-pc .custom-select.award {
    max-width: 240px;
    width: 240px;
  }

  .award-search-pc .custom-select-button {
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    border-radius: 0;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #333;
    overflow-x: hidden;
  }

  .award-search-pc .custom-select-button::before {
    content: '';
    position: absolute;
    display: block;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #fff;
    width: 30px;
    pointer-events: none;
  }

  .award-search-pc .custom-select-button::after {
    content: '';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 8px;
    border-right: 2px solid #a98f56;
    border-bottom: 2px solid #a98f56;
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .award-search-pc .custom-select-button.is-open::after {
    transform: translateY(-50%) rotate(225deg);
  }

  .award-search-pc .custom-select-text {
    color: #333;
    display: inline-block;
  }

  .award-search-pc .custom-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    background: #ffffff;
    z-index: 1000;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    margin-top: 4px;
    border: 1px solid #d3d2d2;
  }

  .award-search-pc .custom-select-dropdown.is-open {
    display: block;
  }

  .award-search-pc .custom-select-option {
    font-family: var(--font);
    padding: 12px 15px;
    box-sizing: border-box;
    cursor: pointer;
    font-size: 16px;
    color: #a98f56;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    min-width: 160px;
  }

  .award-search-pc .custom-select-option:hover {
    background-color: #f5f5f5;
  }

  .award-search-pc .custom-select-option.is-selected {
    background-color: #f9f7f2;
    font-weight: 500;
  }

  .award-search-pc .custom-select-option.is-disabled {
    color: #ccc;
    cursor: not-allowed;
    opacity: 0.5;
    background-color: transparent;
  }

  .award-search-pc .custom-select-option.is-disabled:hover {
    background-color: transparent;
  }

  .award-search-pc .sp-btn-container {
    display: none !important;
  }

  .award-search-result {
    padding-bottom: 80px;
  }

  /* Menu PC */
  .menu-trigger { width: 54px; height: 54px; top: 20px; right: 20px; }
  .menu-trigger span { width: 34px; }
  .menu-trigger span:nth-child(1) { top: 13px; }
  .menu-trigger span:nth-child(2) { top: 24px; }
  .menu-trigger span:nth-child(3) { top: 35px; }
  .menu-trigger.active span:nth-child(1) { transform: translateY(11px) rotate(-45deg); }
  .menu-trigger.active span:nth-child(3) { transform: translateY(-11px) rotate(45deg); }

  .nav-wrapper { width: 400px; }
  .nav-list a { font-size: 18px; }
  .sub-list a { font-size: 16px; }

  /* Hero PC */
  .video-section { height: 75vh; }
  .award-title { width: 100%; max-width: 666px; margin: 210px auto 170px; }
  .scrolling-image { height: 363px; }
  .video-bg { top: -360px; }

  /* About PC */
  .hero-about { margin-top: -100px; }
  .about-inner { padding: 170px 0 100px; }
  .about-inner-block {
    max-width: 1190px;
    flex-wrap: nowrap;
    flex-direction: initial;
    margin: 0 auto;
    justify-content: space-between;
    gap: 60px;
    padding: 0 40px;
  }
  .about-ttl { width: 452px; margin: 0; }
  .about-text { width: 590px; margin: 0; }
  .about-text p { margin-bottom: 24px; font-size: 17.8px; line-height: 1.6; }
  .about-text-box { padding: 10px; font-size: 15px !important; text-align: center !important; }

  /* Layout PC */
  .award-heading { padding: 110px 0 60px; }
  .award-contents {
    background: #f7f3e4 url(/doc/special/award/2025/search/asset/img/award-contents-bg-pc.png) no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: repeat-x;
    padding-bottom: 0;
  }

  .region-select-label {
    display: none;
  }

  /* タブレット〜PC: 3カラム */
  .course-list {
    gap: 20px;
    margin: 0 auto 14px;
    max-width: 1420px;
    margin-bottom: 14px;
  }

  .course-list .course-card {
    width: calc(33.333% - 14px);
  }

  .course-list .course-visual {
    padding: 20px 20px 10px;
    margin-bottom: 0;
  }

  .course-list .course-info {
    padding: 0 20px 0;
    margin-bottom: 20px;
  }

  .course-list .award-badge {
    font-size: 13px;
    padding: 4px 4px;
    margin-bottom: 8px;
  }

  .course-list .course-header {
    margin-bottom: 8px;
  }

  .course-list .course-name {
    font-size: 17px;
    margin-bottom: 2px;
  }

  .course-list .course-location {
    font-size: 13px;
  }

  .course-list .pickup-review {
    font-size: 14px;
    gap: 8px;
    margin-bottom: 6px;
  }

  .course-list .review-text {
    font-size: 14px;
  }

  .course-list .pickup-review .icon {
    width: 21px;
    height: 21px;
  }

  .course-list .no-results,
  .course-list .error-message {
    padding: 60px;
    font-size: 18px;
  }

  /* Hover PC */
  .award-search-btn-pc:hover { background-color: #c5a05a; color: #ffffff; }
  .award-search-btn-pc:hover::after { border-color: #ffffff; }

  .fixed-footer-btn, .sp-btn-container { display: none !important; }
}

/* --- Large PC (1200px+) --- */
@media (min-width: 1200px) {
  /* 4カラムレイアウト */
  .course-list .course-card {
    width: calc(25% - 15px);
  }
}