/* ==========================================================================
   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;
}

.s-pc {
  display: none;
}

/* ==========================================================================
   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: -310px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
  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(174, 147, 89, 1) 0%, rgba(174, 147, 89, 100) 51%, rgba(174, 147, 89, 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: 30px 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/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(50 / 750 * 100vw) 0;
}

.prize {
  padding-top: 20px;
}

.prize-rank {
  padding: 0 15px;
  font-family: var(--font);
}

.prize-heading {
  font-size: 23px !important;
  color: #5b513e;
  font-weight: 500;
  padding-left: 15px;
  border-left: 6px solid #c5a05a;
  margin-bottom: 10px !important;
}

/* --- Sticky Titles --- */
.prze-ttl-img {
  padding: 0 calc(130 / 750 * 100vw);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  transition: none !important;
}

.prze-ttl-img img {
  height: auto;
  display: block;
  transition: none !important;
}

.prze-ttl-img.is-sticky {
  padding-left: calc(220 / 750 * 100vw);
  padding-right: calc(220 / 750 * 100vw);
  transition: padding 0.3s ease-out, box-shadow 0.3s ease-out !important;
}

.prze-ttl-txt {
  padding: 0 calc(40 / 750 * 100vw) calc(45 / 750 * 100vw);
  margin-bottom: 0;
}

/* --- Ranking Cards --- */
.ranking-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ranking-card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.ranking-card a {
  text-decoration: none;
  display: block;
  padding: calc(30 / 750 * 100vw);
}

.js-random-ranking .ranking-card:nth-child(n+4) {
  display: none;
}

.rank-label {
  font-family: var(--font);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  z-index: 10;
  margin-bottom: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpath d='M1,1 L99,1 L84,50 L99,99 L1,99 Z' fill='white' stroke='%23a98f56' stroke-width='3'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--gold-main);
  padding: 3px 15px 0 10px;
  background-color: transparent;
}

.rank-label strong {
  font-size: 26px;
  font-family: var(--font);
}

.rank-1 .rank-label {
  background: var(--gold-main);
  color: #fff;
  padding: 3px 15px 0 10px;
  clip-path: polygon(0 0, 100% 0, 85% 50%, 100% 100%, 0 100%);
}

.course-visual img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Slideshow --- */
.slideshow-container {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* --- Card Details --- */

.course-name {
  margin: 15px 0 4px;
  font-size: 19px;
  line-height: 1.3;
  font-family: var(--font);
  color: #5b513e;
  font-weight: 500;
  text-decoration: none;
}

.course-location {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  font-weight: 500;
}

.detail-ttl {
  font-family: var(--font);
  color: var(--gold-main);
  font-size: 18px;
  border-bottom: 1px solid var(--gold-main);
  margin-bottom: 10px;
  padding-bottom: 5px;
  font-weight: 500;
}

.comment-box {
  margin-top: 10px;
}

.comment-box p {
  font-size: 15px;
  line-height: 1.4;
  text-align: justify;
  padding: 4px;
}

.video-placeholder {
  background: #eee;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sub-ranking-list {
  list-style: none;
  padding: 0;
}

/* ==========================================================================
   6. BUTTONS (検索・固定ボタン)
   ========================================================================== */

/* --- PC Search Button --- */
.pc-btn-container {
  text-align: center;
  margin: 40px auto;
}

.award-search-btn-pc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 600px;
  max-width: 90%;
  height: 70px;
  border: 1px solid #c1a362;
  background-color: #ffffff;
  color: #c1a362;
  text-decoration: none;
  font-size: 28px;
  letter-spacing: 0.1em;
  font-weight: 500;
  font-family: var(--font);
  position: relative;
  transition: all 0.3s ease;
}

.award-search-btn-pc::after {
  content: '';
  position: absolute;
  right: 30px;
  width: 12px;
  height: 12px;
  border-top: 2px solid #c1a362;
  border-right: 2px solid #c1a362;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

/* --- Fixed Footer Button (SP) --- */
.fixed-footer-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 15px 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: all 0.5s ease;
}

.fixed-footer-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fixed-footer-btn a {
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  height: 54px;
  background-color: #c1a362;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.1em;
  position: relative;
  box-shadow: 0 4px 10px rgba(197, 160, 90, 0.3);
}

.fixed-footer-btn a::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/* --- Inline Search Button (SP) --- */
.sp-btn-container {
  padding: 0 0 20px;
  text-align: center;
  background: transparent;
}

