/* ===========================
   通信事業ページ専用 CSS
   ※ style.css と衝突しないように tc- prefix を使用
=========================== */

body {
  background: #000;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

img{
    width: 100%;
}

/* ===========================
   HERO（営業人材採用メイン）
=========================== */
.tc-hero {
  position: relative;
  padding: 160px 40px;
  overflow: hidden;
}

.tc-hero-inner {
  max-width: 600px;
  z-index: 2;
  position: relative;
}

.tc-hero-inner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.tc-hero-inner p {
  font-size: 20px;
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 40px;
}

.tc-hero-btn {
  display: inline-block;
  background: #75aaff;
  padding: 16px 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
  box-shadow: 0 0 25px rgba(117,170,255,0.5);
}

.tc-hero-img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  opacity: 0.25;
  border-top-left-radius: 200px;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-hero {
    padding: 120px 20px;
  }
  .tc-hero-inner h1 {
    font-size: 32px;
  }
  .tc-hero-img {
    width: 100%;
    opacity: 0.15;
  }
}

/* ===========================
   SECTION 共通
=========================== */
.tc-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.tc-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 700;
}

.tc-lead {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 40px;
}

/* ===========================
   営業人材採用（メイン）
=========================== */
.tc-recruit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.tc-recruit-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-recruit-card img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tc-recruit-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tc-recruit-card p {
  opacity: 0.8;
  font-size: 15px;
}

.tc-recruit-btn {
  display: inline-block;
  background: #75aaff;
  padding: 16px 40px;
  border-radius: 8px;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 0 25px rgba(117,170,255,0.5);
}

/* ===========================
   ANIMATION BASE
=========================== */
.tc-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.2s ease-out;
}

.tc-animate.tc-show {
  opacity: 1;
  transform: translateY(0);
}

/* 左から */
.tc-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease-out;
}

.tc-slide-left.tc-show {
  opacity: 1;
  transform: translateX(0);
}

/* 右から */
.tc-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease-out;
}

.tc-slide-right.tc-show {
  opacity: 1;
  transform: translateX(0);
}

/* カードのホバー浮遊 */
.tc-card:hover,
.tc-recruit-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease-out;
  box-shadow: 0 0 25px rgba(255,255,255,0.12);
}
/* ===========================
   ANIMATION BASE
=========================== */
.tc-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s ease-out;
}

.tc-animate.tc-show {
  opacity: 1;
  transform: translateY(0);
}

/* 左から */
.tc-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: 0.8s ease-out;
}

.tc-slide-left.tc-show {
  opacity: 1;
  transform: translateX(0);
}

/* 右から */
.tc-slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: 0.8s ease-out;
}

.tc-slide-right.tc-show {
  opacity: 1;
  transform: translateX(0);
}

/* 遅延アニメーション（カード用） */
.tc-delay-1 { transition-delay: 0.2s }
.tc-delay-2 { transition-delay: 0.4s }
.tc-delay-3 { transition-delay: 0.6s }

/* HERO 背景画像フェード */
.tc-hero-img {
  opacity: 0;
  transition: 1.5s ease-out;
}

.tc-hero-img.tc-show {
  opacity: 0.25;
}

/* カードのホバー浮遊 */
.tc-card:hover,
.tc-recruit-card:hover {
  transform: translateY(-6px);
  transition: 0.3s ease-out;
  box-shadow: 0 0 25px rgba(255,255,255,0.12);
}


/* モバイル */
@media (max-width: 768px) {
  .tc-recruit-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   携帯販売サービス
=========================== */
.tc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tc-card {
  background: #111;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,255,255,0.05);
}

.tc-card img {
  width: 100px ;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tc-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.tc-card p {
  opacity: 0.8;
  font-size: 15px;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   MNP フロー
=========================== */
.tc-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tc-flow-step {
  text-align: center;
}

.tc-flow-step img {
  width: 100px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tc-flow-step h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.tc-flow-step p {
  opacity: 0.8;
}

/* モバイル */
@media (max-width: 768px) {
  .tc-flow {
    grid-template-columns: 1fr;
  }
}
