@charset "UTF-8";

/*!
 * Clubs Style
 * Author: SSTA
 * Date: 2026-06-16
 */

/* ==============================================
   1. Container Settings
   ============================================== */

html {
  scroll-behavior: smooth;
}

/* ==============================================
   2. Text Description & Notes
   ============================================== */
/* --- PC Layout (1201px~) --- */
.link_inline {
  color: #4a5f70;
  font-weight: 600;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  transition: 0.3s;
}

.link_inline:hover {
  color: #b89a5e;
  text-decoration: none !important;
}

.text_desc {
  margin-bottom: 50px;
}

.contact_box {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
  margin: 0 auto 60px;
  text-align: center;
}

.contact_box_title {
  font-size: 18px;
  font-weight: 700;
  color: #4a5f70;
  margin-bottom: 10px;
}

.contact_box_text {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}


/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {

  .text_desc {
    margin-bottom: 35px;
  }

  .contact_box {
    padding: 15px;
    margin-bottom: 35px;
  }

  .contact_box_title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .contact_box_text {
    font-size: 14px;
    line-height: 1.7;
  }
}

.club_card.is-hidden {
  display: none;
}

.area_title {
  text-align: center;
  font-size: 16px;
  color: #4a5f70;
  margin-bottom: 25px;
  font-weight: 600;
}

.area_title i {
  color: #b89a5e;
}

.area_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0 10px;
  justify-content: center;
}

.nav_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: #fff;
  border: 1px solid #eef1f4;
  color: #4a5f70;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(74, 95, 112, 0.05);
}

.nav_link:hover {
  background: #fcfbf9;
  border-color: #b89a5e;
  color: #b89a5e;
}

.nav_link.active {
  background: #4a5f70;
  border-color: #4a5f70;
  color: #fff;
  box-shadow: 0 4px 10px rgba(74, 95, 112, 0.3);
  transform: translateY(-2px);
}

/* ==============================================
   2. Card Grid Settings
   ============================================== */
.club_cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, 400px);
  gap: 30px;
  margin-top: 50px;
  justify-content: start;
  align-items: start;
}

@media screen and (min-width: 769px) {
  .club_cards {
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  }
}

.club_card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid #eef1f4;
  box-shadow: 0 5px 15px rgba(74, 95, 112, 0.05);
  transition: 0.3s ease;
}

.club_card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74, 95, 112, 0.1);
}

.card_body {
  padding: 30px;
}

/* ==============================================
   3. Text & Photo Area
   ============================================== */
.club_card h3 {
  font-size: 22px;
  color: #4a5f70;
  padding-left: 15px;
  border-left: 4px solid #b89a5e;
  margin-bottom: 25px;
}

.card_body:not(:has(.club_details)) h3 {
  margin-bottom: 0;
}

.club_desc {
  font-size: 14px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 25px;
  padding: 14px;
  background: #fdfaf5;
}

.card_body:not(:has(.club_thumb)):not(:has(.club_thumb_no)) .club_desc {
  margin-bottom: 21px;
}

.club_thumb {
  margin-bottom: 22px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f6f8;
}

.club_thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.club_thumb_no {
  margin-bottom: 22px;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #888;
  background: #f4f6f8;
  border: 1px dashed #d1d8e0;
}

.club_thumb_no img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

/* ==============================================
   4. Details, Buttons & SNS Area
   ============================================== */
.club_details {
  margin-bottom: 0;
}
.schedule_group {
  margin-bottom: 11px;
}

.schedule_group:last-child {
  margin-bottom: 0;
}

.club_details p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 3px;
  display: flex;
  align-items: center;
}

.club_details i {
  color: #b89a5e;
  width: 28px;
  text-align: center;
  flex-shrink: 0;
  margin-right: 3px;
}

.club_details strong {
  font-weight: 600;
  color: #4a5f70;
}

.map_link {
  color: inherit;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
}

.map_link::after {
  content: "\f08e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: 5px;
  font-size: 0.7em;
  color: #c9c9c9;
  transition: 0.3s;
}

.map_link:hover {
  color: #b89a5e;
}

.map_link:hover::after {
  color: #b89a5e;
}

/* SNS Links - Updated for better visibility */
.club_links {
  display: flex;
  gap: 20px;
  padding-top: 13px;
}

.sns_link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: 6px;
  align-items: center;
  font-size: 14px;
  color: #4a5f70;
  text-decoration: none !important;
  font-weight: 600;
  transition: 0.3s;
}

.sns_link i {
  margin-right: 4px;
  font-size: 1.2em;
}

.sns_link:hover {
  color: #b89a5e;
}


/* Action Buttons */
.action_buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 7px;
}

.btn_inquiry {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: #b89a5e;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none !important;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}

.btn_inquiry:hover {
  background: #a0854d;
}

.action_buttons:empty {
  display: none;
}

.btn_sns,
.btn_video {
  flex: 1 1 calc(50% - 5px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: -0.02em;
  text-align: center;
  text-decoration: none !important;
  font-weight: 600;
  transition: 0.3s;
  white-space: nowrap;
}

.action_buttons i {
  margin-right: 4px;
  font-size: 1.2em;
  vertical-align: middle;
}

.btn_sns {
  background: #f0f0f0;
  color: #4a5f70;
}

.btn_sns:hover {
  background: #e0e0e0;
}

.btn_video {
  background: #4a5f70;
  color: #fff;
}

.btn_video:hover {
  background: #3a4b58;
}


@media (max-width: 480px) {
  .action_buttons {
    flex-direction: column;
  }
  .btn_sns,
  .btn_video {
    flex: none;
    width: 100%;
  }
}

/* --- SP Layout (~768px) --- */
@media screen and (max-width: 768px) {
  .area_title {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .area_nav {
    margin-bottom: 20px;
    gap: 8px;
  }

  .nav_link {
    padding: 5px 14px;
    font-size: 14px;
    font-weight: 600;
  }

@media screen and (max-width: 580px) {
  .area_nav {
    max-width: 300px; 
    margin: 0 auto;
  }

  .nav_link {
    flex: 0 1 auto;
  }
}

  .club_cards {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    align-items: start;
  }

  .club_card h3 {
    font-size: 20px;
    margin-bottom: 18px;
    padding-left: 10px;
    border-left: 3px solid #b89a5e;
  }

  .card_body {
    padding: 20px;
  }

  .club_desc {
    padding: 13px;
  }

@media (max-width: 393px) {
  .card_body {
    padding: 19px;
  }

  .club_desc {
    padding: 13px 12px;
    letter-spacing: 0.015em;
  }
}

  .card_body:not(:has(.club_thumb)):not(:has(.club_thumb_no)) .club_desc {
    margin-bottom: 17px;
  }

  .club_thumb,
  .club_thumb_no {
    margin-bottom: 18px;
  }

  .club_details {
    margin-bottom: 0;
  }

  .club_details p {
    margin-bottom: 2.5px;
  }

  .schedule_group {
    margin-bottom: 8px;
  }

  .club_links {
    padding-top: 10px;
  }

  .action_buttons {
    margin-top: 17px;
    margin-bottom: 7px;
  }
}