.award-search-btn-sp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 40px);
  max-width: 400px;
  height: 50px;
  background-color: #ffffff;
  border: 1px solid #c5a05a;
  color: #c5a05a;
  font-family: var(--font);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.15em;
  position: relative;
  box-sizing: border-box;
}

.award-search-btn-sp::after {
  content: '';
  position: absolute;
  right: 20px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #c5a05a;
  border-right: 1px solid #c5a05a;
  transform: rotate(45deg);
}

/* --- セクション全体 --- */
.gallery-section {
  padding: 60px 0;
  background: linear-gradient(to bottom, #a98f56 0%, #f7f3e4 100%);
  text-align: center;
  overflow: hidden;
}

.gallery-header {
  color: #fff;
  margin-bottom: 30px;
}

.gallery-header .main-ttl {
  font-size: 32px;
  font-family: serif;
}

.gallery-header .en-ttl {
  color: #fff;
}

/* --- スライダー --- */
.photo-slider {
  width: 100%;
  padding: 10px 0 60px;
  margin-bottom: 60px;
  overflow: visible !important;
}

.swiper-slide {
  width: 75%;
  transition: transform 0.4s, opacity 0.4s;
  opacity: 0.4;
  transform: scale(0.9) !important;
}

/* 中央のスライド */
.swiper-slide-active {
  opacity: 1;
  transform: scale(1) !important;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* 矢印とドット */
.swiper-button-prev,
.swiper-button-next {
  color: #a98f56;
  margin-top: calc(-20px - (var(--swiper-navigation-size) / 2));
}

.swiper-pagination-bullet-active {
  background: #a98f56;
}

/* 矢印とドット */
.swiper-button-prev,
.swiper-button-next {
  color: #fff;
}

.swiper-pagination-bullet {
  background: #b9a57e !important;
  opacity: 1;
  transform: scale(0.9) !important;
}

.swiper-pagination-bullet-active {
  background: #5b513e !important;
  transform: scale(1.3) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 24px;
}

/* バックナンバー */
.back-number {
  font-family: var(--font-serif);
}

.bn-ttl {
  font-size: 28px;
  color: #5b513e;
  margin-bottom: 20px;
  font-family: var(--font);
}

.bn-list {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 15px;
}

.bn-list a {
  color: #5b513e;
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font);
  background-color: #fff;
  border-radius: 50px;
  padding: 2px 12px;
  border: 1px solid;
}

/* ==========================================================================
   7. MEDIA QUERIES (レスポンシブ設定)
   ========================================================================== */

/* --- Mobile Only --- */
@media (max-width: 767px) {
  .prze-ttl-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: none !important;
  }

  .prze-ttl-img.is-sticky {
    padding: 0 calc(220 / 750 * 100vw);
    transition: padding 0.3s ease-out, box-shadow 0.3s ease-out !important;
  }

  .prze-ttl-img.is-sticky img {
    transform: scale(0.95);
    transition: transform 0.3s ease-out !important;
  }

  .js-random-ranking .ranking-card:nth-child(n+4) {
    display: none;
  }

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

  .region-select-label {
    display: block;
    position: sticky;
    top: 15.5vw;
    z-index: 100;
    font-size: 16px;
    margin-bottom: 10px;
    color: #C1A362;
    background: #fff;
    margin: 0 15px 40px;
    display: flex;
    align-items: center;
    padding: 10px 5px 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid #C1A362;
  }

  .region-select-label span {
    width: 100px;
    font-family: var(--font);
  }

  .custom-select {
    position: relative;
    width: 100%;
  }

  .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: block;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
  }

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

  .custom-select-text {
    color: #61470F;
    display: inline-block;
  }

  .custom-select-dropdown {
    position: absolute;
    top: 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;
  }

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

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

  /* .custom-select-option.is-selected {
    background: #e8f4f8;
    font-weight: bold;
  } */

  .prize-rank-inner {
    display: block;
  }

  .prize-rank-inner:not(.is-active) {
    display: none;
  }
}

