@charset "UTF-8";

/* ========================================================
   コープさっぽろグループ 7事業合同就活イベント LP用CSS
   Design System: LINE Clean & Bold Style (DESIGN.md)
   ======================================================== */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  color: #000000;
  background-color: #ffffff;
  font-family: SFPro, -apple-system, BlinkMacSystemFont, Arial, "Noto Sans JP", "Noto Sans KR", sans-serif;
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: normal;
  word-break: break-all;
  overflow-wrap: break-word;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 1.65;
  }
}

/* コンテナ設定（Max 1120px, Padding 24px） */
.site-container {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ヒーロー背景（去年の写真全体配置＋可読性オーバーレイ） */
.hero-bg-wrapper {
  position: relative;
  background-color: #ffffff;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.85) 35%,
    rgba(255, 255, 255, 0.55) 65%,
    rgba(255, 255, 255, 0.25) 100%
  );
  z-index: 1;
}

@media (max-width: 1024px) {
  .hero-bg-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.80) 50%,
      rgba(255, 255, 255, 0.50) 100%
    );
  }
}

/* Google マップ枠 */
.map-frame {
  width: 100%;
  height: 380px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  background-color: #f7f8f9;
}

/* ヒーロー見出し (Desktop: 40px-52px, Mobile: 24px-30px) */
.hero-title {
  font-size: clamp(34px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

@media (max-width: 767px) {
  .hero-title {
    font-size: clamp(22px, 5.8vw, 30px);
    line-height: 1.3;
  }
}

/* セクション見出し (Desktop: 48px-60px, Mobile: 28px-34px) */
.section-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25;
  color: #000000;
}

@media (max-width: 767px) {
  .section-title {
    font-size: 28px;
    line-height: 1.3;
  }
}

/* ボタン（Primary: #06c755, Radius: 8px, Padding: 12px 32px） */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #06c755;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-primary:hover {
  background-color: #05b34c;
}

/* ボタン（Secondary） */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: #000000;
  border: 1px solid #e5e5e5;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-secondary:hover {
  background-color: #f7f8f9;
}

/* カードスタイル（Border: #e5e5e5, Radius: 12px, Padding: 24px-32px, Shadow: 0 2px 8px rgba(0,0,0,0.08)） */
.clean-card {
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

@media (max-width: 767px) {
  .clean-card {
    padding: 24px;
  }
}

/* サーフェス背景（#f7f8f9） */
.bg-surface {
  background-color: #f7f8f9;
}

/* 開催要項テーブル */
.overview-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background-color: #ffffff;
}

.overview-table th,
.overview-table td {
  padding: 22px 28px;
  border-bottom: 1px solid #e5e5e5;
  text-align: left;
}

.overview-table tr:last-child th,
.overview-table tr:last-child td {
  border-bottom: none;
}

.overview-table th {
  width: 24%;
  background-color: #f7f8f9;
  color: #666666;
  font-size: 17px;
  font-weight: 700;
}

.overview-table td {
  color: #000000;
  font-size: 18px;
}

@media (max-width: 767px) {
  .overview-table th,
  .overview-table td {
    display: block;
    width: 100% !important;
    padding: 14px 18px;
  }
  .overview-table th {
    padding-bottom: 4px;
    font-size: 14px;
  }
  .overview-table td {
    padding-top: 4px;
    font-size: 16px;
    border-bottom: 1px solid #e5e5e5;
  }
}

/* FAQ（アコーディオン） */
.clean-faq {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background-color: #ffffff;
  padding: 24px;
}

.clean-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}

@media (max-width: 767px) {
  .clean-faq summary {
    font-size: 17px;
  }
}

.clean-faq summary::-webkit-details-marker {
  display: none;
}

.clean-faq[open] {
  border-color: #06c755;
}

.clean-faq[open] .faq-arrow {
  transform: rotate(180deg);
}

.faq-arrow {
  transition: transform 0.2s ease;
  color: #666666;
  font-size: 20px;
}

/* フローティングCTAバー */
.floating-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-top: 1px solid #e5e5e5;
  padding: 16px 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-bar.is-visible {
  transform: translateY(0);
}

/* SNS シェアボタン */
.sns-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  color: #444444;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.sns-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sns-share-btn.btn-insta:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #ffffff;
  border-color: transparent;
}
