/* ===============================
   BASE
=============================== */
html, body {
  overflow-x: hidden;
  margin: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background: #f5f5f5;
  color: #222;
  line-height: 2;
}

.eventsport section {
  padding: 120px 10%;
  box-sizing: border-box;
}

.company-box a{
  color: #ffffff;
}


/* ===============================
   LOADING
=============================== */
#loading {
  position: fixed;
  inset: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity .8s ease;
}

#loading.hide {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  color: #fff;
  font-size: 28px;
  letter-spacing: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: 1s ease;
}

.loader-text.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   HERO
=============================== */
.about-hero {
  background: #1e2126;
  color: #fff;
}

.about-hero h1 {
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1.2;
}

/* ===============================
   MESSAGE
=============================== */
.message-block {
  background: #fff;
}

.message-inner {
  max-width: 900px;
  margin: auto;
}

.message-text p {
  opacity: 0;
  transform: translateY(20px);
  transition: .6s ease;
}

.message-text p.active {
  opacity: 1;
  transform: translateY(0);
}

.message-sign {
  text-align: right;
}

/* ===============================
   VISION
=============================== */
.vision {
  background: #1e2126;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  /*background: #0f0f12;*/
  background: radial-gradient(circle, rgba(0,200,255,0.18), transparent 65%);
  filter: blur(40px);
}

.vision-inner {
  position: relative;
  z-index: 1;
}

.vision-sub {
  color: #00c8ff;
  letter-spacing: .35em;
}

/* ===============================
   PROFILE
=============================== */
.profile-section {
  background: #ffffff; /* 白背景 */
  color: #222;
  display: block; /* 縦に並べる */
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 5%;
  opacity: 1 !important; /* 強制表示 */
  transform: none !important; /* 強制表示 */
}

/* 上部：ロゴと名前 */
.profile-header {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

.profile-image {
  flex: 0 0 180px; /* ロゴサイズ固定 */
}

.profile-image img {
  width: 100%;
  height: auto;
}

.profile-content h2 {
  font-size: 32px;
  margin: 0;
  color: #111;
}

/* 下部：2列グリッド */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 15px;
}

/* 項目（item） */
.profile-grid .item {
  border-radius: 10px;
  background: #fdfdfd; 
  border: 1px solid #eee; /* 薄く枠線をつける */
  border-left: 4px solid #00c8ff;
  padding: 15px 20px;
  /* アニメーション用の初期設定を「表示」に変更 */
  opacity: 1 !important; 
  transform: none !important;
}

/* 職業と趣味は1列ぶち抜き */
.profile-grid .item:nth-child(4),
.profile-grid .item:nth-child(5) {
  grid-column: span 2;
}

.profile-grid .item span {
  display: block;
  font-size: 12px;
  color: #00c8ff;
  font-weight: bold;
  margin-bottom: 3px;
}

.profile-grid .item p {
  margin: 0;
  line-height: 1.5;
  font-size: 15px;
}

/* スマホ対応 */
@media (max-width: 768px) {
  .profile-header {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .profile-image {
    flex: 0 0 120px;
  }
  .profile-grid {
    grid-template-columns: 1fr;
  }
  .profile-grid .item:nth-child(4),
  .profile-grid .item:nth-child(5) {
    grid-column: span 1;
  }
}

/* ===============================
   COMPANY
=============================== */
.company-info {
  background: #151518;
  color: #fff;
  text-align: center;
}

.company-box {
  background: rgba(255,255,255,.05);
  padding: 40px;
  border-radius: 20px;
}

/* ===============================
   FADE
=============================== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}

.fade-up.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* ===============================
   RESPONSIVE
=============================== */
@media (max-width: 768px) {

  .profile-section {
    flex-direction: column;
    padding: 80px 20px;
  }

  .profile-image {
    position: static;
    width: 100%;
  }

  .profile-content {
    width: 100%;
  }

  .profile-content h2 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {

  .about-hero h1 {
    font-size: 32px;
  }

  .hero-text {
    font-size: 14px;
  }

}

@media (max-width: 768px) {

  .message-block {
    min-height: auto;
    padding: 80px 20px;
  }

  .message-title h2 {
    font-size: 24px;
  }

}

@media (max-width: 768px) {

  .company-box {
    padding: 25px 20px;
  }

  .company-info h2 {
    font-size: 20px;
  }

}

/* ===============================
   COMPANY INFO（白ベース・信頼感重視）
=============================== */
.company-info {
  background: #ffffff; /* 白背景に統一 */
  color: #222;
  text-align: center;
  padding: 100px 5% 140px; /* 下に少し余裕を持たせる */
}

.company-sub {
  color: #00c8ff;
  letter-spacing: .35em;
  font-weight: bold;
  margin-bottom: 10px;
}

.company-info h2 {
  font-size: clamp(24px, 4vw, 32px);
  margin-bottom: 50px;
  color: #111;
}

.company-inner {
  max-width: 800px;
  margin: auto;
}

.company-box {
  background: #f8f9fa; /* 非常に薄いグレー */
  padding: 60px 40px;
  border-radius: 24px;
  border: 1px solid #eee;
  /* 軽い影をつけて浮かせる（浮いてる感ではなく、カードとしての存在感） */
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.company-box p {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 1.8;
}

.company-box p:last-child {
  margin-bottom: 0;
}

/* リンクの色調整 */
.company-box a {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  border-bottom: 1px solid #ccc;
  padding-bottom: 2px;
}

.company-box a:hover {
  color: #00c8ff;
  border-bottom-color: #00c8ff;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .company-info {
    padding: 80px 20px 100px;
  }
  .company-box {
    padding: 40px 20px;
  }
  .company-box p {
    font-size: 14px;
  }
}