/* --- PC Only (768px+) --- */
@media (min-width: 768px) {
  .s-pc {
    display: block;
  }

  .content p {
    font-size: 16px;
  }

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

  .award-hero {
    background: #000;
    z-index: -1;
    overflow: hidden;
  }

  .video-bg {
    position: absolute;
    top: 340px;
    left: 50%;
    min-width: 1920px;
    min-height: auto;
    width: auto;
    height: auto;
    z-index: -100;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background: url(/doc/special/award/2025/asset/img/video-thumbnail.jpg) center center / cover no-repeat;
  }

  /* 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: 482px;
    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: 150px 0 80px;
  }

  .award-contents {
    background: #f7f3e4 url(/doc/special/award/2025/asset/img/award-contents-bg-pc.png) no-repeat top center;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 0;
  }

  .prize {
    padding-top: 0;
  }

  /* Prize Sticky Header PC */
  .prize-inner {
    display: grid;
    grid-template-columns: 250px 1fr;
    align-items: flex-start;
    gap: 0 15px;
    position: relative;
    max-width: 1320px;
    margin: 0 auto;
  }

  .prize-header {
    position: sticky;
    top: 20px;
    z-index: 10;
    align-self: flex-start;
    margin-bottom: 270px;
  }

  .prze-ttl-img {
    grid-column: 1;
    position: static;
    margin: 0 auto;
    transform: none !important;
    transition: none !important;
    padding: 0;
    max-width: 250px;
  }

  .prze-ttl-img img {
    width: 250px;
  }

  .prze-ttl-txt {
    grid-column: 1;
    z-index: 10;
    font-size: 15px !important;
    color: #333;
    padding: 0;
    text-align: justify;
    max-width: 250px;
    margin: 0 auto;
  }

  .prize-rank {
    max-width: 1000px;
    margin: 0 auto 70px;
    border-bottom: 1px solid #e1e0e0;
    padding-bottom: 30px;
    grid-column: 2;
    grid-row: 1 / 20;
  }

  .prize-heading {
    font-size: 26px !important;
    margin-bottom: 12px !important;
  }

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

  /* Ranking PC */
  .js-random-ranking {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .js-random-ranking .ranking-card {
    width: calc(33.333% - 14px);
    display: block !important;
  }

  .rank-1 .card-details {
    display: flex;
    align-items: baseline;
    gap: 30px;
    margin-top: 20px;
  }

  .rank-1 .comment-box,
  .rank-1 .interview-box {
    flex: 1;
  }

  .comment-box {
    margin-top: 14px;
    margin-bottom: 5px;
  }

  .sub-ranking-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0;
    margin-bottom: 14px;
  }

  .sub-ranking-list .ranking-card {
    width: calc(50% - 10px);
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  .sub-ranking-list .ranking-card a {
    transition-duration: 0.5s;
    padding: 25px 30px;
  }

  .ranking-card a:hover {
    opacity: 0.8;
  }

  .sub-ranking-list.col3 .course-name {
    margin: 10px 0 4px;
    font-size: 20px;
  }

  .sub-ranking-list.col3 .ranking-card {
    width: calc(34% - 20px);
  }

  .sub-ranking-list.col3 .ranking-card a {
    padding: 18px;
  }

  .ranking-card.rank-1 a {
    transition-duration: 0.5s;
    padding: 30px 40px;
  }

  .sub-ranking-list .card-content {
    display: flex;
    flex-direction: column;
  }

  /* Typography PC */
  .rank-label {
    font-size: 22px;
    padding: 3px 20px 0 10px;
    margin-bottom: 12px;
  }

  .rank-label strong {
    font-size: 35px;
  }

  .rank-1 .rank-label {
    font-size: 30px;
    padding: 6px 25px 2px 10px;
    margin-bottom: 15px;
  }

  .rank-1 .rank-label strong {
    font-size: 46px;
  }

  .col3 .rank-label {
    font-size: 18px;
  }

  .col3 .rank-label strong {
    font-size: 28px;
  }

  .col3 .rank-1 .rank-label {
    padding: 3px 15px 0 10px;
  }

  .rank-1 .course-name {
    margin: 20px 0 4px;
  }

  .course-name {
    font-size: 30px;
  }

  .sub-ranking-list .course-name {
    font-size: 24px;
  }

  .detail-ttl {
    font-size: 23px;
    padding-bottom: 2px;
  }

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

  .award-search-btn-pc:hover::after {
    border-color: #ffffff;
  }

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

  .photo-slider {
    margin-bottom: 100px;
  }

  .gallery-section {
    padding: 90px 0;
  }

  .gallery-header .main-ttl {
    font-size: 40px;
    font-family: serif;
  }

  .swiper-slide {
    width: 550px;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 32px;
  }

  .swiper-button-prev {
    left: calc(50% - 275px - 40px);
  }

  .swiper-button-next {
    right: calc(50% - 275px - 40px);
  }

  .bn-ttl {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .bn-list a {
    font-size: 16px;
  }

  .bn-list a:hover {
    color: #fff;
    background-color: #5b513e;
    border: 1px solid #5b513e;
  }
}